I lost in google docs. Using python to download files from gcs. Below is my code
source_bucket = storage_client.bucket('mybucket')
blob = source_bucket.get_blob('myFileOf1Gb')
print('chunk size', blob.chunk_size) # prints None
blob.chunk_size = 1024 * 1024 * 256
print('chunk size', blob.chunk_size) #
print('download started')
contents = blob.download_as_bytes()
print('download completed')
It takes around 22 sec to download file irrespective of chunk_size I tried this with various chunk size options still same time require to download. Am i missing something ?