Skip to content

Commit cc561c0

Browse files
authored
[docs] minor updates to Iceberg sink reference (#4018)
1 parent a390c98 commit cc561c0

1 file changed

Lines changed: 15 additions & 15 deletions

File tree

  • docs/content/docs/connectors/pipeline-connectors

docs/content/docs/connectors/pipeline-connectors/iceberg.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ under the License.
2626

2727
# Iceberg Pipeline Connector
2828

29-
The Iceberg Pipeline Connector functions as a *Data Sink* for data pipelines, enabling data writes to Apache Iceberg tables[Iceberg](https://iceberg.apache.org). This document explains how to configure the connector.
29+
The Iceberg Pipeline Connector functions as a *Data Sink* for data pipelines, enabling data writes to [Apache Iceberg](https://iceberg.apache.org) tables. This document explains how to configure the connector.
3030

3131
## Key Capabilities
32-
* Automatic Table Creation
33-
Creates Iceberg tables dynamically when they do not exist
34-
* Schema Synchronization
35-
Propagates schema changes (e.g., column additions) from source systems to Iceberg
36-
* Data Replication
37-
Supports both batch and streaming data synchronization
32+
* **Automatic Table Creation:**
33+
creates Iceberg tables dynamically when they do not exist
34+
* **Schema Synchronization:**
35+
propagates schema changes (e.g., column additions) from source systems to Iceberg
36+
* **Data Replication:**
37+
supports both batch and streaming data synchronization
3838

3939
How to create Pipeline
4040
----------------
@@ -82,7 +82,7 @@ Pipeline Connector Options
8282
<td>required</td>
8383
<td style="word-wrap: break-word;">(none)</td>
8484
<td>String</td>
85-
<td>Specify what connector to use, here should be <code>'iceberg'</code>.</td>
85+
<td>Specify what connector to use, here should be <code>iceberg</code>.</td>
8686
</tr>
8787
<tr>
8888
<td>name</td>
@@ -96,7 +96,7 @@ Pipeline Connector Options
9696
<td>required</td>
9797
<td style="word-wrap: break-word;">(none)</td>
9898
<td>String</td>
99-
<td>Metastore of iceberg catalog, supports hadoop and hive.</td>
99+
<td>Metastore of Iceberg catalog, supports <code>hadoop</code> and <code>hive</code>.</td>
100100
</tr>
101101
<tr>
102102
<td>catalog.properties.warehouse</td>
@@ -117,21 +117,21 @@ Pipeline Connector Options
117117
<td>optional</td>
118118
<td style="word-wrap: break-word;">(none)</td>
119119
<td>String</td>
120-
<td>Partition keys for each partitioned table, allow setting multiple primary keys for multiTables. Each table are separated by ';', and each partition key are separated by ','. For example, we can set partition.key of two tables by 'testdb.table1:id1,id2;testdb.table2:name'.</td>
120+
<td>Partition keys for each partitioned table. Allow setting multiple primary keys for multiTables. Tables are separated by ';', and partition keys are separated by ','. For example, we can set <code>partition.key</code> of two tables using 'testdb.table1:id1,id2;testdb.table2:name'.</td>
121121
</tr>
122122
<tr>
123123
<td>catalog.properties.*</td>
124124
<td>optional</td>
125125
<td style="word-wrap: break-word;">(none)</td>
126126
<td>String</td>
127-
<td>Pass options of Iceberg catalog to pipeline,See <a href="https://iceberg.apache.org/docs/nightly/flink-configuration/#catalog-configuration">Iceberg catalog options</a>. </td>
127+
<td>Pass Iceberg catalog options to the pipeline,See <a href="https://iceberg.apache.org/docs/nightly/flink-configuration/#catalog-configuration">Iceberg catalog options</a>. </td>
128128
</tr>
129129
<tr>
130130
<td>table.properties.*</td>
131131
<td>optional</td>
132132
<td style="word-wrap: break-word;">(none)</td>
133133
<td>String</td>
134-
<td>Pass options of Iceberg table to pipeline,See <a href="https://iceberg.apache.org/docs/nightly/configuration/#write-properties">Iceberg table options</a>. </td>
134+
<td>Pass Iceberg table options to the pipeline,See <a href="https://iceberg.apache.org/docs/nightly/configuration/#write-properties">Iceberg table options</a>. </td>
135135
</tr>
136136
</tbody>
137137
</table>
@@ -140,9 +140,9 @@ Pipeline Connector Options
140140
Usage Notes
141141
--------
142142
143-
* Only support Iceberg primary key table, so the source table must have primary keys.
143+
* The source table must have a primary key. Tables with no primary key are not supported.
144144
145-
* Not support exactly-once. The connector uses at-least-once + primary key table for idempotent writing.
145+
* Exactly-once semantics are not supported. The connector uses at-least-once + the table's primary key for idempotent writing.
146146
147147
Data Type Mapping
148148
----------------
@@ -225,4 +225,4 @@ Data Type Mapping
225225
</table>
226226
</div>
227227
228-
{{< top >}}
228+
{{< top >}}

0 commit comments

Comments
 (0)