All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dataInsights.opensearch.indexLifecyclePolicy.json Maven / Gradle / Ivy

There is a newer version: 1.5.11
Show newest version
{
  "policy": {
    "description": "Lifecycle Policy for DataAssets Data Stream.",
    "default_state": "hot",
    "states": [
      {
        "name": "hot",
        "actions": [
          {
            "rollover": {
              "min_primary_shard_size": "50gb"
            }
          }
        ],
        "transitions": [
          {
            "state_name": "warm",
            "conditions": {
              "min_index_age": "30d"
            }
          }
        ]
      },
      {
        "name": "warm",
        "actions": [
          {
            "shrink": {
              "num_new_shards": 1
            }
          },
          {
            "force_merge": {
              "max_num_segments": 1
            }
          }
        ],
        "transitions": [
          {
            "state_name": "delete",
            "conditions": {
              "min_index_age": "90d"
            }
          }
        ]
      },
      {
        "name": "delete",
        "actions": [
          {
            "delete": {}
          }
        ]
      }
    ],
    "ism_template": {
      "index_patterns": ["di-data-assets"],
      "priority": 500
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy