I have a backend system (A) that receives an HTTP request and sends a message to another backend system (B) through RabbitMQ before responding. But now, I need A to receive a response object from B. I read up and found the RabbitMQ RPC system which a...
Use case: I have a table storing file information such as path, size etc. I need to read this table and grab the file path. Read those CSV files in parallel and ingest in MySQL in parallel. My design: I somehow designed this. Cron to read the file i...