首頁 > 後端開發 > Golang > 主體

如何從 Golang 用戶端建立 ElasticSearch 策略

WBOY
發布: 2024-02-05 22:15:12
轉載
965 人瀏覽過

如何从 Golang 客户端创建 ElasticSearch 策略

問題內容

我正在嘗試從elastic golang 用戶端olivere 建立索引生命週期管理(ilm) 策略,以刪除超過3 個月的索引(使用「每日索引」模式)。像這樣的事情:

{
  "policy": {
    "phases": {      
      "delete": {
        "min_age": "90d",
        "actions": {
          "delete": {}
        }
      }
    }
  }
}
登入後複製

我可以在庫的源代碼中看到這樣的結構:xpackilmputlifecycleservice,它具有以下字段:

type XPackIlmPutLifecycleService struct {
    client *Client

    pretty     *bool       // pretty format the returned JSON response
    human      *bool       // return human readable values for statistics
    errorTrace *bool       // include the stack trace of returned errors
    filterPath []string    // list of filters used to reduce the response
    headers    http.Header // custom request-level HTTP headers

    policy        string
    timeout       string
    masterTimeout string
    flatSettings  *bool
    bodyJson      interface{}
    bodyString    string
}
登入後複製

這是文件連結。然而,我有點困惑如何創建使用它來完成這項工作的策略,因為它似乎缺少一些欄位(例如 min_age 設定索引的 ttl)。透過此客戶端建立 ilm 策略的正確方法是什麼。


正確答案


可以參考測試程式碼!基本上你可以將 json 放入 body 欄位。

testPolicyName := "test-policy"

    body := `{
        "policy": {
            "phases": {
                "delete": {
                    "min_age": "90d",
                    "actions": {
                        "delete": {}
                    }
                }
            }
        }
    }`

    // Create the policy
    putilm, err := client.XPackIlmPutLifecycle().Policy(testPolicyName).BodyString(body).Do(context.TODO())
登入後複製

https://github.com /olivere/elastic/blob/release-branch.v7/xpack_ilm_test.go#l15-l31

#

以上是如何從 Golang 用戶端建立 ElasticSearch 策略的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:stackoverflow.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板