I want to fetch customers from remote db in background job. But during this time I want to keep using postgresql for other requests. I want to know if I establish_connection in worker, during this process does it cause any problem? For example during this process my app responses successfully from postgresql?
I've tried establish_connection in background job. But I need to be sure if it cause any problem.