Re: [PR] [FLINK-34944] Use Incremental Source Framework in Flink CDC OceanBase Source Connector [flink-cdc]

2024-07-21 Thread via GitHub


github-actions[bot] commented on PR #3211:
URL: https://github.com/apache/flink-cdc/pull/3211#issuecomment-2241824995

   This pull request has been automatically marked as stale because it has not 
had recent activity for 60 days. It will be closed in 30 days if no further 
activity occurs.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@flink.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [FLINK-34944] Use Incremental Source Framework in Flink CDC OceanBase Source Connector [flink-cdc]

2024-05-20 Thread via GitHub


whhe commented on PR #3211:
URL: https://github.com/apache/flink-cdc/pull/3211#issuecomment-2121749049

   > hello,When can this feature be merged into version 3.2?
   
   I will add test cases for this PR in the next two days, and after that we 
can ask the committers to review it.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@flink.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [FLINK-34944] Use Incremental Source Framework in Flink CDC OceanBase Source Connector [flink-cdc]

2024-05-20 Thread via GitHub


xiaotouming111 commented on PR #3211:
URL: https://github.com/apache/flink-cdc/pull/3211#issuecomment-2120074050

   hello,When can this feature be merged into version 3.2?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@flink.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [FLINK-34944] Use Incremental Source Framework in Flink CDC OceanBase Source Connector [flink-cdc]

2024-04-22 Thread via GitHub


whhe commented on code in PR #3211:
URL: https://github.com/apache/flink-cdc/pull/3211#discussion_r1575680958


##
docs/content.zh/docs/connectors/legacy-flink-cdc-sources/oceanbase-cdc.md:
##
@@ -28,52 +28,106 @@ under the License.
 
 OceanBase CDC 连接器允许从 OceanBase 读取快照数据和增量数据。本文介绍了如何设置 OceanBase CDC 连接器以对 
OceanBase 进行 SQL 查询。
 
-## 依赖
 
-为了使用 OceanBase CDC 连接器,您必须提供相关的依赖信息。以下依赖信息适用于使用自动构建工具(如 Maven 或 SBT)构建的项目和带有 
SQL JAR 包的 SQL 客户端。
-为了使用 OceanBase CDC 连接器,您必须提供相关的依赖信息。以下依赖信息适用于使用自动构建工具(如 Maven 或 SBT)构建的项目和带有 
SQL JAR 包的 SQL 客户端。
+### OceanBase CDC 方案
 
-```xml
-
-   org.apache.flink
-   flink-connector-oceanbase-cdc
-   
-   3.1-SNAPSHOT
-
+名词解释:
 
-```
+- *OceanBase CE*: OceanBase 社区版。OceanBase 的开源版本,兼容 MySQL 
https://github.com/oceanbase/oceanbase 。
+- *OceanBase EE*: OceanBase 企业版。OceanBase 的商业版本,支持 MySQL 和 Oracle 两种兼容模式 
https://www.oceanbase.com 。
+- *OceanBase Cloud*: OceanBase 云数据库 https://www.oceanbase.com/product/cloud 。
+- *Log Proxy CE*: OceanBase 日志代理服务社区版。单独使用时支持 CDC 模式,是一个获取 OceanBase 
社区版事务日志(commit log)的代理服务 https://github.com/oceanbase/oblogproxy 。
+- *Log Proxy EE*: OceanBase 日志代理服务企业版。单独使用时支持 CDC 模式,是一个获取 OceanBase 
企业版事务日志(commit log)的代理服务,目前仅在 OceanBase Cloud 上提供有限的支持, 详情请咨询相关技术支持。
+- *Binlog Service CE*: OceanBase Binlog 服务社区版。OceanBase 社区版的一个兼容 MySQL 
复制协议的解决方案,详情参考 Log Proxy CE Binlog 模式的文档。
+- *Binlog Service EE*: OceanBase Binlog 服务企业版。OceanBase 企业版 MySQL 模式的一个兼容 
MySQL 
复制协议的解决方案,仅可在阿里云使用,详情见[操作指南](https://www.alibabacloud.com/help/zh/apsaradb-for-oceanbase/latest/binlog-overview)。
+- *MySQL Driver*: `mysql-connector-java`,可用于 OceanBase 社区版和 OceanBase 企业版 
MySQL 模式。
+- *OceanBase Driver*: OceanBase JDBC 驱动,支持所有版本的 MySQL 和 Oracle 兼容模式 
https://github.com/oceanbase/obconnector-j 。
 
-如果您是要连接企业版的 OceanBase,您可能需要使用 OceanBase 官方的 JDBC 驱动,这时需要引入如下依赖。
+OceanBase CDC 源端读取方案:
 
-```xml
-
-   com.oceanbase
-   oceanbase-client
-   2.4.2
-
-```
+
+
+
+
+数据库类型
+支持的驱动
+CDC 连接器
+其他用到的组件
+
+
+
+
+OceanBase CE
+
+MySQL Driver: 5.1.47 (内置), 8.0.x 

Review Comment:
   Sure, thanks for the reminder.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@flink.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [FLINK-34944] Use Incremental Source Framework in Flink CDC OceanBase Source Connector [flink-cdc]

2024-04-22 Thread via GitHub


yuxiqian commented on code in PR #3211:
URL: https://github.com/apache/flink-cdc/pull/3211#discussion_r1575668027


##
docs/content.zh/docs/connectors/legacy-flink-cdc-sources/oceanbase-cdc.md:
##
@@ -28,52 +28,106 @@ under the License.
 
 OceanBase CDC 连接器允许从 OceanBase 读取快照数据和增量数据。本文介绍了如何设置 OceanBase CDC 连接器以对 
OceanBase 进行 SQL 查询。
 
-## 依赖
 
-为了使用 OceanBase CDC 连接器,您必须提供相关的依赖信息。以下依赖信息适用于使用自动构建工具(如 Maven 或 SBT)构建的项目和带有 
SQL JAR 包的 SQL 客户端。
-为了使用 OceanBase CDC 连接器,您必须提供相关的依赖信息。以下依赖信息适用于使用自动构建工具(如 Maven 或 SBT)构建的项目和带有 
SQL JAR 包的 SQL 客户端。
+### OceanBase CDC 方案
 
-```xml
-
-   org.apache.flink
-   flink-connector-oceanbase-cdc
-   
-   3.1-SNAPSHOT
-
+名词解释:
 
-```
+- *OceanBase CE*: OceanBase 社区版。OceanBase 的开源版本,兼容 MySQL 
https://github.com/oceanbase/oceanbase 。
+- *OceanBase EE*: OceanBase 企业版。OceanBase 的商业版本,支持 MySQL 和 Oracle 两种兼容模式 
https://www.oceanbase.com 。
+- *OceanBase Cloud*: OceanBase 云数据库 https://www.oceanbase.com/product/cloud 。
+- *Log Proxy CE*: OceanBase 日志代理服务社区版。单独使用时支持 CDC 模式,是一个获取 OceanBase 
社区版事务日志(commit log)的代理服务 https://github.com/oceanbase/oblogproxy 。
+- *Log Proxy EE*: OceanBase 日志代理服务企业版。单独使用时支持 CDC 模式,是一个获取 OceanBase 
企业版事务日志(commit log)的代理服务,目前仅在 OceanBase Cloud 上提供有限的支持, 详情请咨询相关技术支持。
+- *Binlog Service CE*: OceanBase Binlog 服务社区版。OceanBase 社区版的一个兼容 MySQL 
复制协议的解决方案,详情参考 Log Proxy CE Binlog 模式的文档。
+- *Binlog Service EE*: OceanBase Binlog 服务企业版。OceanBase 企业版 MySQL 模式的一个兼容 
MySQL 
复制协议的解决方案,仅可在阿里云使用,详情见[操作指南](https://www.alibabacloud.com/help/zh/apsaradb-for-oceanbase/latest/binlog-overview)。
+- *MySQL Driver*: `mysql-connector-java`,可用于 OceanBase 社区版和 OceanBase 企业版 
MySQL 模式。
+- *OceanBase Driver*: OceanBase JDBC 驱动,支持所有版本的 MySQL 和 Oracle 兼容模式 
https://github.com/oceanbase/obconnector-j 。
 
-如果您是要连接企业版的 OceanBase,您可能需要使用 OceanBase 官方的 JDBC 驱动,这时需要引入如下依赖。
+OceanBase CDC 源端读取方案:
 
-```xml
-
-   com.oceanbase
-   oceanbase-client
-   2.4.2
-
-```
+
+
+
+
+数据库类型
+支持的驱动
+CDC 连接器
+其他用到的组件
+
+
+
+
+OceanBase CE
+
+MySQL Driver: 5.1.47 (内置), 8.0.x 

Review Comment:
   Hi @whhe, As requested by ASF, PR #3212 has excluded `mysql-connector-java` 
bundle in released jar package due to incompatible OSS licenses. Could you 
please help fixing this in this PR?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@flink.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [FLINK-34944] Use Incremental Source Framework in Flink CDC OceanBase Source Connector [flink-cdc]

2024-04-22 Thread via GitHub


yuxiqian commented on code in PR #3211:
URL: https://github.com/apache/flink-cdc/pull/3211#discussion_r1575668027


##
docs/content.zh/docs/connectors/legacy-flink-cdc-sources/oceanbase-cdc.md:
##
@@ -28,52 +28,106 @@ under the License.
 
 OceanBase CDC 连接器允许从 OceanBase 读取快照数据和增量数据。本文介绍了如何设置 OceanBase CDC 连接器以对 
OceanBase 进行 SQL 查询。
 
-## 依赖
 
-为了使用 OceanBase CDC 连接器,您必须提供相关的依赖信息。以下依赖信息适用于使用自动构建工具(如 Maven 或 SBT)构建的项目和带有 
SQL JAR 包的 SQL 客户端。
-为了使用 OceanBase CDC 连接器,您必须提供相关的依赖信息。以下依赖信息适用于使用自动构建工具(如 Maven 或 SBT)构建的项目和带有 
SQL JAR 包的 SQL 客户端。
+### OceanBase CDC 方案
 
-```xml
-
-   org.apache.flink
-   flink-connector-oceanbase-cdc
-   
-   3.1-SNAPSHOT
-
+名词解释:
 
-```
+- *OceanBase CE*: OceanBase 社区版。OceanBase 的开源版本,兼容 MySQL 
https://github.com/oceanbase/oceanbase 。
+- *OceanBase EE*: OceanBase 企业版。OceanBase 的商业版本,支持 MySQL 和 Oracle 两种兼容模式 
https://www.oceanbase.com 。
+- *OceanBase Cloud*: OceanBase 云数据库 https://www.oceanbase.com/product/cloud 。
+- *Log Proxy CE*: OceanBase 日志代理服务社区版。单独使用时支持 CDC 模式,是一个获取 OceanBase 
社区版事务日志(commit log)的代理服务 https://github.com/oceanbase/oblogproxy 。
+- *Log Proxy EE*: OceanBase 日志代理服务企业版。单独使用时支持 CDC 模式,是一个获取 OceanBase 
企业版事务日志(commit log)的代理服务,目前仅在 OceanBase Cloud 上提供有限的支持, 详情请咨询相关技术支持。
+- *Binlog Service CE*: OceanBase Binlog 服务社区版。OceanBase 社区版的一个兼容 MySQL 
复制协议的解决方案,详情参考 Log Proxy CE Binlog 模式的文档。
+- *Binlog Service EE*: OceanBase Binlog 服务企业版。OceanBase 企业版 MySQL 模式的一个兼容 
MySQL 
复制协议的解决方案,仅可在阿里云使用,详情见[操作指南](https://www.alibabacloud.com/help/zh/apsaradb-for-oceanbase/latest/binlog-overview)。
+- *MySQL Driver*: `mysql-connector-java`,可用于 OceanBase 社区版和 OceanBase 企业版 
MySQL 模式。
+- *OceanBase Driver*: OceanBase JDBC 驱动,支持所有版本的 MySQL 和 Oracle 兼容模式 
https://github.com/oceanbase/obconnector-j 。
 
-如果您是要连接企业版的 OceanBase,您可能需要使用 OceanBase 官方的 JDBC 驱动,这时需要引入如下依赖。
+OceanBase CDC 源端读取方案:
 
-```xml
-
-   com.oceanbase
-   oceanbase-client
-   2.4.2
-
-```
+
+
+
+
+数据库类型
+支持的驱动
+CDC 连接器
+其他用到的组件
+
+
+
+
+OceanBase CE
+
+MySQL Driver: 5.1.47 (内置), 8.0.x 

Review Comment:
   Hi @whhe, As requested by ASF, PR #3212 has excluded `mysql-connector-java` 
bundle in released jar package due to incompatible OSS licenses. Could you 
please help applying it in this PR?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@flink.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [FLINK-34944] Use Incremental Source Framework in Flink CDC OceanBase Source Connector [flink-cdc]

2024-04-22 Thread via GitHub


yuxiqian commented on code in PR #3211:
URL: https://github.com/apache/flink-cdc/pull/3211#discussion_r1575668027


##
docs/content.zh/docs/connectors/legacy-flink-cdc-sources/oceanbase-cdc.md:
##
@@ -28,52 +28,106 @@ under the License.
 
 OceanBase CDC 连接器允许从 OceanBase 读取快照数据和增量数据。本文介绍了如何设置 OceanBase CDC 连接器以对 
OceanBase 进行 SQL 查询。
 
-## 依赖
 
-为了使用 OceanBase CDC 连接器,您必须提供相关的依赖信息。以下依赖信息适用于使用自动构建工具(如 Maven 或 SBT)构建的项目和带有 
SQL JAR 包的 SQL 客户端。
-为了使用 OceanBase CDC 连接器,您必须提供相关的依赖信息。以下依赖信息适用于使用自动构建工具(如 Maven 或 SBT)构建的项目和带有 
SQL JAR 包的 SQL 客户端。
+### OceanBase CDC 方案
 
-```xml
-
-   org.apache.flink
-   flink-connector-oceanbase-cdc
-   
-   3.1-SNAPSHOT
-
+名词解释:
 
-```
+- *OceanBase CE*: OceanBase 社区版。OceanBase 的开源版本,兼容 MySQL 
https://github.com/oceanbase/oceanbase 。
+- *OceanBase EE*: OceanBase 企业版。OceanBase 的商业版本,支持 MySQL 和 Oracle 两种兼容模式 
https://www.oceanbase.com 。
+- *OceanBase Cloud*: OceanBase 云数据库 https://www.oceanbase.com/product/cloud 。
+- *Log Proxy CE*: OceanBase 日志代理服务社区版。单独使用时支持 CDC 模式,是一个获取 OceanBase 
社区版事务日志(commit log)的代理服务 https://github.com/oceanbase/oblogproxy 。
+- *Log Proxy EE*: OceanBase 日志代理服务企业版。单独使用时支持 CDC 模式,是一个获取 OceanBase 
企业版事务日志(commit log)的代理服务,目前仅在 OceanBase Cloud 上提供有限的支持, 详情请咨询相关技术支持。
+- *Binlog Service CE*: OceanBase Binlog 服务社区版。OceanBase 社区版的一个兼容 MySQL 
复制协议的解决方案,详情参考 Log Proxy CE Binlog 模式的文档。
+- *Binlog Service EE*: OceanBase Binlog 服务企业版。OceanBase 企业版 MySQL 模式的一个兼容 
MySQL 
复制协议的解决方案,仅可在阿里云使用,详情见[操作指南](https://www.alibabacloud.com/help/zh/apsaradb-for-oceanbase/latest/binlog-overview)。
+- *MySQL Driver*: `mysql-connector-java`,可用于 OceanBase 社区版和 OceanBase 企业版 
MySQL 模式。
+- *OceanBase Driver*: OceanBase JDBC 驱动,支持所有版本的 MySQL 和 Oracle 兼容模式 
https://github.com/oceanbase/obconnector-j 。
 
-如果您是要连接企业版的 OceanBase,您可能需要使用 OceanBase 官方的 JDBC 驱动,这时需要引入如下依赖。
+OceanBase CDC 源端读取方案:
 
-```xml
-
-   com.oceanbase
-   oceanbase-client
-   2.4.2
-
-```
+
+
+
+
+数据库类型
+支持的驱动
+CDC 连接器
+其他用到的组件
+
+
+
+
+OceanBase CE
+
+MySQL Driver: 5.1.47 (内置), 8.0.x 

Review Comment:
   Hi @whhe, As requested by ASF, PR #3212 has excluded `mysql-connector-java` 
bundle in released jar package due to incompatible OSS licenses. Could you 
please help checking it in this PR?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@flink.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] [FLINK-34944] Use Incremental Source Framework in Flink CDC OceanBase Source Connector [flink-cdc]

2024-04-08 Thread via GitHub


whhe opened a new pull request, #3211:
URL: https://github.com/apache/flink-cdc/pull/3211

   (no comment)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@flink.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org