1
0
mirror of https://github.com/minio/docs.git synced 2025-07-30 07:03:26 +03:00

copy conflicting object text from thresholds page (#1473)

Add the conflicting objects info from the thresholds page to object
management, where someone might actually find it. Did not make it an
include.

cc @klauspost 

Related changes:
`miniohq/aistor-object-store-docs`:
https://github.com/miniohq/aistor-object-store-docs/pull/66

`miniohq/aistor-object-store-docs/hugo-migration`:
https://github.com/miniohq/aistor-object-store-docs/pull/65
This commit is contained in:
Andrea Longo
2025-06-03 12:53:57 -06:00
committed by GitHub
parent dffba7566f
commit 522ccf4c33

View File

@ -251,6 +251,29 @@ MinIO ignores any objects in the remote bucket or bucket prefix not explicitly m
To facilitate this exclusive access, grant the lifecycle management user ``read``, ``write``, and ``delete`` access to the target bucket in its :ref:`policy <minio-policy>`. To facilitate this exclusive access, grant the lifecycle management user ``read``, ``write``, and ``delete`` access to the target bucket in its :ref:`policy <minio-policy>`.
All other policies should ``deny`` access to the target bucket. All other policies should ``deny`` access to the target bucket.
Conflicting Objects
-------------------
Applications must assign non-conflicting, unique keys for all objects.
This includes avoiding creating objects where the name can collide with that of a parent or sibling object.
MinIO returns an empty set for LIST operations at the location of the collision.
For example, the following operations create a namespace conflicts
.. code-block::
PUT data/invoices/2024/january/vendors.csv
PUT data/invoices/2024/january <- collides with existing object prefix
.. code-block::
PUT data/invoices/2024/january
PUT data/invoices/2024/january/vendors.csv <- collides with existing object
While you can perform GET or HEAD operations against these objects, the name collision causes LIST operations to return an empty result set at the ``/invoices/2024/january`` path.
.. toctree:: .. toctree::
:titlesonly: :titlesonly:
:hidden: :hidden: