Replies: 1 comment 1 reply
-
already solved |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
env {
job.mode = BATCH
}
source {
Jdbc{
password = "*"
driver = "com.mysql.cj.jdbc.Driver"
query = "SELECT id,uid,user_name,job_name,params,created_at,updated_at FROM lakeservice_task where created_at >= '"${system.biz.date}"'"
partition_column = "id"
user = "**"
}
}
sink {
console{
}
}
2. i want use dolphinscheduer varibles: ${system.biz.date}, but this param is not replaced when running.
3. are there any way to use dolphinscheduer varibles in seatunnel script?
Beta Was this translation helpful? Give feedback.
All reactions