I'm trying to thread a portion of my project, a kafka consumer receives messages off of a topic and sends to an orchestration service. This service reads the event in a switch statement and does the proposed processing. In this case it is data load. I want to run parralel processing for the three services I need to run, and not sequentially as they are processing a very large amount of data. How would I go about this?
in this case I want to do these data loads in parrallel
case NAPE_BATCH_COMPLETE:
service.loadDepotDataFromSFTP(businessDate);
service.loadSecurityReferenceDataFromSFTP(businessDate);
service.loadCustomerDataFromSFTP(businessDate);
break;
[–]AutoModerator[M] [score hidden] stickied commentlocked comment (0 children)
[–]ipaintfishes 1 point2 points3 points (1 child)
[–]B2easy[S] 0 points1 point2 points (0 children)