Spring Cloud Task allows a user to develop and run short lived microservices using Spring Cloud and run them locally, in the cloud, even on Spring Cloud Data Flow. Just add @EnableTask and run your app as a Spring Boot app (single application context).
Questions tagged [spring-cloud-task]
261 questions
0
votes
1 answer
Launching Spring cloud Task using Spring cloud deployer
I have a batch application, in Spring cloud task that is meant to be a short lived micro service. There are many such batch applications. Now, I can throw Spring Cloud deployer and its task launcher and with its help, we can start the Spring Cloud…

Nikhil Pareek
- 734
- 9
- 24
0
votes
1 answer
Spring Cloud Task: Get ExecutionId for Composed Task
I am curious is there any way to get executionID for Composed Task from within child task. I tried to use TaskExecutionListener in subtask, but it returns Id for that subtask, but not the "general one".

Mikhail Gordienko
- 119
- 2
- 10
0
votes
1 answer
Spring cloud starter task : Not able to work on Spring boot 2.x
I was trying to make spring boot batch application(2.0.0.RC1) work with Spring cloud starter task(2.0.0.M2).
Getting a range of errors while making Spring cloud starter task work with spring boot 2.x batch application.
I was able to run batch…

Subin Chalil
- 3,531
- 2
- 24
- 38
0
votes
0 answers
Spring Cloud Dataflow canceling task
I am curious is there any way to cancel launched task via REST API?
Looking at TaskOperations class (spring-cloud-dataflow-rest-client:1.3.0) I don't see suitable method (ex: cancel, stop).
Am I supposed to always wait until task is…

Mikhail Gordienko
- 119
- 2
- 10
0
votes
1 answer
How to perform clean ups on spring cloud task completion
I am writing a SCDF spi implementation for supporting stream and task application. As part of this we need to perform some clean up operations once the task finishes.
Could someone provide info on whether SCDF will be getting a callback on task…

Ankit Bansal
- 4,962
- 1
- 23
- 40
0
votes
1 answer
Spring Cloud Task - launch task from maven repository in docker container
I learn Spring Cloud Task and I write simple application that is divided into 3 services. First is a TaskApplication that have only main() and implements CommandLineRunner, second is a TaskIntakeApplication that receives request and send them to…

user
- 4,410
- 16
- 57
- 83
0
votes
1 answer
Running Spring Batch web application with Spring cloud data flow in embedded tomcat
Can we run a spring Batch web-based application with spring cloud data flow integrated?
Iam trying to integrate SCDF to an existing web based spring batch project.
Here is my pom.xml file

Jagadheeswaran Mohan
- 339
- 1
- 3
- 18
0
votes
1 answer
Spring cloud task default log not displaying
I am new to Spring Cloud Task. I am trying to setup the Hello World Sample application. It runs and everything seems fine as per the example here.
However i see below output. I see some slf4j warnings. However my understanding is spring boot should…

Sushil Behera
- 817
- 6
- 20
0
votes
1 answer
Spring cloud data flow commercial support
We are in process of migrating our jobs and streams from Spring XD to Spring cloud data flow on Kubernetes.
Is there any commercial support available for Spring cloud data flow? Any links are helpful.

sadineni
- 3
- 2
0
votes
0 answers
On next execution, CTR proceeds from previously failed step
I have the composed task myFailedTask with 2 steps and one of them is configured to fail all the time :
On first run, the job runs with run.id equals 1 and and mf1 is reported as…

Alexander.Furer
- 1,817
- 1
- 16
- 24
0
votes
0 answers
Spring cloud composed task event
I'm after the composed task execution listener, that publishes events to middle-ware, basically, the same behavior as documented for custom task here
Is there any way to enable this feature for composed tasks run via SCDF REST API ?
Thanks

Alexander.Furer
- 1,817
- 1
- 16
- 24
0
votes
1 answer
Failed steps are not recorded in DB
I'm simulating the error handling behavior of composed task, the failedTask composed task definition looks like this :
The sampleTask class runner :
public class…

Alexander.Furer
- 1,817
- 1
- 16
- 24
0
votes
1 answer
Spring-batch to spring task in Spring cloud data flow
I'm new to spring-batch and spring cloud data flow.
I modified the sample quickstart project for the spring-batch and it now writes on a local MSSQL database: it works fine when I run it using java -jar.
I now tried to deploy it to a local instance…

Massimo
- 692
- 2
- 11
- 29
0
votes
1 answer
Launching composed task built by DSL from stream application
Every example I've seen (task-launcher sink and triggertask source ) shows how to launch the task defined by uri attribute.
My tasks definitions look like this :
sampleTask
sampleTask-t1 timestamp …

Alexander.Furer
- 1,817
- 1
- 16
- 24
0
votes
1 answer
Spring clould data flow and spring clould task batch jobs
We have been using spring batch for below use cases
Read data from file, process and write to target database (batch
kicks off when file arrives)
Read data from remote database, process and write to target database (runs on scheduled interval,…

Nitty
- 41
- 1
- 5