Skip to content

Commit b08731e

Browse files
Demogorgon314eolivelli
authored andcommitted
[improve] Enable transaction and schema registry on docker compose (#1809)
Currently, the KoP supports schema registry and transaction, But this feature is not enabled in the standalone and cluster docker-compose by default. * Enable transaction and schema registry on docker-compose yaml. * Upgrade the docker-compose sn-pulsar version to 2.11.0.5. (cherry picked from commit 4d4729f)
1 parent 92d6728 commit b08731e

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

docker-compose.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,13 @@ services:
2727
brokerDeleteInactiveTopicsEnabled: "false"
2828
PULSAR_PREFIX_messagingProtocols: kafka
2929
PULSAR_PREFIX_kafkaListeners: PLAINTEXT://0.0.0.0:9092
30-
PULSAR_PREFIX_kafkaAdvertisedListeners: PLAINTEXT://127.0.0.1:19092
30+
PULSAR_PREFIX_kafkaAdvertisedListeners: PLAINTEXT://127.0.0.1:9092
3131
PULSAR_PREFIX_brokerEntryMetadataInterceptors: org.apache.pulsar.common.intercept.AppendIndexMetadataInterceptor
32+
PULSAR_PREFIX_kopSchemaRegistryEnable: true
33+
PULSAR_PREFIX_kopSchemaRegistryPort: 8081
34+
PULSAR_PREFIX_kafkaTransactionCoordinatorEnabled: true
3235
ports:
3336
- 6650:6650
3437
- 8080:8080
35-
- 19092:9092
38+
- 9092:9092
39+
- 8081:8081

0 commit comments

Comments
 (0)