Glenn Renfro
Glenn Renfro
When apps are terminated before the proxy has had a chance to send the metrics to prometheus the metrics are lost. Issue: https://github.com/micrometer-metrics/prometheus-rsocket-proxy/issues/35 discusses this problem. A resolution should be...
Currently, Spring Cloud Data Flow retrieves Step History from the Spring Batch tables. It however creates a column for "Counts" This field is confusing and adds no value to our...
When a user updates the task app to a new default version on CF platforms. The existing droplets will be removed and a new droplet with the latest version of...
``` 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)...
For example `CREATE SEQUENCE TASK_SEQ START WITH 0 MINVALUE 0 MAXVALUE 9223372036854775807 ORDER NOCYCLE;`
Currently Task treats mariadb as a version of MySql. Task needs to treat mariadb as its own type.
Currently Task Repositories use `@transactional("springCloudTaskTransactionManager")`. This should be replaced with a property i.e. `@transactional("${spring.cloud.task.transaction-manager:transactionManager}")`. Also remove springCloudTaskTransactionManager bean. This is for 3.0.0 release of SCT.
Currently if a user wants to select a AmqpItemReader and a AmqpItemWriter on the same single step batch job they must use the same connection. A user should be able...
Currently the TaskNameResolver is resolved in the SimpleTaskAutoConfiguration. This should be resolved in the TaskConfigurer/DefaultTaskConfigurer, so that the user can select what TaskNameResolver they wish to have without overriding all...
On some machines with faster processors this this test fails, because data from a previous run is still present in the datastore used by the test. This is being expressed...