This repository was archived by the owner on May 14, 2025. It is now read-only.
This repository was archived by the owner on May 14, 2025. It is now read-only.
Use single sequence for task and job ids of different schema versions #5853
Open
Description
Problem description:
We currently have ~250k job executions and when we migrate to Spring Boot 3 and Spring Batch 5 the ids are starting from one. Because of this we have problems finding the right page to look at:
Also the CTR and task applications are running in different schema versions, so different sequences are used and the ids are divergent.
Solution description:
Use a single sequence for boot 2 and boot 3 schemas so that the ids are increasing no matter what kind of task application has started.
Description of alternatives:
Implement a filter to narrow down the view to only show Boot2 / Boot3 Task and Job executions
Additional context:
N/A