1
0
mirror of https://github.com/minio/docs.git synced 2025-07-28 19:42:10 +03:00

Add Multipart to Concepts and Glossary (#609)

Closes #595 

Applies multipart feedback in comments of PR #588.
This commit is contained in:
Daryl White
2022-10-18 13:25:50 -05:00
committed by GitHub
parent b88a29a223
commit 0aa9ee7e2b
2 changed files with 18 additions and 0 deletions

View File

@ -126,6 +126,15 @@ There are several options to manage your MinIO deployments and clusters:
- The :ref:`MinIO Console <minio-console>` graphical user interface for individual instances
- In Kubernetes, with the :ref:`MinIO Operator Console <minio-operator-console>`
How do I upload objects to MinIO?
---------------------------------
You can use any S3-compatible SDK to upload objects to a MinIO deployment.
Each SDK performs the equivalent of a PUT operation which transmits the object to MinIO for storage.
MinIO also implements support for :s3-docs:`multipart uploads <mpuoverview.html>`, where clients can split an object into multiple parts for better throughput and reliability of transmission.
MinIO reassembles these parts until it has a completed object, then stores that object at the specified path.
How does MinIO provide availability, redundancy, and reliability?
-----------------------------------------------------------------