-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfluent.config
61 lines (39 loc) · 1.77 KB
/
confluent.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#
# Confluent consumer environment values
#
# TOPIC: kafka topic to listen to.
# example: TOPIC=CUSTOMER_V1
TOPIC=generic-schema
#
# Confluent producer environment values
#
# KAFKA_USERNAME: Kafka user name.
# example: KAFKA_USERNAME=admin
KAFKA_USERNAME=admin
# KAFKA_PASSWORD: Kafka user password.
# example: KAFKA_PASSWORD=admin
KAFKA_PASSWORD=admin
# EVENT: location of a JSON file containing the event to send. The event must be conformal to the schema used to identify the event content. Must start with @.
# example: EVENT=/Users/someUser/someResources/avro-sample-event.json
EVENT=src/test/resources/confluent/generic/event-4-generic.json
# SCHEMA: location of the schema file (.avsc) used to ser/deserialize the event yo be sent
# exemple: SCHEMA=/some/path/to/any.avsc
SCHEMA=src/test/resources/confluent/generic/generic-schema.avsc
# MANAGEMENT_URL: The Business Automation Insight (BAI) management service base URL.
# example: MANAGEMENT_URL=https://localhost:6898
MANAGEMENT_URL=https://localhost:6898
# MANAGEMENT_USERNAME: The management service authorized user name.
# example: MANAGEMENT_USERNAME=admin
MANAGEMENT_USERNAME=admin
# MANAGEMENT_PASSWORD: The management service authorized user password.
# example: MANAGEMENT_PASSWORD=blah-blah-blah
MANAGEMENT_PASSWORD=admin
# REGISTRY_URL: URL of the avro registry endpoint
# example: REGISTRY_URL=https://localhost:8084
REGISTRY_URL=https://localhost:8084
#
# Confluent producer and consumer common values
#
# KAFKA_SECURITY_PROPERTIES: The location of a java properties file containing all of the security information needed to communicate with Kafka
# example: KAFKA_SECURITY_PROPERTIES=/Users/someUser/someResources/KafkaSecurity.properties
KAFKA_SECURITY_PROPERTIES=src/test/resources/confluent/KafkaAvroProducer.properties