2
我試圖改變存儲類一組現有的對象(超過300個GBS)的as advised in this post:這是一個可變更的存儲類別的現有對象嗎?
我試圖在一個文件中的第一:
[email protected]:~$ gsutil ls -L gs://some-bucket/sub-dir/audioArch.mp3
gs://some-bucket/sub-dir/audioArch.mp3:
Creation time: Fri, 29 Jul 2016 00:52:51 GMT
Update time: Fri, 05 Aug 2016 15:40:51 GMT
Storage class: DURABLE_REDUCED_AVAILABILITY
Content-Language: en
Content-Length: 43033404
Content-Type: audio/mpeg
... ...
[email protected]:~$ gsutil -m rewrite -s coldline gs://some-bucket/sub-dir/audioArch.mp3
- [1/1 files][ 41.0 MiB/ 41.0 MiB] 100% Done
Operation completed over 1 objects/41.0 MiB.
[email protected]:~$ gsutil ls -L gs://some-bucket/sub-dir/audioArch.mp3
gs://some-bucket/sub-dir/audioArch.mp3:
Creation time: Sun, 30 Oct 2016 23:49:34 GMT
Update time: Sun, 30 Oct 2016 23:49:34 GMT
Storage class: COLDLINE
Content-Language: en
Content-Length: 43033404
Content-Type: audio/mpeg
... ...
然後我試圖在15以上,然後在子目錄中的其餘對象... 作品像一個魅力☺,雖然操作覆蓋創作&更新時間!
我有兩個後續的查詢,但:
- 是
gsutil rewrite
操作計費? - 創作時間可以保存嗎?
非常感謝。
乾杯!
fynali