-
Notifications
You must be signed in to change notification settings - Fork 1k
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
[iceberg][doc] add docs about iceberg migration #5097
[iceberg][doc] add docs about iceberg migration #5097
Conversation
docs/content/flink/procedures.md
Outdated
</tr> | ||
<tr> | ||
<td>migrate_iceberg_table</td> | ||
<td> |
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.
It would better to move the part to place after migrate_table
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.
Good idea! I'll move this item after migrate_table
.
docs/content/flink/procedures.md
Outdated
<td> | ||
To migrate iceberg table to paimon. Arguments: | ||
<li>source_table: string type, is used to specify the source iceberg table to migrate, it's required.</li> | ||
<li>iceberg_options: string type, is used to specify the configuration of migration, multiple configuration items are separated by commas. it's required.</li> |
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.
Doc conflicts with hint definition, is iceberg_options
required or optional?
@ProcedureHint(
argument = {
@ArgumentHint(name = "source_table", type = @DataTypeHint("STRING")),
@ArgumentHint(
name = "iceberg_options",
type = @DataTypeHint("STRING"),
isOptional = true),
@ArgumentHint(name = "options", type = @DataTypeHint("STRING"), isOptional = true),
@ArgumentHint(
name = "parallelism",
type = @DataTypeHint("Integer"),
isOptional = true)
})
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.
Thanks for the correction! iceberg_options
is required. There is a bug in the definition, I'll fix it.
8ad3ddc
to
55a501d
Compare
+1 |
Purpose
Linked issue: close #xxx
add the documents about iceberg migration
Tests
API and Format
Documentation