Open lahdekorpi opened 2 months ago
At the moment I just hacked it together with this:
conn = job.queue.client
# Construct the processed key
processed_key = f"bull:{job.queue.name}:{job.id}:processed"
# Fetch data from Redis using the processed key
processed_data = await conn.hgetall(processed_key)
It works but this is amazingly hackish.
I tried to mix Node.js and Python for a complex flow with multiple children and grandchildren, passing the data using
job.getChildrenValues
successfully between Node.js workers.But that method doesn't exist in Python? Is there an alternative to fetch the data produced by the child?