1.

Explain Parallel Processing In Spring Batch Framework?

Answer»

Parallel processing enables multiple batch RUNS jobs to RUN in parallel to reduce the total elapsed batch processing time. Parallel processing is simpler as long as the same file or database table is not shared among the PROCESSES otherwise the processes should process partitioned data.

Another approach would be using a control table for maintaining interdependencies and to track each shared resource in use by any process or not.

Other key ISSUES in parallel processing include load balancing and the availability of GENERAL system resources such as files, database buffer pools etc. Also note that the control table itself can easily become a critical resource.

Parallel processing enables multiple batch runs jobs to run in parallel to reduce the total elapsed batch processing time. Parallel processing is simpler as long as the same file or database table is not shared among the processes otherwise the processes should process partitioned data.

Another approach would be using a control table for maintaining interdependencies and to track each shared resource in use by any process or not.

Other key issues in parallel processing include load balancing and the availability of general system resources such as files, database buffer pools etc. Also note that the control table itself can easily become a critical resource.



Discussion

No Comment Found