io.streamnative.pulsar.handlers.kop.InternalProducer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulsar-protocol-handler-kafka Show documentation
Show all versions of pulsar-protocol-handler-kafka Show documentation
Kafka on Pulsar implemented using Pulsar Protocol Handler
The newest version!
/**
* Copyright (c) 2019 - 2024 StreamNative, Inc.. 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.streamnative.pulsar.handlers.kop;
import java.util.Optional;
import java.util.concurrent.CompletableFuture;
import lombok.extern.slf4j.Slf4j;
import org.apache.pulsar.broker.service.Producer;
import org.apache.pulsar.broker.service.ServerCnx;
import org.apache.pulsar.broker.service.Topic;
import org.apache.pulsar.common.api.proto.ProducerAccessMode;
/**
* InternalServerCnx, this only used to construct internalProducer / internalConsumer.
* So when topic is unload, we could disconnect the connection between kafkaRequestHandler and client,
* by internalProducer / internalConsumer.close();
* which means when topic unload happens, we should close the connection.
*/
@Slf4j
public class InternalProducer extends Producer {
private ServerCnx serverCnx;
public InternalProducer(Topic topic, ServerCnx cnx,
long producerId, String producerName) {
super(topic, cnx, producerId, producerName, null,
false, null, null, 0, false,
ProducerAccessMode.Shared, Optional.empty(), false);
this.serverCnx = cnx;
}
// Don't add the `@Override` annotation so that it can be cherry-picked into older branches. This method was first
// introduced from https://github.com/apache/pulsar/pull/13885.
public CompletableFuture checkPermissionsAsync() {
// `Producer#checkPermissionsAsync` is called in `PersistentTopic#onPoliciesUpdate`. The default implementation
// calls `AuthenticationService#canProduce` with the internal `appId` as the auth role and the authentication
// data source from the `cnx` field.
// `InternalProducer` is just a mock to record the producer stats. The authorization on this class is not
// necessary and might lead to some unexpected behaviors (like NPE if the authorization provider assumes the
// auth role is not null).
return CompletableFuture.completedFuture(null);
}
// Add this method because in some older versions of Pulsar (before https://github.com/apache/pulsar/pull/13885),
// `checkPermissions` is a method of `Producer` while `checkPermissionsAsync` is not.
public void checkPermissions() {
// No ops
}
// this will call back by bundle unload
@Override
public CompletableFuture disconnect() {
InternalServerCnx cnx = (InternalServerCnx) getCnx();
CompletableFuture future = new CompletableFuture<>();
cnx.getBrokerService().executor().execute(() -> {
log.info("Disconnecting producer: {}", this);
getTopic().removeProducer(this);
cnx.closeProducer(this);
future.complete(null);
});
return future;
}
@Override
public ServerCnx getCnx() {
return serverCnx;
}
@Override
public boolean equals(Object obj) {
return super.equals(obj);
}
@Override
public int hashCode() {
return super.hashCode();
}
}