spring-cloud-task icon indicating copy to clipboard operation
spring-cloud-task copied to clipboard

Short lived microservices with Spring Batch

Results 49 spring-cloud-task issues
Sort by recently updated
recently updated
newest added

Is there any way I can use Sybase database type in spring cloud task ? I see in documentation it does not support sybase.

type: enhancement

Class `TaskExecution` contains some ambiguous code: ``` public long getExecutionId() { return executionId; } public Integer getExitCode() { return (exitCode == null) ? 0 : exitCode; } ``` Personally, I...

technical-debt
technical-debt-ready

We should provide a common Test Suite for: * JdbcTaskExecutionDaoTests * MapTaskExecutionDaoTests That way we can ensure the tests behave the same for the 2 implementation and reduce redundancies. As...

test-coverage-ready

- add new module `partitioned-batch-job-cloudfoundry` - add ci plan pointing to PWS - add docs

type: documentation
education-ready

My configuration: Spring Boot version: 2.7.3 Spring Cloud Dependencies version: 2021.0.3 Spring Cloud Task Core: 2.4.3 Spring Cloud Sleuth 3.1.3 I have spring component annotated with @Component something like this:...

Hi It would be really useful to be able to query tasks by external execution ID - ie get all task details for tasks that have an external execution id...

Hi I have a spring-cloud task application that is triggered as expected by a TaskLaunchRequest via spring-cloud-stream. The pod is dynamically created on kubernetes and, once the task has completed,...

Similarly to [Issue 861](https://github.com/spring-cloud/spring-cloud-task/issues/861), if you create a `TaskExecution` externally using the `TaskRepository.createTaskExecution(TaskExecution)` , where the app name of the `TaskExecution` is "applicationA". When the task is updated by the...

Despite [this](https://docs.spring.io/spring-cloud-task/docs/current/reference/html/#batch) and [this](https://dataflow.spring.io/docs/batch-developer-guides/batch/spring-batch/), the [outdated samples](https://github.com/spring-cloud/spring-cloud-dataflow-samples/tree/main/dataflow-website/batch-developer-guides/batch/batchsamples) and the newer [samples](https://github.com/spring-cloud/spring-cloud-task/tree/main/spring-cloud-task-samples/batch-job) (later one seems to pass green because for some reason SimpleTaskAutoConfiguration is configuring the beans after JobConfiguration injections), I...