You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/user/kafka/usage.rst
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,6 +39,7 @@ Parameter Type Description
39
39
which may require significant memory overhead.
40
40
``kafka.topic.partitions`` Integer Number of partitions to use in new kafka topics
41
41
``kafka.topic.replication`` Integer Replication factor to use in new kafka topics
42
+
``kafka.topic.truncate-on-delete`` Boolean Instead of deleting the kafka topic on schema change, just truncate (delete all messages) on that kafka topic.
42
43
``kafka.serialization.type`` String Internal serialization format to use for kafka messages. Must be one of ``kryo``, ``avro``
43
44
or ``avro-native``
44
45
``kafka.cache.expiry`` String Expire features from in-memory cache after this delay, e.g. ``10 minutes``. See :ref:`kafka_expiry`
Copy file name to clipboardExpand all lines: geomesa-kafka/geomesa-kafka-datastore/src/main/scala/org/locationtech/geomesa/kafka/data/KafkaDataStore.scala
+8-1Lines changed: 8 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -276,7 +276,13 @@ class KafkaDataStore(
276
276
277
277
WithClose(AdminClient.create(props)) { admin =>
278
278
if (admin.listTopics().names().get.contains(topic)) {
Copy file name to clipboardExpand all lines: geomesa-kafka/geomesa-kafka-datastore/src/main/scala/org/locationtech/geomesa/kafka/data/KafkaDataStoreFactory.scala
Copy file name to clipboardExpand all lines: geomesa-kafka/geomesa-kafka-datastore/src/main/scala/org/locationtech/geomesa/kafka/data/KafkaDataStoreParams.scala
Copy file name to clipboardExpand all lines: geomesa-kafka/geomesa-kafka-datastore/src/test/scala/org/locationtech/geomesa/kafka/data/KafkaDataStoreTest.scala
0 commit comments