I cannot upload large (> 2GB) files to the Google Cloud Storage web UI

点点圈 提交于 2019-12-30 09:58:04

问题


I have been using the Google Cloud Storage Manager link on the Google APIs console in order to upload my files.

This works great for most files: 1KB, 10KB, 1MB, 10MB, 100MB. However yesterday I could not upload a 3GB file. Any idea what is wrong?

What is the best way to upload large files to Google Cloud Storage?


回答1:


The web UI only supports uploads smaller than 2^32 bytes (4 GigaBytes). I believe this is a javascript limitation.

If you need to transfer many or large files consider using gsutil:

  1. GSUtil uploads and downloads any size file.
  2. GSUtil resumes uploads and resumes downloads that fail part way through.
  3. GSUtil calculates the MD5 checksum to verify the contents of each file transferred correctly.
  4. GSUtil can upload and download many files at the same time.
    • gsutil -m cp /path/to/*thousands-of-files* gs://my-bucket/*



回答2:


In my experience, the accepted answer is not correct - maybe it was but something has changed.

I just uploaded a file of size 2.2GB to GCS using the web interface on Chrome 42 on Windows 8.1.

I would also point out that the question is about files > 2GB, and the answer mentions 2GB, but gets that from 2^32, which is 4GB, not 2. So maybe the limit really is 2^32 (4GB) - I haven't tried anything that big.

(It is still a good idea to use gsutil for large files.)



来源:https://stackoverflow.com/questions/14530480/i-cannot-upload-large-2gb-files-to-the-google-cloud-storage-web-ui

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!