Implement indexing into Apache Druid #1

Closed
m wants to merge 263 commits from druid into master
4 changed files with 14 additions and 4 deletions
Showing only changes of commit b3dce50ce4 - Show all commits

View File

@ -1,3 +0,0 @@
THRESHOLD_LISTENER_PORT=13867
THRESHOLD_RELAY_PORT=13868
THRESHOLD_API_PORT=13869

1
.gitignore vendored
View File

@ -13,3 +13,4 @@ conf/dist.sh
conf/blacklist.json
env/
.idea/
.env

View File

@ -11,7 +11,7 @@ services:
- "${THRESHOLD_RELAY_PORT}:${THRESHOLD_RELAY_PORT}"
- "${THRESHOLD_API_PORT}:${THRESHOLD_API_PORT}"
env_file:
- .env
- stack.env
# for development
extra_hosts:
- "host.docker.internal:host-gateway"

12
stack.env Normal file
View File

@ -0,0 +1,12 @@
THRESHOLD_LISTENER_HOST=0.0.0.0
THRESHOLD_LISTENER_PORT=13867
THRESHOLD_LISTENER_SSL=1
THRESHOLD_RELAY_ENABLED=1
THRESHOLD_RELAY_HOST=0.0.0.0
THRESHOLD_RELAY_PORT=13868
THRESHOLD_RELAY_SSL=1
THRESHOLD_API_ENABLED=1
THRESHOLD_API_HOST=0.0.0.0
THRESHOLD_API_PORT=13869