mirror of
https://github.com/minio/docs.git
synced 2025-07-31 18:04:52 +03:00
Mc issues (#588)
Addresses five outstanding Issues in the `mc` reference docs. - Adds `--disable-multipart` flag for `mc mv` (Closes #516 ) - Adds `mc pipe` to reference docs (Closes #517 ) - Adds `mc undo` to reference docs (Closes #520 ) - Adds `mc support top` commands to replace `mc admin top` (Closes #526) - Updates `mc cp`, `mc mirror`, `mc replicate`, and `mc admin replicate` to clarify the differences in what copies (Closes #532)
This commit is contained in:
@ -46,6 +46,7 @@ similar results to the ``mv`` commandline tool.
|
||||
mc [GLOBALFLAGS] mv \
|
||||
[--attr "string"] \
|
||||
[--continue] \
|
||||
[--disable-multipart] \
|
||||
[--encrypt "string"] \
|
||||
[--encrypt-key "string"] \
|
||||
[--newer-than "string"] \
|
||||
@ -97,6 +98,7 @@ Parameters
|
||||
directory or bucket.
|
||||
|
||||
.. mc-cmd:: TARGET
|
||||
:required:
|
||||
|
||||
*Required* The full path to the bucket to which the command moves the
|
||||
object(s) at the specified :mc-cmd:`~mc mv SOURCE`. Specify the
|
||||
@ -137,6 +139,20 @@ Parameters
|
||||
|
||||
*Optional* Create or resume a move session.
|
||||
|
||||
.. mc-cmd:: --disable-multipart
|
||||
|
||||
|
||||
*Optional* Disables the multipart upload feature.
|
||||
|
||||
Multipart upload breaks an object into a set of separate parts.
|
||||
Each part uploads individually and in any order.
|
||||
If any individual part upload fails, MinIO retries that part without affecting the other parts.
|
||||
After upload completes, the parts combine to restore the original object.
|
||||
|
||||
MinIO recommends using multipart upload for any object larger than 100 MB.
|
||||
For more information on multipart upload, refer to the :s3-docs:`Amazon S3 documentation <mpuoverview.html>`
|
||||
|
||||
|
||||
.. mc-cmd:: --encrypt
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user