I have a specific requirement where I am using Big query for loop do some ETL. The for loop iterates over 35k times but it takes almost 1 minute for each iteration to complete. I want to implement a python multiprocessing code where I will call my BQ stored procedure in python for loop and let that run parallel?
how should I achieve this? Is this really possible to do that or there are some other ways i can run the for loop parallelly, I cannot escape the for loop.