Skip to content
Open
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions docs/docusaurus/sidebars.json
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,7 @@
"loading/Stream_Load_transaction_interface",
"loading/Flink_cdc_load",
"loading/Flink-connector-starrocks",
"loading/Flink_multi_table_transaction",
"loading/load_from_pulsar",
"loading/Load_to_Primary_Key_tables",
"loading/Etl_in_loading",
Expand Down
20 changes: 19 additions & 1 deletion docs/en/ecosystem_release/flink_connector.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ description: "Release notes and changelog for the StarRocks Connector for Apache

| Connector | Flink | StarRocks | Java | Scala |
|-----------|-------------------------------|---------------| ---- |-----------|
| 1.2.15 | 1.16,1.17,1.18,1.19,1.20 | 2.1 and later | 8 | 2.11,2.12 |
| 1.2.14 | 1.16,1.17,1.18,1.19,1.20 | 2.1 and later | 8 | 2.11,2.12 |
| 1.2.12 | 1.16,1.17,1.18,1.19,1.20 | 2.1 and later | 8 | 2.11,2.12 |
| 1.2.11 | 1.15,1.16,1.17,1.18,1.19,1.20 | 2.1 and later | 8 | 2.11,2.12 |
| 1.2.10 | 1.15,1.16,1.17,1.18,1.19 | 2.1 and later | 8 | 2.11,2.12 |

> **NOTICE**
>
Expand All @@ -42,6 +42,24 @@ description: "Release notes and changelog for the StarRocks Connector for Apache

### 1.2

#### 1.2.15

Release date: June 18, 2026

##### Features

- Added multi-table transaction Stream Load support. [#487](https://github.com/StarRocks/starrocks-connector-for-apache-flink/pull/487)

##### Improvements

- Merge Commit supports logging data quality error messages. [#484](https://github.com/StarRocks/starrocks-connector-for-apache-flink/pull/484)

##### BugFix

- Fix multi-table transaction concurrency: serialize per-table loads and align cross-table commits. [#491](https://github.com/StarRocks/starrocks-connector-for-apache-flink/pull/491)
- Fallback to FE cancel API when rollback fails for PREPARE-state lingering transactions. [#488](https://github.com/StarRocks/starrocks-connector-for-apache-flink/pull/488)
- Do not quote CURRENT_TIMESTAMP in the DEFAULT clause when building column statements. [#486](https://github.com/StarRocks/starrocks-connector-for-apache-flink/pull/486)

#### 1.2.14

Release date: February 11, 2026
Expand Down
8 changes: 4 additions & 4 deletions docs/en/loading/Flink-connector-starrocks.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ The Flink connector supports DataStream API, Table API & SQL, and Python API. It

| Connector | Flink | StarRocks | Java | Scala |
|-----------|-------------------------------|---------------| ---- |-----------|
| 1.2.15 | 1.16,1.17,1.18,1.19,1.20 | 2.1 and later | 8 | 2.11,2.12 |
| 1.2.14 | 1.16,1.17,1.18,1.19,1.20 | 2.1 and later | 8 | 2.11,2.12 |
| 1.2.12 | 1.16,1.17,1.18,1.19,1.20 | 2.1 and later | 8 | 2.11,2.12 |
| 1.2.11 | 1.15,1.16,1.17,1.18,1.19,1.20 | 2.1 and later | 8 | 2.11,2.12 |
| 1.2.10 | 1.15,1.16,1.17,1.18,1.19 | 2.1 and later | 8 | 2.11,2.12 |

## Obtain Flink connector

Expand Down Expand Up @@ -77,13 +77,13 @@ In your Maven project's `pom.xml` file, add the Flink connector as a dependency
sh build.sh <flink_version>
```

For example, if the Flink version in your environment is 1.15, you need to execute the following command:
For example, if the Flink version in your environment is 1.16, you need to execute the following command:

```bash
sh build.sh 1.15
sh build.sh 1.16
```

3. Go to the `target/` directory to find the Flink connector JAR file, such as `flink-connector-starrocks-1.2.7_flink-1.15-SNAPSHOT.jar`, generated upon compilation.
3. Go to the `target/` directory to find the Flink connector JAR file, such as `flink-connector-starrocks-1.2.7_flink-1.16-SNAPSHOT.jar`, generated upon compilation.

> **NOTE**
>
Expand Down
Loading
Loading