Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Documentation for this connector can be found [here](http://docs.confluent.io/cu
# Criteo fork changes

- Disable all hive related test raising a `NoClassDefFound Could not initialize class org.apache.hadoop.hive.ql.exec.Utilities`. Related issue (https://github.com/criteo-forks/kafka-connect-hdfs/issues/1). To be fixed if we plan to use hive module (not the case currently).
- Apply unmerged PR https://github.com/confluentinc/kafka-connect-hdfs/pull/684 to solve the rotate Interval that doesn't work for low volume or irregular traffic
- Force jackson-mapper-asl transitive dependency to 1.9.13

# Development
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -316,9 +316,9 @@ public boolean recover() {
private void updateRotationTimers(SinkRecord currentRecord) {
long now = time.milliseconds();
// Wallclock-based partitioners should be independent of the record argument.
lastRotate = isWallclockBased
lastRotate = isWallclockBased || currentRecord == null
? (Long) now
: currentRecord != null ? timestampExtractor.extract(currentRecord) : null;
: timestampExtractor.extract(currentRecord);
if (log.isDebugEnabled() && rotateIntervalMs > 0) {
log.debug(
"Update last rotation timer. Next rotation for {} will be in {}ms",
Expand Down Expand Up @@ -600,10 +600,10 @@ private void setState(State state) {
}

private boolean shouldRotateAndMaybeUpdateTimers(SinkRecord currentRecord, long now) {
Long currentTimestamp = null;
if (isWallclockBased) {
Long currentTimestamp;
if (isWallclockBased || currentRecord == null) {
currentTimestamp = now;
} else if (currentRecord != null) {
} else {
currentTimestamp = timestampExtractor.extract(currentRecord);
lastRotate = lastRotate == null ? currentTimestamp : lastRotate;
}
Expand Down