Event Endpoint Management continues to be enhanced

Event Endpoint Management continues to be available and enhanced as part of IBM's integration platforms.

End of Marketing announcement for IBM Event Automation

Event Streams and Event Processing are deprecated and no enhancements will be provided. Support and security fixes will be provided in line with published support lifecycle policies. Future event-driven solutions that make use of Apache Kafka and Flink will be delivered by IBM Confluent Platform.

For more information, see the support lifecycle transition and software ordering completion announcement.

Error when creating multiple geo-replicators

Symptoms

After providing a list of topic names when creating a geo-replicator, only the first topic successfully replicates data.

The additional topics specified are either not displayed in the destination cluster UI Topics view, or are displayed as <origin-release>.<topic-name> but are not enabled for geo-replication.

Causes

When using the CLI to set up replication, the list of topics to geo-replicate included spaces between the topic names in the comma-separated list.

Resolving the problem

Ensure you do not have spaces between the topic names. For example, if you specified the topics parameter with spaces such as:

--topics MyTopicName1, MyTopicName2, MyTopicName3
--topics "MyTopicName1, MyTopicName2, MyTopicName3"

Remove the spaces between the topic names and re-apply the command using a topics parameter with no spaces such as:

--topics MyTopicName1,MyTopicName2,MyTopicName3