All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alibaba.hologres.kafka.model.DirtyDataStrategy Maven / Gradle / Ivy

There is a newer version: 1.4.3
Show newest version
package com.alibaba.hologres.kafka.model;

/** DirtyDataStrategy. */
public enum DirtyDataStrategy {
    // 抛出异常
    EXCEPTION,

    // 跳过脏数据
    SKIP,

    // 有限制的跳过脏数据,需要指定需要跳过的数据的topic、partition、offset
    SKIP_ONCE;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy