TeAmo
TeAmo
Can you give more details about Oracle Cloumn Type ? If you use like Integer, in oracle it will turn to NUMBER(38), in old version SeaTunnel, it will be turn...
> You can define the source like this: > > source { Mysql-CDC { result_table_name = "tb1" base-url = "jdbc:mysql://127.0.0.1:3306/seatunnel" username = "root" password = "xxx" table-names = ["seatunnel.role"] }...
> This is a demo maybe can help you. https://github.com/apache/seatunnel/blob/790150a54b559148657a599fa16bf00539a5ab74/seatunnel-e2e/seatunnel-connector-v2-e2e/connector-jdbc-e2e/connector-jdbc-e2e-part-1/src/test/resources/jdbc_mysql_source_and_sink_with_multiple_tables.conf > > In this way, that's meaning we read two table in one source, then we can write data into...
> Could you add test case like > > https://github.com/apache/seatunnel/blob/4d9287fce4943a30e31e5dbda013c1cee17034ab/seatunnel-connectors-v2/connector-elasticsearch/src/test/java/org/apache/seatunnel/connectors/seatunnel/elasticsearch/ElasticsearchFactoryTest.java#L26 > > ? thx, test has been added.
I found that there is a lock competition in `org.apache.seatunnel.engine.server.task.flow.SourceFlowLifeCycle#triggerBarrier`. When the savepoint barrier run in the `synchronized (collector.getCheckpointLock())`, it will get the checkpoint lock utill all record has been...
> Can you give a detailed log of the zeta engine? It seems like not the lock competition, but the `org.apache.seatunnel.connectors.seatunnel.jdbc.internal.JdbcInputFormat#resultSet.next()` always be `true`. So the lock will not give...
> > > Can you give a detailed log of the zeta engine? > > > > > > It seems like not the lock competition, but the `org.apache.seatunnel.connectors.seatunnel.jdbc.internal.JdbcInputFormat#resultSet.next()` always...
Should it be setten a limitation in case a giant split holding the checkpoint lock for a long time ? @hailin0 @Hisoka-X
> The minimum granularity of savepoint is split. If you perform a savepoint in the middle of reading a split, the status file obtained may also be wrong. So there...
老哥有考虑过转成 Markdown 往 SeaTunnel-Web 里提 PR 吗?