When I'm using topics.regex config option for Kafka Connector Sink (in this particular case Confluent S3 Sink) everything works as expected when sink is first started (it discovers all topics and start consuming messages from them). I want to be able to also create some topics later. I can't find anywhere in documentation what is expected behaviour here, but I wanted to be able to somehow automatically start consuming new topics with name matching provided regex. Is it possible at all? If not what would be best way to implement some automation for this?
Automatically discover topics when using topics.regex configuration for Kafka Connector
335 Views Asked by partlov At
1
There are 1 best solutions below
Related Questions in APACHE-KAFKA
- Spark streaming + kafka throughput
- How to diagnose Kafka topics failing globally to be found
- kafka: what do 'soTimeout', 'bufferSize' and 'minBytes' mean for SimpleConsumer?
- Fail to create SparkContext
- Syntax error on tokens, delete these tokens - kafka spring integration demo application
- How could Kafka 0.8.2.1 with offsets.storage=kafka still require ZooKeeper?
- Message Queues: Per Message Guarantees
- How should a Kafka HLC figure out the # of partitions for a topic?
- Kafka multiple consumers for a partition
- Should Apache Kafka and Hadoop be installed seperatedly (on a diffrent cluster)?
- how does one combine kafka-node producer and node tail?
- How to fix NoClassDefFoundError with custom Kafka producer under Eclipse?
- Apache Samza's CheckpointTool won't give away partition offsets
- Offsets for Kafka Direct Approach in Spark 1.3.1
- Simulate kafka broker failures in multi node kafka cluster and what operations and tools to use to mitigate data loss issues
Related Questions in APACHE-KAFKA-CONNECT
- How could we tail oplog from a secondary mongodb node in a replica set with debezium kafka connector?
- Second and Third Distributed Kafka Connector workers failing to work correctly
- Kafka connect Insert Into field with analyzer
- Kafka Connect with MongoDB Connector
- How can I programmatically/dynamically create data pipelines that include workers using Kafka and Java?
- Kafka Connect offset.storage.topic not receiving messages (i.e. how to access Kafka Connect offset metadata?)
- Kafka connector- cannot stop rebalancing
- Zeppelin 6.5 + Apache Kafka connector for Structured Streaming 2.0.2
- logstash kafka input performance / config tuning
- Kafka Connect when we have multiple queries
- PubSub Kafka Connect Google Platform error reading credential file from environment variable
- PubSub Kafka Connect node connection end of file exception
- Join data from 4 topics in broker using Kafka Streams when updates are not same in each of the topics
- Passing parameter Name in confluent HDFS Connector
- Kafka Connect JDBC sink connector not working
Related Questions in STRIMZI
- Kafka Consumer not consuming from last commited offset after restart
- Fluentbit unable to export metrics from node_metrics_exporter input to kafka output
- How to access strimzi kafka cluster running on minikube publically?
- Kafka Connect for GCP PubSub using Strimzi Operator
- Kafka pods apparently going beyond their resource limits in kubernetes
- kafka-cluster-zookeper networking issues in newer versions
- Error While Producing Message : Broker: Message size too large
- Exotic choice for Kafka-Connect Deployment
- Why Kafka doesn't start deployed on local k8s?
- How to use Kafka connect in Strimzi
- How to access Kafka through nodeport
- Dynamic creation of Kafka Connectors
- Prometheus Monitoring difference Podmonitor vs additionalScrapeConfigs
- Istio Ingress Gateway to serve Strimzi Apache Kafka on Kubernetes
- How do I avoid data loss when using Kafka over Kubernetes and one of the nodes fail?
Related Questions in S3-KAFKA-CONNECTOR
- How to modify the filename of the S3 object uploaded using the Kafka Connect S3 Connector?
- Kafka-Connect : Getting an unrecognised error when starting a S3 Sink Connector
- Open-source Kafka Sink Connector to S3 storage
- AWS MSK S3 Sink Connector to Deserialize AVRO without Schema Registry
- Kafka Connect S3 Sink Connector Partitioning large topics by id field
- Can Kafka Sink Connectors include the record timestamp as the payload stored at the storage
- Error when defining Camel S3 source connector
- Camel Kafka S3 Source Connector with multiple connectors for same bucket
- Kafka S3 source connector: How to avoid data loss when a node is down?
- How to increase the partition of existing topic while using S3 sink connector
- Process messages with Null inside array in Kafka connect S3 connector
- Where to keep the zipped file of kafka connect s3-source connector
- Confluent Kafka-to-S3 sink custom s3 naming for easy partitioning
- Kafka Connect: Read JSON serialized Kafka message, convert to Parquet format and persist in S3
- Parsing issues in Confluent S3 sink connector [serialization error]
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You should not need to do anything. It will find the new topic automatically if it matches the regex. But it is not immediate - it might take a few minutes (I think it is driven by the metadata refresh which is by default 5 minutes?). I never used it directly with the S3 connector you mention. But it worked fine for me with other connectors and I think there should be no differences.