-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker-compose.db.yml
119 lines (107 loc) · 3.64 KB
/
docker-compose.db.yml
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
version: "3.7"
x-extractor-env: &extractor-env
# API
API_PORT: "8080"
START_CLAIM_EXTRACTORS: "false"
START_HEAD_EXTRACTOR: "true"
# HEAD_EXTRACTOR_START_BLOCK: "5876206"
# HEAD_EXTRACTOR_START_BLOCK: "51041985"
# HEAD_EXTRACTOR_START_BLOCK: "32136447"
# HEAD_EXTRACTOR_START_BLOCK: "5735578"
HEAD_EXTRACTOR_START_BLOCK: "54395929"
INSERT_EXTRACTOR_JOB: "false"
ICON_NODE_SERVICE_MAX_BATCH_SIZE: 1
# Logging
LOG_LEVEL: "DEBUG"
LOG_FORMAT: "console"
# Icon node service
# ICON_NODE_SERVICE_URL: "https://ctz.solidwallet.io/api/v3" # Mainnet
# ICON_NODE_SERVICE_URL: "https://api.sejong.icon.community/api/v3" # Sejong
ICON_NODE_SERVICE_URL: "https://api.icon.community/api/v3"
# Kafka
KAFKA_BROKER_URL: "kafka:9092"
KAFKA_BLOCKS_TOPIC: "blocks"
KAFKA_PRODUCER_PARTITIONS: "1"
KAFKA_DEAD_MESSAGE_TOPIC: "icon-mainnet-blocks-v2-dead"
# Postgres
DB_DRIVER: "postgres"
DB_HOST: ${POSTGRES_HOST:-postgres}
DB_PORT: "5432"
DB_USER: ${POSTGRES_USER:-postgres}
DB_PASSWORD: ${POSTGRES_PASSWORD:-changeme}
DB_DBNAME: ${POSTGRES_DB:-postgres}
DB_SSL_MODE: "disable"
DB_TIMEZONE: "UTC"
services:
etl:
image: sudoblock/icon-extractor:${ICON_ETL_TAG:-latest}
restart: on-failure
depends_on:
- kafka
environment:
<<: *extractor-env
############
# Database #
############
postgres:
image: postgres
environment:
POSTGRES_USER: ${POSTGRES_USER:-postgres}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-changeme}
ports:
- "5432:5432"
#########
# Kafka #
#########
zookeeper:
image: confluentinc/cp-zookeeper:${CP_ZOOKEEPER_TAG:-latest}
hostname: zookeeper
environment:
zk_id: "1"
ZOOKEEPER_CLIENT_PORT: 2181
kafka:
image: confluentinc/cp-server:7.2.0
hostname: kafka
depends_on:
- zookeeper
ports:
- "29092:29092"
- "9092:9092"
environment:
KAFKA_BROKER_ID: 0
KAFKA_ZOOKEEPER_CONNECT: "zookeeper:2181"
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT
KAFKA_INTER_BROKER_LISTENER_NAME: PLAINTEXT
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:9092,PLAINTEXT_HOST://localhost:29092
KAFKA_BROKER_RACK: "r1"
KAFKA_TRANSACTION_STATE_LOG_REPLICATION_FACTOR: 1
KAFKA_TRANSACTION_STATE_LOG_MIN_ISR: 1
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
KAFKA_DELETE_TOPIC_ENABLE: "true"
KAFKA_AUTO_CREATE_TOPICS_ENABLE: "true"
KAFKA_SCHEMA_REGISTRY_URL: "schemaregistry:8081"
KAFKA_CONFLUENT_SCHEMA_REGISTRY_URL: "schemaregistry:8081"
KAFKA_JMX_PORT: 9991
KAFKA_METRIC_REPORTERS: io.confluent.metrics.reporter.ConfluentMetricsReporter
KAFKA_CONFLUENT_SUPPORT_CUSTOMER_ID: anonymous
KAFKA_CONFLUENT_METRICS_REPORTER_BOOTSTRAP_SERVERS: kafka:9092
KAFKA_CONFLUENT_METRICS_REPORTER_ZOOKEEPER_CONNECT: zookeeper:2181
KAFKA_CONFLUENT_METRICS_ENABLE: 'false'
KAFKA_CONFLUENT_SUPPORT_METRICS_ENABLE: 'false'
KAFKA_MESSAGE_MAX_BYTES: "67109632"
KAFKA_CONFLUENT_LICENSE_TOPIC_REPLICATION_FACTOR: 1
# schemaregistry:
# image: confluentinc/cp-schema-registry:${CP_SCHEMA_REGISTRY_TAG:-latest}
# hostname: schemaregistry
# depends_on:
# - zookeeper
# - kafka
# ports:
# - "8081:8081"
# environment:
# SCHEMA_REGISTRY_HOST_NAME: schemaregistry
# SCHEMA_REGISTRY_KAFKASTORE_BOOTSTRAP_SERVERS: 'PLAINTEXT://kafka:9092'
# SCHEMA_REGISTRY_KAFKASTORE_CONNECTION_URL: 'zookeeper:2181'
# SCHEMA_REGISTRY_ACCESS_CONTROL_ALLOW_ORIGIN: '*'
# SCHEMA_REGISTRY_ACCESS_CONTROL_ALLOW_METHODS: 'GET,POST,PUT,OPTIONS'
# SCHEMA_REGISTRY_LISTENERS: "http://0.0.0.0:8081"