Certified Pega Senior System Architect v8.7 — Question 57
A medium-size toymaker wants to fulfill orders received during the peak season in December and process the orders in batches multiple times a day.
Flow do you implement this use case?
Answer options
- A. Create a queue processor that can process orders received by the company.
- B. Create one scheduled job and set its run schedule to multiple times a day.
- C. Create scheduled jobs, one for each run, that can process accumulated orders.
- D. Create batches of orders and send each batch for processing when it gets full.
Correct answer: B
Explanation
The correct answer is B because a single scheduled job running multiple times a day efficiently manages the order processing in batches. Option A focuses on a queue processor, which may not ensure regular batch processing. Option C suggests creating separate jobs for each run, which could complicate management, and option D delays processing until batches are full, potentially leading to slower order fulfillment.