All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
io.camunda.zeebe.broker.transport.commandapi.CommandApiServiceImpl Maven / Gradle / Ivy
/*
* Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH under
* one or more contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright ownership.
* Licensed under the Zeebe Community License 1.1. You may not use this file
* except in compliance with the Zeebe Community License 1.1.
*/
package io.camunda.zeebe.broker.transport.commandapi;
import io.camunda.zeebe.broker.Loggers;
import io.camunda.zeebe.broker.PartitionListener;
import io.camunda.zeebe.broker.system.configuration.QueryApiCfg;
import io.camunda.zeebe.broker.system.monitoring.DiskSpaceUsageListener;
import io.camunda.zeebe.broker.transport.backpressure.PartitionAwareRequestLimiter;
import io.camunda.zeebe.broker.transport.backpressure.RequestLimiter;
import io.camunda.zeebe.broker.transport.queryapi.QueryApiRequestHandler;
import io.camunda.zeebe.engine.processing.streamprocessor.TypedRecord;
import io.camunda.zeebe.engine.processing.streamprocessor.writers.CommandResponseWriter;
import io.camunda.zeebe.engine.state.QueryService;
import io.camunda.zeebe.logstreams.log.LogStream;
import io.camunda.zeebe.protocol.impl.encoding.BrokerInfo;
import io.camunda.zeebe.protocol.record.RecordType;
import io.camunda.zeebe.protocol.record.intent.Intent;
import io.camunda.zeebe.transport.RequestType;
import io.camunda.zeebe.transport.ServerTransport;
import io.camunda.zeebe.util.sched.Actor;
import io.camunda.zeebe.util.sched.ActorSchedulingService;
import io.camunda.zeebe.util.sched.future.ActorFuture;
import io.camunda.zeebe.util.sched.future.CompletableActorFuture;
import java.util.function.Consumer;
import org.agrona.collections.IntHashSet;
public final class CommandApiServiceImpl extends Actor
implements PartitionListener, DiskSpaceUsageListener, CommandApiService {
private final PartitionAwareRequestLimiter limiter;
private final ServerTransport serverTransport;
private final CommandApiRequestHandler commandHandler;
private final QueryApiRequestHandler queryHandler;
private final IntHashSet leadPartitions = new IntHashSet();
private final String actorName;
private final ActorSchedulingService scheduler;
public CommandApiServiceImpl(
final ServerTransport serverTransport,
final BrokerInfo localBroker,
final PartitionAwareRequestLimiter limiter,
final ActorSchedulingService scheduler,
final QueryApiCfg queryApiCfg) {
this.serverTransport = serverTransport;
this.limiter = limiter;
this.scheduler = scheduler;
commandHandler = new CommandApiRequestHandler();
queryHandler = new QueryApiRequestHandler(queryApiCfg, localBroker.getNodeId());
actorName = buildActorName(localBroker.getNodeId(), "CommandApiService");
}
@Override
public String getName() {
return actorName;
}
@Override
protected void onActorStarting() {
scheduler.submitActor(queryHandler);
scheduler.submitActor(commandHandler);
}
@Override
protected void onActorClosing() {
for (final Integer leadPartition : leadPartitions) {
removeLeaderHandlers(leadPartition);
}
leadPartitions.clear();
actor.runOnCompletion(
commandHandler.closeAsync(),
(ok, error) -> {
if (error != null) {
Loggers.TRANSPORT_LOGGER.error("Error closing command api request handler", error);
}
});
actor.runOnCompletion(
queryHandler.closeAsync(),
(ok, error) -> {
if (error != null) {
Loggers.TRANSPORT_LOGGER.warn("Failed to close query API request handler", error);
}
});
}
@Override
public ActorFuture onBecomingFollower(final int partitionId, final long term) {
return removeLeaderHandlersAsync(partitionId);
}
@Override
public ActorFuture onBecomingLeader(
final int partitionId,
final long term,
final LogStream logStream,
final QueryService queryService) {
final CompletableActorFuture future = new CompletableActorFuture<>();
actor.call(
() -> {
leadPartitions.add(partitionId);
limiter.addPartition(partitionId);
queryHandler.addPartition(partitionId, queryService);
serverTransport.subscribe(partitionId, RequestType.QUERY, queryHandler);
logStream
.newLogStreamRecordWriter()
.onComplete(
(recordWriter, error) -> {
if (error == null) {
final var requestLimiter = limiter.getLimiter(partitionId);
commandHandler.addPartition(partitionId, recordWriter, requestLimiter);
serverTransport.subscribe(partitionId, RequestType.COMMAND, commandHandler);
future.complete(null);
} else {
Loggers.SYSTEM_LOGGER.error(
"Error on retrieving write buffer from log stream {}",
partitionId,
error);
future.completeExceptionally(error);
}
});
});
return future;
}
@Override
public ActorFuture onBecomingInactive(final int partitionId, final long term) {
return removeLeaderHandlersAsync(partitionId);
}
private ActorFuture removeLeaderHandlersAsync(final int partitionId) {
return actor.call(() -> removeLeaderHandlers(partitionId));
}
private void removeLeaderHandlers(final int partitionId) {
commandHandler.removePartition(partitionId);
queryHandler.removePartition(partitionId);
cleanLeadingPartition(partitionId);
}
private void cleanLeadingPartition(final int partitionId) {
leadPartitions.remove(partitionId);
removeForPartitionId(partitionId);
}
private void removeForPartitionId(final int partitionId) {
limiter.removePartition(partitionId);
serverTransport.unsubscribe(partitionId, RequestType.COMMAND);
serverTransport.unsubscribe(partitionId, RequestType.QUERY);
}
@Override
public CommandResponseWriter newCommandResponseWriter() {
return new CommandResponseWriterImpl(serverTransport);
}
@Override
public Consumer> getOnProcessedListener(final int partitionId) {
final RequestLimiter partitionLimiter = limiter.getLimiter(partitionId);
return typedRecord -> {
if (typedRecord.getRecordType() == RecordType.COMMAND && typedRecord.hasRequestMetadata()) {
partitionLimiter.onResponse(typedRecord.getRequestStreamId(), typedRecord.getRequestId());
}
};
}
@Override
public void onDiskSpaceNotAvailable() {
actor.run(commandHandler::onDiskSpaceNotAvailable);
}
@Override
public void onDiskSpaceAvailable() {
actor.run(commandHandler::onDiskSpaceAvailable);
}
}