liugddx commented on PR #3309:
URL:
https://github.com/apache/incubator-seatunnel/pull/3309#issuecomment-1304813097
```
env {
# You can set flink configuration here
execution.parallelism = 1
job.mode = "BATCH"
#execution.checkpoint.interval = 10000
#execution.checkpoint.data-uri = "hdfs://localhost:9000/checkpoint"
}
source {
# This is a example source plugin **only for test and demonstrate the
feature source plugin**
Jdbc {
url =
"jdbc:ots:https://p00spwbz7y1w.cn-shanghai.ots.aliyuncs.com/p00spwbz7y1w"
driver = "com.alicloud.openservices.tablestore.jdbc.OTSDriver"
user = "LTAI5tBdKHTVjytzPtMRdU5A"
password = "VoF1fjWSCDRJvoKA1ArlZq7Z9BxP9B"
query = "select * from table_test"
schema = {
fields {
pk_1 = "string"
pk_2 = "bigint"
pk_3 = "bytes"
pk_4 = "bigint"
attr_1 = "bigint"
}
}
}
# If you would like to get more information about how to configure
seatunnel and see full list of source plugins,
# please go to https://seatunnel.apache.org/docs/category/source-v2
}
transform {
# If you would like to get more information about how to configure
seatunnel and see full list of transform plugins,
# please go to https://seatunnel.apache.org/docs/category/transform
}
sink {
Console {
parallelism = 1
}
# If you would like to get more information about how to configure
seatunnel and see full list of sink plugins,
# please go to https://seatunnel.apache.org/docs/category/sink-v2
}
```
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]