-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.ini
More file actions
72 lines (56 loc) · 1.56 KB
/
test.ini
File metadata and controls
72 lines (56 loc) · 1.56 KB
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
62
63
64
65
66
67
68
69
70
71
72
[DEFAULT]
debug = false
# Uncomment and replace with the address which should receive any error reports
#email_to = you@yourdomain.com
smtp_server = localhost
error_email_from = paste@localhost
[server:main]
use = egg:Paste#http
host = 0.0.0.0
port = 5000
[app:main]
use = config:../ckan/test-core.ini
# Here we hard-code the database and a flag to make default tests
# run fast.
ckan.plugins = consumer
### Basic Configuration
ckan.consumer.kafka.bootstrap.servers = some.confluent.cloud:9092
ckan.consumer.kafka.group_id = consumer-group
ckan.consumer.kafka.client.id = ccloud-python
### Security & Authentication (SASL/SSL)
# Protocol: PLAINTEXT, SASL_PLAINTEXT, SASL_SSL, SSL
ckan.consumer.kafka.security.protocol = SASL_SSL
# Mechanism: PLAIN, SCRAM-SHA-256, SCRAM-SHA-512, GSSAPI (Kerberos)
ckan.consumer.kafka.sasl.mechanisms = PLAIN
# Credentials
ckan.consumer.kafka.sasl.username =
ckan.consumer.kafka.sasl.password =
### Tuning & Reliability
# Best practice for higher availability in librdkafka clients
ckan.consumer.kafka.session.timeout.ms = 45000
ckan.consumer.kafka.auto.offset.reset = earliest
# Logging configuration
[loggers]
keys = root, ckan, sqlalchemy
[handlers]
keys = console
[formatters]
keys = generic
[logger_root]
level = WARN
handlers = console
[logger_ckan]
qualname = ckan
handlers =
level = INFO
[logger_sqlalchemy]
handlers =
qualname = sqlalchemy.engine
level = ERROR
[handler_console]
class = StreamHandler
args = (sys.stdout,)
level = NOTSET
formatter = generic
[formatter_generic]
format = %(asctime)s %(levelname)-5.5s [%(name)s] %(message)s