Files
backstage/plugins/kafka/CHANGELOG.md
T
github-actions[bot] cda741034d Version Packages
2021-01-28 10:46:08 +00:00

1.4 KiB

@backstage/plugin-kafka

0.2.0

Minor Changes

  • 234e7d985: Added support for multiple Kafka clusters and multiple consumers per component. Note that this introduces several breaking changes.

    1. Configuration in app-config.yaml has changed to support the ability to configure multiple clusters. This means you are required to update the configs in the following way:
    kafka:
       clientId: backstage
    -  brokers:
    -    - localhost:9092
    +  clusters:
    +    - name: prod
    +      brokers:
    +        - localhost:9092
    
    1. Configuration of services has changed as well to support multiple clusters:
      annotations:
    -    kafka.apache.org/consumer-groups: consumer
    +    kafka.apache.org/consumer-groups: prod/consumer
    
    1. Kafka Backend API has changed, so querying offsets of a consumer group is now done with the following query path: /consumers/${clusterId}/${consumerGroup}/offsets

Patch Changes

  • Updated dependencies [9dd057662]
  • Updated dependencies [0b1182346]
    • @backstage/plugin-catalog@0.2.14

0.1.1

Patch Changes

  • Updated dependencies [def2307f3]
  • Updated dependencies [efd6ef753]
  • Updated dependencies [593632f07]
  • Updated dependencies [33846acfc]
  • Updated dependencies [a187b8ad0]
  • Updated dependencies [f04db53d7]
  • Updated dependencies [a93f42213]
    • @backstage/catalog-model@0.7.0
    • @backstage/core@0.5.0
    • @backstage/plugin-catalog@0.2.12