Resynchronize allocators

POST /platform/infrastructure/allocators/_resync

Asynchronously synchronizes all allocator information in the back-end search index.

Query parameters

  • When true, skips the document indexing when the version matches the in-memory copy.

    Default value is true.

Responses

  • The ids of documents, organized by model version, that will be synchronized.

    Hide response attribute Show response attribute object
    • results object Required

      The results of synchronizing indices organized by model version

      Hide results attribute Show results attribute object
      • * object Additional properties

        Results from synchronizing indices

        Additional properties are allowed.

        Hide * attributes Show * attributes object
        • created array[string] Required

          The ids of documents created in the index by index version

        • updated array[string] Required

          The ids of documents updated in the index by index version

        • deleted array[string] Required

          The ids of documents deleted from the index by index version

        • errors array[string] Required

          The regions where document synchronization may have failed

POST /platform/infrastructure/allocators/_resync
curl \
 -X POST https://{{hostname}}/api/v1/platform/infrastructure/allocators/_resync
Response examples (202)
{
  "results": {
    "additionalProperty1": {
      "created": [
        "string"
      ],
      "updated": [
        "string"
      ],
      "deleted": [
        "string"
      ],
      "errors": [
        "string"
      ]
    },
    "additionalProperty2": {
      "created": [
        "string"
      ],
      "updated": [
        "string"
      ],
      "deleted": [
        "string"
      ],
      "errors": [
        "string"
      ]
    }
  }
}