cloud - How to see command prompt progress bar reflecting parallel uploads in google bucket -


i trying upload big file (1 gb , 10 gb) through gsutil bucket on google cloud storage.

i have updated .boto file @ 2 places.

parallel_composite_upload_threshold = 150m parallel_composite_upload_component_size = 150m

the threshold being maximum size of file can uploaded without using parallel upload , component size being size in big file divided while uploading.

the big file created follows,

mkfile -n 1g 1gb_file

then use command,

gsutil -m cp -r 1gb_file gs://temp-bucket

the documentation @ https://cloud.google.com/storage/docs/gsutil/commands/cp says should see upload progress indicator continuously updates several different uploads @ once (corresponding each of sections of file being uploaded in parallel), until parallel upload completes.

but can not see on cmd. progress indicator follows,

copying file://1gb_file [content-type=application/octet-stream]... - [1/1 files][ 1.0 gib/ 1.0 gib] 100% done 302.8 kib/s eta 00:00:00
operation completed on 1 objects/1.0 gib.

am doing wrong?

why can't see multiple file upload indicators stated in documentation?

the progress indicator no longer works way documentation states parallel composite uploads -- shows progress single top-level file. we'll update documentation.


Comments

Popular posts from this blog

ios - MKAnnotationView layer is not of expected type: MKLayer -

ZeroMQ on Windows, with Qt Creator -

unity3d - Unity SceneManager.LoadScene quits application -