skip_repo_fs_check

编辑

此设置由快照恢复操作使用。

此设置必须是TrueFalse

此设置的默认值为False

为了确保快照 100% 有效,集群中的每个主节点和数据节点都*必须*对存储库使用的共享文件系统具有写访问权限。对于恢复操作,这是一个轻量级的尝试,以确保所有节点仍然能够写入存储库,希望快照来自所有节点。对于恢复操作,这并非必要。

某些文件系统可能需要更长时间才能响应检查,这会导致文件系统访问检查出现误报。对于这些情况,可以通过将其设置为True来绕过此验证步骤。

actions:
  1:
    action: restore
    description: Restore my_index from my_snapshot in my_repository
    options:
      repository: my_repository
      name: my_snapshot
      indices: my_index
      skip_repo_fs_check: False
      wait_for_completion: True
      max_wait: 3600
      wait_interval: 10
    filters:
    - filtertype: state
      state: SUCCESS
      exclude:
    - filtertype: ...

为了确保快照 100% 有效,集群中的每个主节点和数据节点都*必须*对存储库使用的共享文件系统具有写访问权限。

某些文件系统可能需要更长时间才能响应检查,这会导致文件系统访问检查出现误报。对于这些情况,可以通过将其设置为True来绕过此验证步骤。

action: snapshot
description: >-
  Snapshot selected indices to 'repository' with the snapshot name or name
  pattern in 'name'.  Use all other options as assigned
options:
  repository: my_repository
  name: my_snapshot
  skip_repo_fs_check: False
  wait_for_completion: True
  max_wait: 3600
  wait_interval: 10
filters:
- filtertype: ...