-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Closed
Labels
Description
Search before asking
- I had searched in the issues and found no similar issues.
What happened
I build seatunnel pacakge with latest dev branch to test new merged rest -api-feature .
After I run the job, when I call /hazelcast/rest/maps/finished-jobs/:state only 204 returned.
SeaTunnel Version
latest dev branch
SeaTunnel Config
env {
execution.parallelism = 1
job.mode = "BATCH"
}
source {
FakeSource {
result_table_name = "fake1"
row.num = 16
schema = {
fields {
name = "string"
age = "int"
created_time = "timestamp"
destroyed_time = "timestamp"
}
}
}
}
transform {
SQL {
source_table_name = "fake1"
result_table_name = "fake2"
query = "SELECT name, age, created_time, destroyed_time, CURRENT_DATE() today, DATEDIFF(created_time, destroyed_time, 'SECOND') duration FROM fake1 "
}
SQL {
source_table_name = "fake2"
result_table_name = "fake3"
query = "SELECT name, age, today, duration FROM fake2 "
}
}
sink {
Console {
source_table_name = "fake3"
}
}
Running Command
bin/seatunnel.sh -c config/demo.confError Exception
no exception
Zeta or Flink or Spark Version
Zeta
Java or Scala Version
No response
Screenshots
Are you willing to submit PR?
- Yes I am willing to submit a PR!
Code of Conduct
- I agree to follow this project's Code of Conduct
