Interface | Description |
---|---|
org.apache.kafka.common.security.auth.PrincipalBuilder |
As of Kafka 1.0.0, use
KafkaPrincipalBuilder instead. This will be removed in
a future major release. |
org.apache.kafka.streams.processor.StateStoreSupplier |
use
StoreSupplier |
org.apache.kafka.streams.state.Stores.InMemoryKeyValueFactory | |
org.apache.kafka.streams.state.Stores.PersistentKeyValueFactory |
Class | Description |
---|---|
org.apache.kafka.common.security.auth.DefaultPrincipalBuilder |
As of Kafka 1.0.0. This will be removed in a future major release.
|
org.apache.kafka.streams.kstream.KStreamBuilder |
Use
StreamsBuilder instead |
org.apache.kafka.streams.processor.TopologyBuilder |
use
Topology instead |
Exceptions | Description |
---|---|
org.apache.kafka.common.errors.GroupCoordinatorNotAvailableException |
As of Kafka 0.11, this has been replaced by
CoordinatorNotAvailableException |
org.apache.kafka.common.errors.GroupLoadInProgressException |
As of Kafka 0.11, this has been replaced by
CoordinatorLoadInProgressException |
org.apache.kafka.common.errors.NotCoordinatorForGroupException |
As of Kafka 0.11, this has been replaced by
NotCoordinatorException |
org.apache.kafka.streams.errors.TopologyBuilderException |
use
Topology instead of TopologyBuilder |
Constructor | Description |
---|---|
org.apache.kafka.clients.admin.ConfigEntry(String, String, boolean, boolean, boolean) |
since 1.1.0. This constructor will be removed in a future release.
|
org.apache.kafka.streams.KafkaStreams(TopologyBuilder, Properties) |
use
KafkaStreams(Topology, Properties) instead |
org.apache.kafka.streams.KafkaStreams(TopologyBuilder, StreamsConfig) |
use
KafkaStreams(Topology, StreamsConfig) instead |
org.apache.kafka.streams.KafkaStreams(TopologyBuilder, StreamsConfig, KafkaClientSupplier) | |
org.apache.kafka.clients.producer.RecordMetadata(TopicPartition, long, long, long, long, int, int) |
As of 0.11.0. Use @
RecordMetadata(TopicPartition, long, long, long, Long, int, int) . |