io.fluxcapacitor.javaclient.tracking.StallingBatchInterceptor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-client Show documentation
Show all versions of java-client Show documentation
Default Java client library for interfacing with Flux Capacitor.
/*
* Copyright (c) Flux Capacitor IP B.V. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.fluxcapacitor.javaclient.tracking;
import io.fluxcapacitor.common.api.tracking.MessageBatch;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.NoArgsConstructor;
import lombok.NonNull;
import lombok.extern.slf4j.Slf4j;
import java.time.Duration;
import java.time.Instant;
import java.util.Optional;
import java.util.concurrent.atomic.AtomicReference;
import java.util.function.Consumer;
import static io.fluxcapacitor.javaclient.FluxCapacitor.currentTime;
@Builder
@Slf4j
@NoArgsConstructor
@AllArgsConstructor
public class StallingBatchInterceptor implements BatchInterceptor {
@Builder.Default
private final int desiredBatchSize = 512;
@Builder.Default
@NonNull
private final Duration maximumStallingDuration = Duration.ofSeconds(60);
@Builder.Default
@NonNull
private final Duration retryFrequency = Duration.ofSeconds(1);
private final AtomicReference firstRefusal = new AtomicReference<>();
@Override
public Consumer intercept(Consumer consumer, Tracker tracker) {
return b -> {
if (b.getSize() >= desiredBatchSize || hasPassedDeadline()) {
consumer.accept(b);
firstRefusal.set(null);
} else {
stall();
}
};
}
protected boolean hasPassedDeadline() {
return Optional.ofNullable(firstRefusal.get())
.filter(f -> !currentTime().isBefore(f.plus(maximumStallingDuration))).isPresent();
}
protected void stall() {
firstRefusal.updateAndGet(f -> f == null ? currentTime() : f);
try {
Thread.sleep(retryFrequency.toMillis());
} catch (InterruptedException ignored) {
Thread.currentThread().interrupt();
}
}
}