As suggested and referred , by Doug Stevenson in the comment above please follow recommendations to prevent the issue.
The gsutil mv command allows you to move data between your local file system and the cloud, move data within the cloud, and move data between cloud storage providers.
You can use the gsutil mv command to rename all objects with a given prefix to have a new prefix.
gsutil mv gs://my_bucket/oldprefix gs://my_bucket/newprefix
If you have a large number of files to move you might want to use the gsutil -m option, to perform a multi-threaded/multi-processing move:
gsutil -m mv gs://my_bucket/oldprefix gs://my_bucket/newprefix
Reference Document