Skip to content
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

chore(updater): bump pkg/dist/*.yml (2023-07-04) #33

Merged
merged 1 commit into from
Jul 4, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
64 changes: 64 additions & 0 deletions pkg/dist/integration_types.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,18 @@ clickhouse_kafka:
- data_format
- group_name
properties:
auto_offset_reset:
title: Action to take when there is no initial offset in offset store or the desired offset is out of range
type: string
default: earliest
enum:
- value: smallest
- value: earliest
- value: beginning
- value: largest
- value: latest
- value: end
example: latest
columns:
title: Table columns
type: array
Expand Down Expand Up @@ -59,19 +71,71 @@ clickhouse_kafka:
- value: RawBLOB
- value: AvroConfluent
example: JSONEachRow
date_time_input_format:
title: Method to read DateTime from text input formats
type: string
default: basic
enum:
- value: basic
- value: best_effort
- value: best_effort_us
example: best_effort
group_name:
title: Kafka consumers group
type: string
default: clickhouse
min_length: 1
max_length: 249
example: clickhouse
handle_error_mode:
title: How to handle errors for Kafka engine
type: string
default: default
enum:
- value: default
- value: stream
example: stream
max_block_size:
title: Number of row collected by poll(s) for flushing data from Kafka
type: integer
default: "0"
minimum: 0
maximum: 1e+09
example: "100000"
max_rows_per_message:
title: The maximum number of rows produced in one kafka message for row-based formats
type: integer
default: "1"
minimum: 1
maximum: 1e+09
example: "100000"
name:
title: Name of the table
type: string
min_length: 1
max_length: 40
example: events
num_consumers:
title: The number of consumers per table per replica
type: integer
default: "1"
minimum: 1
maximum: 10
example: "4"
poll_max_batch_size:
title: Maximum amount of messages to be polled in a single Kafka poll
type: integer
default: "0"
minimum: 0
maximum: 1e+09
example: "10000"
skip_broken_messages:
title: Skip at least this number of broken messages from Kafka topic per block
type: integer
default: "0"
minimum: 0
maximum: 1e+09
example: "10000"
topics:
title: Kafka topics
type: array
Expand Down