spring batch partitioning performance issue
问题 We have a spring batch job where we trying to process around 10 million records. Now doing this in single thread will be very slow since we have to match SLA. To improve performance, we have developed a POC where master step is creating partitions where each partition represent one unique prod id. This can range from anywhere between 500 to 4500. In POC we have 500 such unique prod id. Now each partition is being given a prod id and step work on it. All this end to end works fine. What we