зеркало из
1
0
Форкнуть 0
* merged Azure/master

* offset fix for preCommit()

Co-authored-by: fahad <hasher@192.168.0.102>
This commit is contained in:
Fahad Sheikh 2020-08-04 13:10:23 +05:30 коммит произвёл GitHub
Родитель 1ca54a6d51
Коммит 51d8e34719
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -418,7 +418,7 @@ public class KustoSinkTask extends SinkTask {
throw new ConnectException("Topic Partition not configured properly. " +
"verify your `topics` and `kusto.tables.topics.mapping` configurations");
}
Long offset = writers.get(tp).lastCommittedOffset;
Long offset = writers.get(tp).lastCommittedOffset + 1;
if (offset != null) {
log.debug("Forwarding to framework request to commit offset: {} for {} while the offset is {}", offset, tp, offsets.get(tp));