-
Notifications
You must be signed in to change notification settings - Fork 120
Fixing clickhouse-ontime datasource. #774
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Pull Request Test Coverage Report for Build 14472504053Details
💛 - Coveralls |
@@ -4,9 +4,10 @@ services: | |||
environment: | |||
- CLICKHOUSE_ALWAYS_RUN_INITDB_SCRIPTS=true | |||
volumes: | |||
- ./docker/clickhouse/load_ontime.sh:/docker-entrypoint-initdb.d/load_ontime.sh |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hm when .sh stop works in initdb.d?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
default
user restricted by 127.0.0.1
couple of months ago
let's add
environment CLICKHOUSE_SKIP_USER_SETUP=1 to docker-compose instead of change fast downloading ontime
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
downloading data parts instead of inserting could be faster, but i'm not sure
- /var/lib/clickhouse/ | ||
- /var/log/clickhouse-server/ | ||
- ./docker/clickhouse/init_schema_ontime.sql:/docker-entrypoint-initdb.d/init_schema.sql | ||
- ./docker/clickhouse/users.xml:/etc/clickhouse-server/users.d/users.xml |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe adding users.xml
is better solution
ok. let's merge it |
#763