Skip to content

Commit

Permalink
Updates for mc RELEASE.2025-02-04T04-57-50Z (#1427)
Browse files Browse the repository at this point in the history
- Adds info for using absolute time on some mc find flags
- Adds --enc flag to mc support upload
- Fixes for thresholds page

Closes #1412
  • Loading branch information
djwfyi authored Feb 21, 2025
1 parent 89bc282 commit da87d38
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 8 deletions.
6 changes: 4 additions & 2 deletions source/operations/concepts/thresholds.rst
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ S3 API Limits
* - Maximum length for object names
- 1024

* - Maximum length for each ``/`` separated object name segment
* - Maximum length for each ``/`` separated segment of an object name
- 255

* - Maximum number of object versions for a unique object
Expand Down Expand Up @@ -105,9 +105,11 @@ Windows and some other operating systems restrict file systems with certain spec

This list is not exhaustive and may not apply to your operating system and filesystem combination.

On Unix-like operating systems, objects with a path name of ``.``, ``..``, or ``/`` return an error of ``file access denied``.

Consult your operating system vendor or filesystem documentation for a comprehensive list for your situation.

MinIO recommends using LInux operating system with an XFS based filesystem for production workloads.
MinIO recommends using a Linux operating system with an XFS based filesystem for production workloads.

Conflicting Objects
~~~~~~~~~~~~~~~~~~~
Expand Down
10 changes: 9 additions & 1 deletion source/reference/minio-mc/mc-find.rst
Original file line number Diff line number Diff line change
Expand Up @@ -136,13 +136,21 @@ Parameters
Specify a string in ``#d#hh#mm#ss`` format.
For example: ``--older-than 1d2hh3mm4ss``
.. versionchanged:: RELEASE.2025-02-04T04-57-50Z
The datetime may also be specified in absolute time of ``YYYY-MM-DD HH:MM:SS TMZ`` format.
For example, ``mc find --newer-than="2025-01-22 09:57:00 CET" minioalias/mybucket``.
.. mc-cmd:: --older-than
:optional:
Mirror object(s) older than the specified time limit. Specify a
string in ``#d#hh#mm#ss`` format.
For example: ``--older-than 1d2hh3mm4ss``
.. versionchanged:: RELEASE.2025-02-04T04-57-50Z
The datetime may also be specified in absolute time of ``YYYY-MM-DD HH:MM:SS TMZ`` format.
For example, ``mc find --newer-than="2025-01-22 09:57:00 CET" minioalias/mybucket``.
Defaults to ``0`` (all objects).
.. mc-cmd:: --path
Expand Down
17 changes: 12 additions & 5 deletions source/reference/minio-mc/mc-support-upload.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,12 @@ The :mc:`mc support profile` command has the following syntax:

.. code-block:: shell
mc [GLOBALFLAGS] support profile \
ALIAS \
FILE \
[--comment] \
[--issue]
mc [GLOBALFLAGS] support profile \
ALIAS \
FILE \
[--comment "string"] \
[--enc] \
[--issue integer]
Parameters
~~~~~~~~~~
Expand All @@ -55,6 +56,12 @@ Parameters

Include a message to the issue when uploading the file.

.. mc-cmd:: --enc
:optional:

Encrypt contents of the upload.
The key used for the encryption is only accessible to MinIO.

.. mc-cmd:: --issue
:optional:

Expand Down

0 comments on commit da87d38

Please sign in to comment.