github.com/rclone/rclone@v1.66.1-0.20240517100346-7b89735ae726/docs/content/commands/rclone_settier.md (about) 1 --- 2 title: "rclone settier" 3 description: "Changes storage class/tier of objects in remote." 4 slug: rclone_settier 5 url: /commands/rclone_settier/ 6 versionIntroduced: v1.44 7 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/settier/ and as part of making a release run "make commanddocs" 8 --- 9 # rclone settier 10 11 Changes storage class/tier of objects in remote. 12 13 ## Synopsis 14 15 16 rclone settier changes storage tier or class at remote if supported. 17 Few cloud storage services provides different storage classes on objects, 18 for example AWS S3 and Glacier, Azure Blob storage - Hot, Cool and Archive, 19 Google Cloud Storage, Regional Storage, Nearline, Coldline etc. 20 21 Note that, certain tier changes make objects not available to access immediately. 22 For example tiering to archive in azure blob storage makes objects in frozen state, 23 user can restore by setting tier to Hot/Cool, similarly S3 to Glacier makes object 24 inaccessible.true 25 26 You can use it to tier single object 27 28 rclone settier Cool remote:path/file 29 30 Or use rclone filters to set tier on only specific files 31 32 rclone --include "*.txt" settier Hot remote:path/dir 33 34 Or just provide remote directory and all files in directory will be tiered 35 36 rclone settier tier remote:path/dir 37 38 39 ``` 40 rclone settier tier remote:path [flags] 41 ``` 42 43 ## Options 44 45 ``` 46 -h, --help help for settier 47 ``` 48 49 50 See the [global flags page](/flags/) for global options not listed here. 51 52 # SEE ALSO 53 54 * [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends. 55