|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- {
- "dsp": {
- "active": "dev"
- },
- "kafka": {
- "topic": {
- "dsp-push-stream-task-topic": "dsp-push-stream-task",
- "dsp-push-stream-result-topic": "dsp-push-stream-result"
- },
- "dev": {
- "bootstrap_servers": ["192.168.11.13:9092"],
- "dsp-alg-online-tasks": {
- "partition": [0]
- },
- "dsp-alg-offline-tasks": {
- "partition": [0]
- },
- "dsp-alg-task-results": {
- "partition": [0]
- },
- "producer": {
- "acks": -1,
- "retries": 3,
- "linger_ms": 50,
- "retry_backoff_ms": 1000,
- "max_in_flight_requests_per_connection": 5
- },
- "consumer": {
- "client_id": "dsp_tool_server",
- "group_id": "dsp-tool-dev",
- "auto_offset_reset": "latest",
- "enable_auto_commit": 0,
- "max_poll_records": 1
- }
- },
- "test": {
- "bootstrap_servers": ["106.14.96.218:19092"],
- "dsp-alg-online-tasks": {
- "partition": [0]
- },
- "dsp-alg-offline-tasks": {
- "partition": [0]
- },
- "dsp-alg-task-results": {
- "partition": [0]
- },
- "producer": {
- "acks": -1,
- "retries": 3,
- "linger_ms": 50,
- "retry_backoff_ms": 1000,
- "max_in_flight_requests_per_connection": 5
- },
- "consumer": {
- "client_id": "dsp_tool_server",
- "group_id": "dsp-tool-test",
- "auto_offset_reset": "latest",
- "enable_auto_commit": 0,
- "max_poll_records": 1
- }
- },
- "prod": {
- "bootstrap_servers": ["101.132.127.1:19094"],
- "dsp-alg-online-tasks": {
- "partition": [0]
- },
- "dsp-alg-offline-tasks": {
- "partition": [0]
- },
- "dsp-alg-task-results": {
- "partition": [0]
- },
- "producer": {
- "acks": -1,
- "retries": 3,
- "linger_ms": 50,
- "retry_backoff_ms": 1000,
- "max_in_flight_requests_per_connection": 5
- },
- "consumer": {
- "client_id": "dsp_tool_server",
- "group_id": "dsp-tool-prod",
- "auto_offset_reset": "latest",
- "enable_auto_commit": 0,
- "max_poll_records": 1
- }
- }
- }
- }
-
|