We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The distributed table could be created with multiple sharding functions: rand(), cityHash64(traceID) - see https://clickhouse.tech/docs/en/sql-reference/functions/hash-functions/.
rand()
cityHash64(traceID)
The hash functions take an argument, we should consider using traceID to keep data from a single trace in the same location.
traceID
CREATE TABLE IF NOT EXISTS jaeger_spans AS jaeger_spans_local ENGINE = Distributed('{cluster}', default, jaeger_spans_local, cityHash64(traceID));
The text was updated successfully, but these errors were encountered:
@chhetripradeep would you like to take this on and run some tests on your deployment?
Sorry, something went wrong.
Sure.
No branches or pull requests
The distributed table could be created with multiple sharding functions:
rand()
,cityHash64(traceID)
- see https://clickhouse.tech/docs/en/sql-reference/functions/hash-functions/.The hash functions take an argument, we should consider using
traceID
to keep data from a single trace in the same location.The text was updated successfully, but these errors were encountered: