def move_blob(input):
try:
client=storage.Client()
bucket=client.get_bucket(input[0])
blob=bucket.blob(input[1])
out=bucket.copy_blob(blob,bucket,input[2])
blob.delete()
except Exception as e:
return None, str(e)
with multiprocessing.Pool(processes=60) as pool:
outputs = pool.map(move_blob, inputs)
Solved! Go to Solution.
I found that your question has been answered at this link:
I found that your question has been answered at this link: