clickhouse-destination: add format directive to configuration#828
Merged
OverOrion merged 2 commits intoaxoflow:mainfrom Oct 22, 2025
Merged
clickhouse-destination: add format directive to configuration#828OverOrion merged 2 commits intoaxoflow:mainfrom
format directive to configuration#828OverOrion merged 2 commits intoaxoflow:mainfrom
Conversation
ea7ed68 to
64a26c8
Compare
Contributor
This Pull Request introduces config grammar changesaxoflow/a66ef8b1c2e16b75ca98e6ab4fa386fc3517c27a -> bshifter/clickhouse-dest-json-format Details--- a/destination
+++ b/destination
clickhouse(
+ format(<string>)
)
|
MrAnno
previously approved these changes
Oct 17, 2025
5be77ee to
c412206
Compare
MrAnno
previously approved these changes
Oct 20, 2025
Contributor
MrAnno
left a comment
There was a problem hiding this comment.
Please write a news entry for the users.
Contributor
|
The CI is failing because std::optional is a C++17 feature. |
47085b0 to
9e9bec1
Compare
9e9bec1 to
577671a
Compare
MrAnno
approved these changes
Oct 20, 2025
This update allows clickhouse-destination to support multiple JSON structures for ClickHouse ingestion. In addition to the standard JSONEachRow format, a new JSONCompactEachRow format is now available. It produces more compact output, reducing size, though at the cost of human readability. Signed-off-by: shifter <[email protected]>
Signed-off-by: shifter <[email protected]>
577671a to
0907a8c
Compare
json-format directive to configurationformat directive to configuration
OverOrion
approved these changes
Oct 22, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This update allows
clickhouse-destinationto support multiple JSON structures for ClickHouse ingestion.JSONEachRowformat (default).JSONCompactEachRowformat, which is more compact but less human-readable.Error parsing within destination: invalid format value 'invalid-format', possible values: [JSONEachRow, JSONCompactEachRow].example:
JSONEachRow(each JSON object per line, more readable):JSONCompactEachRow(compact array-based row representation):