-
Notifications
You must be signed in to change notification settings - Fork 2.2k
[FLINK-36698][pipeline-connector][elasticsearch] Elasticsearch Pipeline Connector support index sharding #3723
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
Changes from all commits
a4f341d
37e1c54
abe4e6e
92f6efb
f407c99
b51f6c8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -164,6 +164,20 @@ Pipeline Connector Options | |
| <td>Long</td> | ||
| <td>The maximum size of a single record in bytes.</td> | ||
| </tr> | ||
| <tr> | ||
| <td>sharding.suffix.key</td> | ||
| <td>optional</td> | ||
| <td style="word-wrap: break-word;">(none)</td> | ||
| <td>Long</td> | ||
| <td>Sharding suffix key for each table, allow setting sharding suffix key for multiTables.Default sink table name is test_table${suffix_key}.Default sharding column is first partition column.Tables are separated by ';'.Table and column are separated by ':'.For example, we can set sharding.suffix.key by 'table1:col1;table2:col2'.</td> | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What about making the separator configurable with a default value of
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. May be '_' is better?
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Make sense. |
||
| </tr> | ||
| <tr> | ||
| <td>sharding.suffix.separator</td> | ||
| <td>optional</td> | ||
| <td style="word-wrap: break-word;">"_"</td> | ||
| <td>String</td> | ||
| <td>Separator for sharding suffix in table names, allow defining the separator between table name and sharding suffix. Default value is '_'. For example, if set to '-', the default table name would be test_table-${suffix}</td> | ||
| </tr> | ||
| </tbody> | ||
| </table> | ||
| </div> | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.