How to achieve distributed processing of steps using Spring Batch

Using the Spring package, I want my steps to be distributed between nodes and performed to complete tasks. I have a usecase where a task has several steps, and each step can be performed in several nodes where the application is located. Has anyone tried this? Any ideas on this would be greatly appreciated!

+4
source share
1 answer

There are two approaches:

  • Remote chunking - you read data on the master node and process / write it to slaves

  • - // . , , .

Enterprise Spring, . Github. 0939 0940. , , , . , .

, (, ActiveMQ HornetQ), -, Spring .

+2

Source: https://habr.com/ru/post/1620060/


All Articles