Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ Maven artifacts are published nightly to the Eclipse Maven repository:
## Building from Source

  
[![Build Status](https://github.com/locationtech/geomesa/actions/workflows/build-and-test.yml/badge.svg?branch=main)](https://github.com/locationtech/geomesa/actions/workflows/build-and-test.yml/badge.svg?branch=main)  
[![Build Status](https://github.com/locationtech/geomesa/actions/workflows/build-and-test.yml/badge.svg?branch=main)](https://github.com/locationtech/geomesa/actions/workflows/build-and-test.yml?query=branch%3Amain)  
[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/locationtech/geomesa/badge)](https://api.securityscorecards.dev/projects/github.com/locationtech/geomesa)

Requirements:
Expand Down
2 changes: 1 addition & 1 deletion build/templates/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ Maven artifacts are published nightly to the Eclipse Maven repository:
## Building from Source

  
[![Build Status](https://github.com/locationtech/geomesa/actions/workflows/build-and-test.yml/badge.svg?branch=main)](https://github.com/locationtech/geomesa/actions/workflows/build-and-test.yml/badge.svg?branch=main)  
[![Build Status](https://github.com/locationtech/geomesa/actions/workflows/build-and-test.yml/badge.svg?branch=main)](https://github.com/locationtech/geomesa/actions/workflows/build-and-test.yml?query=branch%3Amain)  
[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/locationtech/geomesa/badge)](https://api.securityscorecards.dev/projects/github.com/locationtech/geomesa)

Requirements:
Expand Down
8 changes: 4 additions & 4 deletions docs/user/kafka/data.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ Data Management
Kafka Topic Name
----------------

Each SimpleFeatureType (or schema) will be written to a unique Kafka topic. By default, the topic will be
named based on the ``kafka.zk.path`` data store parameter and the SimpleFeatureType name, by appending
the two together and replacing any ``/`` characters with ``-``. For example, with the default zookeeper path
(``geomesa/ds/kafka``), a SimpleFeatureType name of 'foo' would result in the topic ``geomesa-ds-kafka-foo``.
Each SimpleFeatureType (or schema) will be written to a unique Kafka topic. By default, the topic name will consist of the value
of the ``kafka.catalog.topic`` data store parameter (or ``kafka.zk.path`` if using Zookeeper), and the SimpleFeatureType name,
separated with a ``-``. Any ``/`` characters will be replaced with ``-``. For example, with the default catalog topic
(``geomesa-catalog``), a SimpleFeatureType name of ``foo`` would result in the topic ``geomesa-catalog-foo``.

If desired, the topic name can be set to an arbitrary value by setting the user data key ``geomesa.kafka.topic``
before calling ``createSchema``:
Expand Down
Loading