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

com.aliyun.dts.subscribe.clients.common.UniqueKeyGenerator Maven / Gradle / Ivy

package com.aliyun.dts.subscribe.clients.common;

import java.util.concurrent.atomic.AtomicLong;

/**
 * for compaction enabled topic, empty key field in producer record is not allowed, so we gene random key to avoid compaction
 */
public class UniqueKeyGenerator {
    private AtomicLong counter;
    private final String startMSStr;
    public UniqueKeyGenerator() {
        counter = new AtomicLong(0);
        startMSStr = String.valueOf(System.currentTimeMillis()) + "-";
    }
    public String nextKey() {
        return startMSStr + counter.getAndIncrement();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy