-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json
100 lines (83 loc) · 3.06 KB
/
config.json
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"debug":true,
"server_port":"8080",
"cache_timeout": "60s",
"cache_invalidation_all_kafka_topics": ["device-types", "protocols", "concepts", "characteristics", "functions", "aspects"],
"device_kafka_topic": "devices",
"device_group_kafka_topic": "device-groups",
"response_topic":"device-command-response",
"metadata_response_to":"device-command-response",
"error_topic":"device-command-errors",
"metadata_error_to":"device-command-errors",
"com_impl": "cloud",
"marshaller_impl": "cloud",
"use_iot_fallback": false,
"timescale_impl": "cloud",
"timescale_wrapper_url": "http://timescale-wrapper.timescale:8080",
"kafka_url":"",
"mgw_mqtt_broker": "",
"mgw_mqtt_user": "",
"mgw_mqtt_pw": "",
"response_worker_count":20,
"marshaller_url":"http://marshaller:8080",
"device_repository_url":"http://device-repository:8080",
"mgw_correlation_id_prefix": "device-command-",
"mgw_protocol_segment": "data",
"mgw_mqtt_client_id": "device-command",
"iot_fallback_file": "devicerepo_fallback.json",
"default_timeout":"30s",
"group_scheduler":"parallel",
"kafka_consumer_group":"device-command",
"async_flush_frequency":"500ms",
"async_compression":"snappy",
"sync_compression":"snappy",
"sync":false,
"sync_idempotent":false,
"partition_num":1,
"replication_factor":1,
"async_flush_messages":200,
"kafka_consumer_max_wait":"100ms",
"kafka_consumer_min_bytes":1000,
"kafka_consumer_max_bytes":1000000,
"mgw_concept_repo_refresh_interval": 3600,
"overwrite_auth_token": false,
"auth_endpoint": "",
"auth_client_id": "",
"auth_user_name": "",
"auth_password": "",
"auth_expiration_time_buffer": 2,
"auth_fallback_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIwOGM0N2E4OC0yYzc5LTQyMGYtODEwNC02NWJkOWViYmU0MWUiLCJleHAiOjE1NDY1MDcyMzMsIm5iZiI6MCwiaWF0IjoxNTQ2NTA3MTczLCJpc3MiOiIiLCJzdWIiOiJmYWxsYmFjay10b2tlbiIsInR5cCI6IkJlYXJlciIsImF6cCI6Im1ndy1kZXZpY2UtY29tbWFuZCIsInJlYWxtX2FjY2VzcyI6eyJyb2xlcyI6WyJ1c2VyIl19LCJyZXNvdXJjZV9hY2Nlc3MiOnsibWFzdGVyLXJlYWxtIjp7InJvbGVzIjpbXX0sImFjY291bnQiOnsicm9sZXMiOltdfX0sInJvbGVzIjpbInVzZXIiXX0.4d1G3G7o0KtszEJmu-UVO5diw2PqRG0yvbicsaD2SDc",
"device_repo_cache_size_in_mb": 100,
"kafka_topic_configs":{
"device-command-response": [
{
"ConfigName": "retention.ms",
"ConfigValue": "86400000"
}
],
"device-command-errors": [
{
"ConfigName": "retention.ms",
"ConfigValue": "86400000"
}
],
"connector": [
{
"ConfigName": "retention.ms",
"ConfigValue": "86400000"
}
],
"mqtt": [
{
"ConfigName": "retention.ms",
"ConfigValue": "86400000"
}
],
"nimbus": [
{
"ConfigName": "retention.ms",
"ConfigValue": "86400000"
}
]
}
}