-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
doc: refine Kafka source connector configuration parameters #21377
Conversation
@gccgdb1234 Wade, my review is done. |
5. `fetch.max.rows` : 检索数据库时最大检索条数。 默认为 100。 | ||
6. `out.format`: 数据格式。取值 line 或 json。line 表示 InfluxDB Line 协议格式, json 表示 OpenTSDB JSON 格式。默认为 line。 | ||
6. `out.format`: 数据格式。取值为 `line`, 表示 InfluxDB Line 协议格式 |
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.
代码中没有这个参数
@@ -435,10 +435,12 @@ confluent local services connect connector unload TDengineSourceConnector | |||
|
|||
1. `connection.database`: 源数据库名称,无缺省值。 | |||
2. `topic.prefix`: 数据导入 kafka 后 topic 名称前缀。 使用 `topic.prefix` + `connection.database` 名称作为完整 topic 名。默认为空字符串 ""。 |
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.
和topic.per.stable的说明保持一致,建议这里也修改为:
<topic.prefix>
+ <connection.database>
4. `poll.interval.ms`: The time interval for checking newly created tables or removed tables, default value is 1000. | ||
5. `fetch.max.rows`: The maximum number of rows retrieved when retrieving the database, default is 100. | ||
6. `out.format`: The data format. The value could be `line`, which represents the InfluxDB Line protocol format. | ||
7. 7. `query.interval.ms`: The time range of reading data from TDengine each time, its unit is millisecond. It should be adjusted according to the data flow in rate, the default value is 1000. |
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.
这里多了一个编号
3. `timestamp.initial`: Data synchronization start time. The format is 'yyyy-MM-dd HH:mm:ss'. If it is not set, the data importing to Kafka will be started from the first/oldest row in the database. | ||
4. `poll.interval.ms`: The time interval for checking newly created tables or removed tables, default value is 1000. | ||
5. `fetch.max.rows`: The maximum number of rows retrieved when retrieving the database, default is 100. | ||
6. `out.format`: The data format. The value could be `line`, which represents the InfluxDB Line protocol format. |
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.
代码中没有这个参数
No description provided.