文件

批次過期

新版本:RELEASE.2023-12-02T10-51-33Z

MinIO 批次架構允許您使用 YAML 格式的工作定義檔案(「批次檔案」)來建立、管理、監控和執行工作。批次工作直接在 MinIO 部署上執行,以利用伺服器端處理能力,而沒有執行 MinIO 用戶端 的本機電腦的限制。

expire 批次工作將 自動物件過期 行為應用於單個 bucket。工作會根據提供的組態判斷過期資格,而與任何已組態的過期規則無關。

行為

物件立即過期

批次過期是作為批次工作的一部分立即發生的,相較之下,被動式掃描器應用程式過期規則。具體而言,批次過期不會讓步於應用程式 I/O,可能會影響部署上常規讀取/寫入操作的效能。

在批次執行時決定過期資格

批次過期按每個 bucket 執行,並執行一次到完成。工作會在工作執行時判斷過期資格,且不會定期重新掃描或重新檢查新物件。

若要擷取任何符合過期資格的新物件,請重新執行批次工作。

過期規則僅檢查最新物件

批次過期工作僅會針對每個批次過期規則檢查每個物件的最新或「目前」版本。

過期批次工作參考

欄位

描述

expire

必要

過期工作類型的頂層欄位。

apiVersion

必要

設定為 v1

bucket

必要

指定工作執行的 bucket 名稱。

prefix

選用

指定工作執行的 bucket 字首。

rules

必要

要套用於指定 bucketprefix (若有)中的物件的一個或多個過期規則陣列。

rules.[n].type

必要

支援以下兩個值之一

  • object - 僅適用於目前版本沒有 DeleteMarker 的物件。

  • deleted - 僅適用於目前版本 DeleteMarker 的物件。

請參閱物件刪除,以取得關於版本化儲存桶中 DeleteMarker 或刪除操作的更完整文件。

rules.[n].name

選用

指定一個用於篩選物件的匹配字串。

支援 glob 風格的萬用字元(*?)。

rules.[n].olderThan

選用

指定用於篩選物件的物件存在時間。此規則僅適用於存在時間超過指定時間單位的物件。

例如,72h3d 會選取存在時間超過三天的物件。

rules.[n].createdBefore

選用

指定一個用於篩選物件的 ISO-8601 時間戳記。

此規則僅適用於建立時間早於指定時間戳記的物件。

rules.[n].tags

選用

指定一個鍵值對陣列,描述用於篩選物件的物件標籤。value 條目支援 glob 風格的萬用字元(*?)。

例如,以下範例將規則篩選為僅限於具有匹配標籤的物件

tags:
  - key: archive
    value: True

此鍵與 rules.[n].type: deleted 不相容。

rules.[n].metadata

選用

指定一個鍵值對陣列,描述用於篩選物件的物件元數據。value 鍵支援 glob 風格的萬用字元(*?)。

例如,以下範例將規則篩選為僅限於具有匹配元數據的物件

metadata:
  - key: content-type
    value: image/*

此鍵與 rules.[n].type: deleted 不相容。

rules.[n].size

選用

指定用於篩選物件的物件大小範圍。

  • lessThan - 匹配大小小於指定數量(例如 MiBGiB)的物件。

  • greaterThan - 匹配大小大於指定數量(例如 MiBGiB)的物件。

rules.[n].purge.retainVersions

選用

指定在應用過期時要保留的物件版本數量。

預設為 0,表示刪除所有物件版本(速度最快)。

notify.endpoint

選用

用於傳送事件通知的預定義端點。

notify.token

選用

用於存取 notify.endpoint 的選用 JSON Web Token (JWT)。

retry.attempts

選用

在放棄之前完成批次作業的嘗試次數。

retry.delay

選用

每次嘗試之間等待的時間量(ms)。

用於 expire 工作類型的 YAML 描述範例

使用 mc batch generate 建立基本的 expire 批次作業,以進行進一步的自訂。

expire:
  apiVersion: v1
  bucket: mybucket # Bucket where this job will expire matching objects from
  prefix: myprefix # (Optional) Prefix under which this job will expire objects matching the rules below.
  rules:
    - type: object  # objects with zero ore more older versions
      name: NAME # match object names that satisfy the wildcard expression.
      olderThan: 70h # match objects older than this value
      createdBefore: "2006-01-02T15:04:05.00Z" # match objects created before "date"
      tags:
        - key: name
          value: pick* # match objects with tag 'name', all values starting with 'pick'
      metadata:
        - key: content-type
          value: image/* # match objects with 'content-type', all values starting with 'image/'
      size:
        lessThan: 10MiB # match objects with size less than this value (e.g. 10MiB)
        greaterThan: 1MiB # match objects with size greater than this value (e.g. 1MiB)
      purge:
          # retainVersions: 0 # (default) delete all versions of the object. This option is the fastest.
          # retainVersions: 5 # keep the latest 5 versions of the object.

    - type: deleted # objects with delete marker as their latest version
      name: NAME # match object names that satisfy the wildcard expression.
      olderThan: 10h # match objects older than this value (e.g. 7d10h31s)
      createdBefore: "2006-01-02T15:04:05.00Z" # match objects created before "date"
      purge:
          # retainVersions: 0 # (default) delete all versions of the object. This option is the fastest.
          # retainVersions: 5 # keep the latest 5 versions of the object including delete markers.

  notify:
    endpoint: https://notify.endpoint # notification endpoint to receive job completion status
    token: Bearer xxxxx # optional authentication token for the notification endpoint

  retry:
    attempts: 10 # number of retries for the job before giving up
    delay: 500ms # least amount of delay between each retry