diff --git a/README.md b/README.md index c0875d4f4d0..4e12ab0c3fa 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/build/templates/README.md b/build/templates/README.md index c6663feb934..7aec7b357e2 100644 --- a/build/templates/README.md +++ b/build/templates/README.md @@ -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: diff --git a/docs/user/kafka/data.rst b/docs/user/kafka/data.rst index 71a7e6c0500..b0c9473c2ad 100644 --- a/docs/user/kafka/data.rst +++ b/docs/user/kafka/data.rst @@ -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``: