1
0
mirror of https://github.com/minio/docs.git synced 2026-01-04 02:44:36 +03:00

Changes for MinIO Server RELEASE.2024-08-03T04-33-23Z (#1297)

MinIO Server
[RELEASE.2024-08-03T04-33-23Z](https://github.com/minio/minio/releases/tag/RELEASE.2024-08-03T04-33-23Z)
adds a v2 for the batch job replicate API.

This new version supports including multiple prefixes on the source for
replication.

Not linked to a docs issue.
This commit is contained in:
Daryl White
2024-08-14 17:32:09 -04:00
committed by GitHub
parent 5865c3b93d
commit 762b942009

View File

@@ -96,6 +96,25 @@ Optionally, the YAML can also define flags to filter which objects replicate, se
You can replicate from a remote MinIO deployment to the local deployment that runs the batch job.
.. versionchanged:: MinIO RELEASE.2024-08-03T04-33-23Z
This release introduces a new version of the Batch Job Replicate API, ``v2``.
The updated API allows you to list multiple prefixes on the source to replicate from.
To replicate multiple prefixes from a source, specify ``replicate.apiVersion`` as ``v2``.
.. code-block::
:class: copyable
replicate:
apiVersion: v2
source:
type: minio
bucket: mybucket
prefix:
- prefix1
- prefix2
...
For the **source deployment**
- Required information
@@ -116,7 +135,9 @@ For the **source deployment**
:width: 100%
* - ``prefix:``
- The prefix on the object(s) that should replicate.
- | The prefix on the object(s) that should replicate.
| Beginning with MinIO Server ``RELEASE.2024-08-03T04-33-23Z``, v2 of the Batch Job Replicate API allows you to list multiple prefixes.
| Specify ``replicate.apiVersion`` as ``v2`` to replicate from multiple prefixes.
* - ``endpoint:``
- | Location of the deployment to use for either the source or the target of a replication batch job.