Chapter 15: Batch

Anatoly Volkhover

Avoid batch processing whenever you can. Offload as much work as possible through event streaming. Consider the possibility of scaling through a concurrent execution of multiple batch instances. Invest in error recovery. Closely monitor batch execution time. Create telemetry feeds.

  • Jose luis says:

    I do not like the batch files but are necessary in some cases like you commented I would add one more case that is when we use the batch to execute another language more practical for example Python , in my experience we applied a combination of this 2 to maintenance a huge database (partition tables, generate reports, re organized index…. Etc.)

  • >