Sabari
Sabari

Reputation: 157

Spring Cloud Data Flow UI

We have a Spring Batch Application that is triggered by a Task Command Line Runner that is periodically triggered. We are looking for a UI to view the Job Execution status, can we use the Spring Cloud Data Flow UI dependency and get the UI view capability of these Job Executions?

Upvotes: 0

Views: 660

Answers (1)

Sabby Anandan
Sabby Anandan

Reputation: 5651

You cannot just use the SCDF GUI outside on your own without SCDF — they are tightly coupled.

When Task/batch-job are launched from SCDF, the task/job executions are automatically tracked in the common datasource; likewise, the SCDF GUI will show task and batch-job details automatically, as well [see task executions / job executions].

Whether using a scheduler or manually launching the jobs, as far as the launch from both approaches goes through SCDF, everything should just work.

Upvotes: 1

Related Questions