spring-cloud-task
spring-cloud-task copied to clipboard
Short lived microservices with Spring Batch
``` 14:29:19.343 [main] ERROR org.springframework.boot.SpringApplication - Application startup failed java.lang.IllegalArgumentException: Invalid argument syntax: --sun.cpu.isalist= at org.springframework.core.env.SimpleCommandLineArgsParser.parse(SimpleCommandLineArgsParser.java:75) at org.springframework.core.env.SimpleCommandLinePropertySource.(SimpleCommandLinePropertySource.java:89) at org.springframework.boot.DefaultApplicationArguments$Source.(DefaultApplicationArguments.java:76) at org.springframework.boot.DefaultApplicationArguments.(DefaultApplicationArguments.java:42) at org.springframework.boot.SpringApplication.run(SpringApplication.java:315) at org.springframework.boot.SpringApplication.run(SpringApplication.java:1245) at org.springframework.boot.SpringApplication.run(SpringApplication.java:1233) at io.spring.PartitionedBatchJobApplication.main(PartitionedBatchJobApplication.java:14)...
Hi, I am using sql-server as my DB and using pre-defined schema as defined in https://github.com/spring-cloud/spring-cloud-task/blob/main/spring-cloud-task-core/src/main/resources/org/springframework/cloud/task/schema-sqlserver.sql I think the query for TASK_SEQ is not correct, as I am not seeing...
For example `CREATE SEQUENCE TASK_SEQ START WITH 0 MINVALUE 0 MAXVALUE 9223372036854775807 ORDER NOCYCLE;`
### Status quo The tables `TASK_EXECUTION_PARAMS` and `TASK_TASK_BATCH` currently do not have primary keys. For a single node MySQL deployment, this does not cause any issue. For a setup of...
When running the native-image from the spring-native sample `cloud-task` on the `sb-3.0.x` branch, i get the following exception: ``` org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'taskRepositoryInitializer': Cannot read SQL script...
Currently Task treats mariadb as a version of MySql. Task needs to treat mariadb as its own type.
…b.com/spring-cloud/spring-cloud-task/issues/833 In this commit we added MariaDB as an independent database type as per #833 Thanks for taking time to look at it!
SCDF users would like to have included in the OOTB app. Depends on https://github.com/spring-projects/spring-batch/issues/3818.
In https://github.com/spring-cloud/spring-cloud-task/commit/00b8acab5530779a811613e46f8af17a5fc1d3e1#diff-1ebccb318e2d6a373043c744ca37eb7e8048d8130765f8904184795a593d5a89L92, `@ConditionalOnMissingBean` was removed from the `springCloudTaskTransactionManager` bean, which means that it will conflict with any other AutoConfiguration that creates a `PlatformTransactionManager` bean (such as JPA/Hibernate). This repository contains...
Hello, I modified the partitioned-batch-job sample such that the PartitonHandler class reads as follows: @Bean @StepScope public DeployerPartitionHandler partitionHandler(TaskLauncher taskLauncher, JobExplorer jobExplorer, TaskRepository taskRepository, String stepName) { Resource resource =...