From 1b75220a1b74c3d84d1bbfeea6fab626d346375a Mon Sep 17 00:00:00 2001 From: Kaveh Vahedipour Date: Mon, 10 Dec 2018 15:16:35 +0100 Subject: [PATCH] [3.4] Early sort out system collections for maintenance (#7589) --- arangod/Cluster/DBServerAgencySync.cpp | 64 +- arangod/Cluster/Maintenance.cpp | 9 +- tests/Maintenance/Current.json | 2913 ++++++++--------- tests/Maintenance/DBServer0001.json | 2511 ++++++++------- tests/Maintenance/DBServer0002.json | 3248 +++++++++---------- tests/Maintenance/DBServer0003.json | 4055 +++++++++++------------- tests/Maintenance/Plan.json | 1412 ++++----- tests/Maintenance/Supervision.json | 101 +- 8 files changed, 6895 insertions(+), 7418 deletions(-) diff --git a/arangod/Cluster/DBServerAgencySync.cpp b/arangod/Cluster/DBServerAgencySync.cpp index 3cade174d2..f41119a9bf 100644 --- a/arangod/Cluster/DBServerAgencySync.cpp +++ b/arangod/Cluster/DBServerAgencySync.cpp @@ -86,37 +86,39 @@ Result DBServerAgencySync::getLocalCollections(VPackBuilder& collections) { auto cols = vocbase->collections(false); for (auto const& collection : cols) { - collections.add(VPackValue(collection->name())); - - VPackObjectBuilder col(&collections); - - collection->properties(collections,true,false); - - auto const& folls = collection->followers(); - std::string const theLeader = folls->getLeader(); - bool theLeaderTouched = folls->getLeaderTouched(); - - // Note that whenever theLeader was set explicitly since the collection - // object was created, we believe it. Otherwise, we do not accept - // that we are the leader. This is to circumvent the problem that - // after a restart we would implicitly be assumed to be the leader. - collections.add("theLeader", VPackValue(theLeaderTouched ? theLeader : "NOT_YET_TOUCHED")); - collections.add("theLeaderTouched", VPackValue(theLeaderTouched)); - - if (theLeader.empty() && theLeaderTouched) { - // we are the leader ourselves - // In this case we report our in-sync followers here in the format - // of the agency: [ leader, follower1, follower2, ... ] - collections.add(VPackValue("servers")); - - { VPackArrayBuilder guard(&collections); - - collections.add(VPackValue(arangodb::ServerState::instance()->getId())); - - std::shared_ptr const> srvs = folls->get(); - - for (auto const& s : *srvs) { - collections.add(VPackValue(s)); + if (!collection->system()) { + collections.add(VPackValue(collection->name())); + + VPackObjectBuilder col(&collections); + + collection->properties(collections,true,false); + + auto const& folls = collection->followers(); + std::string const theLeader = folls->getLeader(); + bool theLeaderTouched = folls->getLeaderTouched(); + + // Note that whenever theLeader was set explicitly since the collection + // object was created, we believe it. Otherwise, we do not accept + // that we are the leader. This is to circumvent the problem that + // after a restart we would implicitly be assumed to be the leader. + collections.add("theLeader", VPackValue(theLeaderTouched ? theLeader : "NOT_YET_TOUCHED")); + collections.add("theLeaderTouched", VPackValue(theLeaderTouched)); + + if (theLeader.empty() && theLeaderTouched) { + // we are the leader ourselves + // In this case we report our in-sync followers here in the format + // of the agency: [ leader, follower1, follower2, ... ] + collections.add(VPackValue("servers")); + + { VPackArrayBuilder guard(&collections); + + collections.add(VPackValue(arangodb::ServerState::instance()->getId())); + + std::shared_ptr const> srvs = folls->get(); + + for (auto const& s : *srvs) { + collections.add(VPackValue(s)); + } } } } diff --git a/arangod/Cluster/Maintenance.cpp b/arangod/Cluster/Maintenance.cpp index 19c9a79d6b..25208aa252 100644 --- a/arangod/Cluster/Maintenance.cpp +++ b/arangod/Cluster/Maintenance.cpp @@ -468,10 +468,8 @@ arangodb::Result arangodb::maintenance::diffPlanLocal ( if (pdbs.hasKey(dbname)) { // if in plan for (auto const& sh : VPackObjectIterator(db.value)) { // for each local shard std::string shName = sh.key.copyString(); - if (shName.front() != '_') { // exclude local system shards/collections - handleLocalShard(dbname, shName, sh.value, shardMap.slice(), commonShrds, - indis, serverId, actions); - } + handleLocalShard(dbname, shName, sh.value, shardMap.slice(), commonShrds, + indis, serverId, actions); } } } @@ -832,9 +830,6 @@ arangodb::Result arangodb::maintenance::reportInCurrent( for (auto const& shard : VPackObjectIterator(database.value)) { auto const shName = shard.key.copyString(); - if (shName.at(0) == '_') { // local system collection - continue; - } auto const shSlice = shard.value; auto const colName = shSlice.get(StaticStrings::DataSourcePlanId).copyString(); diff --git a/tests/Maintenance/Current.json b/tests/Maintenance/Current.json index 14d80958c0..f48cf56d3e 100644 --- a/tests/Maintenance/Current.json +++ b/tests/Maintenance/Current.json @@ -2,21 +2,21 @@ R"=( { "Databases": { "_system": { - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d": { + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23": { "errorMessage": "", "error": false, "id": "1", "name": "_system", "errorNum": 0 }, - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da": { + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f": { "errorMessage": "", "error": false, "id": "1", "name": "_system", "errorNum": 0 }, - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf": { + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86": { "errorMessage": "", "error": false, "id": "1", @@ -25,24 +25,24 @@ R"=( } }, "foo": { - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d": { + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23": { "errorMessage": "", "error": false, - "id": "2010593", + "id": "4010516", "name": "foo", "errorNum": 0 }, - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da": { + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86": { "errorMessage": "", "error": false, - "id": "2010670", + "id": "4010515", "name": "foo", "errorNum": 0 }, - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf": { + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f": { "errorMessage": "", "error": false, - "id": "3010743", + "id": "4010512", "name": "foo", "errorNum": 0 } @@ -56,8 +56,8 @@ R"=( "errorMessage": "", "errorNum": 0, "servers": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ], "indexes": [ { @@ -78,8 +78,8 @@ R"=( "errorMessage": "", "errorNum": 0, "servers": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ], "indexes": [ { @@ -100,8 +100,8 @@ R"=( "errorMessage": "", "errorNum": 0, "servers": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ], "indexes": [ { @@ -116,14 +116,46 @@ R"=( ] } }, + "2010033": { + "s2010034": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "servers": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "sparse": false, + "type": "primary", + "unique": true + }, + { + "deduplicate": true, + "fields": [ + "time" + ], + "id": "2010035", + "sparse": false, + "type": "skiplist", + "unique": false + } + ] + } + }, "2010015": { "s2010016": { "error": false, "errorMessage": "", "errorNum": 0, "servers": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ], "indexes": [ { @@ -144,8 +176,8 @@ R"=( "errorMessage": "", "errorNum": 0, "servers": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ], "indexes": [ { @@ -166,8 +198,8 @@ R"=( "errorMessage": "", "errorNum": 0, "servers": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ], "indexes": [ { @@ -198,8 +230,8 @@ R"=( "errorMessage": "", "errorNum": 0, "servers": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ], "indexes": [ { @@ -214,36 +246,14 @@ R"=( ] } }, - "2010019": { - "s2010020": { + "2010039": { + "s2010040": { "error": false, "errorMessage": "", "errorNum": 0, "servers": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "indexes": [ - { - "fields": [ - "_key" - ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true - } - ] - } - }, - "2010034": { - "s2010035": { - "error": false, - "errorMessage": "", - "errorNum": 0, - "servers": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ], "indexes": [ { @@ -260,7 +270,7 @@ R"=( "fields": [ "time" ], - "id": "2010036", + "id": "2010041", "sparse": false, "type": "skiplist", "unique": false @@ -268,14 +278,14 @@ R"=( ] } }, - "2010031": { - "s2010032": { + "4010026": { + "s4010027": { "error": false, "errorMessage": "", "errorNum": 0, "servers": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" ], "indexes": [ { @@ -286,995 +296,6 @@ R"=( "sparse": false, "type": "primary", "unique": true - }, - { - "deduplicate": true, - "fields": [ - "time" - ], - "id": "2010033", - "sparse": false, - "type": "skiplist", - "unique": false - } - ] - } - }, - "2010037": { - "s2010038": { - "error": false, - "errorMessage": "", - "errorNum": 0, - "servers": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "indexes": [ - { - "fields": [ - "_key" - ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true - }, - { - "deduplicate": true, - "fields": [ - "time" - ], - "id": "2010039", - "sparse": false, - "type": "skiplist", - "unique": false - } - ] - } - }, - "2010041": { - "s2010049": { - "error": false, - "errorMessage": "", - "errorNum": 0, - "servers": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "indexes": [ - { - "fields": [ - "_key" - ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true - }, - { - "fields": [ - "_from" - ], - "id": "1", - "sparse": false, - "type": "edge", - "unique": false - }, - { - "fields": [ - "_to" - ], - "id": "2", - "sparse": false, - "type": "edge", - "unique": false - }, - { - "bestIndexedLevel": 17, - "fields": [ - "gi" - ], - "geoJson": false, - "id": "2010051", - "maxNumCoverCells": 8, - "sparse": true, - "type": "geo", - "unique": false, - "worstIndexedLevel": 4 - }, - { - "bestIndexedLevel": 17, - "fields": [ - "gij" - ], - "geoJson": true, - "id": "2010052", - "maxNumCoverCells": 8, - "sparse": true, - "type": "geo", - "unique": false, - "worstIndexedLevel": 4 - }, - { - "deduplicate": false, - "fields": [ - "hi", - "_key" - ], - "id": "2010053", - "sparse": false, - "type": "hash", - "unique": true - }, - { - "deduplicate": false, - "fields": [ - "pi" - ], - "id": "2010054", - "sparse": true, - "type": "persistent", - "unique": false - }, - { - "fields": [ - "fi" - ], - "id": "2010132", - "minLength": 3, - "sparse": true, - "type": "fulltext", - "unique": false - }, - { - "deduplicate": true, - "fields": [ - "sli" - ], - "id": "2010055", - "sparse": false, - "type": "skiplist", - "unique": false - } - ] - }, - "s2010046": { - "error": false, - "errorMessage": "", - "errorNum": 0, - "servers": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "indexes": [ - { - "fields": [ - "_key" - ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true - }, - { - "fields": [ - "_from" - ], - "id": "1", - "sparse": false, - "type": "edge", - "unique": false - }, - { - "fields": [ - "_to" - ], - "id": "2", - "sparse": false, - "type": "edge", - "unique": false - }, - { - "bestIndexedLevel": 17, - "fields": [ - "gi" - ], - "geoJson": false, - "id": "2010051", - "maxNumCoverCells": 8, - "sparse": true, - "type": "geo", - "unique": false, - "worstIndexedLevel": 4 - }, - { - "bestIndexedLevel": 17, - "fields": [ - "gij" - ], - "geoJson": true, - "id": "2010052", - "maxNumCoverCells": 8, - "sparse": true, - "type": "geo", - "unique": false, - "worstIndexedLevel": 4 - }, - { - "deduplicate": false, - "fields": [ - "hi", - "_key" - ], - "id": "2010053", - "sparse": false, - "type": "hash", - "unique": true - }, - { - "deduplicate": false, - "fields": [ - "pi" - ], - "id": "2010054", - "sparse": true, - "type": "persistent", - "unique": false - }, - { - "fields": [ - "fi" - ], - "id": "2010132", - "minLength": 3, - "sparse": true, - "type": "fulltext", - "unique": false - }, - { - "deduplicate": true, - "fields": [ - "sli" - ], - "id": "2010055", - "sparse": false, - "type": "skiplist", - "unique": false - } - ] - }, - "s2010047": { - "error": false, - "errorMessage": "", - "errorNum": 0, - "servers": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "indexes": [ - { - "fields": [ - "_key" - ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true - }, - { - "fields": [ - "_from" - ], - "id": "1", - "sparse": false, - "type": "edge", - "unique": false - }, - { - "fields": [ - "_to" - ], - "id": "2", - "sparse": false, - "type": "edge", - "unique": false - }, - { - "bestIndexedLevel": 17, - "fields": [ - "gi" - ], - "geoJson": false, - "id": "2010051", - "maxNumCoverCells": 8, - "sparse": true, - "type": "geo", - "unique": false, - "worstIndexedLevel": 4 - }, - { - "bestIndexedLevel": 17, - "fields": [ - "gij" - ], - "geoJson": true, - "id": "2010052", - "maxNumCoverCells": 8, - "sparse": true, - "type": "geo", - "unique": false, - "worstIndexedLevel": 4 - }, - { - "deduplicate": false, - "fields": [ - "hi", - "_key" - ], - "id": "2010053", - "sparse": false, - "type": "hash", - "unique": true - }, - { - "deduplicate": false, - "fields": [ - "pi" - ], - "id": "2010054", - "sparse": true, - "type": "persistent", - "unique": false - }, - { - "fields": [ - "fi" - ], - "id": "2010132", - "minLength": 3, - "sparse": true, - "type": "fulltext", - "unique": false - }, - { - "deduplicate": true, - "fields": [ - "sli" - ], - "id": "2010055", - "sparse": false, - "type": "skiplist", - "unique": false - } - ] - }, - "s2010044": { - "error": false, - "errorMessage": "", - "errorNum": 0, - "servers": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "indexes": [ - { - "fields": [ - "_key" - ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true - }, - { - "fields": [ - "_from" - ], - "id": "1", - "sparse": false, - "type": "edge", - "unique": false - }, - { - "fields": [ - "_to" - ], - "id": "2", - "sparse": false, - "type": "edge", - "unique": false - }, - { - "bestIndexedLevel": 17, - "fields": [ - "gi" - ], - "geoJson": false, - "id": "2010051", - "maxNumCoverCells": 8, - "sparse": true, - "type": "geo", - "unique": false, - "worstIndexedLevel": 4 - }, - { - "bestIndexedLevel": 17, - "fields": [ - "gij" - ], - "geoJson": true, - "id": "2010052", - "maxNumCoverCells": 8, - "sparse": true, - "type": "geo", - "unique": false, - "worstIndexedLevel": 4 - }, - { - "deduplicate": false, - "fields": [ - "hi", - "_key" - ], - "id": "2010053", - "sparse": false, - "type": "hash", - "unique": true - }, - { - "deduplicate": false, - "fields": [ - "pi" - ], - "id": "2010054", - "sparse": true, - "type": "persistent", - "unique": false - }, - { - "fields": [ - "fi" - ], - "id": "2010132", - "minLength": 3, - "sparse": true, - "type": "fulltext", - "unique": false - }, - { - "deduplicate": true, - "fields": [ - "sli" - ], - "id": "2010055", - "sparse": false, - "type": "skiplist", - "unique": false - } - ] - }, - "s2010043": { - "error": false, - "errorMessage": "", - "errorNum": 0, - "servers": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "indexes": [ - { - "fields": [ - "_key" - ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true - }, - { - "fields": [ - "_from" - ], - "id": "1", - "sparse": false, - "type": "edge", - "unique": false - }, - { - "fields": [ - "_to" - ], - "id": "2", - "sparse": false, - "type": "edge", - "unique": false - }, - { - "bestIndexedLevel": 17, - "fields": [ - "gi" - ], - "geoJson": false, - "id": "2010051", - "maxNumCoverCells": 8, - "sparse": true, - "type": "geo", - "unique": false, - "worstIndexedLevel": 4 - }, - { - "bestIndexedLevel": 17, - "fields": [ - "gij" - ], - "geoJson": true, - "id": "2010052", - "maxNumCoverCells": 8, - "sparse": true, - "type": "geo", - "unique": false, - "worstIndexedLevel": 4 - }, - { - "deduplicate": false, - "fields": [ - "hi", - "_key" - ], - "id": "2010053", - "sparse": false, - "type": "hash", - "unique": true - }, - { - "deduplicate": false, - "fields": [ - "pi" - ], - "id": "2010054", - "sparse": true, - "type": "persistent", - "unique": false - }, - { - "fields": [ - "fi" - ], - "id": "2010132", - "minLength": 3, - "sparse": true, - "type": "fulltext", - "unique": false - }, - { - "deduplicate": true, - "fields": [ - "sli" - ], - "id": "2010055", - "sparse": false, - "type": "skiplist", - "unique": false - } - ] - }, - "s2010050": { - "error": false, - "errorMessage": "", - "errorNum": 0, - "servers": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "indexes": [ - { - "fields": [ - "_key" - ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true - }, - { - "fields": [ - "_from" - ], - "id": "1", - "sparse": false, - "type": "edge", - "unique": false - }, - { - "fields": [ - "_to" - ], - "id": "2", - "sparse": false, - "type": "edge", - "unique": false - }, - { - "bestIndexedLevel": 17, - "fields": [ - "gi" - ], - "geoJson": false, - "id": "2010051", - "maxNumCoverCells": 8, - "sparse": true, - "type": "geo", - "unique": false, - "worstIndexedLevel": 4 - }, - { - "bestIndexedLevel": 17, - "fields": [ - "gij" - ], - "geoJson": true, - "id": "2010052", - "maxNumCoverCells": 8, - "sparse": true, - "type": "geo", - "unique": false, - "worstIndexedLevel": 4 - }, - { - "deduplicate": false, - "fields": [ - "hi", - "_key" - ], - "id": "2010053", - "sparse": false, - "type": "hash", - "unique": true - }, - { - "deduplicate": false, - "fields": [ - "pi" - ], - "id": "2010054", - "sparse": true, - "type": "persistent", - "unique": false - }, - { - "fields": [ - "fi" - ], - "id": "2010132", - "minLength": 3, - "sparse": true, - "type": "fulltext", - "unique": false - }, - { - "deduplicate": true, - "fields": [ - "sli" - ], - "id": "2010055", - "sparse": false, - "type": "skiplist", - "unique": false - } - ] - }, - "s2010045": { - "error": false, - "errorMessage": "", - "errorNum": 0, - "servers": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "indexes": [ - { - "fields": [ - "_key" - ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true - }, - { - "fields": [ - "_from" - ], - "id": "1", - "sparse": false, - "type": "edge", - "unique": false - }, - { - "fields": [ - "_to" - ], - "id": "2", - "sparse": false, - "type": "edge", - "unique": false - }, - { - "bestIndexedLevel": 17, - "fields": [ - "gi" - ], - "geoJson": false, - "id": "2010051", - "maxNumCoverCells": 8, - "sparse": true, - "type": "geo", - "unique": false, - "worstIndexedLevel": 4 - }, - { - "bestIndexedLevel": 17, - "fields": [ - "gij" - ], - "geoJson": true, - "id": "2010052", - "maxNumCoverCells": 8, - "sparse": true, - "type": "geo", - "unique": false, - "worstIndexedLevel": 4 - }, - { - "deduplicate": false, - "fields": [ - "hi", - "_key" - ], - "id": "2010053", - "sparse": false, - "type": "hash", - "unique": true - }, - { - "deduplicate": false, - "fields": [ - "pi" - ], - "id": "2010054", - "sparse": true, - "type": "persistent", - "unique": false - }, - { - "fields": [ - "fi" - ], - "id": "2010132", - "minLength": 3, - "sparse": true, - "type": "fulltext", - "unique": false - }, - { - "deduplicate": true, - "fields": [ - "sli" - ], - "id": "2010055", - "sparse": false, - "type": "skiplist", - "unique": false - } - ] - }, - "s2010042": { - "error": false, - "errorMessage": "", - "errorNum": 0, - "servers": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "indexes": [ - { - "fields": [ - "_key" - ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true - }, - { - "fields": [ - "_from" - ], - "id": "1", - "sparse": false, - "type": "edge", - "unique": false - }, - { - "fields": [ - "_to" - ], - "id": "2", - "sparse": false, - "type": "edge", - "unique": false - }, - { - "bestIndexedLevel": 17, - "fields": [ - "gi" - ], - "geoJson": false, - "id": "2010051", - "maxNumCoverCells": 8, - "sparse": true, - "type": "geo", - "unique": false, - "worstIndexedLevel": 4 - }, - { - "bestIndexedLevel": 17, - "fields": [ - "gij" - ], - "geoJson": true, - "id": "2010052", - "maxNumCoverCells": 8, - "sparse": true, - "type": "geo", - "unique": false, - "worstIndexedLevel": 4 - }, - { - "deduplicate": false, - "fields": [ - "hi", - "_key" - ], - "id": "2010053", - "sparse": false, - "type": "hash", - "unique": true - }, - { - "deduplicate": false, - "fields": [ - "pi" - ], - "id": "2010054", - "sparse": true, - "type": "persistent", - "unique": false - }, - { - "fields": [ - "fi" - ], - "id": "2010132", - "minLength": 3, - "sparse": true, - "type": "fulltext", - "unique": false - }, - { - "deduplicate": true, - "fields": [ - "sli" - ], - "id": "2010055", - "sparse": false, - "type": "skiplist", - "unique": false - } - ] - }, - "s2010048": { - "error": false, - "errorMessage": "", - "errorNum": 0, - "servers": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "indexes": [ - { - "fields": [ - "_key" - ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true - }, - { - "fields": [ - "_from" - ], - "id": "1", - "sparse": false, - "type": "edge", - "unique": false - }, - { - "fields": [ - "_to" - ], - "id": "2", - "sparse": false, - "type": "edge", - "unique": false - }, - { - "bestIndexedLevel": 17, - "fields": [ - "gi" - ], - "geoJson": false, - "id": "2010051", - "maxNumCoverCells": 8, - "sparse": true, - "type": "geo", - "unique": false, - "worstIndexedLevel": 4 - }, - { - "bestIndexedLevel": 17, - "fields": [ - "gij" - ], - "geoJson": true, - "id": "2010052", - "maxNumCoverCells": 8, - "sparse": true, - "type": "geo", - "unique": false, - "worstIndexedLevel": 4 - }, - { - "deduplicate": false, - "fields": [ - "hi", - "_key" - ], - "id": "2010053", - "sparse": false, - "type": "hash", - "unique": true - }, - { - "deduplicate": false, - "fields": [ - "pi" - ], - "id": "2010054", - "sparse": true, - "type": "persistent", - "unique": false - }, - { - "fields": [ - "fi" - ], - "id": "2010132", - "minLength": 3, - "sparse": true, - "type": "fulltext", - "unique": false - }, - { - "deduplicate": true, - "fields": [ - "sli" - ], - "id": "2010055", - "sparse": false, - "type": "skiplist", - "unique": false } ] } @@ -1285,8 +306,8 @@ R"=( "errorMessage": "", "errorNum": 0, "servers": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ], "indexes": [ { @@ -1301,14 +322,46 @@ R"=( ] } }, + "2010036": { + "s2010037": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "servers": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "sparse": false, + "type": "primary", + "unique": true + }, + { + "deduplicate": true, + "fields": [ + "time" + ], + "id": "2010038", + "sparse": false, + "type": "skiplist", + "unique": false + } + ] + } + }, "2010025": { "s2010026": { "error": false, "errorMessage": "", "errorNum": 0, "servers": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ], "indexes": [ { @@ -1333,14 +386,983 @@ R"=( ] } }, + "4010011": { + "s4010018": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "servers": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "sparse": false, + "type": "primary", + "unique": true + }, + { + "fields": [ + "_from" + ], + "id": "1", + "sparse": false, + "type": "edge", + "unique": false + }, + { + "fields": [ + "_to" + ], + "id": "2", + "sparse": false, + "type": "edge", + "unique": false + }, + { + "bestIndexedLevel": 17, + "fields": [ + "gi" + ], + "geoJson": false, + "id": "4010021", + "maxNumCoverCells": 8, + "sparse": true, + "type": "geo", + "unique": false, + "worstIndexedLevel": 4 + }, + { + "bestIndexedLevel": 17, + "fields": [ + "gij" + ], + "geoJson": true, + "id": "4010022", + "maxNumCoverCells": 8, + "sparse": true, + "type": "geo", + "unique": false, + "worstIndexedLevel": 4 + }, + { + "deduplicate": false, + "fields": [ + "hi", + "_key" + ], + "id": "4010023", + "sparse": false, + "type": "hash", + "unique": true + }, + { + "deduplicate": false, + "fields": [ + "pi" + ], + "id": "4010024", + "sparse": true, + "type": "persistent", + "unique": false + }, + { + "fields": [ + "fi" + ], + "id": "2010132", + "minLength": 3, + "sparse": true, + "type": "fulltext", + "unique": false + }, + { + "deduplicate": true, + "fields": [ + "sli" + ], + "id": "4010025", + "sparse": false, + "type": "skiplist", + "unique": false + } + ] + }, + "s4010015": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "servers": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "sparse": false, + "type": "primary", + "unique": true + }, + { + "fields": [ + "_from" + ], + "id": "1", + "sparse": false, + "type": "edge", + "unique": false + }, + { + "fields": [ + "_to" + ], + "id": "2", + "sparse": false, + "type": "edge", + "unique": false + }, + { + "bestIndexedLevel": 17, + "fields": [ + "gi" + ], + "geoJson": false, + "id": "4010021", + "maxNumCoverCells": 8, + "sparse": true, + "type": "geo", + "unique": false, + "worstIndexedLevel": 4 + }, + { + "bestIndexedLevel": 17, + "fields": [ + "gij" + ], + "geoJson": true, + "id": "4010022", + "maxNumCoverCells": 8, + "sparse": true, + "type": "geo", + "unique": false, + "worstIndexedLevel": 4 + }, + { + "deduplicate": false, + "fields": [ + "hi", + "_key" + ], + "id": "4010023", + "sparse": false, + "type": "hash", + "unique": true + }, + { + "deduplicate": false, + "fields": [ + "pi" + ], + "id": "4010024", + "sparse": true, + "type": "persistent", + "unique": false + }, + { + "fields": [ + "fi" + ], + "id": "2010132", + "minLength": 3, + "sparse": true, + "type": "fulltext", + "unique": false + }, + { + "deduplicate": true, + "fields": [ + "sli" + ], + "id": "4010025", + "sparse": false, + "type": "skiplist", + "unique": false + } + ] + }, + "s4010012": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "servers": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "sparse": false, + "type": "primary", + "unique": true + }, + { + "fields": [ + "_from" + ], + "id": "1", + "sparse": false, + "type": "edge", + "unique": false + }, + { + "fields": [ + "_to" + ], + "id": "2", + "sparse": false, + "type": "edge", + "unique": false + }, + { + "bestIndexedLevel": 17, + "fields": [ + "gi" + ], + "geoJson": false, + "id": "4010021", + "maxNumCoverCells": 8, + "sparse": true, + "type": "geo", + "unique": false, + "worstIndexedLevel": 4 + }, + { + "bestIndexedLevel": 17, + "fields": [ + "gij" + ], + "geoJson": true, + "id": "4010022", + "maxNumCoverCells": 8, + "sparse": true, + "type": "geo", + "unique": false, + "worstIndexedLevel": 4 + }, + { + "deduplicate": false, + "fields": [ + "hi", + "_key" + ], + "id": "4010023", + "sparse": false, + "type": "hash", + "unique": true + }, + { + "deduplicate": false, + "fields": [ + "pi" + ], + "id": "4010024", + "sparse": true, + "type": "persistent", + "unique": false + }, + { + "fields": [ + "fi" + ], + "id": "2010132", + "minLength": 3, + "sparse": true, + "type": "fulltext", + "unique": false + }, + { + "deduplicate": true, + "fields": [ + "sli" + ], + "id": "4010025", + "sparse": false, + "type": "skiplist", + "unique": false + } + ] + }, + "s4010020": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "servers": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "sparse": false, + "type": "primary", + "unique": true + }, + { + "fields": [ + "_from" + ], + "id": "1", + "sparse": false, + "type": "edge", + "unique": false + }, + { + "fields": [ + "_to" + ], + "id": "2", + "sparse": false, + "type": "edge", + "unique": false + }, + { + "bestIndexedLevel": 17, + "fields": [ + "gi" + ], + "geoJson": false, + "id": "4010021", + "maxNumCoverCells": 8, + "sparse": true, + "type": "geo", + "unique": false, + "worstIndexedLevel": 4 + }, + { + "bestIndexedLevel": 17, + "fields": [ + "gij" + ], + "geoJson": true, + "id": "4010022", + "maxNumCoverCells": 8, + "sparse": true, + "type": "geo", + "unique": false, + "worstIndexedLevel": 4 + }, + { + "deduplicate": false, + "fields": [ + "hi", + "_key" + ], + "id": "4010023", + "sparse": false, + "type": "hash", + "unique": true + }, + { + "deduplicate": false, + "fields": [ + "pi" + ], + "id": "4010024", + "sparse": true, + "type": "persistent", + "unique": false + }, + { + "fields": [ + "fi" + ], + "id": "2010132", + "minLength": 3, + "sparse": true, + "type": "fulltext", + "unique": false + }, + { + "deduplicate": true, + "fields": [ + "sli" + ], + "id": "4010025", + "sparse": false, + "type": "skiplist", + "unique": false + } + ] + }, + "s4010016": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "servers": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "sparse": false, + "type": "primary", + "unique": true + }, + { + "fields": [ + "_from" + ], + "id": "1", + "sparse": false, + "type": "edge", + "unique": false + }, + { + "fields": [ + "_to" + ], + "id": "2", + "sparse": false, + "type": "edge", + "unique": false + }, + { + "bestIndexedLevel": 17, + "fields": [ + "gi" + ], + "geoJson": false, + "id": "4010021", + "maxNumCoverCells": 8, + "sparse": true, + "type": "geo", + "unique": false, + "worstIndexedLevel": 4 + }, + { + "bestIndexedLevel": 17, + "fields": [ + "gij" + ], + "geoJson": true, + "id": "4010022", + "maxNumCoverCells": 8, + "sparse": true, + "type": "geo", + "unique": false, + "worstIndexedLevel": 4 + }, + { + "deduplicate": false, + "fields": [ + "hi", + "_key" + ], + "id": "4010023", + "sparse": false, + "type": "hash", + "unique": true + }, + { + "deduplicate": false, + "fields": [ + "pi" + ], + "id": "4010024", + "sparse": true, + "type": "persistent", + "unique": false + }, + { + "fields": [ + "fi" + ], + "id": "2010132", + "minLength": 3, + "sparse": true, + "type": "fulltext", + "unique": false + }, + { + "deduplicate": true, + "fields": [ + "sli" + ], + "id": "4010025", + "sparse": false, + "type": "skiplist", + "unique": false + } + ] + }, + "s4010017": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "servers": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "sparse": false, + "type": "primary", + "unique": true + }, + { + "fields": [ + "_from" + ], + "id": "1", + "sparse": false, + "type": "edge", + "unique": false + }, + { + "fields": [ + "_to" + ], + "id": "2", + "sparse": false, + "type": "edge", + "unique": false + }, + { + "bestIndexedLevel": 17, + "fields": [ + "gi" + ], + "geoJson": false, + "id": "4010021", + "maxNumCoverCells": 8, + "sparse": true, + "type": "geo", + "unique": false, + "worstIndexedLevel": 4 + }, + { + "bestIndexedLevel": 17, + "fields": [ + "gij" + ], + "geoJson": true, + "id": "4010022", + "maxNumCoverCells": 8, + "sparse": true, + "type": "geo", + "unique": false, + "worstIndexedLevel": 4 + }, + { + "deduplicate": false, + "fields": [ + "hi", + "_key" + ], + "id": "4010023", + "sparse": false, + "type": "hash", + "unique": true + }, + { + "deduplicate": false, + "fields": [ + "pi" + ], + "id": "4010024", + "sparse": true, + "type": "persistent", + "unique": false + }, + { + "fields": [ + "fi" + ], + "id": "2010132", + "minLength": 3, + "sparse": true, + "type": "fulltext", + "unique": false + }, + { + "deduplicate": true, + "fields": [ + "sli" + ], + "id": "4010025", + "sparse": false, + "type": "skiplist", + "unique": false + } + ] + }, + "s4010014": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "servers": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "sparse": false, + "type": "primary", + "unique": true + }, + { + "fields": [ + "_from" + ], + "id": "1", + "sparse": false, + "type": "edge", + "unique": false + }, + { + "fields": [ + "_to" + ], + "id": "2", + "sparse": false, + "type": "edge", + "unique": false + }, + { + "bestIndexedLevel": 17, + "fields": [ + "gi" + ], + "geoJson": false, + "id": "4010021", + "maxNumCoverCells": 8, + "sparse": true, + "type": "geo", + "unique": false, + "worstIndexedLevel": 4 + }, + { + "bestIndexedLevel": 17, + "fields": [ + "gij" + ], + "geoJson": true, + "id": "4010022", + "maxNumCoverCells": 8, + "sparse": true, + "type": "geo", + "unique": false, + "worstIndexedLevel": 4 + }, + { + "deduplicate": false, + "fields": [ + "hi", + "_key" + ], + "id": "4010023", + "sparse": false, + "type": "hash", + "unique": true + }, + { + "deduplicate": false, + "fields": [ + "pi" + ], + "id": "4010024", + "sparse": true, + "type": "persistent", + "unique": false + }, + { + "fields": [ + "fi" + ], + "id": "2010132", + "minLength": 3, + "sparse": true, + "type": "fulltext", + "unique": false + }, + { + "deduplicate": true, + "fields": [ + "sli" + ], + "id": "4010025", + "sparse": false, + "type": "skiplist", + "unique": false + } + ] + }, + "s4010013": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "servers": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "sparse": false, + "type": "primary", + "unique": true + }, + { + "fields": [ + "_from" + ], + "id": "1", + "sparse": false, + "type": "edge", + "unique": false + }, + { + "fields": [ + "_to" + ], + "id": "2", + "sparse": false, + "type": "edge", + "unique": false + }, + { + "bestIndexedLevel": 17, + "fields": [ + "gi" + ], + "geoJson": false, + "id": "4010021", + "maxNumCoverCells": 8, + "sparse": true, + "type": "geo", + "unique": false, + "worstIndexedLevel": 4 + }, + { + "bestIndexedLevel": 17, + "fields": [ + "gij" + ], + "geoJson": true, + "id": "4010022", + "maxNumCoverCells": 8, + "sparse": true, + "type": "geo", + "unique": false, + "worstIndexedLevel": 4 + }, + { + "deduplicate": false, + "fields": [ + "hi", + "_key" + ], + "id": "4010023", + "sparse": false, + "type": "hash", + "unique": true + }, + { + "deduplicate": false, + "fields": [ + "pi" + ], + "id": "4010024", + "sparse": true, + "type": "persistent", + "unique": false + }, + { + "fields": [ + "fi" + ], + "id": "2010132", + "minLength": 3, + "sparse": true, + "type": "fulltext", + "unique": false + }, + { + "deduplicate": true, + "fields": [ + "sli" + ], + "id": "4010025", + "sparse": false, + "type": "skiplist", + "unique": false + } + ] + }, + "s4010019": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "servers": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "sparse": false, + "type": "primary", + "unique": true + }, + { + "fields": [ + "_from" + ], + "id": "1", + "sparse": false, + "type": "edge", + "unique": false + }, + { + "fields": [ + "_to" + ], + "id": "2", + "sparse": false, + "type": "edge", + "unique": false + }, + { + "bestIndexedLevel": 17, + "fields": [ + "gi" + ], + "geoJson": false, + "id": "4010021", + "maxNumCoverCells": 8, + "sparse": true, + "type": "geo", + "unique": false, + "worstIndexedLevel": 4 + }, + { + "bestIndexedLevel": 17, + "fields": [ + "gij" + ], + "geoJson": true, + "id": "4010022", + "maxNumCoverCells": 8, + "sparse": true, + "type": "geo", + "unique": false, + "worstIndexedLevel": 4 + }, + { + "deduplicate": false, + "fields": [ + "hi", + "_key" + ], + "id": "4010023", + "sparse": false, + "type": "hash", + "unique": true + }, + { + "deduplicate": false, + "fields": [ + "pi" + ], + "id": "4010024", + "sparse": true, + "type": "persistent", + "unique": false + }, + { + "fields": [ + "fi" + ], + "id": "2010132", + "minLength": 3, + "sparse": true, + "type": "fulltext", + "unique": false + }, + { + "deduplicate": true, + "fields": [ + "sli" + ], + "id": "4010025", + "sparse": false, + "type": "skiplist", + "unique": false + } + ] + } + }, + "2010019": { + "s2010020": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "servers": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "sparse": false, + "type": "primary", + "unique": true + } + ] + } + }, "2010021": { "s2010022": { "error": false, "errorMessage": "", "errorNum": 0, "servers": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ], "indexes": [ { @@ -1378,39 +1400,17 @@ R"=( } ] } - }, - "2010056": { - "s2010057": { - "error": false, - "errorMessage": "", - "errorNum": 0, - "servers": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "indexes": [ - { - "fields": [ - "_key" - ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true - } - ] - } } }, "foo": { - "2010072": { - "s2010073": { + "4010042": { + "s4010043": { "error": false, "errorMessage": "", "errorNum": 0, "servers": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ], "indexes": [ { @@ -1425,14 +1425,14 @@ R"=( ] } }, - "2010061": { - "s2010062": { + "4010040": { + "s4010041": { "error": false, "errorMessage": "", "errorNum": 0, "servers": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ], "indexes": [ { @@ -1447,14 +1447,14 @@ R"=( ] } }, - "2010063": { - "s2010064": { + "4010033": { + "s4010034": { "error": false, "errorMessage": "", "errorNum": 0, "servers": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ], "indexes": [ { @@ -1469,14 +1469,338 @@ R"=( ] } }, - "2010078": { - "s2010079": { + "4010038": { + "s4010039": { "error": false, "errorMessage": "", "errorNum": 0, "servers": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "sparse": false, + "type": "primary", + "unique": true + } + ] + } + }, + "4010053": { + "s4010054": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "servers": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "sparse": false, + "type": "primary", + "unique": true + }, + { + "fields": [ + "_from" + ], + "id": "1", + "sparse": false, + "type": "edge", + "unique": false + }, + { + "fields": [ + "_to" + ], + "id": "2", + "sparse": false, + "type": "edge", + "unique": false + } + ] + }, + "s4010055": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "servers": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "sparse": false, + "type": "primary", + "unique": true + }, + { + "fields": [ + "_from" + ], + "id": "1", + "sparse": false, + "type": "edge", + "unique": false + }, + { + "fields": [ + "_to" + ], + "id": "2", + "sparse": false, + "type": "edge", + "unique": false + } + ] + }, + "s4010056": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "servers": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "sparse": false, + "type": "primary", + "unique": true + }, + { + "fields": [ + "_from" + ], + "id": "1", + "sparse": false, + "type": "edge", + "unique": false + }, + { + "fields": [ + "_to" + ], + "id": "2", + "sparse": false, + "type": "edge", + "unique": false + } + ] + }, + "s4010057": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "servers": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "sparse": false, + "type": "primary", + "unique": true + }, + { + "fields": [ + "_from" + ], + "id": "1", + "sparse": false, + "type": "edge", + "unique": false + }, + { + "fields": [ + "_to" + ], + "id": "2", + "sparse": false, + "type": "edge", + "unique": false + } + ] + } + }, + "4010058": { + "s4010062": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "servers": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "sparse": false, + "type": "primary", + "unique": true + } + ] + }, + "s4010064": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "servers": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "sparse": false, + "type": "primary", + "unique": true + } + ] + }, + "s4010059": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "servers": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "sparse": false, + "type": "primary", + "unique": true + } + ] + }, + "s4010063": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "servers": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "sparse": false, + "type": "primary", + "unique": true + } + ] + }, + "s4010060": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "servers": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "sparse": false, + "type": "primary", + "unique": true + } + ] + }, + "s4010061": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "servers": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "sparse": false, + "type": "primary", + "unique": true + } + ] + } + }, + "4010051": { + "s4010052": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "servers": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "sparse": false, + "type": "primary", + "unique": true + } + ] + } + }, + "4010048": { + "s4010049": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "servers": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ], "indexes": [ { @@ -1493,7 +1817,7 @@ R"=( "fields": [ "mount" ], - "id": "2010080", + "id": "4010050", "sparse": true, "type": "hash", "unique": true @@ -1501,114 +1825,14 @@ R"=( ] } }, - "2010088": { - "s2010092": { + "4010029": { + "s4010030": { "error": false, "errorMessage": "", "errorNum": 0, "servers": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "indexes": [ - { - "fields": [ - "_key" - ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true - } - ] - }, - "s2010089": { - "error": false, - "errorMessage": "", - "errorNum": 0, - "servers": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "indexes": [ - { - "fields": [ - "_key" - ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true - } - ] - }, - "s2010090": { - "error": false, - "errorMessage": "", - "errorNum": 0, - "servers": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "indexes": [ - { - "fields": [ - "_key" - ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true - } - ] - }, - "s2010093": { - "error": false, - "errorMessage": "", - "errorNum": 0, - "servers": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "indexes": [ - { - "fields": [ - "_key" - ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true - } - ] - }, - "s2010091": { - "error": false, - "errorMessage": "", - "errorNum": 0, - "servers": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "indexes": [ - { - "fields": [ - "_key" - ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true - } - ] - }, - "s2010094": { - "error": false, - "errorMessage": "", - "errorNum": 0, - "servers": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ], "indexes": [ { @@ -1623,216 +1847,14 @@ R"=( ] } }, - "2010068": { - "s2010069": { + "4010044": { + "s4010045": { "error": false, "errorMessage": "", "errorNum": 0, "servers": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "indexes": [ - { - "fields": [ - "_key" - ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true - } - ] - } - }, - "2010081": { - "s2010082": { - "error": false, - "errorMessage": "", - "errorNum": 0, - "servers": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "indexes": [ - { - "fields": [ - "_key" - ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true - } - ] - } - }, - "2010083": { - "s2010084": { - "error": false, - "errorMessage": "", - "errorNum": 0, - "servers": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "indexes": [ - { - "fields": [ - "_key" - ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true - }, - { - "fields": [ - "_from" - ], - "id": "1", - "sparse": false, - "type": "edge", - "unique": false - }, - { - "fields": [ - "_to" - ], - "id": "2", - "sparse": false, - "type": "edge", - "unique": false - } - ] - }, - "s2010085": { - "error": false, - "errorMessage": "", - "errorNum": 0, - "servers": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "indexes": [ - { - "fields": [ - "_key" - ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true - }, - { - "fields": [ - "_from" - ], - "id": "1", - "sparse": false, - "type": "edge", - "unique": false - }, - { - "fields": [ - "_to" - ], - "id": "2", - "sparse": false, - "type": "edge", - "unique": false - } - ] - }, - "s2010087": { - "error": false, - "errorMessage": "", - "errorNum": 0, - "servers": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "indexes": [ - { - "fields": [ - "_key" - ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true - }, - { - "fields": [ - "_from" - ], - "id": "1", - "sparse": false, - "type": "edge", - "unique": false - }, - { - "fields": [ - "_to" - ], - "id": "2", - "sparse": false, - "type": "edge", - "unique": false - } - ] - }, - "s2010086": { - "error": false, - "errorMessage": "", - "errorNum": 0, - "servers": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "indexes": [ - { - "fields": [ - "_key" - ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true - }, - { - "fields": [ - "_from" - ], - "id": "1", - "sparse": false, - "type": "edge", - "unique": false - }, - { - "fields": [ - "_to" - ], - "id": "2", - "sparse": false, - "type": "edge", - "unique": false - } - ] - } - }, - "2010074": { - "s2010075": { - "error": false, - "errorMessage": "", - "errorNum": 0, - "servers": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ], "indexes": [ { @@ -1851,7 +1873,7 @@ R"=( "status", "delayUntil" ], - "id": "2010076", + "id": "4010046", "sparse": true, "type": "skiplist", "unique": true @@ -1863,7 +1885,7 @@ R"=( "queue", "delayUntil" ], - "id": "2010077", + "id": "4010047", "sparse": true, "type": "skiplist", "unique": true @@ -1871,36 +1893,14 @@ R"=( ] } }, - "2010070": { - "s2010071": { + "4010031": { + "s4010032": { "error": false, "errorMessage": "", "errorNum": 0, "servers": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "indexes": [ - { - "fields": [ - "_key" - ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true - } - ] - } - }, - "2010059": { - "s2010060": { - "error": false, - "errorMessage": "", - "errorNum": 0, - "servers": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ], "indexes": [ { @@ -1918,54 +1918,59 @@ R"=( } }, "DBServers": { - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d": "none", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da": "none", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf": "none" + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23": "none", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f": "none", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86": "none" }, "Singles": {}, "Lock": "UNLOCKED", "Version": 166, "Coordinators": { - "CRDN-383e3a90-2b26-49fe-9974-f9fce7b5eabf": "none", - "CRDN-8d79ded3-9062-4521-8fa6-7ef3aaf144ad": "none" + "CRDN-122291f4-3bfe-4037-b51d-b6b1066604b0": "none", + "CRDN-33a81ec1-e22a-43fe-997c-6cc766208cb0": "none" }, - "Foxxmaster": "CRDN-383e3a90-2b26-49fe-9974-f9fce7b5eabf", + "Foxxmaster": "CRDN-122291f4-3bfe-4037-b51d-b6b1066604b0", "ServersRegistered": { - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d": { - "endpoint": "tcp://[::1]:11197", + "CRDN-122291f4-3bfe-4037-b51d-b6b1066604b0": { + "endpoint": "tcp://[::1]:11098", + "versionString": "3.4.0-rc.5", "advertisedEndpoint": "", "engine": "rocksdb", "version": 30400, - "host": "ac8ddefc7d1f4364ba655b4debcd076f" + "host": "7e56da52e94b4c5190f0e8d559243c42" }, "Version": 1, - "CRDN-383e3a90-2b26-49fe-9974-f9fce7b5eabf": { - "endpoint": "tcp://[::1]:11097", - "advertisedEndpoint": "", - "engine": "rocksdb", - "version": 30400, - "host": "ac8ddefc7d1f4364ba655b4debcd076f" - }, - "CRDN-8d79ded3-9062-4521-8fa6-7ef3aaf144ad": { - "endpoint": "tcp://[::1]:11098", - "advertisedEndpoint": "", - "engine": "rocksdb", - "version": 30400, - "host": "ac8ddefc7d1f4364ba655b4debcd076f" - }, - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da": { + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23": { "endpoint": "tcp://[::1]:11198", + "versionString": "3.4.0-rc.5", "advertisedEndpoint": "", "engine": "rocksdb", "version": 30400, - "host": "ac8ddefc7d1f4364ba655b4debcd076f" + "host": "7e56da52e94b4c5190f0e8d559243c42" }, - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf": { - "endpoint": "tcp://[::1]:11196", + "CRDN-33a81ec1-e22a-43fe-997c-6cc766208cb0": { + "endpoint": "tcp://[::1]:11097", + "versionString": "3.4.0-rc.5", "advertisedEndpoint": "", "engine": "rocksdb", "version": 30400, - "host": "ac8ddefc7d1f4364ba655b4debcd076f" + "host": "7e56da52e94b4c5190f0e8d559243c42" + }, + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f": { + "endpoint": "tcp://[::1]:11197", + "versionString": "3.4.0-rc.5", + "advertisedEndpoint": "", + "engine": "rocksdb", + "version": 30400, + "host": "7e56da52e94b4c5190f0e8d559243c42" + }, + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86": { + "endpoint": "tcp://[::1]:11196", + "versionString": "3.4.0-rc.5", + "advertisedEndpoint": "", + "engine": "rocksdb", + "version": 30400, + "host": "7e56da52e94b4c5190f0e8d559243c42" } }, "ShardsCopied": {}, diff --git a/tests/Maintenance/DBServer0001.json b/tests/Maintenance/DBServer0001.json index 8cd66fa3da..ed3125b8a1 100644 --- a/tests/Maintenance/DBServer0001.json +++ b/tests/Maintenance/DBServer0001.json @@ -1,17 +1,17 @@ R"=( { "_system": { - "s2010057": { - "id": "11", - "name": "s2010057", - "cid": "11", + "s4010027": { + "globallyUniqueId": "c4010026/s4010027", + "id": "10025", + "name": "s4010027", + "cid": "10025", "type": 2, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010056/s2010057", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -19,7 +19,7 @@ R"=( "type": "traditional", "lastValue": 0 }, - "objectId": "2010558", + "objectId": "4010481", "cacheEnabled": false, "indexes": [ { @@ -33,12 +33,12 @@ R"=( } ], "isSmart": false, - "planId": "2010056", + "planId": "4010026", "numberOfShards": 1, "shards": { - "s2010057": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s4010027": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" ] }, "replicationFactor": 2, @@ -46,19 +46,20 @@ R"=( "_key" ], "shardingStrategy": "hash", - "theLeader": "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "theLeader": "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "theLeaderTouched": true }, - "s2010050": { - "id": "10", - "name": "s2010050", - "cid": "10", + "s4010019": { + "globallyUniqueId": "c4010011/s4010019", + "id": "10024", + "name": "s4010019", + "cid": "10024", "type": 3, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010041/s2010050", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -66,7 +67,7 @@ R"=( "type": "traditional", "lastValue": 0 }, - "objectId": "2010276", + "objectId": "4010028", "cacheEnabled": false, "indexes": [ { @@ -97,7 +98,7 @@ R"=( "sparse": false }, { - "id": "2010051", + "id": "4010021", "type": "geo", "fields": [ "gi" @@ -110,7 +111,7 @@ R"=( "sparse": true }, { - "id": "2010052", + "id": "4010022", "type": "geo", "fields": [ "gij" @@ -123,7 +124,7 @@ R"=( "sparse": true }, { - "id": "2010053", + "id": "4010023", "type": "hash", "fields": [ "hi", @@ -134,7 +135,7 @@ R"=( "deduplicate": false }, { - "id": "2010054", + "id": "4010024", "type": "persistent", "fields": [ "pi" @@ -154,7 +155,7 @@ R"=( "minLength": 3 }, { - "id": "2010055", + "id": "4010025", "type": "skiplist", "fields": [ "sli" @@ -165,44 +166,44 @@ R"=( } ], "isSmart": false, - "planId": "2010041", + "planId": "4010011", "numberOfShards": 9, "shards": { - "s2010050": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s4010019": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" ], - "s2010049": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "s4010018": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" ], - "s2010048": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "s4010012": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" ], - "s2010043": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "s4010013": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" ], - "s2010044": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s4010014": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ], - "s2010042": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "s4010015": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" ], - "s2010045": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "s4010020": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ], - "s2010046": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "s4010016": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" ], - "s2010047": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s4010017": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -210,19 +211,20 @@ R"=( "_key" ], "shardingStrategy": "hash", - "theLeader": "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "theLeader": "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "theLeaderTouched": true }, - "s2010048": { - "id": "9", - "name": "s2010048", - "cid": "9", + "s4010020": { + "globallyUniqueId": "c4010011/s4010020", + "id": "10023", + "name": "s4010020", + "cid": "10023", "type": 3, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010041/s2010048", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -230,7 +232,7 @@ R"=( "type": "traditional", "lastValue": 0 }, - "objectId": "2010272", + "objectId": "4010027", "cacheEnabled": false, "indexes": [ { @@ -261,7 +263,7 @@ R"=( "sparse": false }, { - "id": "2010051", + "id": "4010021", "type": "geo", "fields": [ "gi" @@ -274,7 +276,7 @@ R"=( "sparse": true }, { - "id": "2010052", + "id": "4010022", "type": "geo", "fields": [ "gij" @@ -287,7 +289,7 @@ R"=( "sparse": true }, { - "id": "2010053", + "id": "4010023", "type": "hash", "fields": [ "hi", @@ -298,7 +300,7 @@ R"=( "deduplicate": false }, { - "id": "2010054", + "id": "4010024", "type": "persistent", "fields": [ "pi" @@ -318,7 +320,7 @@ R"=( "minLength": 3 }, { - "id": "2010055", + "id": "4010025", "type": "skiplist", "fields": [ "sli" @@ -329,44 +331,44 @@ R"=( } ], "isSmart": false, - "planId": "2010041", + "planId": "4010011", "numberOfShards": 9, "shards": { - "s2010050": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s4010019": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" ], - "s2010049": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "s4010018": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" ], - "s2010048": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "s4010012": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" ], - "s2010043": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "s4010013": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" ], - "s2010044": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s4010014": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ], - "s2010042": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "s4010015": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" ], - "s2010045": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "s4010020": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ], - "s2010046": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "s4010016": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" ], - "s2010047": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s4010017": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -375,22 +377,23 @@ R"=( ], "shardingStrategy": "hash", "theLeader": "", + "theLeaderTouched": true, "servers": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, - "s2010047": { - "id": "8", - "name": "s2010047", - "cid": "8", + "s4010017": { + "globallyUniqueId": "c4010011/s4010017", + "id": "10022", + "name": "s4010017", + "cid": "10022", "type": 3, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010041/s2010047", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -398,7 +401,7 @@ R"=( "type": "traditional", "lastValue": 0 }, - "objectId": "2010269", + "objectId": "4010023", "cacheEnabled": false, "indexes": [ { @@ -429,7 +432,7 @@ R"=( "sparse": false }, { - "id": "2010051", + "id": "4010021", "type": "geo", "fields": [ "gi" @@ -442,7 +445,7 @@ R"=( "sparse": true }, { - "id": "2010052", + "id": "4010022", "type": "geo", "fields": [ "gij" @@ -455,7 +458,7 @@ R"=( "sparse": true }, { - "id": "2010053", + "id": "4010023", "type": "hash", "fields": [ "hi", @@ -466,7 +469,7 @@ R"=( "deduplicate": false }, { - "id": "2010054", + "id": "4010024", "type": "persistent", "fields": [ "pi" @@ -486,7 +489,7 @@ R"=( "minLength": 3 }, { - "id": "2010055", + "id": "4010025", "type": "skiplist", "fields": [ "sli" @@ -497,44 +500,44 @@ R"=( } ], "isSmart": false, - "planId": "2010041", + "planId": "4010011", "numberOfShards": 9, "shards": { - "s2010050": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s4010019": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" ], - "s2010049": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "s4010018": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" ], - "s2010048": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "s4010012": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" ], - "s2010043": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "s4010013": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" ], - "s2010044": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s4010014": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ], - "s2010042": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "s4010015": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" ], - "s2010045": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "s4010020": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ], - "s2010046": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "s4010016": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" ], - "s2010047": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s4010017": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -542,19 +545,24 @@ R"=( "_key" ], "shardingStrategy": "hash", - "theLeader": "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "theLeader": "", + "theLeaderTouched": true, + "servers": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] }, - "s2010044": { - "id": "7", - "name": "s2010044", - "cid": "7", + "s4010016": { + "globallyUniqueId": "c4010011/s4010016", + "id": "10021", + "name": "s4010016", + "cid": "10021", "type": 3, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010041/s2010044", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -562,7 +570,7 @@ R"=( "type": "traditional", "lastValue": 0 }, - "objectId": "2010265", + "objectId": "4010019", "cacheEnabled": false, "indexes": [ { @@ -593,7 +601,7 @@ R"=( "sparse": false }, { - "id": "2010051", + "id": "4010021", "type": "geo", "fields": [ "gi" @@ -606,7 +614,7 @@ R"=( "sparse": true }, { - "id": "2010052", + "id": "4010022", "type": "geo", "fields": [ "gij" @@ -619,7 +627,7 @@ R"=( "sparse": true }, { - "id": "2010053", + "id": "4010023", "type": "hash", "fields": [ "hi", @@ -630,7 +638,7 @@ R"=( "deduplicate": false }, { - "id": "2010054", + "id": "4010024", "type": "persistent", "fields": [ "pi" @@ -650,7 +658,7 @@ R"=( "minLength": 3 }, { - "id": "2010055", + "id": "4010025", "type": "skiplist", "fields": [ "sli" @@ -661,44 +669,44 @@ R"=( } ], "isSmart": false, - "planId": "2010041", + "planId": "4010011", "numberOfShards": 9, "shards": { - "s2010050": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s4010019": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" ], - "s2010049": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "s4010018": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" ], - "s2010048": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "s4010012": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" ], - "s2010043": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "s4010013": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" ], - "s2010044": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s4010014": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ], - "s2010042": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "s4010015": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" ], - "s2010045": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "s4010020": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ], - "s2010046": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "s4010016": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" ], - "s2010047": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s4010017": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -706,27 +714,362 @@ R"=( "_key" ], "shardingStrategy": "hash", - "theLeader": "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "theLeader": "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "theLeaderTouched": true }, - "_statisticsRaw": { - "id": "2", - "name": "_statisticsRaw", - "cid": "2", + "s4010013": { + "globallyUniqueId": "c4010011/s4010013", + "id": "10019", + "name": "s4010013", + "cid": "10019", + "type": 3, + "status": 3, + "statusString": "loaded", + "version": 7, + "waitForSync": false, + "deleted": false, + "isSystem": false, + "allowUserKeys": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional", + "lastValue": 0 + }, + "objectId": "4010015", + "cacheEnabled": false, + "indexes": [ + { + "id": "0", + "type": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + }, + { + "id": "1", + "type": "edge", + "fields": [ + "_from" + ], + "unique": false, + "sparse": false + }, + { + "id": "2", + "type": "edge", + "fields": [ + "_to" + ], + "unique": false, + "sparse": false + }, + { + "id": "4010021", + "type": "geo", + "fields": [ + "gi" + ], + "maxNumCoverCells": 8, + "worstIndexedLevel": 4, + "bestIndexedLevel": 17, + "geoJson": false, + "unique": false, + "sparse": true + }, + { + "id": "4010022", + "type": "geo", + "fields": [ + "gij" + ], + "maxNumCoverCells": 8, + "worstIndexedLevel": 4, + "bestIndexedLevel": 17, + "geoJson": true, + "unique": false, + "sparse": true + }, + { + "id": "4010023", + "type": "hash", + "fields": [ + "hi", + "_key" + ], + "unique": true, + "sparse": false, + "deduplicate": false + }, + { + "id": "4010024", + "type": "persistent", + "fields": [ + "pi" + ], + "unique": false, + "sparse": true, + "deduplicate": false + }, + { + "id": "2010132", + "type": "fulltext", + "fields": [ + "fi" + ], + "unique": false, + "sparse": true, + "minLength": 3 + }, + { + "id": "4010025", + "type": "skiplist", + "fields": [ + "sli" + ], + "unique": false, + "sparse": false, + "deduplicate": true + } + ], + "isSmart": false, + "planId": "4010011", + "numberOfShards": 9, + "shards": { + "s4010019": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010018": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010012": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010013": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010014": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010015": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010020": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010016": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010017": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] + }, + "replicationFactor": 2, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "theLeader": "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "theLeaderTouched": true + }, + "s4010014": { + "globallyUniqueId": "c4010011/s4010014", + "id": "10020", + "name": "s4010014", + "cid": "10020", + "type": 3, + "status": 3, + "statusString": "loaded", + "version": 7, + "waitForSync": false, + "deleted": false, + "isSystem": false, + "allowUserKeys": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional", + "lastValue": 0 + }, + "objectId": "4010016", + "cacheEnabled": false, + "indexes": [ + { + "id": "0", + "type": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + }, + { + "id": "1", + "type": "edge", + "fields": [ + "_from" + ], + "unique": false, + "sparse": false + }, + { + "id": "2", + "type": "edge", + "fields": [ + "_to" + ], + "unique": false, + "sparse": false + }, + { + "id": "4010021", + "type": "geo", + "fields": [ + "gi" + ], + "maxNumCoverCells": 8, + "worstIndexedLevel": 4, + "bestIndexedLevel": 17, + "geoJson": false, + "unique": false, + "sparse": true + }, + { + "id": "4010022", + "type": "geo", + "fields": [ + "gij" + ], + "maxNumCoverCells": 8, + "worstIndexedLevel": 4, + "bestIndexedLevel": 17, + "geoJson": true, + "unique": false, + "sparse": true + }, + { + "id": "4010023", + "type": "hash", + "fields": [ + "hi", + "_key" + ], + "unique": true, + "sparse": false, + "deduplicate": false + }, + { + "id": "4010024", + "type": "persistent", + "fields": [ + "pi" + ], + "unique": false, + "sparse": true, + "deduplicate": false + }, + { + "id": "2010132", + "type": "fulltext", + "fields": [ + "fi" + ], + "unique": false, + "sparse": true, + "minLength": 3 + }, + { + "id": "4010025", + "type": "skiplist", + "fields": [ + "sli" + ], + "unique": false, + "sparse": false, + "deduplicate": true + } + ], + "isSmart": false, + "planId": "4010011", + "numberOfShards": 9, + "shards": { + "s4010019": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010018": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010012": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010013": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010014": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010015": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010020": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010016": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010017": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] + }, + "replicationFactor": 2, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "theLeader": "", + "theLeaderTouched": true, + "servers": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] + }, + "s2010040": { + "globallyUniqueId": "c2010039/s2010040", + "id": "10018", + "name": "s2010040", + "cid": "10018", "type": 2, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2/_statisticsRaw", - "isSystem": true, + "isSystem": false, "allowUserKeys": true, "keyOptions": { "allowUserKeys": true, "type": "traditional", - "lastValue": 21 + "lastValue": 0 }, - "objectId": "4", + "objectId": "2010392", "cacheEnabled": false, "indexes": [ { @@ -739,7 +1082,7 @@ R"=( "sparse": false }, { - "id": "8", + "id": "2010041", "type": "skiplist", "fields": [ "time" @@ -750,83 +1093,45 @@ R"=( } ], "isSmart": false, - "planId": "2", + "planId": "2010039", "numberOfShards": 1, - "shards": {}, - "replicationFactor": 1, + "shards": { + "s2010040": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] + }, + "replicationFactor": 2, "shardKeys": [ "_key" ], - "shardingStrategy": "none", + "shardingStrategy": "hash", "theLeader": "", + "theLeaderTouched": true, "servers": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, - "_iresearch_analyzers": { - "id": "1", - "name": "_iresearch_analyzers", - "cid": "1", + "s2010037": { + "globallyUniqueId": "c2010036/s2010037", + "id": "10017", + "name": "s2010037", + "cid": "10017", "type": 2, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c1/_iresearch_analyzers", - "isSystem": true, + "isSystem": false, "allowUserKeys": true, "keyOptions": { "allowUserKeys": true, "type": "traditional", "lastValue": 0 }, - "objectId": "2", - "cacheEnabled": false, - "indexes": [ - { - "id": "0", - "type": "primary", - "fields": [ - "_key" - ], - "unique": true, - "sparse": false - } - ], - "isSmart": false, - "planId": "1", - "numberOfShards": 1, - "shards": {}, - "replicationFactor": 1, - "shardKeys": [ - "_key" - ], - "shardingStrategy": "none", - "theLeader": "", - "servers": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ] - }, - "_statistics": { - "id": "3", - "name": "_statistics", - "cid": "3", - "type": 2, - "status": 3, - "statusString": "loaded", - "version": 7, - "waitForSync": false, - "deleted": false, - "globallyUniqueId": "c3/_statistics", - "isSystem": true, - "allowUserKeys": true, - "keyOptions": { - "allowUserKeys": true, - "type": "traditional", - "lastValue": 0 - }, - "objectId": "9", + "objectId": "2010329", "cacheEnabled": false, "indexes": [ { @@ -839,7 +1144,7 @@ R"=( "sparse": false }, { - "id": "13", + "id": "2010038", "type": "skiplist", "fields": [ "time" @@ -850,93 +1155,45 @@ R"=( } ], "isSmart": false, - "planId": "3", + "planId": "2010036", "numberOfShards": 1, - "shards": {}, - "replicationFactor": 1, + "shards": { + "s2010037": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] + }, + "replicationFactor": 2, "shardKeys": [ "_key" ], - "shardingStrategy": "none", + "shardingStrategy": "hash", "theLeader": "", + "theLeaderTouched": true, "servers": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, - "_statistics15": { - "id": "4", - "name": "_statistics15", - "cid": "4", + "s2010004": { + "globallyUniqueId": "c2010003/s2010004", + "id": "10006", + "name": "s2010004", + "cid": "10006", "type": 2, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c4/_statistics15", - "isSystem": true, - "allowUserKeys": true, - "keyOptions": { - "allowUserKeys": true, - "type": "traditional", - "lastValue": 0 - }, - "objectId": "14", - "cacheEnabled": false, - "indexes": [ - { - "id": "0", - "type": "primary", - "fields": [ - "_key" - ], - "unique": true, - "sparse": false - }, - { - "id": "18", - "type": "skiplist", - "fields": [ - "time" - ], - "unique": false, - "sparse": false, - "deduplicate": true - } - ], - "isSmart": false, - "planId": "4", - "numberOfShards": 1, - "shards": {}, - "replicationFactor": 1, - "shardKeys": [ - "_key" - ], - "shardingStrategy": "none", - "theLeader": "", - "servers": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ] - }, - "s2010042": { - "id": "5", - "name": "s2010042", - "cid": "5", - "type": 3, - "status": 3, - "statusString": "loaded", - "version": 7, - "waitForSync": false, - "deleted": false, - "globallyUniqueId": "c2010041/s2010042", "isSystem": false, "allowUserKeys": true, "keyOptions": { "allowUserKeys": true, "type": "traditional", - "lastValue": 0 + "lastValue": 2010030 }, - "objectId": "2010257", + "objectId": "2010008", "cacheEnabled": false, "indexes": [ { @@ -949,130 +1206,23 @@ R"=( "sparse": false }, { - "id": "1", - "type": "edge", - "fields": [ - "_from" - ], - "unique": false, - "sparse": false - }, - { - "id": "2", - "type": "edge", - "fields": [ - "_to" - ], - "unique": false, - "sparse": false - }, - { - "id": "2010051", - "type": "geo", - "fields": [ - "gi" - ], - "maxNumCoverCells": 8, - "worstIndexedLevel": 4, - "bestIndexedLevel": 17, - "geoJson": false, - "unique": false, - "sparse": true - }, - { - "id": "2010052", - "type": "geo", - "fields": [ - "gij" - ], - "maxNumCoverCells": 8, - "worstIndexedLevel": 4, - "bestIndexedLevel": 17, - "geoJson": true, - "unique": false, - "sparse": true - }, - { - "id": "2010053", + "id": "2010005", "type": "hash", "fields": [ - "hi", - "_key" + "user" ], "unique": true, - "sparse": false, - "deduplicate": false - }, - { - "id": "2010054", - "type": "persistent", - "fields": [ - "pi" - ], - "unique": false, "sparse": true, - "deduplicate": false - }, - { - "id": "2010132", - "type": "fulltext", - "fields": [ - "fi" - ], - "unique": false, - "sparse": true, - "minLength": 3 - }, - { - "id": "2010055", - "type": "skiplist", - "fields": [ - "sli" - ], - "unique": false, - "sparse": false, "deduplicate": true } ], "isSmart": false, - "planId": "2010041", - "numberOfShards": 9, + "planId": "2010003", + "numberOfShards": 1, "shards": { - "s2010050": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "s2010049": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010048": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010043": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010044": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "s2010042": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010045": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010046": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010047": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s2010004": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -1081,22 +1231,23 @@ R"=( ], "shardingStrategy": "hash", "theLeader": "", + "theLeaderTouched": true, "servers": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, - "s2010045": { - "id": "6", - "name": "s2010045", - "cid": "6", - "type": 3, + "s2010002": { + "globallyUniqueId": "c2010001/s2010002", + "id": "10005", + "name": "s2010002", + "cid": "10005", + "type": 2, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010041/s2010045", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -1104,7 +1255,7 @@ R"=( "type": "traditional", "lastValue": 0 }, - "objectId": "2010258", + "objectId": "2010003", "cacheEnabled": false, "indexes": [ { @@ -1115,132 +1266,15 @@ R"=( ], "unique": true, "sparse": false - }, - { - "id": "1", - "type": "edge", - "fields": [ - "_from" - ], - "unique": false, - "sparse": false - }, - { - "id": "2", - "type": "edge", - "fields": [ - "_to" - ], - "unique": false, - "sparse": false - }, - { - "id": "2010051", - "type": "geo", - "fields": [ - "gi" - ], - "maxNumCoverCells": 8, - "worstIndexedLevel": 4, - "bestIndexedLevel": 17, - "geoJson": false, - "unique": false, - "sparse": true - }, - { - "id": "2010052", - "type": "geo", - "fields": [ - "gij" - ], - "maxNumCoverCells": 8, - "worstIndexedLevel": 4, - "bestIndexedLevel": 17, - "geoJson": true, - "unique": false, - "sparse": true - }, - { - "id": "2010053", - "type": "hash", - "fields": [ - "hi", - "_key" - ], - "unique": true, - "sparse": false, - "deduplicate": false - }, - { - "id": "2010054", - "type": "persistent", - "fields": [ - "pi" - ], - "unique": false, - "sparse": true, - "deduplicate": false - }, - { - "id": "2010132", - "type": "fulltext", - "fields": [ - "fi" - ], - "unique": false, - "sparse": true, - "minLength": 3 - }, - { - "id": "2010055", - "type": "skiplist", - "fields": [ - "sli" - ], - "unique": false, - "sparse": false, - "deduplicate": true } ], "isSmart": false, - "planId": "2010041", - "numberOfShards": 9, + "planId": "2010001", + "numberOfShards": 1, "shards": { - "s2010050": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "s2010049": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010048": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010043": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010044": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "s2010042": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010045": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010046": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010047": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s2010002": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -1249,91 +1283,23 @@ R"=( ], "shardingStrategy": "hash", "theLeader": "", + "theLeaderTouched": true, "servers": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] - } - }, - "foo": { - "s2010094": { - "id": "28", - "name": "s2010094", - "cid": "28", - "type": 2, - "status": 3, - "statusString": "loaded", - "version": 7, - "waitForSync": false, - "deleted": false, - "globallyUniqueId": "c2010088/s2010094", - "isSystem": false, - "allowUserKeys": true, - "keyOptions": { - "allowUserKeys": true, - "type": "traditional", - "lastValue": 0 - }, - "objectId": "2011212", - "cacheEnabled": false, - "indexes": [ - { - "id": "0", - "type": "primary", - "fields": [ - "_key" - ], - "unique": true, - "sparse": false - } - ], - "isSmart": false, - "planId": "2010088", - "numberOfShards": 6, - "shards": { - "s2010093": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010094": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "s2010091": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "s2010092": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010089": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010090": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ] - }, - "replicationFactor": 2, - "shardKeys": [ - "_key" - ], - "shardingStrategy": "hash", - "theLeader": "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" }, - "s2010073": { - "id": "17", - "name": "s2010073", - "cid": "17", + "s2010007": { + "globallyUniqueId": "c2010006/s2010007", + "id": "10007", + "name": "s2010007", + "cid": "10007", "type": 2, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010072/s2010073", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -1341,7 +1307,7 @@ R"=( "type": "traditional", "lastValue": 0 }, - "objectId": "2010824", + "objectId": "2010023", "cacheEnabled": false, "indexes": [ { @@ -1355,12 +1321,12 @@ R"=( } ], "isSmart": false, - "planId": "2010072", + "planId": "2010006", "numberOfShards": 1, "shards": { - "s2010073": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s2010007": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -1368,19 +1334,24 @@ R"=( "_key" ], "shardingStrategy": "hash", - "theLeader": "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "theLeader": "", + "theLeaderTouched": true, + "servers": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] }, - "s2010071": { - "id": "16", - "name": "s2010071", - "cid": "16", + "s2010009": { + "globallyUniqueId": "c2010008/s2010009", + "id": "10008", + "name": "s2010009", + "cid": "10008", "type": 2, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010070/s2010071", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -1388,7 +1359,7 @@ R"=( "type": "traditional", "lastValue": 0 }, - "objectId": "2010783", + "objectId": "2010031", "cacheEnabled": false, "indexes": [ { @@ -1402,12 +1373,12 @@ R"=( } ], "isSmart": false, - "planId": "2010070", + "planId": "2010008", "numberOfShards": 1, "shards": { - "s2010071": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s2010009": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -1415,27 +1386,32 @@ R"=( "_key" ], "shardingStrategy": "hash", - "theLeader": "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "theLeader": "", + "theLeaderTouched": true, + "servers": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] }, - "s2010069": { - "id": "15", - "name": "s2010069", - "cid": "15", + "s2010011": { + "globallyUniqueId": "c2010010/s2010011", + "id": "10009", + "name": "s2010011", + "cid": "10009", "type": 2, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010068/s2010069", "isSystem": false, "allowUserKeys": true, "keyOptions": { "allowUserKeys": true, "type": "traditional", - "lastValue": 0 + "lastValue": 2010014 }, - "objectId": "2010743", + "objectId": "2010040", "cacheEnabled": false, "indexes": [ { @@ -1449,12 +1425,12 @@ R"=( } ], "isSmart": false, - "planId": "2010068", + "planId": "2010010", "numberOfShards": 1, "shards": { - "s2010069": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s2010011": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -1462,27 +1438,32 @@ R"=( "_key" ], "shardingStrategy": "hash", - "theLeader": "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "theLeader": "", + "theLeaderTouched": true, + "servers": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] }, - "s2010064": { - "id": "14", - "name": "s2010064", - "cid": "14", + "s2010016": { + "globallyUniqueId": "c2010015/s2010016", + "id": "10010", + "name": "s2010016", + "cid": "10010", "type": 2, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010063/s2010064", "isSystem": false, "allowUserKeys": true, "keyOptions": { "allowUserKeys": true, "type": "traditional", - "lastValue": 2010067 + "lastValue": 0 }, - "objectId": "2010701", + "objectId": "2010058", "cacheEnabled": false, "indexes": [ { @@ -1496,12 +1477,12 @@ R"=( } ], "isSmart": false, - "planId": "2010063", + "planId": "2010015", "numberOfShards": 1, "shards": { - "s2010064": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s2010016": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -1509,19 +1490,24 @@ R"=( "_key" ], "shardingStrategy": "hash", - "theLeader": "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "theLeader": "", + "theLeaderTouched": true, + "servers": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] }, - "s2010060": { - "id": "12", - "name": "s2010060", - "cid": "12", + "s2010018": { + "globallyUniqueId": "c2010017/s2010018", + "id": "10011", + "name": "s2010018", + "cid": "10011", "type": 2, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010059/s2010060", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -1529,7 +1515,7 @@ R"=( "type": "traditional", "lastValue": 0 }, - "objectId": "2010626", + "objectId": "2010069", "cacheEnabled": false, "indexes": [ { @@ -1543,12 +1529,12 @@ R"=( } ], "isSmart": false, - "planId": "2010059", + "planId": "2010017", "numberOfShards": 1, "shards": { - "s2010060": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s2010018": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -1556,19 +1542,24 @@ R"=( "_key" ], "shardingStrategy": "hash", - "theLeader": "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "theLeader": "", + "theLeaderTouched": true, + "servers": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] }, - "s2010062": { - "id": "13", - "name": "s2010062", - "cid": "13", + "s2010020": { + "globallyUniqueId": "c2010019/s2010020", + "id": "10012", + "name": "s2010020", + "cid": "10012", "type": 2, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010061/s2010062", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -1576,7 +1567,7 @@ R"=( "type": "traditional", "lastValue": 0 }, - "objectId": "2010663", + "objectId": "2010081", "cacheEnabled": false, "indexes": [ { @@ -1590,12 +1581,12 @@ R"=( } ], "isSmart": false, - "planId": "2010061", + "planId": "2010019", "numberOfShards": 1, "shards": { - "s2010062": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s2010020": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -1603,19 +1594,24 @@ R"=( "_key" ], "shardingStrategy": "hash", - "theLeader": "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "theLeader": "", + "theLeaderTouched": true, + "servers": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] }, - "s2010075": { - "id": "18", - "name": "s2010075", - "cid": "18", + "s2010022": { + "globallyUniqueId": "c2010021/s2010022", + "id": "10013", + "name": "s2010022", + "cid": "10013", "type": 2, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010074/s2010075", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -1623,7 +1619,7 @@ R"=( "type": "traditional", "lastValue": 0 }, - "objectId": "2010866", + "objectId": "2010094", "cacheEnabled": false, "indexes": [ { @@ -1636,7 +1632,7 @@ R"=( "sparse": false }, { - "id": "2010076", + "id": "2010023", "type": "skiplist", "fields": [ "queue", @@ -1648,7 +1644,7 @@ R"=( "deduplicate": true }, { - "id": "2010077", + "id": "2010024", "type": "skiplist", "fields": [ "status", @@ -1661,12 +1657,12 @@ R"=( } ], "isSmart": false, - "planId": "2010074", + "planId": "2010021", "numberOfShards": 1, "shards": { - "s2010075": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s2010022": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -1674,27 +1670,32 @@ R"=( "_key" ], "shardingStrategy": "hash", - "theLeader": "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "theLeader": "", + "theLeaderTouched": true, + "servers": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] }, - "s2010079": { - "id": "19", - "name": "s2010079", - "cid": "19", + "s2010026": { + "globallyUniqueId": "c2010025/s2010026", + "id": "10014", + "name": "s2010026", + "cid": "10014", "type": 2, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010078/s2010079", "isSystem": false, "allowUserKeys": true, "keyOptions": { "allowUserKeys": true, "type": "traditional", - "lastValue": 0 + "lastValue": 2010032 }, - "objectId": "2010994", + "objectId": "2010160", "cacheEnabled": false, "indexes": [ { @@ -1707,7 +1708,7 @@ R"=( "sparse": false }, { - "id": "2010080", + "id": "2010027", "type": "hash", "fields": [ "mount" @@ -1718,12 +1719,12 @@ R"=( } ], "isSmart": false, - "planId": "2010078", + "planId": "2010025", "numberOfShards": 1, "shards": { - "s2010079": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s2010026": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -1731,19 +1732,24 @@ R"=( "_key" ], "shardingStrategy": "hash", - "theLeader": "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "theLeader": "", + "theLeaderTouched": true, + "servers": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] }, - "s2010082": { - "id": "20", - "name": "s2010082", - "cid": "20", + "s2010029": { + "globallyUniqueId": "c2010028/s2010029", + "id": "10015", + "name": "s2010029", + "cid": "10015", "type": 2, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010081/s2010082", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -1751,7 +1757,7 @@ R"=( "type": "traditional", "lastValue": 0 }, - "objectId": "2011085", + "objectId": "2010208", "cacheEnabled": false, "indexes": [ { @@ -1765,12 +1771,12 @@ R"=( } ], "isSmart": false, - "planId": "2010081", + "planId": "2010028", "numberOfShards": 1, "shards": { - "s2010082": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s2010029": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -1778,361 +1784,32 @@ R"=( "_key" ], "shardingStrategy": "hash", - "theLeader": "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - }, - "s2010084": { - "id": "21", - "name": "s2010084", - "cid": "21", - "type": 3, - "status": 3, - "statusString": "loaded", - "version": 7, - "waitForSync": false, - "deleted": false, - "globallyUniqueId": "c2010083/s2010084", - "isSystem": false, - "allowUserKeys": true, - "keyOptions": { - "allowUserKeys": true, - "type": "traditional", - "lastValue": 0 - }, - "objectId": "2011135", - "cacheEnabled": false, - "indexes": [ - { - "id": "0", - "type": "primary", - "fields": [ - "_key" - ], - "unique": true, - "sparse": false - }, - { - "id": "1", - "type": "edge", - "fields": [ - "_from" - ], - "unique": false, - "sparse": false - }, - { - "id": "2", - "type": "edge", - "fields": [ - "_to" - ], - "unique": false, - "sparse": false - } - ], - "isSmart": false, - "planId": "2010083", - "numberOfShards": 4, - "shards": { - "s2010087": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010086": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010084": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010085": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ] - }, - "replicationFactor": 3, - "shardKeys": [ - "_key" - ], - "shardingStrategy": "hash", "theLeader": "", + "theLeaderTouched": true, "servers": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, - "s2010085": { - "id": "22", - "name": "s2010085", - "cid": "22", - "type": 3, - "status": 3, - "statusString": "loaded", - "version": 7, - "waitForSync": false, - "deleted": false, - "globallyUniqueId": "c2010083/s2010085", - "isSystem": false, - "allowUserKeys": true, - "keyOptions": { - "allowUserKeys": true, - "type": "traditional", - "lastValue": 0 - }, - "objectId": "2011137", - "cacheEnabled": false, - "indexes": [ - { - "id": "0", - "type": "primary", - "fields": [ - "_key" - ], - "unique": true, - "sparse": false - }, - { - "id": "1", - "type": "edge", - "fields": [ - "_from" - ], - "unique": false, - "sparse": false - }, - { - "id": "2", - "type": "edge", - "fields": [ - "_to" - ], - "unique": false, - "sparse": false - } - ], - "isSmart": false, - "planId": "2010083", - "numberOfShards": 4, - "shards": { - "s2010087": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010086": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010084": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010085": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ] - }, - "replicationFactor": 3, - "shardKeys": [ - "_key" - ], - "shardingStrategy": "hash", - "theLeader": "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - }, - "s2010086": { - "id": "23", - "name": "s2010086", - "cid": "23", - "type": 3, - "status": 3, - "statusString": "loaded", - "version": 7, - "waitForSync": false, - "deleted": false, - "globallyUniqueId": "c2010083/s2010086", - "isSystem": false, - "allowUserKeys": true, - "keyOptions": { - "allowUserKeys": true, - "type": "traditional", - "lastValue": 0 - }, - "objectId": "2011139", - "cacheEnabled": false, - "indexes": [ - { - "id": "0", - "type": "primary", - "fields": [ - "_key" - ], - "unique": true, - "sparse": false - }, - { - "id": "1", - "type": "edge", - "fields": [ - "_from" - ], - "unique": false, - "sparse": false - }, - { - "id": "2", - "type": "edge", - "fields": [ - "_to" - ], - "unique": false, - "sparse": false - } - ], - "isSmart": false, - "planId": "2010083", - "numberOfShards": 4, - "shards": { - "s2010087": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010086": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010084": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010085": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ] - }, - "replicationFactor": 3, - "shardKeys": [ - "_key" - ], - "shardingStrategy": "hash", - "theLeader": "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - }, - "s2010087": { - "id": "24", - "name": "s2010087", - "cid": "24", - "type": 3, - "status": 3, - "statusString": "loaded", - "version": 7, - "waitForSync": false, - "deleted": false, - "globallyUniqueId": "c2010083/s2010087", - "isSystem": false, - "allowUserKeys": true, - "keyOptions": { - "allowUserKeys": true, - "type": "traditional", - "lastValue": 0 - }, - "objectId": "2011147", - "cacheEnabled": false, - "indexes": [ - { - "id": "0", - "type": "primary", - "fields": [ - "_key" - ], - "unique": true, - "sparse": false - }, - { - "id": "1", - "type": "edge", - "fields": [ - "_from" - ], - "unique": false, - "sparse": false - }, - { - "id": "2", - "type": "edge", - "fields": [ - "_to" - ], - "unique": false, - "sparse": false - } - ], - "isSmart": false, - "planId": "2010083", - "numberOfShards": 4, - "shards": { - "s2010087": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010086": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010084": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010085": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ] - }, - "replicationFactor": 3, - "shardKeys": [ - "_key" - ], - "shardingStrategy": "hash", - "theLeader": "", - "servers": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ] - }, - "s2010091": { - "id": "25", - "name": "s2010091", - "cid": "25", + "s2010034": { + "globallyUniqueId": "c2010033/s2010034", + "id": "10016", + "name": "s2010034", + "cid": "10016", "type": 2, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010088/s2010091", "isSystem": false, "allowUserKeys": true, "keyOptions": { "allowUserKeys": true, "type": "traditional", - "lastValue": 0 + "lastValue": 4010010 }, - "objectId": "2011207", + "objectId": "2010261", "cacheEnabled": false, "indexes": [ { @@ -2143,102 +1820,25 @@ R"=( ], "unique": true, "sparse": false - } - ], - "isSmart": false, - "planId": "2010088", - "numberOfShards": 6, - "shards": { - "s2010093": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010094": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "s2010091": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "s2010092": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010089": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010090": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ] - }, - "replicationFactor": 2, - "shardKeys": [ - "_key" - ], - "shardingStrategy": "hash", - "theLeader": "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - }, - "s2010089": { - "id": "26", - "name": "s2010089", - "cid": "26", - "type": 2, - "status": 3, - "statusString": "loaded", - "version": 7, - "waitForSync": false, - "deleted": false, - "globallyUniqueId": "c2010088/s2010089", - "isSystem": false, - "allowUserKeys": true, - "keyOptions": { - "allowUserKeys": true, - "type": "traditional", - "lastValue": 0 - }, - "objectId": "2011206", - "cacheEnabled": false, - "indexes": [ + }, { - "id": "0", - "type": "primary", + "id": "2010035", + "type": "skiplist", "fields": [ - "_key" + "time" ], - "unique": true, - "sparse": false + "unique": false, + "sparse": false, + "deduplicate": true } ], "isSmart": false, - "planId": "2010088", - "numberOfShards": 6, + "planId": "2010033", + "numberOfShards": 1, "shards": { - "s2010093": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010094": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "s2010091": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "s2010092": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010089": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010090": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "s2010034": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -2247,22 +1847,97 @@ R"=( ], "shardingStrategy": "hash", "theLeader": "", + "theLeaderTouched": true, "servers": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] + } + }, + "foo": { + "s4010063": { + "globallyUniqueId": "c4010058/s4010063", + "id": "10033", + "name": "s4010063", + "cid": "10033", + "type": 2, + "status": 3, + "statusString": "loaded", + "version": 7, + "waitForSync": false, + "deleted": false, + "isSystem": false, + "allowUserKeys": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional", + "lastValue": 0 + }, + "objectId": "4011209", + "cacheEnabled": false, + "indexes": [ + { + "id": "0", + "type": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + } + ], + "isSmart": false, + "planId": "4010058", + "numberOfShards": 6, + "shards": { + "s4010063": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010064": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010062": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010059": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010061": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010060": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] + }, + "replicationFactor": 2, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "theLeader": "", + "theLeaderTouched": true, + "servers": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, - "s2010092": { - "id": "27", - "name": "s2010092", - "cid": "27", + "s4010062": { + "globallyUniqueId": "c4010058/s4010062", + "id": "10032", + "name": "s4010062", + "cid": "10032", "type": 2, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010088/s2010092", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -2270,7 +1945,7 @@ R"=( "type": "traditional", "lastValue": 0 }, - "objectId": "2011208", + "objectId": "4011208", "cacheEnabled": false, "indexes": [ { @@ -2284,32 +1959,501 @@ R"=( } ], "isSmart": false, - "planId": "2010088", + "planId": "4010058", "numberOfShards": 6, "shards": { - "s2010093": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "s4010063": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ], - "s2010094": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s4010064": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" ], - "s2010091": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s4010062": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" ], - "s2010092": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "s4010059": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" ], - "s2010089": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "s4010061": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" ], - "s2010090": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "s4010060": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] + }, + "replicationFactor": 2, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "theLeader": "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "theLeaderTouched": true + }, + "s4010054": { + "globallyUniqueId": "c4010053/s4010054", + "id": "10027", + "name": "s4010054", + "cid": "10027", + "type": 3, + "status": 3, + "statusString": "loaded", + "version": 7, + "waitForSync": false, + "deleted": false, + "isSystem": false, + "allowUserKeys": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional", + "lastValue": 0 + }, + "objectId": "4011134", + "cacheEnabled": false, + "indexes": [ + { + "id": "0", + "type": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + }, + { + "id": "1", + "type": "edge", + "fields": [ + "_from" + ], + "unique": false, + "sparse": false + }, + { + "id": "2", + "type": "edge", + "fields": [ + "_to" + ], + "unique": false, + "sparse": false + } + ], + "isSmart": false, + "planId": "4010053", + "numberOfShards": 4, + "shards": { + "s4010057": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010056": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010054": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010055": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ] + }, + "replicationFactor": 3, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "theLeader": "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "theLeaderTouched": true + }, + "s4010055": { + "globallyUniqueId": "c4010053/s4010055", + "id": "10028", + "name": "s4010055", + "cid": "10028", + "type": 3, + "status": 3, + "statusString": "loaded", + "version": 7, + "waitForSync": false, + "deleted": false, + "isSystem": false, + "allowUserKeys": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional", + "lastValue": 0 + }, + "objectId": "4011136", + "cacheEnabled": false, + "indexes": [ + { + "id": "0", + "type": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + }, + { + "id": "1", + "type": "edge", + "fields": [ + "_from" + ], + "unique": false, + "sparse": false + }, + { + "id": "2", + "type": "edge", + "fields": [ + "_to" + ], + "unique": false, + "sparse": false + } + ], + "isSmart": false, + "planId": "4010053", + "numberOfShards": 4, + "shards": { + "s4010057": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010056": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010054": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010055": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ] + }, + "replicationFactor": 3, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "theLeader": "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "theLeaderTouched": true + }, + "s4010056": { + "globallyUniqueId": "c4010053/s4010056", + "id": "10026", + "name": "s4010056", + "cid": "10026", + "type": 3, + "status": 3, + "statusString": "loaded", + "version": 7, + "waitForSync": false, + "deleted": false, + "isSystem": false, + "allowUserKeys": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional", + "lastValue": 0 + }, + "objectId": "4011135", + "cacheEnabled": false, + "indexes": [ + { + "id": "0", + "type": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + }, + { + "id": "1", + "type": "edge", + "fields": [ + "_from" + ], + "unique": false, + "sparse": false + }, + { + "id": "2", + "type": "edge", + "fields": [ + "_to" + ], + "unique": false, + "sparse": false + } + ], + "isSmart": false, + "planId": "4010053", + "numberOfShards": 4, + "shards": { + "s4010057": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010056": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010054": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010055": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ] + }, + "replicationFactor": 3, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "theLeader": "", + "theLeaderTouched": true, + "servers": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ] + }, + "s4010057": { + "globallyUniqueId": "c4010053/s4010057", + "id": "10029", + "name": "s4010057", + "cid": "10029", + "type": 3, + "status": 3, + "statusString": "loaded", + "version": 7, + "waitForSync": false, + "deleted": false, + "isSystem": false, + "allowUserKeys": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional", + "lastValue": 0 + }, + "objectId": "4011137", + "cacheEnabled": false, + "indexes": [ + { + "id": "0", + "type": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + }, + { + "id": "1", + "type": "edge", + "fields": [ + "_from" + ], + "unique": false, + "sparse": false + }, + { + "id": "2", + "type": "edge", + "fields": [ + "_to" + ], + "unique": false, + "sparse": false + } + ], + "isSmart": false, + "planId": "4010053", + "numberOfShards": 4, + "shards": { + "s4010057": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010056": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010054": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010055": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ] + }, + "replicationFactor": 3, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "theLeader": "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "theLeaderTouched": true + }, + "s4010059": { + "globallyUniqueId": "c4010058/s4010059", + "id": "10030", + "name": "s4010059", + "cid": "10030", + "type": 2, + "status": 3, + "statusString": "loaded", + "version": 7, + "waitForSync": false, + "deleted": false, + "isSystem": false, + "allowUserKeys": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional", + "lastValue": 0 + }, + "objectId": "4011205", + "cacheEnabled": false, + "indexes": [ + { + "id": "0", + "type": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + } + ], + "isSmart": false, + "planId": "4010058", + "numberOfShards": 6, + "shards": { + "s4010063": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010064": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010062": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010059": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010061": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010060": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] + }, + "replicationFactor": 2, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "theLeader": "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "theLeaderTouched": true + }, + "s4010060": { + "globallyUniqueId": "c4010058/s4010060", + "id": "10031", + "name": "s4010060", + "cid": "10031", + "type": 2, + "status": 3, + "statusString": "loaded", + "version": 7, + "waitForSync": false, + "deleted": false, + "isSystem": false, + "allowUserKeys": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional", + "lastValue": 0 + }, + "objectId": "4011207", + "cacheEnabled": false, + "indexes": [ + { + "id": "0", + "type": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + } + ], + "isSmart": false, + "planId": "4010058", + "numberOfShards": 6, + "shards": { + "s4010063": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010064": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010062": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010059": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010061": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010060": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -2318,9 +2462,10 @@ R"=( ], "shardingStrategy": "hash", "theLeader": "", + "theLeaderTouched": true, "servers": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] } } diff --git a/tests/Maintenance/DBServer0002.json b/tests/Maintenance/DBServer0002.json index 737ccb728f..82005e96d3 100644 --- a/tests/Maintenance/DBServer0002.json +++ b/tests/Maintenance/DBServer0002.json @@ -1,17 +1,1019 @@ R"=( { "_system": { - "s2010057": { - "id": "1000025", - "name": "s2010057", - "cid": "1000025", + "s4010014": { + "globallyUniqueId": "c4010011/s4010014", + "id": "1010020", + "name": "s4010014", + "cid": "1010020", + "type": 3, + "status": 3, + "statusString": "loaded", + "version": 7, + "waitForSync": false, + "deleted": false, + "isSystem": false, + "allowUserKeys": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional", + "lastValue": 0 + }, + "objectId": "4010016", + "cacheEnabled": false, + "indexes": [ + { + "id": "0", + "type": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + }, + { + "id": "1", + "type": "edge", + "fields": [ + "_from" + ], + "unique": false, + "sparse": false + }, + { + "id": "2", + "type": "edge", + "fields": [ + "_to" + ], + "unique": false, + "sparse": false + }, + { + "id": "4010021", + "type": "geo", + "fields": [ + "gi" + ], + "maxNumCoverCells": 8, + "worstIndexedLevel": 4, + "bestIndexedLevel": 17, + "geoJson": false, + "unique": false, + "sparse": true + }, + { + "id": "4010022", + "type": "geo", + "fields": [ + "gij" + ], + "maxNumCoverCells": 8, + "worstIndexedLevel": 4, + "bestIndexedLevel": 17, + "geoJson": true, + "unique": false, + "sparse": true + }, + { + "id": "4010023", + "type": "hash", + "fields": [ + "hi", + "_key" + ], + "unique": true, + "sparse": false, + "deduplicate": false + }, + { + "id": "4010024", + "type": "persistent", + "fields": [ + "pi" + ], + "unique": false, + "sparse": true, + "deduplicate": false + }, + { + "id": "2010132", + "type": "fulltext", + "fields": [ + "fi" + ], + "unique": false, + "sparse": true, + "minLength": 3 + }, + { + "id": "4010025", + "type": "skiplist", + "fields": [ + "sli" + ], + "unique": false, + "sparse": false, + "deduplicate": true + } + ], + "isSmart": false, + "planId": "4010011", + "numberOfShards": 9, + "shards": { + "s4010019": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010018": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010012": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010013": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010014": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010015": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010020": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010016": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010017": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] + }, + "replicationFactor": 2, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "theLeader": "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "theLeaderTouched": true + }, + "s4010015": { + "globallyUniqueId": "c4010011/s4010015", + "id": "1010021", + "name": "s4010015", + "cid": "1010021", + "type": 3, + "status": 3, + "statusString": "loaded", + "version": 7, + "waitForSync": false, + "deleted": false, + "isSystem": false, + "allowUserKeys": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional", + "lastValue": 0 + }, + "objectId": "4010017", + "cacheEnabled": false, + "indexes": [ + { + "id": "0", + "type": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + }, + { + "id": "1", + "type": "edge", + "fields": [ + "_from" + ], + "unique": false, + "sparse": false + }, + { + "id": "2", + "type": "edge", + "fields": [ + "_to" + ], + "unique": false, + "sparse": false + }, + { + "id": "4010021", + "type": "geo", + "fields": [ + "gi" + ], + "maxNumCoverCells": 8, + "worstIndexedLevel": 4, + "bestIndexedLevel": 17, + "geoJson": false, + "unique": false, + "sparse": true + }, + { + "id": "4010022", + "type": "geo", + "fields": [ + "gij" + ], + "maxNumCoverCells": 8, + "worstIndexedLevel": 4, + "bestIndexedLevel": 17, + "geoJson": true, + "unique": false, + "sparse": true + }, + { + "id": "4010023", + "type": "hash", + "fields": [ + "hi", + "_key" + ], + "unique": true, + "sparse": false, + "deduplicate": false + }, + { + "id": "4010024", + "type": "persistent", + "fields": [ + "pi" + ], + "unique": false, + "sparse": true, + "deduplicate": false + }, + { + "id": "2010132", + "type": "fulltext", + "fields": [ + "fi" + ], + "unique": false, + "sparse": true, + "minLength": 3 + }, + { + "id": "4010025", + "type": "skiplist", + "fields": [ + "sli" + ], + "unique": false, + "sparse": false, + "deduplicate": true + } + ], + "isSmart": false, + "planId": "4010011", + "numberOfShards": 9, + "shards": { + "s4010019": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010018": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010012": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010013": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010014": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010015": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010020": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010016": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010017": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] + }, + "replicationFactor": 2, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "theLeader": "", + "theLeaderTouched": true, + "servers": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ] + }, + "s4010018": { + "globallyUniqueId": "c4010011/s4010018", + "id": "1010023", + "name": "s4010018", + "cid": "1010023", + "type": 3, + "status": 3, + "statusString": "loaded", + "version": 7, + "waitForSync": false, + "deleted": false, + "isSystem": false, + "allowUserKeys": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional", + "lastValue": 0 + }, + "objectId": "4010024", + "cacheEnabled": false, + "indexes": [ + { + "id": "0", + "type": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + }, + { + "id": "1", + "type": "edge", + "fields": [ + "_from" + ], + "unique": false, + "sparse": false + }, + { + "id": "2", + "type": "edge", + "fields": [ + "_to" + ], + "unique": false, + "sparse": false + }, + { + "id": "4010021", + "type": "geo", + "fields": [ + "gi" + ], + "maxNumCoverCells": 8, + "worstIndexedLevel": 4, + "bestIndexedLevel": 17, + "geoJson": false, + "unique": false, + "sparse": true + }, + { + "id": "4010022", + "type": "geo", + "fields": [ + "gij" + ], + "maxNumCoverCells": 8, + "worstIndexedLevel": 4, + "bestIndexedLevel": 17, + "geoJson": true, + "unique": false, + "sparse": true + }, + { + "id": "4010023", + "type": "hash", + "fields": [ + "hi", + "_key" + ], + "unique": true, + "sparse": false, + "deduplicate": false + }, + { + "id": "4010024", + "type": "persistent", + "fields": [ + "pi" + ], + "unique": false, + "sparse": true, + "deduplicate": false + }, + { + "id": "2010132", + "type": "fulltext", + "fields": [ + "fi" + ], + "unique": false, + "sparse": true, + "minLength": 3 + }, + { + "id": "4010025", + "type": "skiplist", + "fields": [ + "sli" + ], + "unique": false, + "sparse": false, + "deduplicate": true + } + ], + "isSmart": false, + "planId": "4010011", + "numberOfShards": 9, + "shards": { + "s4010019": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010018": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010012": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010013": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010014": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010015": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010020": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010016": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010017": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] + }, + "replicationFactor": 2, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "theLeader": "", + "theLeaderTouched": true, + "servers": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ] + }, + "s4010020": { + "globallyUniqueId": "c4010011/s4010020", + "id": "1010024", + "name": "s4010020", + "cid": "1010024", + "type": 3, + "status": 3, + "statusString": "loaded", + "version": 7, + "waitForSync": false, + "deleted": false, + "isSystem": false, + "allowUserKeys": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional", + "lastValue": 0 + }, + "objectId": "4010032", + "cacheEnabled": false, + "indexes": [ + { + "id": "0", + "type": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + }, + { + "id": "1", + "type": "edge", + "fields": [ + "_from" + ], + "unique": false, + "sparse": false + }, + { + "id": "2", + "type": "edge", + "fields": [ + "_to" + ], + "unique": false, + "sparse": false + }, + { + "id": "4010021", + "type": "geo", + "fields": [ + "gi" + ], + "maxNumCoverCells": 8, + "worstIndexedLevel": 4, + "bestIndexedLevel": 17, + "geoJson": false, + "unique": false, + "sparse": true + }, + { + "id": "4010022", + "type": "geo", + "fields": [ + "gij" + ], + "maxNumCoverCells": 8, + "worstIndexedLevel": 4, + "bestIndexedLevel": 17, + "geoJson": true, + "unique": false, + "sparse": true + }, + { + "id": "4010023", + "type": "hash", + "fields": [ + "hi", + "_key" + ], + "unique": true, + "sparse": false, + "deduplicate": false + }, + { + "id": "4010024", + "type": "persistent", + "fields": [ + "pi" + ], + "unique": false, + "sparse": true, + "deduplicate": false + }, + { + "id": "2010132", + "type": "fulltext", + "fields": [ + "fi" + ], + "unique": false, + "sparse": true, + "minLength": 3 + }, + { + "id": "4010025", + "type": "skiplist", + "fields": [ + "sli" + ], + "unique": false, + "sparse": false, + "deduplicate": true + } + ], + "isSmart": false, + "planId": "4010011", + "numberOfShards": 9, + "shards": { + "s4010019": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010018": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010012": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010013": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010014": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010015": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010020": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010016": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010017": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] + }, + "replicationFactor": 2, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "theLeader": "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "theLeaderTouched": true + }, + "s4010017": { + "globallyUniqueId": "c4010011/s4010017", + "id": "1010022", + "name": "s4010017", + "cid": "1010022", + "type": 3, + "status": 3, + "statusString": "loaded", + "version": 7, + "waitForSync": false, + "deleted": false, + "isSystem": false, + "allowUserKeys": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional", + "lastValue": 0 + }, + "objectId": "4010022", + "cacheEnabled": false, + "indexes": [ + { + "id": "0", + "type": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + }, + { + "id": "1", + "type": "edge", + "fields": [ + "_from" + ], + "unique": false, + "sparse": false + }, + { + "id": "2", + "type": "edge", + "fields": [ + "_to" + ], + "unique": false, + "sparse": false + }, + { + "id": "4010021", + "type": "geo", + "fields": [ + "gi" + ], + "maxNumCoverCells": 8, + "worstIndexedLevel": 4, + "bestIndexedLevel": 17, + "geoJson": false, + "unique": false, + "sparse": true + }, + { + "id": "4010022", + "type": "geo", + "fields": [ + "gij" + ], + "maxNumCoverCells": 8, + "worstIndexedLevel": 4, + "bestIndexedLevel": 17, + "geoJson": true, + "unique": false, + "sparse": true + }, + { + "id": "4010023", + "type": "hash", + "fields": [ + "hi", + "_key" + ], + "unique": true, + "sparse": false, + "deduplicate": false + }, + { + "id": "4010024", + "type": "persistent", + "fields": [ + "pi" + ], + "unique": false, + "sparse": true, + "deduplicate": false + }, + { + "id": "2010132", + "type": "fulltext", + "fields": [ + "fi" + ], + "unique": false, + "sparse": true, + "minLength": 3 + }, + { + "id": "4010025", + "type": "skiplist", + "fields": [ + "sli" + ], + "unique": false, + "sparse": false, + "deduplicate": true + } + ], + "isSmart": false, + "planId": "4010011", + "numberOfShards": 9, + "shards": { + "s4010019": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010018": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010012": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010013": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010014": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010015": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010020": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010016": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010017": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] + }, + "replicationFactor": 2, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "theLeader": "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "theLeaderTouched": true + }, + "s4010012": { + "globallyUniqueId": "c4010011/s4010012", + "id": "1010019", + "name": "s4010012", + "cid": "1010019", + "type": 3, + "status": 3, + "statusString": "loaded", + "version": 7, + "waitForSync": false, + "deleted": false, + "isSystem": false, + "allowUserKeys": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional", + "lastValue": 0 + }, + "objectId": "4010015", + "cacheEnabled": false, + "indexes": [ + { + "id": "0", + "type": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + }, + { + "id": "1", + "type": "edge", + "fields": [ + "_from" + ], + "unique": false, + "sparse": false + }, + { + "id": "2", + "type": "edge", + "fields": [ + "_to" + ], + "unique": false, + "sparse": false + }, + { + "id": "4010021", + "type": "geo", + "fields": [ + "gi" + ], + "maxNumCoverCells": 8, + "worstIndexedLevel": 4, + "bestIndexedLevel": 17, + "geoJson": false, + "unique": false, + "sparse": true + }, + { + "id": "4010022", + "type": "geo", + "fields": [ + "gij" + ], + "maxNumCoverCells": 8, + "worstIndexedLevel": 4, + "bestIndexedLevel": 17, + "geoJson": true, + "unique": false, + "sparse": true + }, + { + "id": "4010023", + "type": "hash", + "fields": [ + "hi", + "_key" + ], + "unique": true, + "sparse": false, + "deduplicate": false + }, + { + "id": "4010024", + "type": "persistent", + "fields": [ + "pi" + ], + "unique": false, + "sparse": true, + "deduplicate": false + }, + { + "id": "2010132", + "type": "fulltext", + "fields": [ + "fi" + ], + "unique": false, + "sparse": true, + "minLength": 3 + }, + { + "id": "4010025", + "type": "skiplist", + "fields": [ + "sli" + ], + "unique": false, + "sparse": false, + "deduplicate": true + } + ], + "isSmart": false, + "planId": "4010011", + "numberOfShards": 9, + "shards": { + "s4010019": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010018": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010012": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010013": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010014": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010015": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010020": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010016": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010017": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] + }, + "replicationFactor": 2, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "theLeader": "", + "theLeaderTouched": true, + "servers": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ] + }, + "s2010040": { + "globallyUniqueId": "c2010039/s2010040", + "id": "1010018", + "name": "s2010040", + "cid": "1010018", "type": 2, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010056/s2010057", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -19,58 +1021,7 @@ R"=( "type": "traditional", "lastValue": 0 }, - "objectId": "2010636", - "cacheEnabled": false, - "indexes": [ - { - "id": "0", - "type": "primary", - "fields": [ - "_key" - ], - "unique": true, - "sparse": false - } - ], - "isSmart": false, - "planId": "2010056", - "numberOfShards": 1, - "shards": { - "s2010057": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ] - }, - "replicationFactor": 2, - "shardKeys": [ - "_key" - ], - "shardingStrategy": "hash", - "theLeader": "", - "servers": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ] - }, - "s2010049": { - "id": "1000024", - "name": "s2010049", - "cid": "1000024", - "type": 3, - "status": 3, - "statusString": "loaded", - "version": 7, - "waitForSync": false, - "deleted": false, - "globallyUniqueId": "c2010041/s2010049", - "isSystem": false, - "allowUserKeys": true, - "keyOptions": { - "allowUserKeys": true, - "type": "traditional", - "lastValue": 0 - }, - "objectId": "2010354", + "objectId": "2010366", "cacheEnabled": false, "indexes": [ { @@ -83,1003 +1034,7 @@ R"=( "sparse": false }, { - "id": "1", - "type": "edge", - "fields": [ - "_from" - ], - "unique": false, - "sparse": false - }, - { - "id": "2", - "type": "edge", - "fields": [ - "_to" - ], - "unique": false, - "sparse": false - }, - { - "id": "2010051", - "type": "geo", - "fields": [ - "gi" - ], - "maxNumCoverCells": 8, - "worstIndexedLevel": 4, - "bestIndexedLevel": 17, - "geoJson": false, - "unique": false, - "sparse": true - }, - { - "id": "2010052", - "type": "geo", - "fields": [ - "gij" - ], - "maxNumCoverCells": 8, - "worstIndexedLevel": 4, - "bestIndexedLevel": 17, - "geoJson": true, - "unique": false, - "sparse": true - }, - { - "id": "2010053", - "type": "hash", - "fields": [ - "hi", - "_key" - ], - "unique": true, - "sparse": false, - "deduplicate": false - }, - { - "id": "2010054", - "type": "persistent", - "fields": [ - "pi" - ], - "unique": false, - "sparse": true, - "deduplicate": false - }, - { - "id": "2010132", - "type": "fulltext", - "fields": [ - "fi" - ], - "unique": false, - "sparse": true, - "minLength": 3 - }, - { - "id": "2010055", - "type": "skiplist", - "fields": [ - "sli" - ], - "unique": false, - "sparse": false, - "deduplicate": true - } - ], - "isSmart": false, - "planId": "2010041", - "numberOfShards": 9, - "shards": { - "s2010050": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "s2010049": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010048": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010043": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010044": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "s2010042": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010045": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010046": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010047": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ] - }, - "replicationFactor": 2, - "shardKeys": [ - "_key" - ], - "shardingStrategy": "hash", - "theLeader": "", - "servers": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ] - }, - "s2010048": { - "id": "1000023", - "name": "s2010048", - "cid": "1000023", - "type": 3, - "status": 3, - "statusString": "loaded", - "version": 7, - "waitForSync": false, - "deleted": false, - "globallyUniqueId": "c2010041/s2010048", - "isSystem": false, - "allowUserKeys": true, - "keyOptions": { - "allowUserKeys": true, - "type": "traditional", - "lastValue": 0 - }, - "objectId": "2010351", - "cacheEnabled": false, - "indexes": [ - { - "id": "0", - "type": "primary", - "fields": [ - "_key" - ], - "unique": true, - "sparse": false - }, - { - "id": "1", - "type": "edge", - "fields": [ - "_from" - ], - "unique": false, - "sparse": false - }, - { - "id": "2", - "type": "edge", - "fields": [ - "_to" - ], - "unique": false, - "sparse": false - }, - { - "id": "2010051", - "type": "geo", - "fields": [ - "gi" - ], - "maxNumCoverCells": 8, - "worstIndexedLevel": 4, - "bestIndexedLevel": 17, - "geoJson": false, - "unique": false, - "sparse": true - }, - { - "id": "2010052", - "type": "geo", - "fields": [ - "gij" - ], - "maxNumCoverCells": 8, - "worstIndexedLevel": 4, - "bestIndexedLevel": 17, - "geoJson": true, - "unique": false, - "sparse": true - }, - { - "id": "2010053", - "type": "hash", - "fields": [ - "hi", - "_key" - ], - "unique": true, - "sparse": false, - "deduplicate": false - }, - { - "id": "2010054", - "type": "persistent", - "fields": [ - "pi" - ], - "unique": false, - "sparse": true, - "deduplicate": false - }, - { - "id": "2010132", - "type": "fulltext", - "fields": [ - "fi" - ], - "unique": false, - "sparse": true, - "minLength": 3 - }, - { - "id": "2010055", - "type": "skiplist", - "fields": [ - "sli" - ], - "unique": false, - "sparse": false, - "deduplicate": true - } - ], - "isSmart": false, - "planId": "2010041", - "numberOfShards": 9, - "shards": { - "s2010050": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "s2010049": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010048": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010043": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010044": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "s2010042": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010045": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010046": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010047": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ] - }, - "replicationFactor": 2, - "shardKeys": [ - "_key" - ], - "shardingStrategy": "hash", - "theLeader": "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - }, - "s2010046": { - "id": "1000022", - "name": "s2010046", - "cid": "1000022", - "type": 3, - "status": 3, - "statusString": "loaded", - "version": 7, - "waitForSync": false, - "deleted": false, - "globallyUniqueId": "c2010041/s2010046", - "isSystem": false, - "allowUserKeys": true, - "keyOptions": { - "allowUserKeys": true, - "type": "traditional", - "lastValue": 0 - }, - "objectId": "2010347", - "cacheEnabled": false, - "indexes": [ - { - "id": "0", - "type": "primary", - "fields": [ - "_key" - ], - "unique": true, - "sparse": false - }, - { - "id": "1", - "type": "edge", - "fields": [ - "_from" - ], - "unique": false, - "sparse": false - }, - { - "id": "2", - "type": "edge", - "fields": [ - "_to" - ], - "unique": false, - "sparse": false - }, - { - "id": "2010051", - "type": "geo", - "fields": [ - "gi" - ], - "maxNumCoverCells": 8, - "worstIndexedLevel": 4, - "bestIndexedLevel": 17, - "geoJson": false, - "unique": false, - "sparse": true - }, - { - "id": "2010052", - "type": "geo", - "fields": [ - "gij" - ], - "maxNumCoverCells": 8, - "worstIndexedLevel": 4, - "bestIndexedLevel": 17, - "geoJson": true, - "unique": false, - "sparse": true - }, - { - "id": "2010053", - "type": "hash", - "fields": [ - "hi", - "_key" - ], - "unique": true, - "sparse": false, - "deduplicate": false - }, - { - "id": "2010054", - "type": "persistent", - "fields": [ - "pi" - ], - "unique": false, - "sparse": true, - "deduplicate": false - }, - { - "id": "2010132", - "type": "fulltext", - "fields": [ - "fi" - ], - "unique": false, - "sparse": true, - "minLength": 3 - }, - { - "id": "2010055", - "type": "skiplist", - "fields": [ - "sli" - ], - "unique": false, - "sparse": false, - "deduplicate": true - } - ], - "isSmart": false, - "planId": "2010041", - "numberOfShards": 9, - "shards": { - "s2010050": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "s2010049": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010048": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010043": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010044": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "s2010042": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010045": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010046": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010047": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ] - }, - "replicationFactor": 2, - "shardKeys": [ - "_key" - ], - "shardingStrategy": "hash", - "theLeader": "", - "servers": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ] - }, - "s2010045": { - "id": "1000021", - "name": "s2010045", - "cid": "1000021", - "type": 3, - "status": 3, - "statusString": "loaded", - "version": 7, - "waitForSync": false, - "deleted": false, - "globallyUniqueId": "c2010041/s2010045", - "isSystem": false, - "allowUserKeys": true, - "keyOptions": { - "allowUserKeys": true, - "type": "traditional", - "lastValue": 0 - }, - "objectId": "2010338", - "cacheEnabled": false, - "indexes": [ - { - "id": "0", - "type": "primary", - "fields": [ - "_key" - ], - "unique": true, - "sparse": false - }, - { - "id": "1", - "type": "edge", - "fields": [ - "_from" - ], - "unique": false, - "sparse": false - }, - { - "id": "2", - "type": "edge", - "fields": [ - "_to" - ], - "unique": false, - "sparse": false - }, - { - "id": "2010051", - "type": "geo", - "fields": [ - "gi" - ], - "maxNumCoverCells": 8, - "worstIndexedLevel": 4, - "bestIndexedLevel": 17, - "geoJson": false, - "unique": false, - "sparse": true - }, - { - "id": "2010052", - "type": "geo", - "fields": [ - "gij" - ], - "maxNumCoverCells": 8, - "worstIndexedLevel": 4, - "bestIndexedLevel": 17, - "geoJson": true, - "unique": false, - "sparse": true - }, - { - "id": "2010053", - "type": "hash", - "fields": [ - "hi", - "_key" - ], - "unique": true, - "sparse": false, - "deduplicate": false - }, - { - "id": "2010054", - "type": "persistent", - "fields": [ - "pi" - ], - "unique": false, - "sparse": true, - "deduplicate": false - }, - { - "id": "2010132", - "type": "fulltext", - "fields": [ - "fi" - ], - "unique": false, - "sparse": true, - "minLength": 3 - }, - { - "id": "2010055", - "type": "skiplist", - "fields": [ - "sli" - ], - "unique": false, - "sparse": false, - "deduplicate": true - } - ], - "isSmart": false, - "planId": "2010041", - "numberOfShards": 9, - "shards": { - "s2010050": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "s2010049": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010048": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010043": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010044": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "s2010042": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010045": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010046": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010047": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ] - }, - "replicationFactor": 2, - "shardKeys": [ - "_key" - ], - "shardingStrategy": "hash", - "theLeader": "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - }, - "s2010043": { - "id": "1000020", - "name": "s2010043", - "cid": "1000020", - "type": 3, - "status": 3, - "statusString": "loaded", - "version": 7, - "waitForSync": false, - "deleted": false, - "globallyUniqueId": "c2010041/s2010043", - "isSystem": false, - "allowUserKeys": true, - "keyOptions": { - "allowUserKeys": true, - "type": "traditional", - "lastValue": 0 - }, - "objectId": "2010336", - "cacheEnabled": false, - "indexes": [ - { - "id": "0", - "type": "primary", - "fields": [ - "_key" - ], - "unique": true, - "sparse": false - }, - { - "id": "1", - "type": "edge", - "fields": [ - "_from" - ], - "unique": false, - "sparse": false - }, - { - "id": "2", - "type": "edge", - "fields": [ - "_to" - ], - "unique": false, - "sparse": false - }, - { - "id": "2010051", - "type": "geo", - "fields": [ - "gi" - ], - "maxNumCoverCells": 8, - "worstIndexedLevel": 4, - "bestIndexedLevel": 17, - "geoJson": false, - "unique": false, - "sparse": true - }, - { - "id": "2010052", - "type": "geo", - "fields": [ - "gij" - ], - "maxNumCoverCells": 8, - "worstIndexedLevel": 4, - "bestIndexedLevel": 17, - "geoJson": true, - "unique": false, - "sparse": true - }, - { - "id": "2010053", - "type": "hash", - "fields": [ - "hi", - "_key" - ], - "unique": true, - "sparse": false, - "deduplicate": false - }, - { - "id": "2010054", - "type": "persistent", - "fields": [ - "pi" - ], - "unique": false, - "sparse": true, - "deduplicate": false - }, - { - "id": "2010132", - "type": "fulltext", - "fields": [ - "fi" - ], - "unique": false, - "sparse": true, - "minLength": 3 - }, - { - "id": "2010055", - "type": "skiplist", - "fields": [ - "sli" - ], - "unique": false, - "sparse": false, - "deduplicate": true - } - ], - "isSmart": false, - "planId": "2010041", - "numberOfShards": 9, - "shards": { - "s2010050": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "s2010049": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010048": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010043": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010044": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "s2010042": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010045": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010046": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010047": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ] - }, - "replicationFactor": 2, - "shardKeys": [ - "_key" - ], - "shardingStrategy": "hash", - "theLeader": "", - "servers": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ] - }, - "s2010042": { - "id": "1000019", - "name": "s2010042", - "cid": "1000019", - "type": 3, - "status": 3, - "statusString": "loaded", - "version": 7, - "waitForSync": false, - "deleted": false, - "globallyUniqueId": "c2010041/s2010042", - "isSystem": false, - "allowUserKeys": true, - "keyOptions": { - "allowUserKeys": true, - "type": "traditional", - "lastValue": 0 - }, - "objectId": "2010335", - "cacheEnabled": false, - "indexes": [ - { - "id": "0", - "type": "primary", - "fields": [ - "_key" - ], - "unique": true, - "sparse": false - }, - { - "id": "1", - "type": "edge", - "fields": [ - "_from" - ], - "unique": false, - "sparse": false - }, - { - "id": "2", - "type": "edge", - "fields": [ - "_to" - ], - "unique": false, - "sparse": false - }, - { - "id": "2010051", - "type": "geo", - "fields": [ - "gi" - ], - "maxNumCoverCells": 8, - "worstIndexedLevel": 4, - "bestIndexedLevel": 17, - "geoJson": false, - "unique": false, - "sparse": true - }, - { - "id": "2010052", - "type": "geo", - "fields": [ - "gij" - ], - "maxNumCoverCells": 8, - "worstIndexedLevel": 4, - "bestIndexedLevel": 17, - "geoJson": true, - "unique": false, - "sparse": true - }, - { - "id": "2010053", - "type": "hash", - "fields": [ - "hi", - "_key" - ], - "unique": true, - "sparse": false, - "deduplicate": false - }, - { - "id": "2010054", - "type": "persistent", - "fields": [ - "pi" - ], - "unique": false, - "sparse": true, - "deduplicate": false - }, - { - "id": "2010132", - "type": "fulltext", - "fields": [ - "fi" - ], - "unique": false, - "sparse": true, - "minLength": 3 - }, - { - "id": "2010055", - "type": "skiplist", - "fields": [ - "sli" - ], - "unique": false, - "sparse": false, - "deduplicate": true - } - ], - "isSmart": false, - "planId": "2010041", - "numberOfShards": 9, - "shards": { - "s2010050": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "s2010049": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010048": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010043": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010044": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "s2010042": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010045": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010046": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010047": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ] - }, - "replicationFactor": 2, - "shardKeys": [ - "_key" - ], - "shardingStrategy": "hash", - "theLeader": "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - }, - "s2010038": { - "id": "1000018", - "name": "s2010038", - "cid": "1000018", - "type": 2, - "status": 3, - "statusString": "loaded", - "version": 7, - "waitForSync": false, - "deleted": false, - "globallyUniqueId": "c2010037/s2010038", - "isSystem": false, - "allowUserKeys": true, - "keyOptions": { - "allowUserKeys": true, - "type": "traditional", - "lastValue": 0 - }, - "objectId": "2010281", - "cacheEnabled": false, - "indexes": [ - { - "id": "0", - "type": "primary", - "fields": [ - "_key" - ], - "unique": true, - "sparse": false - }, - { - "id": "2010039", + "id": "2010041", "type": "skiplist", "fields": [ "time" @@ -1090,12 +1045,12 @@ R"=( } ], "isSmart": false, - "planId": "2010037", + "planId": "2010039", "numberOfShards": 1, "shards": { - "s2010038": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "s2010040": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -1103,19 +1058,20 @@ R"=( "_key" ], "shardingStrategy": "hash", - "theLeader": "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "theLeader": "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "theLeaderTouched": true }, - "s2010035": { - "id": "1000017", - "name": "s2010035", - "cid": "1000017", + "s2010037": { + "globallyUniqueId": "c2010036/s2010037", + "id": "1010017", + "name": "s2010037", + "cid": "1010017", "type": 2, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010034/s2010035", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -1123,7 +1079,7 @@ R"=( "type": "traditional", "lastValue": 0 }, - "objectId": "2010236", + "objectId": "2010302", "cacheEnabled": false, "indexes": [ { @@ -1136,7 +1092,7 @@ R"=( "sparse": false }, { - "id": "2010036", + "id": "2010038", "type": "skiplist", "fields": [ "time" @@ -1147,12 +1103,12 @@ R"=( } ], "isSmart": false, - "planId": "2010034", + "planId": "2010036", "numberOfShards": 1, "shards": { - "s2010035": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "s2010037": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -1160,19 +1116,20 @@ R"=( "_key" ], "shardingStrategy": "hash", - "theLeader": "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "theLeader": "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "theLeaderTouched": true }, "s2010004": { - "id": "1000006", + "globallyUniqueId": "c2010003/s2010004", + "id": "1010006", "name": "s2010004", - "cid": "1000006", + "cid": "1010006", "type": 2, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010003/s2010004", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -1180,7 +1137,7 @@ R"=( "type": "traditional", "lastValue": 2010030 }, - "objectId": "2010009", + "objectId": "2010016", "cacheEnabled": false, "indexes": [ { @@ -1208,8 +1165,8 @@ R"=( "numberOfShards": 1, "shards": { "s2010004": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -1217,19 +1174,20 @@ R"=( "_key" ], "shardingStrategy": "hash", - "theLeader": "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "theLeader": "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "theLeaderTouched": true }, "s2010002": { - "id": "1000005", + "globallyUniqueId": "c2010001/s2010002", + "id": "1010005", "name": "s2010002", - "cid": "1000005", + "cid": "1010005", "type": 2, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010001/s2010002", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -1255,8 +1213,8 @@ R"=( "numberOfShards": 1, "shards": { "s2010002": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -1264,229 +1222,20 @@ R"=( "_key" ], "shardingStrategy": "hash", - "theLeader": "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - }, - "_statistics15": { - "id": "1000004", - "name": "_statistics15", - "cid": "1000004", - "type": 2, - "status": 3, - "statusString": "loaded", - "version": 7, - "waitForSync": false, - "deleted": false, - "globallyUniqueId": "c1000004/_statistics15", - "isSystem": true, - "allowUserKeys": true, - "keyOptions": { - "allowUserKeys": true, - "type": "traditional", - "lastValue": 0 - }, - "objectId": "1000013", - "cacheEnabled": false, - "indexes": [ - { - "id": "0", - "type": "primary", - "fields": [ - "_key" - ], - "unique": true, - "sparse": false - }, - { - "id": "1000017", - "type": "skiplist", - "fields": [ - "time" - ], - "unique": false, - "sparse": false, - "deduplicate": true - } - ], - "isSmart": false, - "planId": "1000004", - "numberOfShards": 1, - "shards": {}, - "replicationFactor": 1, - "shardKeys": [ - "_key" - ], - "shardingStrategy": "none", - "theLeader": "", - "servers": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ] - }, - "_statistics": { - "id": "1000003", - "name": "_statistics", - "cid": "1000003", - "type": 2, - "status": 3, - "statusString": "loaded", - "version": 7, - "waitForSync": false, - "deleted": false, - "globallyUniqueId": "c1000003/_statistics", - "isSystem": true, - "allowUserKeys": true, - "keyOptions": { - "allowUserKeys": true, - "type": "traditional", - "lastValue": 0 - }, - "objectId": "1000008", - "cacheEnabled": false, - "indexes": [ - { - "id": "0", - "type": "primary", - "fields": [ - "_key" - ], - "unique": true, - "sparse": false - }, - { - "id": "1000012", - "type": "skiplist", - "fields": [ - "time" - ], - "unique": false, - "sparse": false, - "deduplicate": true - } - ], - "isSmart": false, - "planId": "1000003", - "numberOfShards": 1, - "shards": {}, - "replicationFactor": 1, - "shardKeys": [ - "_key" - ], - "shardingStrategy": "none", - "theLeader": "", - "servers": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ] - }, - "_iresearch_analyzers": { - "id": "1000001", - "name": "_iresearch_analyzers", - "cid": "1000001", - "type": 2, - "status": 3, - "statusString": "loaded", - "version": 7, - "waitForSync": false, - "deleted": false, - "globallyUniqueId": "c1000001/_iresearch_analyzers", - "isSystem": true, - "allowUserKeys": true, - "keyOptions": { - "allowUserKeys": true, - "type": "traditional", - "lastValue": 0 - }, - "objectId": "2", - "cacheEnabled": false, - "indexes": [ - { - "id": "0", - "type": "primary", - "fields": [ - "_key" - ], - "unique": true, - "sparse": false - } - ], - "isSmart": false, - "planId": "1000001", - "numberOfShards": 1, - "shards": {}, - "replicationFactor": 1, - "shardKeys": [ - "_key" - ], - "shardingStrategy": "none", - "theLeader": "", - "servers": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ] - }, - "_statisticsRaw": { - "id": "1000002", - "name": "_statisticsRaw", - "cid": "1000002", - "type": 2, - "status": 3, - "statusString": "loaded", - "version": 7, - "waitForSync": false, - "deleted": false, - "globallyUniqueId": "c1000002/_statisticsRaw", - "isSystem": true, - "allowUserKeys": true, - "keyOptions": { - "allowUserKeys": true, - "type": "traditional", - "lastValue": 1000020 - }, - "objectId": "1000003", - "cacheEnabled": false, - "indexes": [ - { - "id": "0", - "type": "primary", - "fields": [ - "_key" - ], - "unique": true, - "sparse": false - }, - { - "id": "1000007", - "type": "skiplist", - "fields": [ - "time" - ], - "unique": false, - "sparse": false, - "deduplicate": true - } - ], - "isSmart": false, - "planId": "1000002", - "numberOfShards": 1, - "shards": {}, - "replicationFactor": 1, - "shardKeys": [ - "_key" - ], - "shardingStrategy": "none", - "theLeader": "", - "servers": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ] + "theLeader": "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "theLeaderTouched": true }, "s2010007": { - "id": "1000007", + "globallyUniqueId": "c2010006/s2010007", + "id": "1010007", "name": "s2010007", - "cid": "1000007", + "cid": "1010007", "type": 2, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010006/s2010007", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -1494,7 +1243,7 @@ R"=( "type": "traditional", "lastValue": 0 }, - "objectId": "2010022", + "objectId": "2010032", "cacheEnabled": false, "indexes": [ { @@ -1512,8 +1261,8 @@ R"=( "numberOfShards": 1, "shards": { "s2010007": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -1521,19 +1270,20 @@ R"=( "_key" ], "shardingStrategy": "hash", - "theLeader": "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "theLeader": "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "theLeaderTouched": true }, "s2010009": { - "id": "1000008", + "globallyUniqueId": "c2010008/s2010009", + "id": "1010008", "name": "s2010009", - "cid": "1000008", + "cid": "1010008", "type": 2, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010008/s2010009", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -1541,7 +1291,7 @@ R"=( "type": "traditional", "lastValue": 0 }, - "objectId": "2010031", + "objectId": "2010041", "cacheEnabled": false, "indexes": [ { @@ -1559,8 +1309,8 @@ R"=( "numberOfShards": 1, "shards": { "s2010009": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -1568,19 +1318,20 @@ R"=( "_key" ], "shardingStrategy": "hash", - "theLeader": "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "theLeader": "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "theLeaderTouched": true }, "s2010011": { - "id": "1000009", + "globallyUniqueId": "c2010010/s2010011", + "id": "1010009", "name": "s2010011", - "cid": "1000009", + "cid": "1010009", "type": 2, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010010/s2010011", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -1588,7 +1339,7 @@ R"=( "type": "traditional", "lastValue": 2010014 }, - "objectId": "2010041", + "objectId": "2010051", "cacheEnabled": false, "indexes": [ { @@ -1606,8 +1357,8 @@ R"=( "numberOfShards": 1, "shards": { "s2010011": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -1615,19 +1366,20 @@ R"=( "_key" ], "shardingStrategy": "hash", - "theLeader": "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "theLeader": "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "theLeaderTouched": true }, "s2010016": { - "id": "1000010", + "globallyUniqueId": "c2010015/s2010016", + "id": "1010010", "name": "s2010016", - "cid": "1000010", + "cid": "1010010", "type": 2, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010015/s2010016", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -1635,7 +1387,7 @@ R"=( "type": "traditional", "lastValue": 0 }, - "objectId": "2010055", + "objectId": "2010065", "cacheEnabled": false, "indexes": [ { @@ -1653,8 +1405,8 @@ R"=( "numberOfShards": 1, "shards": { "s2010016": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -1662,19 +1414,20 @@ R"=( "_key" ], "shardingStrategy": "hash", - "theLeader": "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "theLeader": "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "theLeaderTouched": true }, "s2010018": { - "id": "1000011", + "globallyUniqueId": "c2010017/s2010018", + "id": "1010011", "name": "s2010018", - "cid": "1000011", + "cid": "1010011", "type": 2, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010017/s2010018", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -1682,7 +1435,7 @@ R"=( "type": "traditional", "lastValue": 0 }, - "objectId": "2010067", + "objectId": "2010077", "cacheEnabled": false, "indexes": [ { @@ -1700,8 +1453,8 @@ R"=( "numberOfShards": 1, "shards": { "s2010018": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -1709,19 +1462,20 @@ R"=( "_key" ], "shardingStrategy": "hash", - "theLeader": "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "theLeader": "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "theLeaderTouched": true }, "s2010020": { - "id": "1000012", + "globallyUniqueId": "c2010019/s2010020", + "id": "1010012", "name": "s2010020", - "cid": "1000012", + "cid": "1010012", "type": 2, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010019/s2010020", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -1729,7 +1483,7 @@ R"=( "type": "traditional", "lastValue": 0 }, - "objectId": "2010080", + "objectId": "2010090", "cacheEnabled": false, "indexes": [ { @@ -1747,8 +1501,8 @@ R"=( "numberOfShards": 1, "shards": { "s2010020": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -1756,19 +1510,20 @@ R"=( "_key" ], "shardingStrategy": "hash", - "theLeader": "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "theLeader": "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "theLeaderTouched": true }, "s2010022": { - "id": "1000013", + "globallyUniqueId": "c2010021/s2010022", + "id": "1010013", "name": "s2010022", - "cid": "1000013", + "cid": "1010013", "type": 2, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010021/s2010022", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -1776,7 +1531,7 @@ R"=( "type": "traditional", "lastValue": 0 }, - "objectId": "2010094", + "objectId": "2010104", "cacheEnabled": false, "indexes": [ { @@ -1818,8 +1573,8 @@ R"=( "numberOfShards": 1, "shards": { "s2010022": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -1827,27 +1582,28 @@ R"=( "_key" ], "shardingStrategy": "hash", - "theLeader": "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "theLeader": "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "theLeaderTouched": true }, "s2010026": { - "id": "1000014", + "globallyUniqueId": "c2010025/s2010026", + "id": "1010014", "name": "s2010026", - "cid": "1000014", + "cid": "1010014", "type": 2, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010025/s2010026", "isSystem": false, "allowUserKeys": true, "keyOptions": { "allowUserKeys": true, "type": "traditional", - "lastValue": 0 + "lastValue": 2010032 }, - "objectId": "2010138", + "objectId": "2010171", "cacheEnabled": false, "indexes": [ { @@ -1875,8 +1631,8 @@ R"=( "numberOfShards": 1, "shards": { "s2010026": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -1884,19 +1640,20 @@ R"=( "_key" ], "shardingStrategy": "hash", - "theLeader": "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "theLeader": "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "theLeaderTouched": true }, "s2010029": { - "id": "1000015", + "globallyUniqueId": "c2010028/s2010029", + "id": "1010015", "name": "s2010029", - "cid": "1000015", + "cid": "1010015", "type": 2, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010028/s2010029", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -1904,7 +1661,7 @@ R"=( "type": "traditional", "lastValue": 0 }, - "objectId": "2010173", + "objectId": "2010220", "cacheEnabled": false, "indexes": [ { @@ -1922,8 +1679,8 @@ R"=( "numberOfShards": 1, "shards": { "s2010029": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -1931,19 +1688,20 @@ R"=( "_key" ], "shardingStrategy": "hash", - "theLeader": "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "theLeader": "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "theLeaderTouched": true }, - "s2010032": { - "id": "1000016", - "name": "s2010032", - "cid": "1000016", + "s2010034": { + "globallyUniqueId": "c2010033/s2010034", + "id": "1010016", + "name": "s2010034", + "cid": "1010016", "type": 2, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010031/s2010032", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -1951,7 +1709,7 @@ R"=( "type": "traditional", "lastValue": 4010010 }, - "objectId": "2010195", + "objectId": "2010244", "cacheEnabled": false, "indexes": [ { @@ -1964,7 +1722,7 @@ R"=( "sparse": false }, { - "id": "2010033", + "id": "2010035", "type": "skiplist", "fields": [ "time" @@ -1975,12 +1733,12 @@ R"=( } ], "isSmart": false, - "planId": "2010031", + "planId": "2010033", "numberOfShards": 1, "shards": { - "s2010032": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "s2010034": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -1988,21 +1746,22 @@ R"=( "_key" ], "shardingStrategy": "hash", - "theLeader": "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "theLeader": "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "theLeaderTouched": true } }, "foo": { - "s2010093": { - "id": "1000042", - "name": "s2010093", - "cid": "1000042", + "s4010061": { + "globallyUniqueId": "c4010058/s4010061", + "id": "1010040", + "name": "s4010061", + "cid": "1010040", "type": 2, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010088/s2010093", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -2010,7 +1769,7 @@ R"=( "type": "traditional", "lastValue": 0 }, - "objectId": "2011285", + "objectId": "4011247", "cacheEnabled": false, "indexes": [ { @@ -2024,32 +1783,32 @@ R"=( } ], "isSmart": false, - "planId": "2010088", + "planId": "4010058", "numberOfShards": 6, "shards": { - "s2010093": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "s4010063": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ], - "s2010094": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s4010064": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" ], - "s2010091": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s4010062": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" ], - "s2010092": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "s4010059": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" ], - "s2010089": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "s4010061": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" ], - "s2010090": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "s4010060": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -2058,22 +1817,23 @@ R"=( ], "shardingStrategy": "hash", "theLeader": "", + "theLeaderTouched": true, "servers": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" ] }, - "s2010073": { - "id": "1000031", - "name": "s2010073", - "cid": "1000031", + "s4010043": { + "globallyUniqueId": "c4010042/s4010043", + "id": "1010030", + "name": "s4010043", + "cid": "1010030", "type": 2, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010072/s2010073", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -2081,7 +1841,7 @@ R"=( "type": "traditional", "lastValue": 0 }, - "objectId": "2010901", + "objectId": "4010743", "cacheEnabled": false, "indexes": [ { @@ -2095,12 +1855,12 @@ R"=( } ], "isSmart": false, - "planId": "2010072", + "planId": "4010042", "numberOfShards": 1, "shards": { - "s2010073": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s4010043": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -2108,23 +1868,20 @@ R"=( "_key" ], "shardingStrategy": "hash", - "theLeader": "", - "servers": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ] + "theLeader": "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "theLeaderTouched": true }, - "s2010071": { - "id": "1000030", - "name": "s2010071", - "cid": "1000030", + "s4010041": { + "globallyUniqueId": "c4010040/s4010041", + "id": "1010029", + "name": "s4010041", + "cid": "1010029", "type": 2, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010070/s2010071", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -2132,7 +1889,7 @@ R"=( "type": "traditional", "lastValue": 0 }, - "objectId": "2010861", + "objectId": "4010702", "cacheEnabled": false, "indexes": [ { @@ -2146,12 +1903,12 @@ R"=( } ], "isSmart": false, - "planId": "2010070", + "planId": "4010040", "numberOfShards": 1, "shards": { - "s2010071": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s4010041": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -2159,23 +1916,20 @@ R"=( "_key" ], "shardingStrategy": "hash", - "theLeader": "", - "servers": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ] + "theLeader": "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "theLeaderTouched": true }, - "s2010069": { - "id": "1000029", - "name": "s2010069", - "cid": "1000029", + "s4010039": { + "globallyUniqueId": "c4010038/s4010039", + "id": "1010028", + "name": "s4010039", + "cid": "1010028", "type": 2, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010068/s2010069", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -2183,7 +1937,7 @@ R"=( "type": "traditional", "lastValue": 0 }, - "objectId": "2010822", + "objectId": "4010662", "cacheEnabled": false, "indexes": [ { @@ -2197,12 +1951,12 @@ R"=( } ], "isSmart": false, - "planId": "2010068", + "planId": "4010038", "numberOfShards": 1, "shards": { - "s2010069": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s4010039": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -2210,31 +1964,28 @@ R"=( "_key" ], "shardingStrategy": "hash", - "theLeader": "", - "servers": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ] + "theLeader": "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "theLeaderTouched": true }, - "s2010064": { - "id": "1000028", - "name": "s2010064", - "cid": "1000028", + "s4010034": { + "globallyUniqueId": "c4010033/s4010034", + "id": "1010027", + "name": "s4010034", + "cid": "1010027", "type": 2, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010063/s2010064", "isSystem": false, "allowUserKeys": true, "keyOptions": { "allowUserKeys": true, "type": "traditional", - "lastValue": 2010067 + "lastValue": 4010037 }, - "objectId": "2010776", + "objectId": "4010620", "cacheEnabled": false, "indexes": [ { @@ -2248,12 +1999,12 @@ R"=( } ], "isSmart": false, - "planId": "2010063", + "planId": "4010033", "numberOfShards": 1, "shards": { - "s2010064": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s4010034": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -2261,23 +2012,20 @@ R"=( "_key" ], "shardingStrategy": "hash", - "theLeader": "", - "servers": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ] + "theLeader": "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "theLeaderTouched": true }, - "s2010060": { - "id": "1000026", - "name": "s2010060", - "cid": "1000026", + "s4010030": { + "globallyUniqueId": "c4010029/s4010030", + "id": "1010025", + "name": "s4010030", + "cid": "1010025", "type": 2, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010059/s2010060", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -2285,7 +2033,7 @@ R"=( "type": "traditional", "lastValue": 0 }, - "objectId": "2010703", + "objectId": "4010545", "cacheEnabled": false, "indexes": [ { @@ -2299,12 +2047,12 @@ R"=( } ], "isSmart": false, - "planId": "2010059", + "planId": "4010029", "numberOfShards": 1, "shards": { - "s2010060": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s4010030": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -2312,23 +2060,20 @@ R"=( "_key" ], "shardingStrategy": "hash", - "theLeader": "", - "servers": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ] + "theLeader": "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "theLeaderTouched": true }, - "s2010062": { - "id": "1000027", - "name": "s2010062", - "cid": "1000027", + "s4010032": { + "globallyUniqueId": "c4010031/s4010032", + "id": "1010026", + "name": "s4010032", + "cid": "1010026", "type": 2, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010061/s2010062", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -2336,7 +2081,7 @@ R"=( "type": "traditional", "lastValue": 0 }, - "objectId": "2010739", + "objectId": "4010582", "cacheEnabled": false, "indexes": [ { @@ -2350,12 +2095,12 @@ R"=( } ], "isSmart": false, - "planId": "2010061", + "planId": "4010031", "numberOfShards": 1, "shards": { - "s2010062": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s4010032": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -2363,23 +2108,20 @@ R"=( "_key" ], "shardingStrategy": "hash", - "theLeader": "", - "servers": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ] + "theLeader": "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "theLeaderTouched": true }, - "s2010075": { - "id": "1000032", - "name": "s2010075", - "cid": "1000032", + "s4010045": { + "globallyUniqueId": "c4010044/s4010045", + "id": "1010031", + "name": "s4010045", + "cid": "1010031", "type": 2, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010074/s2010075", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -2387,7 +2129,7 @@ R"=( "type": "traditional", "lastValue": 0 }, - "objectId": "2010942", + "objectId": "4010785", "cacheEnabled": false, "indexes": [ { @@ -2400,7 +2142,7 @@ R"=( "sparse": false }, { - "id": "2010076", + "id": "4010046", "type": "skiplist", "fields": [ "queue", @@ -2412,7 +2154,7 @@ R"=( "deduplicate": true }, { - "id": "2010077", + "id": "4010047", "type": "skiplist", "fields": [ "status", @@ -2425,12 +2167,12 @@ R"=( } ], "isSmart": false, - "planId": "2010074", + "planId": "4010044", "numberOfShards": 1, "shards": { - "s2010075": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s4010045": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -2438,23 +2180,20 @@ R"=( "_key" ], "shardingStrategy": "hash", - "theLeader": "", - "servers": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ] + "theLeader": "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "theLeaderTouched": true }, - "s2010079": { - "id": "1000033", - "name": "s2010079", - "cid": "1000033", + "s4010049": { + "globallyUniqueId": "c4010048/s4010049", + "id": "1010032", + "name": "s4010049", + "cid": "1010032", "type": 2, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010078/s2010079", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -2462,7 +2201,7 @@ R"=( "type": "traditional", "lastValue": 0 }, - "objectId": "2011069", + "objectId": "4010992", "cacheEnabled": false, "indexes": [ { @@ -2475,7 +2214,7 @@ R"=( "sparse": false }, { - "id": "2010080", + "id": "4010050", "type": "hash", "fields": [ "mount" @@ -2486,12 +2225,12 @@ R"=( } ], "isSmart": false, - "planId": "2010078", + "planId": "4010048", "numberOfShards": 1, "shards": { - "s2010079": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s4010049": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -2499,23 +2238,20 @@ R"=( "_key" ], "shardingStrategy": "hash", - "theLeader": "", - "servers": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ] + "theLeader": "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "theLeaderTouched": true }, - "s2010082": { - "id": "1000034", - "name": "s2010082", - "cid": "1000034", + "s4010052": { + "globallyUniqueId": "c4010051/s4010052", + "id": "1010033", + "name": "s4010052", + "cid": "1010033", "type": 2, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010081/s2010082", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -2523,7 +2259,7 @@ R"=( "type": "traditional", "lastValue": 0 }, - "objectId": "2011159", + "objectId": "4011125", "cacheEnabled": false, "indexes": [ { @@ -2537,12 +2273,12 @@ R"=( } ], "isSmart": false, - "planId": "2010081", + "planId": "4010051", "numberOfShards": 1, "shards": { - "s2010082": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s4010052": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -2550,23 +2286,20 @@ R"=( "_key" ], "shardingStrategy": "hash", - "theLeader": "", - "servers": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ] + "theLeader": "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "theLeaderTouched": true }, - "s2010084": { - "id": "1000035", - "name": "s2010084", - "cid": "1000035", + "s4010057": { + "globallyUniqueId": "c4010053/s4010057", + "id": "1010036", + "name": "s4010057", + "cid": "1010036", "type": 3, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010083/s2010084", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -2574,7 +2307,7 @@ R"=( "type": "traditional", "lastValue": 0 }, - "objectId": "2011208", + "objectId": "4011177", "cacheEnabled": false, "indexes": [ { @@ -2606,28 +2339,28 @@ R"=( } ], "isSmart": false, - "planId": "2010083", + "planId": "4010053", "numberOfShards": 4, "shards": { - "s2010087": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "s4010057": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ], - "s2010086": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "s4010056": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ], - "s2010084": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "s4010054": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" ], - "s2010085": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "s4010055": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" ] }, "replicationFactor": 3, @@ -2635,19 +2368,20 @@ R"=( "_key" ], "shardingStrategy": "hash", - "theLeader": "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "theLeader": "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "theLeaderTouched": true }, - "s2010085": { - "id": "1000036", - "name": "s2010085", - "cid": "1000036", + "s4010055": { + "globallyUniqueId": "c4010053/s4010055", + "id": "1010034", + "name": "s4010055", + "cid": "1010034", "type": 3, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010083/s2010085", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -2655,7 +2389,7 @@ R"=( "type": "traditional", "lastValue": 0 }, - "objectId": "2011209", + "objectId": "4011175", "cacheEnabled": false, "indexes": [ { @@ -2687,28 +2421,28 @@ R"=( } ], "isSmart": false, - "planId": "2010083", + "planId": "4010053", "numberOfShards": 4, "shards": { - "s2010087": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "s4010057": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ], - "s2010086": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "s4010056": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ], - "s2010084": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "s4010054": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" ], - "s2010085": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "s4010055": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" ] }, "replicationFactor": 3, @@ -2717,23 +2451,24 @@ R"=( ], "shardingStrategy": "hash", "theLeader": "", + "theLeaderTouched": true, "servers": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" ] }, - "s2010086": { - "id": "1000037", - "name": "s2010086", - "cid": "1000037", + "s4010054": { + "globallyUniqueId": "c4010053/s4010054", + "id": "1010035", + "name": "s4010054", + "cid": "1010035", "type": 3, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010083/s2010086", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -2741,7 +2476,7 @@ R"=( "type": "traditional", "lastValue": 0 }, - "objectId": "2011210", + "objectId": "4011176", "cacheEnabled": false, "indexes": [ { @@ -2773,28 +2508,28 @@ R"=( } ], "isSmart": false, - "planId": "2010083", + "planId": "4010053", "numberOfShards": 4, "shards": { - "s2010087": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "s4010057": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ], - "s2010086": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "s4010056": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ], - "s2010084": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "s4010054": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" ], - "s2010085": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "s4010055": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" ] }, "replicationFactor": 3, @@ -2802,19 +2537,20 @@ R"=( "_key" ], "shardingStrategy": "hash", - "theLeader": "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "theLeader": "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "theLeaderTouched": true }, - "s2010087": { - "id": "1000038", - "name": "s2010087", - "cid": "1000038", + "s4010056": { + "globallyUniqueId": "c4010053/s4010056", + "id": "1010037", + "name": "s4010056", + "cid": "1010037", "type": 3, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010083/s2010087", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -2822,7 +2558,7 @@ R"=( "type": "traditional", "lastValue": 0 }, - "objectId": "2011220", + "objectId": "4011178", "cacheEnabled": false, "indexes": [ { @@ -2854,28 +2590,28 @@ R"=( } ], "isSmart": false, - "planId": "2010083", + "planId": "4010053", "numberOfShards": 4, "shards": { - "s2010087": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "s4010057": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ], - "s2010086": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "s4010056": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ], - "s2010084": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "s4010054": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" ], - "s2010085": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "s4010055": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" ] }, "replicationFactor": 3, @@ -2883,19 +2619,20 @@ R"=( "_key" ], "shardingStrategy": "hash", - "theLeader": "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "theLeader": "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "theLeaderTouched": true }, - "s2010090": { - "id": "1000039", - "name": "s2010090", - "cid": "1000039", + "s4010060": { + "globallyUniqueId": "c4010058/s4010060", + "id": "1010038", + "name": "s4010060", + "cid": "1010038", "type": 2, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010088/s2010090", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -2903,7 +2640,7 @@ R"=( "type": "traditional", "lastValue": 0 }, - "objectId": "2011279", + "objectId": "4011246", "cacheEnabled": false, "indexes": [ { @@ -2917,32 +2654,100 @@ R"=( } ], "isSmart": false, - "planId": "2010088", + "planId": "4010058", "numberOfShards": 6, "shards": { - "s2010093": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "s4010063": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ], - "s2010094": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s4010064": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" ], - "s2010091": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s4010062": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" ], - "s2010092": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "s4010059": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" ], - "s2010089": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "s4010061": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" ], - "s2010090": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "s4010060": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] + }, + "replicationFactor": 2, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "theLeader": "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "theLeaderTouched": true + }, + "s4010064": { + "globallyUniqueId": "c4010058/s4010064", + "id": "1010039", + "name": "s4010064", + "cid": "1010039", + "type": 2, + "status": 3, + "statusString": "loaded", + "version": 7, + "waitForSync": false, + "deleted": false, + "isSystem": false, + "allowUserKeys": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional", + "lastValue": 0 + }, + "objectId": "4011249", + "cacheEnabled": false, + "indexes": [ + { + "id": "0", + "type": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + } + ], + "isSmart": false, + "planId": "4010058", + "numberOfShards": 6, + "shards": { + "s4010063": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010064": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010062": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010059": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010061": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010060": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -2951,22 +2756,23 @@ R"=( ], "shardingStrategy": "hash", "theLeader": "", + "theLeaderTouched": true, "servers": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" ] }, - "s2010089": { - "id": "1000040", - "name": "s2010089", - "cid": "1000040", + "s4010063": { + "globallyUniqueId": "c4010058/s4010063", + "id": "1010041", + "name": "s4010063", + "cid": "1010041", "type": 2, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010088/s2010089", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -2974,7 +2780,7 @@ R"=( "type": "traditional", "lastValue": 0 }, - "objectId": "2011280", + "objectId": "4011248", "cacheEnabled": false, "indexes": [ { @@ -2988,32 +2794,32 @@ R"=( } ], "isSmart": false, - "planId": "2010088", + "planId": "4010058", "numberOfShards": 6, "shards": { - "s2010093": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "s4010063": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ], - "s2010094": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s4010064": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" ], - "s2010091": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s4010062": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" ], - "s2010092": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "s4010059": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" ], - "s2010089": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "s4010061": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" ], - "s2010090": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "s4010060": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -3021,74 +2827,8 @@ R"=( "_key" ], "shardingStrategy": "hash", - "theLeader": "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - }, - "s2010092": { - "id": "1000041", - "name": "s2010092", - "cid": "1000041", - "type": 2, - "status": 3, - "statusString": "loaded", - "version": 7, - "waitForSync": false, - "deleted": false, - "globallyUniqueId": "c2010088/s2010092", - "isSystem": false, - "allowUserKeys": true, - "keyOptions": { - "allowUserKeys": true, - "type": "traditional", - "lastValue": 0 - }, - "objectId": "2011281", - "cacheEnabled": false, - "indexes": [ - { - "id": "0", - "type": "primary", - "fields": [ - "_key" - ], - "unique": true, - "sparse": false - } - ], - "isSmart": false, - "planId": "2010088", - "numberOfShards": 6, - "shards": { - "s2010093": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010094": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "s2010091": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "s2010092": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010089": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010090": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ] - }, - "replicationFactor": 2, - "shardKeys": [ - "_key" - ], - "shardingStrategy": "hash", - "theLeader": "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "theLeader": "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "theLeaderTouched": true } } } diff --git a/tests/Maintenance/DBServer0003.json b/tests/Maintenance/DBServer0003.json index 03234157c4..7b11f413d8 100644 --- a/tests/Maintenance/DBServer0003.json +++ b/tests/Maintenance/DBServer0003.json @@ -1,1653 +1,10 @@ R"=( { "_system": { - "s2010050": { - "id": "3010024", - "name": "s2010050", - "cid": "3010024", - "type": 3, - "status": 3, - "statusString": "loaded", - "version": 7, - "waitForSync": false, - "deleted": false, - "globallyUniqueId": "c2010041/s2010050", - "isSystem": false, - "allowUserKeys": true, - "keyOptions": { - "allowUserKeys": true, - "type": "traditional", - "lastValue": 0 - }, - "objectId": "3010430", - "cacheEnabled": false, - "indexes": [ - { - "id": "0", - "type": "primary", - "fields": [ - "_key" - ], - "unique": true, - "sparse": false - }, - { - "id": "1", - "type": "edge", - "fields": [ - "_from" - ], - "unique": false, - "sparse": false - }, - { - "id": "2", - "type": "edge", - "fields": [ - "_to" - ], - "unique": false, - "sparse": false - }, - { - "id": "2010051", - "type": "geo", - "fields": [ - "gi" - ], - "maxNumCoverCells": 8, - "worstIndexedLevel": 4, - "bestIndexedLevel": 17, - "geoJson": false, - "unique": false, - "sparse": true - }, - { - "id": "2010052", - "type": "geo", - "fields": [ - "gij" - ], - "maxNumCoverCells": 8, - "worstIndexedLevel": 4, - "bestIndexedLevel": 17, - "geoJson": true, - "unique": false, - "sparse": true - }, - { - "id": "2010053", - "type": "hash", - "fields": [ - "hi", - "_key" - ], - "unique": true, - "sparse": false, - "deduplicate": false - }, - { - "id": "2010054", - "type": "persistent", - "fields": [ - "pi" - ], - "unique": false, - "sparse": true, - "deduplicate": false - }, - { - "id": "2010132", - "type": "fulltext", - "fields": [ - "fi" - ], - "unique": false, - "sparse": true, - "minLength": 3 - }, - { - "id": "2010055", - "type": "skiplist", - "fields": [ - "sli" - ], - "unique": false, - "sparse": false, - "deduplicate": true - } - ], - "isSmart": false, - "planId": "2010041", - "numberOfShards": 9, - "shards": { - "s2010050": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "s2010049": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010048": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010043": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010044": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "s2010042": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010045": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010046": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010047": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ] - }, - "replicationFactor": 2, - "shardKeys": [ - "_key" - ], - "shardingStrategy": "hash", - "theLeader": "", - "servers": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ] - }, - "s2010049": { - "id": "3010023", - "name": "s2010049", - "cid": "3010023", - "type": 3, - "status": 3, - "statusString": "loaded", - "version": 7, - "waitForSync": false, - "deleted": false, - "globallyUniqueId": "c2010041/s2010049", - "isSystem": false, - "allowUserKeys": true, - "keyOptions": { - "allowUserKeys": true, - "type": "traditional", - "lastValue": 0 - }, - "objectId": "3010426", - "cacheEnabled": false, - "indexes": [ - { - "id": "0", - "type": "primary", - "fields": [ - "_key" - ], - "unique": true, - "sparse": false - }, - { - "id": "1", - "type": "edge", - "fields": [ - "_from" - ], - "unique": false, - "sparse": false - }, - { - "id": "2", - "type": "edge", - "fields": [ - "_to" - ], - "unique": false, - "sparse": false - }, - { - "id": "2010051", - "type": "geo", - "fields": [ - "gi" - ], - "maxNumCoverCells": 8, - "worstIndexedLevel": 4, - "bestIndexedLevel": 17, - "geoJson": false, - "unique": false, - "sparse": true - }, - { - "id": "2010052", - "type": "geo", - "fields": [ - "gij" - ], - "maxNumCoverCells": 8, - "worstIndexedLevel": 4, - "bestIndexedLevel": 17, - "geoJson": true, - "unique": false, - "sparse": true - }, - { - "id": "2010053", - "type": "hash", - "fields": [ - "hi", - "_key" - ], - "unique": true, - "sparse": false, - "deduplicate": false - }, - { - "id": "2010054", - "type": "persistent", - "fields": [ - "pi" - ], - "unique": false, - "sparse": true, - "deduplicate": false - }, - { - "id": "2010132", - "type": "fulltext", - "fields": [ - "fi" - ], - "unique": false, - "sparse": true, - "minLength": 3 - }, - { - "id": "2010055", - "type": "skiplist", - "fields": [ - "sli" - ], - "unique": false, - "sparse": false, - "deduplicate": true - } - ], - "isSmart": false, - "planId": "2010041", - "numberOfShards": 9, - "shards": { - "s2010050": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "s2010049": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010048": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010043": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010044": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "s2010042": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010045": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010046": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010047": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ] - }, - "replicationFactor": 2, - "shardKeys": [ - "_key" - ], - "shardingStrategy": "hash", - "theLeader": "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - }, - "s2010047": { - "id": "3010022", - "name": "s2010047", - "cid": "3010022", - "type": 3, - "status": 3, - "statusString": "loaded", - "version": 7, - "waitForSync": false, - "deleted": false, - "globallyUniqueId": "c2010041/s2010047", - "isSystem": false, - "allowUserKeys": true, - "keyOptions": { - "allowUserKeys": true, - "type": "traditional", - "lastValue": 0 - }, - "objectId": "3010423", - "cacheEnabled": false, - "indexes": [ - { - "id": "0", - "type": "primary", - "fields": [ - "_key" - ], - "unique": true, - "sparse": false - }, - { - "id": "1", - "type": "edge", - "fields": [ - "_from" - ], - "unique": false, - "sparse": false - }, - { - "id": "2", - "type": "edge", - "fields": [ - "_to" - ], - "unique": false, - "sparse": false - }, - { - "id": "2010051", - "type": "geo", - "fields": [ - "gi" - ], - "maxNumCoverCells": 8, - "worstIndexedLevel": 4, - "bestIndexedLevel": 17, - "geoJson": false, - "unique": false, - "sparse": true - }, - { - "id": "2010052", - "type": "geo", - "fields": [ - "gij" - ], - "maxNumCoverCells": 8, - "worstIndexedLevel": 4, - "bestIndexedLevel": 17, - "geoJson": true, - "unique": false, - "sparse": true - }, - { - "id": "2010053", - "type": "hash", - "fields": [ - "hi", - "_key" - ], - "unique": true, - "sparse": false, - "deduplicate": false - }, - { - "id": "2010054", - "type": "persistent", - "fields": [ - "pi" - ], - "unique": false, - "sparse": true, - "deduplicate": false - }, - { - "id": "2010132", - "type": "fulltext", - "fields": [ - "fi" - ], - "unique": false, - "sparse": true, - "minLength": 3 - }, - { - "id": "2010055", - "type": "skiplist", - "fields": [ - "sli" - ], - "unique": false, - "sparse": false, - "deduplicate": true - } - ], - "isSmart": false, - "planId": "2010041", - "numberOfShards": 9, - "shards": { - "s2010050": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "s2010049": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010048": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010043": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010044": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "s2010042": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010045": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010046": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010047": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ] - }, - "replicationFactor": 2, - "shardKeys": [ - "_key" - ], - "shardingStrategy": "hash", - "theLeader": "", - "servers": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ] - }, - "s2010046": { - "id": "3010021", - "name": "s2010046", - "cid": "3010021", - "type": 3, - "status": 3, - "statusString": "loaded", - "version": 7, - "waitForSync": false, - "deleted": false, - "globallyUniqueId": "c2010041/s2010046", - "isSystem": false, - "allowUserKeys": true, - "keyOptions": { - "allowUserKeys": true, - "type": "traditional", - "lastValue": 0 - }, - "objectId": "3010413", - "cacheEnabled": false, - "indexes": [ - { - "id": "0", - "type": "primary", - "fields": [ - "_key" - ], - "unique": true, - "sparse": false - }, - { - "id": "1", - "type": "edge", - "fields": [ - "_from" - ], - "unique": false, - "sparse": false - }, - { - "id": "2", - "type": "edge", - "fields": [ - "_to" - ], - "unique": false, - "sparse": false - }, - { - "id": "2010051", - "type": "geo", - "fields": [ - "gi" - ], - "maxNumCoverCells": 8, - "worstIndexedLevel": 4, - "bestIndexedLevel": 17, - "geoJson": false, - "unique": false, - "sparse": true - }, - { - "id": "2010052", - "type": "geo", - "fields": [ - "gij" - ], - "maxNumCoverCells": 8, - "worstIndexedLevel": 4, - "bestIndexedLevel": 17, - "geoJson": true, - "unique": false, - "sparse": true - }, - { - "id": "2010053", - "type": "hash", - "fields": [ - "hi", - "_key" - ], - "unique": true, - "sparse": false, - "deduplicate": false - }, - { - "id": "2010054", - "type": "persistent", - "fields": [ - "pi" - ], - "unique": false, - "sparse": true, - "deduplicate": false - }, - { - "id": "2010132", - "type": "fulltext", - "fields": [ - "fi" - ], - "unique": false, - "sparse": true, - "minLength": 3 - }, - { - "id": "2010055", - "type": "skiplist", - "fields": [ - "sli" - ], - "unique": false, - "sparse": false, - "deduplicate": true - } - ], - "isSmart": false, - "planId": "2010041", - "numberOfShards": 9, - "shards": { - "s2010050": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "s2010049": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010048": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010043": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010044": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "s2010042": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010045": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010046": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010047": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ] - }, - "replicationFactor": 2, - "shardKeys": [ - "_key" - ], - "shardingStrategy": "hash", - "theLeader": "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - }, - "s2010044": { - "id": "3010020", - "name": "s2010044", - "cid": "3010020", - "type": 3, - "status": 3, - "statusString": "loaded", - "version": 7, - "waitForSync": false, - "deleted": false, - "globallyUniqueId": "c2010041/s2010044", - "isSystem": false, - "allowUserKeys": true, - "keyOptions": { - "allowUserKeys": true, - "type": "traditional", - "lastValue": 0 - }, - "objectId": "3010412", - "cacheEnabled": false, - "indexes": [ - { - "id": "0", - "type": "primary", - "fields": [ - "_key" - ], - "unique": true, - "sparse": false - }, - { - "id": "1", - "type": "edge", - "fields": [ - "_from" - ], - "unique": false, - "sparse": false - }, - { - "id": "2", - "type": "edge", - "fields": [ - "_to" - ], - "unique": false, - "sparse": false - }, - { - "id": "2010051", - "type": "geo", - "fields": [ - "gi" - ], - "maxNumCoverCells": 8, - "worstIndexedLevel": 4, - "bestIndexedLevel": 17, - "geoJson": false, - "unique": false, - "sparse": true - }, - { - "id": "2010052", - "type": "geo", - "fields": [ - "gij" - ], - "maxNumCoverCells": 8, - "worstIndexedLevel": 4, - "bestIndexedLevel": 17, - "geoJson": true, - "unique": false, - "sparse": true - }, - { - "id": "2010053", - "type": "hash", - "fields": [ - "hi", - "_key" - ], - "unique": true, - "sparse": false, - "deduplicate": false - }, - { - "id": "2010054", - "type": "persistent", - "fields": [ - "pi" - ], - "unique": false, - "sparse": true, - "deduplicate": false - }, - { - "id": "2010132", - "type": "fulltext", - "fields": [ - "fi" - ], - "unique": false, - "sparse": true, - "minLength": 3 - }, - { - "id": "2010055", - "type": "skiplist", - "fields": [ - "sli" - ], - "unique": false, - "sparse": false, - "deduplicate": true - } - ], - "isSmart": false, - "planId": "2010041", - "numberOfShards": 9, - "shards": { - "s2010050": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "s2010049": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010048": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010043": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010044": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "s2010042": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010045": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010046": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010047": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ] - }, - "replicationFactor": 2, - "shardKeys": [ - "_key" - ], - "shardingStrategy": "hash", - "theLeader": "", - "servers": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ] - }, - "s2010043": { - "id": "3010019", - "name": "s2010043", - "cid": "3010019", - "type": 3, - "status": 3, - "statusString": "loaded", - "version": 7, - "waitForSync": false, - "deleted": false, - "globallyUniqueId": "c2010041/s2010043", - "isSystem": false, - "allowUserKeys": true, - "keyOptions": { - "allowUserKeys": true, - "type": "traditional", - "lastValue": 0 - }, - "objectId": "3010411", - "cacheEnabled": false, - "indexes": [ - { - "id": "0", - "type": "primary", - "fields": [ - "_key" - ], - "unique": true, - "sparse": false - }, - { - "id": "1", - "type": "edge", - "fields": [ - "_from" - ], - "unique": false, - "sparse": false - }, - { - "id": "2", - "type": "edge", - "fields": [ - "_to" - ], - "unique": false, - "sparse": false - }, - { - "id": "2010051", - "type": "geo", - "fields": [ - "gi" - ], - "maxNumCoverCells": 8, - "worstIndexedLevel": 4, - "bestIndexedLevel": 17, - "geoJson": false, - "unique": false, - "sparse": true - }, - { - "id": "2010052", - "type": "geo", - "fields": [ - "gij" - ], - "maxNumCoverCells": 8, - "worstIndexedLevel": 4, - "bestIndexedLevel": 17, - "geoJson": true, - "unique": false, - "sparse": true - }, - { - "id": "2010053", - "type": "hash", - "fields": [ - "hi", - "_key" - ], - "unique": true, - "sparse": false, - "deduplicate": false - }, - { - "id": "2010054", - "type": "persistent", - "fields": [ - "pi" - ], - "unique": false, - "sparse": true, - "deduplicate": false - }, - { - "id": "2010132", - "type": "fulltext", - "fields": [ - "fi" - ], - "unique": false, - "sparse": true, - "minLength": 3 - }, - { - "id": "2010055", - "type": "skiplist", - "fields": [ - "sli" - ], - "unique": false, - "sparse": false, - "deduplicate": true - } - ], - "isSmart": false, - "planId": "2010041", - "numberOfShards": 9, - "shards": { - "s2010050": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "s2010049": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010048": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010043": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010044": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "s2010042": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010045": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010046": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010047": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ] - }, - "replicationFactor": 2, - "shardKeys": [ - "_key" - ], - "shardingStrategy": "hash", - "theLeader": "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - }, - "s2010038": { - "id": "3010018", - "name": "s2010038", - "cid": "3010018", - "type": 2, - "status": 3, - "statusString": "loaded", - "version": 7, - "waitForSync": false, - "deleted": false, - "globallyUniqueId": "c2010037/s2010038", - "isSystem": false, - "allowUserKeys": true, - "keyOptions": { - "allowUserKeys": true, - "type": "traditional", - "lastValue": 0 - }, - "objectId": "3010312", - "cacheEnabled": false, - "indexes": [ - { - "id": "0", - "type": "primary", - "fields": [ - "_key" - ], - "unique": true, - "sparse": false - }, - { - "id": "2010039", - "type": "skiplist", - "fields": [ - "time" - ], - "unique": false, - "sparse": false, - "deduplicate": true - } - ], - "isSmart": false, - "planId": "2010037", - "numberOfShards": 1, - "shards": { - "s2010038": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ] - }, - "replicationFactor": 2, - "shardKeys": [ - "_key" - ], - "shardingStrategy": "hash", - "theLeader": "", - "servers": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ] - }, - "s2010035": { - "id": "3010017", - "name": "s2010035", - "cid": "3010017", - "type": 2, - "status": 3, - "statusString": "loaded", - "version": 7, - "waitForSync": false, - "deleted": false, - "globallyUniqueId": "c2010034/s2010035", - "isSystem": false, - "allowUserKeys": true, - "keyOptions": { - "allowUserKeys": true, - "type": "traditional", - "lastValue": 0 - }, - "objectId": "3010268", - "cacheEnabled": false, - "indexes": [ - { - "id": "0", - "type": "primary", - "fields": [ - "_key" - ], - "unique": true, - "sparse": false - }, - { - "id": "2010036", - "type": "skiplist", - "fields": [ - "time" - ], - "unique": false, - "sparse": false, - "deduplicate": true - } - ], - "isSmart": false, - "planId": "2010034", - "numberOfShards": 1, - "shards": { - "s2010035": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ] - }, - "replicationFactor": 2, - "shardKeys": [ - "_key" - ], - "shardingStrategy": "hash", - "theLeader": "", - "servers": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ] - }, - "s2010004": { - "id": "3010006", - "name": "s2010004", - "cid": "3010006", - "type": 2, - "status": 3, - "statusString": "loaded", - "version": 7, - "waitForSync": false, - "deleted": false, - "globallyUniqueId": "c2010003/s2010004", - "isSystem": false, - "allowUserKeys": true, - "keyOptions": { - "allowUserKeys": true, - "type": "traditional", - "lastValue": 2010030 - }, - "objectId": "3010031", - "cacheEnabled": false, - "indexes": [ - { - "id": "0", - "type": "primary", - "fields": [ - "_key" - ], - "unique": true, - "sparse": false - }, - { - "id": "2010005", - "type": "hash", - "fields": [ - "user" - ], - "unique": true, - "sparse": true, - "deduplicate": true - } - ], - "isSmart": false, - "planId": "2010003", - "numberOfShards": 1, - "shards": { - "s2010004": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ] - }, - "replicationFactor": 2, - "shardKeys": [ - "_key" - ], - "shardingStrategy": "hash", - "theLeader": "", - "servers": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ] - }, - "_statistics15": { - "id": "3010005", - "name": "_statistics15", - "cid": "3010005", - "type": 2, - "status": 3, - "statusString": "loaded", - "version": 7, - "waitForSync": false, - "deleted": false, - "globallyUniqueId": "c3010005/_statistics15", - "isSystem": true, - "allowUserKeys": true, - "keyOptions": { - "allowUserKeys": true, - "type": "traditional", - "lastValue": 0 - }, - "objectId": "3010016", - "cacheEnabled": false, - "indexes": [ - { - "id": "0", - "type": "primary", - "fields": [ - "_key" - ], - "unique": true, - "sparse": false - }, - { - "id": "3010020", - "type": "skiplist", - "fields": [ - "time" - ], - "unique": false, - "sparse": false, - "deduplicate": true - } - ], - "isSmart": false, - "planId": "3010005", - "numberOfShards": 1, - "shards": {}, - "replicationFactor": 1, - "shardKeys": [ - "_key" - ], - "shardingStrategy": "none", - "theLeader": "", - "servers": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ] - }, - "_statistics": { - "id": "3010004", - "name": "_statistics", - "cid": "3010004", - "type": 2, - "status": 3, - "statusString": "loaded", - "version": 7, - "waitForSync": false, - "deleted": false, - "globallyUniqueId": "c3010004/_statistics", - "isSystem": true, - "allowUserKeys": true, - "keyOptions": { - "allowUserKeys": true, - "type": "traditional", - "lastValue": 0 - }, - "objectId": "3010011", - "cacheEnabled": false, - "indexes": [ - { - "id": "0", - "type": "primary", - "fields": [ - "_key" - ], - "unique": true, - "sparse": false - }, - { - "id": "3010015", - "type": "skiplist", - "fields": [ - "time" - ], - "unique": false, - "sparse": false, - "deduplicate": true - } - ], - "isSmart": false, - "planId": "3010004", - "numberOfShards": 1, - "shards": {}, - "replicationFactor": 1, - "shardKeys": [ - "_key" - ], - "shardingStrategy": "none", - "theLeader": "", - "servers": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ] - }, - "_statisticsRaw": { - "id": "3010003", - "name": "_statisticsRaw", - "cid": "3010003", - "type": 2, - "status": 3, - "statusString": "loaded", - "version": 7, - "waitForSync": false, - "deleted": false, - "globallyUniqueId": "c3010003/_statisticsRaw", - "isSystem": true, - "allowUserKeys": true, - "keyOptions": { - "allowUserKeys": true, - "type": "traditional", - "lastValue": 3010023 - }, - "objectId": "3010006", - "cacheEnabled": false, - "indexes": [ - { - "id": "0", - "type": "primary", - "fields": [ - "_key" - ], - "unique": true, - "sparse": false - }, - { - "id": "3010010", - "type": "skiplist", - "fields": [ - "time" - ], - "unique": false, - "sparse": false, - "deduplicate": true - } - ], - "isSmart": false, - "planId": "3010003", - "numberOfShards": 1, - "shards": {}, - "replicationFactor": 1, - "shardKeys": [ - "_key" - ], - "shardingStrategy": "none", - "theLeader": "", - "servers": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ] - }, - "_iresearch_analyzers": { - "id": "3010001", - "name": "_iresearch_analyzers", - "cid": "3010001", - "type": 2, - "status": 3, - "statusString": "loaded", - "version": 7, - "waitForSync": false, - "deleted": false, - "globallyUniqueId": "c3010001/_iresearch_analyzers", - "isSystem": true, - "allowUserKeys": true, - "keyOptions": { - "allowUserKeys": true, - "type": "traditional", - "lastValue": 0 - }, - "objectId": "2", - "cacheEnabled": false, - "indexes": [ - { - "id": "0", - "type": "primary", - "fields": [ - "_key" - ], - "unique": true, - "sparse": false - } - ], - "isSmart": false, - "planId": "3010001", - "numberOfShards": 1, - "shards": {}, - "replicationFactor": 1, - "shardKeys": [ - "_key" - ], - "shardingStrategy": "none", - "theLeader": "", - "servers": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ] - }, - "s2010002": { - "id": "3010002", - "name": "s2010002", - "cid": "3010002", - "type": 2, - "status": 3, - "statusString": "loaded", - "version": 7, - "waitForSync": false, - "deleted": false, - "globallyUniqueId": "c2010001/s2010002", - "isSystem": false, - "allowUserKeys": true, - "keyOptions": { - "allowUserKeys": true, - "type": "traditional", - "lastValue": 0 - }, - "objectId": "3010004", - "cacheEnabled": false, - "indexes": [ - { - "id": "0", - "type": "primary", - "fields": [ - "_key" - ], - "unique": true, - "sparse": false - } - ], - "isSmart": false, - "planId": "2010001", - "numberOfShards": 1, - "shards": { - "s2010002": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ] - }, - "replicationFactor": 2, - "shardKeys": [ - "_key" - ], - "shardingStrategy": "hash", - "theLeader": "", - "servers": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ] - }, - "s2010007": { - "id": "3010007", - "name": "s2010007", - "cid": "3010007", - "type": 2, - "status": 3, - "statusString": "loaded", - "version": 7, - "waitForSync": false, - "deleted": false, - "globallyUniqueId": "c2010006/s2010007", - "isSystem": false, - "allowUserKeys": true, - "keyOptions": { - "allowUserKeys": true, - "type": "traditional", - "lastValue": 0 - }, - "objectId": "3010043", - "cacheEnabled": false, - "indexes": [ - { - "id": "0", - "type": "primary", - "fields": [ - "_key" - ], - "unique": true, - "sparse": false - } - ], - "isSmart": false, - "planId": "2010006", - "numberOfShards": 1, - "shards": { - "s2010007": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ] - }, - "replicationFactor": 2, - "shardKeys": [ - "_key" - ], - "shardingStrategy": "hash", - "theLeader": "", - "servers": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ] - }, - "s2010009": { - "id": "3010008", - "name": "s2010009", - "cid": "3010008", - "type": 2, - "status": 3, - "statusString": "loaded", - "version": 7, - "waitForSync": false, - "deleted": false, - "globallyUniqueId": "c2010008/s2010009", - "isSystem": false, - "allowUserKeys": true, - "keyOptions": { - "allowUserKeys": true, - "type": "traditional", - "lastValue": 0 - }, - "objectId": "3010051", - "cacheEnabled": false, - "indexes": [ - { - "id": "0", - "type": "primary", - "fields": [ - "_key" - ], - "unique": true, - "sparse": false - } - ], - "isSmart": false, - "planId": "2010008", - "numberOfShards": 1, - "shards": { - "s2010009": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ] - }, - "replicationFactor": 2, - "shardKeys": [ - "_key" - ], - "shardingStrategy": "hash", - "theLeader": "", - "servers": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ] - }, - "s2010011": { - "id": "3010009", - "name": "s2010011", - "cid": "3010009", - "type": 2, - "status": 3, - "statusString": "loaded", - "version": 7, - "waitForSync": false, - "deleted": false, - "globallyUniqueId": "c2010010/s2010011", - "isSystem": false, - "allowUserKeys": true, - "keyOptions": { - "allowUserKeys": true, - "type": "traditional", - "lastValue": 2010014 - }, - "objectId": "3010060", - "cacheEnabled": false, - "indexes": [ - { - "id": "0", - "type": "primary", - "fields": [ - "_key" - ], - "unique": true, - "sparse": false - } - ], - "isSmart": false, - "planId": "2010010", - "numberOfShards": 1, - "shards": { - "s2010011": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ] - }, - "replicationFactor": 2, - "shardKeys": [ - "_key" - ], - "shardingStrategy": "hash", - "theLeader": "", - "servers": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ] - }, - "s2010016": { - "id": "3010010", - "name": "s2010016", - "cid": "3010010", - "type": 2, - "status": 3, - "statusString": "loaded", - "version": 7, - "waitForSync": false, - "deleted": false, - "globallyUniqueId": "c2010015/s2010016", - "isSystem": false, - "allowUserKeys": true, - "keyOptions": { - "allowUserKeys": true, - "type": "traditional", - "lastValue": 0 - }, - "objectId": "3010078", - "cacheEnabled": false, - "indexes": [ - { - "id": "0", - "type": "primary", - "fields": [ - "_key" - ], - "unique": true, - "sparse": false - } - ], - "isSmart": false, - "planId": "2010015", - "numberOfShards": 1, - "shards": { - "s2010016": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ] - }, - "replicationFactor": 2, - "shardKeys": [ - "_key" - ], - "shardingStrategy": "hash", - "theLeader": "", - "servers": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ] - }, - "s2010018": { + "s4010027": { + "globallyUniqueId": "c4010026/s4010027", "id": "3010011", - "name": "s2010018", + "name": "s4010027", "cid": "3010011", "type": 2, "status": 3, @@ -1655,7 +12,6 @@ R"=( "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010017/s2010018", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -1663,7 +19,7 @@ R"=( "type": "traditional", "lastValue": 0 }, - "objectId": "3010089", + "objectId": "4010481", "cacheEnabled": false, "indexes": [ { @@ -1677,12 +33,12 @@ R"=( } ], "isSmart": false, - "planId": "2010017", + "planId": "4010026", "numberOfShards": 1, "shards": { - "s2010018": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "s4010027": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" ] }, "replicationFactor": 2, @@ -1691,22 +47,23 @@ R"=( ], "shardingStrategy": "hash", "theLeader": "", + "theLeaderTouched": true, "servers": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" ] }, - "s2010020": { - "id": "3010012", - "name": "s2010020", - "cid": "3010012", - "type": 2, + "s4010013": { + "globallyUniqueId": "c4010011/s4010013", + "id": "3010008", + "name": "s4010013", + "cid": "3010008", + "type": 3, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010019/s2010020", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -1714,58 +71,7 @@ R"=( "type": "traditional", "lastValue": 0 }, - "objectId": "3010101", - "cacheEnabled": false, - "indexes": [ - { - "id": "0", - "type": "primary", - "fields": [ - "_key" - ], - "unique": true, - "sparse": false - } - ], - "isSmart": false, - "planId": "2010019", - "numberOfShards": 1, - "shards": { - "s2010020": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ] - }, - "replicationFactor": 2, - "shardKeys": [ - "_key" - ], - "shardingStrategy": "hash", - "theLeader": "", - "servers": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ] - }, - "s2010022": { - "id": "3010013", - "name": "s2010022", - "cid": "3010013", - "type": 2, - "status": 3, - "statusString": "loaded", - "version": 7, - "waitForSync": false, - "deleted": false, - "globallyUniqueId": "c2010021/s2010022", - "isSystem": false, - "allowUserKeys": true, - "keyOptions": { - "allowUserKeys": true, - "type": "traditional", - "lastValue": 0 - }, - "objectId": "3010114", + "objectId": "4010018", "cacheEnabled": false, "indexes": [ { @@ -1778,37 +84,130 @@ R"=( "sparse": false }, { - "id": "2010023", - "type": "skiplist", + "id": "1", + "type": "edge", "fields": [ - "queue", - "status", - "delayUntil" + "_from" ], - "unique": true, - "sparse": true, - "deduplicate": true + "unique": false, + "sparse": false }, { - "id": "2010024", - "type": "skiplist", + "id": "2", + "type": "edge", "fields": [ - "status", - "queue", - "delayUntil" + "_to" + ], + "unique": false, + "sparse": false + }, + { + "id": "4010021", + "type": "geo", + "fields": [ + "gi" + ], + "maxNumCoverCells": 8, + "worstIndexedLevel": 4, + "bestIndexedLevel": 17, + "geoJson": false, + "unique": false, + "sparse": true + }, + { + "id": "4010022", + "type": "geo", + "fields": [ + "gij" + ], + "maxNumCoverCells": 8, + "worstIndexedLevel": 4, + "bestIndexedLevel": 17, + "geoJson": true, + "unique": false, + "sparse": true + }, + { + "id": "4010023", + "type": "hash", + "fields": [ + "hi", + "_key" ], "unique": true, + "sparse": false, + "deduplicate": false + }, + { + "id": "4010024", + "type": "persistent", + "fields": [ + "pi" + ], + "unique": false, "sparse": true, + "deduplicate": false + }, + { + "id": "2010132", + "type": "fulltext", + "fields": [ + "fi" + ], + "unique": false, + "sparse": true, + "minLength": 3 + }, + { + "id": "4010025", + "type": "skiplist", + "fields": [ + "sli" + ], + "unique": false, + "sparse": false, "deduplicate": true } ], "isSmart": false, - "planId": "2010021", - "numberOfShards": 1, + "planId": "4010011", + "numberOfShards": 9, "shards": { - "s2010022": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "s4010019": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010018": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010012": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010013": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010014": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010015": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010020": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010016": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010017": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -1817,14 +216,1075 @@ R"=( ], "shardingStrategy": "hash", "theLeader": "", + "theLeaderTouched": true, "servers": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" ] }, - "s2010026": { + "s4010019": { + "globallyUniqueId": "c4010011/s4010019", + "id": "3010009", + "name": "s4010019", + "cid": "3010009", + "type": 3, + "status": 3, + "statusString": "loaded", + "version": 7, + "waitForSync": false, + "deleted": false, + "isSystem": false, + "allowUserKeys": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional", + "lastValue": 0 + }, + "objectId": "4010023", + "cacheEnabled": false, + "indexes": [ + { + "id": "0", + "type": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + }, + { + "id": "1", + "type": "edge", + "fields": [ + "_from" + ], + "unique": false, + "sparse": false + }, + { + "id": "2", + "type": "edge", + "fields": [ + "_to" + ], + "unique": false, + "sparse": false + }, + { + "id": "4010021", + "type": "geo", + "fields": [ + "gi" + ], + "maxNumCoverCells": 8, + "worstIndexedLevel": 4, + "bestIndexedLevel": 17, + "geoJson": false, + "unique": false, + "sparse": true + }, + { + "id": "4010022", + "type": "geo", + "fields": [ + "gij" + ], + "maxNumCoverCells": 8, + "worstIndexedLevel": 4, + "bestIndexedLevel": 17, + "geoJson": true, + "unique": false, + "sparse": true + }, + { + "id": "4010023", + "type": "hash", + "fields": [ + "hi", + "_key" + ], + "unique": true, + "sparse": false, + "deduplicate": false + }, + { + "id": "4010024", + "type": "persistent", + "fields": [ + "pi" + ], + "unique": false, + "sparse": true, + "deduplicate": false + }, + { + "id": "2010132", + "type": "fulltext", + "fields": [ + "fi" + ], + "unique": false, + "sparse": true, + "minLength": 3 + }, + { + "id": "4010025", + "type": "skiplist", + "fields": [ + "sli" + ], + "unique": false, + "sparse": false, + "deduplicate": true + } + ], + "isSmart": false, + "planId": "4010011", + "numberOfShards": 9, + "shards": { + "s4010019": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010018": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010012": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010013": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010014": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010015": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010020": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010016": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010017": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] + }, + "replicationFactor": 2, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "theLeader": "", + "theLeaderTouched": true, + "servers": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ] + }, + "s4010018": { + "globallyUniqueId": "c4010011/s4010018", + "id": "3010010", + "name": "s4010018", + "cid": "3010010", + "type": 3, + "status": 3, + "statusString": "loaded", + "version": 7, + "waitForSync": false, + "deleted": false, + "isSystem": false, + "allowUserKeys": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional", + "lastValue": 0 + }, + "objectId": "4010025", + "cacheEnabled": false, + "indexes": [ + { + "id": "0", + "type": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + }, + { + "id": "1", + "type": "edge", + "fields": [ + "_from" + ], + "unique": false, + "sparse": false + }, + { + "id": "2", + "type": "edge", + "fields": [ + "_to" + ], + "unique": false, + "sparse": false + }, + { + "id": "4010021", + "type": "geo", + "fields": [ + "gi" + ], + "maxNumCoverCells": 8, + "worstIndexedLevel": 4, + "bestIndexedLevel": 17, + "geoJson": false, + "unique": false, + "sparse": true + }, + { + "id": "4010022", + "type": "geo", + "fields": [ + "gij" + ], + "maxNumCoverCells": 8, + "worstIndexedLevel": 4, + "bestIndexedLevel": 17, + "geoJson": true, + "unique": false, + "sparse": true + }, + { + "id": "4010023", + "type": "hash", + "fields": [ + "hi", + "_key" + ], + "unique": true, + "sparse": false, + "deduplicate": false + }, + { + "id": "4010024", + "type": "persistent", + "fields": [ + "pi" + ], + "unique": false, + "sparse": true, + "deduplicate": false + }, + { + "id": "2010132", + "type": "fulltext", + "fields": [ + "fi" + ], + "unique": false, + "sparse": true, + "minLength": 3 + }, + { + "id": "4010025", + "type": "skiplist", + "fields": [ + "sli" + ], + "unique": false, + "sparse": false, + "deduplicate": true + } + ], + "isSmart": false, + "planId": "4010011", + "numberOfShards": 9, + "shards": { + "s4010019": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010018": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010012": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010013": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010014": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010015": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010020": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010016": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010017": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] + }, + "replicationFactor": 2, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "theLeader": "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "theLeaderTouched": true + }, + "s4010016": { + "globallyUniqueId": "c4010011/s4010016", + "id": "3010006", + "name": "s4010016", + "cid": "3010006", + "type": 3, + "status": 3, + "statusString": "loaded", + "version": 7, + "waitForSync": false, + "deleted": false, + "isSystem": false, + "allowUserKeys": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional", + "lastValue": 0 + }, + "objectId": "4010016", + "cacheEnabled": false, + "indexes": [ + { + "id": "0", + "type": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + }, + { + "id": "1", + "type": "edge", + "fields": [ + "_from" + ], + "unique": false, + "sparse": false + }, + { + "id": "2", + "type": "edge", + "fields": [ + "_to" + ], + "unique": false, + "sparse": false + }, + { + "id": "4010021", + "type": "geo", + "fields": [ + "gi" + ], + "maxNumCoverCells": 8, + "worstIndexedLevel": 4, + "bestIndexedLevel": 17, + "geoJson": false, + "unique": false, + "sparse": true + }, + { + "id": "4010022", + "type": "geo", + "fields": [ + "gij" + ], + "maxNumCoverCells": 8, + "worstIndexedLevel": 4, + "bestIndexedLevel": 17, + "geoJson": true, + "unique": false, + "sparse": true + }, + { + "id": "4010023", + "type": "hash", + "fields": [ + "hi", + "_key" + ], + "unique": true, + "sparse": false, + "deduplicate": false + }, + { + "id": "4010024", + "type": "persistent", + "fields": [ + "pi" + ], + "unique": false, + "sparse": true, + "deduplicate": false + }, + { + "id": "2010132", + "type": "fulltext", + "fields": [ + "fi" + ], + "unique": false, + "sparse": true, + "minLength": 3 + }, + { + "id": "4010025", + "type": "skiplist", + "fields": [ + "sli" + ], + "unique": false, + "sparse": false, + "deduplicate": true + } + ], + "isSmart": false, + "planId": "4010011", + "numberOfShards": 9, + "shards": { + "s4010019": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010018": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010012": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010013": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010014": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010015": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010020": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010016": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010017": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] + }, + "replicationFactor": 2, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "theLeader": "", + "theLeaderTouched": true, + "servers": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ] + }, + "s4010012": { + "globallyUniqueId": "c4010011/s4010012", + "id": "3010005", + "name": "s4010012", + "cid": "3010005", + "type": 3, + "status": 3, + "statusString": "loaded", + "version": 7, + "waitForSync": false, + "deleted": false, + "isSystem": false, + "allowUserKeys": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional", + "lastValue": 0 + }, + "objectId": "4010015", + "cacheEnabled": false, + "indexes": [ + { + "id": "0", + "type": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + }, + { + "id": "1", + "type": "edge", + "fields": [ + "_from" + ], + "unique": false, + "sparse": false + }, + { + "id": "2", + "type": "edge", + "fields": [ + "_to" + ], + "unique": false, + "sparse": false + }, + { + "id": "4010021", + "type": "geo", + "fields": [ + "gi" + ], + "maxNumCoverCells": 8, + "worstIndexedLevel": 4, + "bestIndexedLevel": 17, + "geoJson": false, + "unique": false, + "sparse": true + }, + { + "id": "4010022", + "type": "geo", + "fields": [ + "gij" + ], + "maxNumCoverCells": 8, + "worstIndexedLevel": 4, + "bestIndexedLevel": 17, + "geoJson": true, + "unique": false, + "sparse": true + }, + { + "id": "4010023", + "type": "hash", + "fields": [ + "hi", + "_key" + ], + "unique": true, + "sparse": false, + "deduplicate": false + }, + { + "id": "4010024", + "type": "persistent", + "fields": [ + "pi" + ], + "unique": false, + "sparse": true, + "deduplicate": false + }, + { + "id": "2010132", + "type": "fulltext", + "fields": [ + "fi" + ], + "unique": false, + "sparse": true, + "minLength": 3 + }, + { + "id": "4010025", + "type": "skiplist", + "fields": [ + "sli" + ], + "unique": false, + "sparse": false, + "deduplicate": true + } + ], + "isSmart": false, + "planId": "4010011", + "numberOfShards": 9, + "shards": { + "s4010019": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010018": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010012": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010013": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010014": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010015": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010020": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010016": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010017": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] + }, + "replicationFactor": 2, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "theLeader": "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "theLeaderTouched": true + }, + "s4010015": { + "globallyUniqueId": "c4010011/s4010015", + "id": "3010007", + "name": "s4010015", + "cid": "3010007", + "type": 3, + "status": 3, + "statusString": "loaded", + "version": 7, + "waitForSync": false, + "deleted": false, + "isSystem": false, + "allowUserKeys": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional", + "lastValue": 0 + }, + "objectId": "4010017", + "cacheEnabled": false, + "indexes": [ + { + "id": "0", + "type": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + }, + { + "id": "1", + "type": "edge", + "fields": [ + "_from" + ], + "unique": false, + "sparse": false + }, + { + "id": "2", + "type": "edge", + "fields": [ + "_to" + ], + "unique": false, + "sparse": false + }, + { + "id": "4010021", + "type": "geo", + "fields": [ + "gi" + ], + "maxNumCoverCells": 8, + "worstIndexedLevel": 4, + "bestIndexedLevel": 17, + "geoJson": false, + "unique": false, + "sparse": true + }, + { + "id": "4010022", + "type": "geo", + "fields": [ + "gij" + ], + "maxNumCoverCells": 8, + "worstIndexedLevel": 4, + "bestIndexedLevel": 17, + "geoJson": true, + "unique": false, + "sparse": true + }, + { + "id": "4010023", + "type": "hash", + "fields": [ + "hi", + "_key" + ], + "unique": true, + "sparse": false, + "deduplicate": false + }, + { + "id": "4010024", + "type": "persistent", + "fields": [ + "pi" + ], + "unique": false, + "sparse": true, + "deduplicate": false + }, + { + "id": "2010132", + "type": "fulltext", + "fields": [ + "fi" + ], + "unique": false, + "sparse": true, + "minLength": 3 + }, + { + "id": "4010025", + "type": "skiplist", + "fields": [ + "sli" + ], + "unique": false, + "sparse": false, + "deduplicate": true + } + ], + "isSmart": false, + "planId": "4010011", + "numberOfShards": 9, + "shards": { + "s4010019": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010018": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010012": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010013": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010014": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010015": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010020": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010016": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010017": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] + }, + "replicationFactor": 2, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "theLeader": "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "theLeaderTouched": true + } + }, + "foo": { + "s4010064": { + "globallyUniqueId": "c4010058/s4010064", + "id": "3010028", + "name": "s4010064", + "cid": "3010028", + "type": 2, + "status": 3, + "statusString": "loaded", + "version": 7, + "waitForSync": false, + "deleted": false, + "isSystem": false, + "allowUserKeys": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional", + "lastValue": 0 + }, + "objectId": "4011248", + "cacheEnabled": false, + "indexes": [ + { + "id": "0", + "type": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + } + ], + "isSmart": false, + "planId": "4010058", + "numberOfShards": 6, + "shards": { + "s4010063": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010064": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010062": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010059": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010061": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010060": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] + }, + "replicationFactor": 2, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "theLeader": "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "theLeaderTouched": true + }, + "s4010043": { + "globallyUniqueId": "c4010042/s4010043", + "id": "3010017", + "name": "s4010043", + "cid": "3010017", + "type": 2, + "status": 3, + "statusString": "loaded", + "version": 7, + "waitForSync": false, + "deleted": false, + "isSystem": false, + "allowUserKeys": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional", + "lastValue": 0 + }, + "objectId": "4010746", + "cacheEnabled": false, + "indexes": [ + { + "id": "0", + "type": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + } + ], + "isSmart": false, + "planId": "4010042", + "numberOfShards": 1, + "shards": { + "s4010043": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] + }, + "replicationFactor": 2, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "theLeader": "", + "theLeaderTouched": true, + "servers": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] + }, + "s4010041": { + "globallyUniqueId": "c4010040/s4010041", + "id": "3010016", + "name": "s4010041", + "cid": "3010016", + "type": 2, + "status": 3, + "statusString": "loaded", + "version": 7, + "waitForSync": false, + "deleted": false, + "isSystem": false, + "allowUserKeys": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional", + "lastValue": 0 + }, + "objectId": "4010706", + "cacheEnabled": false, + "indexes": [ + { + "id": "0", + "type": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + } + ], + "isSmart": false, + "planId": "4010040", + "numberOfShards": 1, + "shards": { + "s4010041": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] + }, + "replicationFactor": 2, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "theLeader": "", + "theLeaderTouched": true, + "servers": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] + }, + "s4010039": { + "globallyUniqueId": "c4010038/s4010039", + "id": "3010015", + "name": "s4010039", + "cid": "3010015", + "type": 2, + "status": 3, + "statusString": "loaded", + "version": 7, + "waitForSync": false, + "deleted": false, + "isSystem": false, + "allowUserKeys": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional", + "lastValue": 0 + }, + "objectId": "4010667", + "cacheEnabled": false, + "indexes": [ + { + "id": "0", + "type": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + } + ], + "isSmart": false, + "planId": "4010038", + "numberOfShards": 1, + "shards": { + "s4010039": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] + }, + "replicationFactor": 2, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "theLeader": "", + "theLeaderTouched": true, + "servers": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] + }, + "s4010034": { + "globallyUniqueId": "c4010033/s4010034", "id": "3010014", - "name": "s2010026", + "name": "s4010034", "cid": "3010014", "type": 2, "status": 3, @@ -1832,7 +1292,58 @@ R"=( "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010025/s2010026", + "isSystem": false, + "allowUserKeys": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional", + "lastValue": 4010037 + }, + "objectId": "4010621", + "cacheEnabled": false, + "indexes": [ + { + "id": "0", + "type": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + } + ], + "isSmart": false, + "planId": "4010033", + "numberOfShards": 1, + "shards": { + "s4010034": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] + }, + "replicationFactor": 2, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "theLeader": "", + "theLeaderTouched": true, + "servers": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] + }, + "s4010030": { + "globallyUniqueId": "c4010029/s4010030", + "id": "3010012", + "name": "s4010030", + "cid": "3010012", + "type": 2, + "status": 3, + "statusString": "loaded", + "version": 7, + "waitForSync": false, + "deleted": false, "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -1840,7 +1351,111 @@ R"=( "type": "traditional", "lastValue": 0 }, - "objectId": "3010157", + "objectId": "4010548", + "cacheEnabled": false, + "indexes": [ + { + "id": "0", + "type": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + } + ], + "isSmart": false, + "planId": "4010029", + "numberOfShards": 1, + "shards": { + "s4010030": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] + }, + "replicationFactor": 2, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "theLeader": "", + "theLeaderTouched": true, + "servers": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] + }, + "s4010032": { + "globallyUniqueId": "c4010031/s4010032", + "id": "3010013", + "name": "s4010032", + "cid": "3010013", + "type": 2, + "status": 3, + "statusString": "loaded", + "version": 7, + "waitForSync": false, + "deleted": false, + "isSystem": false, + "allowUserKeys": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional", + "lastValue": 0 + }, + "objectId": "4010584", + "cacheEnabled": false, + "indexes": [ + { + "id": "0", + "type": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + } + ], + "isSmart": false, + "planId": "4010031", + "numberOfShards": 1, + "shards": { + "s4010032": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] + }, + "replicationFactor": 2, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "theLeader": "", + "theLeaderTouched": true, + "servers": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] + }, + "s4010045": { + "globallyUniqueId": "c4010044/s4010045", + "id": "3010018", + "name": "s4010045", + "cid": "3010018", + "type": 2, + "status": 3, + "statusString": "loaded", + "version": 7, + "waitForSync": false, + "deleted": false, + "isSystem": false, + "allowUserKeys": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional", + "lastValue": 0 + }, + "objectId": "4010787", "cacheEnabled": false, "indexes": [ { @@ -1853,7 +1468,83 @@ R"=( "sparse": false }, { - "id": "2010027", + "id": "4010046", + "type": "skiplist", + "fields": [ + "queue", + "status", + "delayUntil" + ], + "unique": true, + "sparse": true, + "deduplicate": true + }, + { + "id": "4010047", + "type": "skiplist", + "fields": [ + "status", + "queue", + "delayUntil" + ], + "unique": true, + "sparse": true, + "deduplicate": true + } + ], + "isSmart": false, + "planId": "4010044", + "numberOfShards": 1, + "shards": { + "s4010045": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] + }, + "replicationFactor": 2, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "theLeader": "", + "theLeaderTouched": true, + "servers": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] + }, + "s4010049": { + "globallyUniqueId": "c4010048/s4010049", + "id": "3010019", + "name": "s4010049", + "cid": "3010019", + "type": 2, + "status": 3, + "statusString": "loaded", + "version": 7, + "waitForSync": false, + "deleted": false, + "isSystem": false, + "allowUserKeys": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional", + "lastValue": 0 + }, + "objectId": "4010993", + "cacheEnabled": false, + "indexes": [ + { + "id": "0", + "type": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + }, + { + "id": "4010050", "type": "hash", "fields": [ "mount" @@ -1864,12 +1555,12 @@ R"=( } ], "isSmart": false, - "planId": "2010025", + "planId": "4010048", "numberOfShards": 1, "shards": { - "s2010026": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "s4010049": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -1878,22 +1569,23 @@ R"=( ], "shardingStrategy": "hash", "theLeader": "", + "theLeaderTouched": true, "servers": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, - "s2010029": { - "id": "3010015", - "name": "s2010029", - "cid": "3010015", + "s4010052": { + "globallyUniqueId": "c4010051/s4010052", + "id": "3010020", + "name": "s4010052", + "cid": "3010020", "type": 2, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010028/s2010029", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -1901,7 +1593,7 @@ R"=( "type": "traditional", "lastValue": 0 }, - "objectId": "3010191", + "objectId": "4011125", "cacheEnabled": false, "indexes": [ { @@ -1915,12 +1607,12 @@ R"=( } ], "isSmart": false, - "planId": "2010028", + "planId": "4010051", "numberOfShards": 1, "shards": { - "s2010029": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "s4010052": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -1929,223 +1621,23 @@ R"=( ], "shardingStrategy": "hash", "theLeader": "", + "theLeaderTouched": true, "servers": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, - "s2010032": { - "id": "3010016", - "name": "s2010032", - "cid": "3010016", - "type": 2, - "status": 3, - "statusString": "loaded", - "version": 7, - "waitForSync": false, - "deleted": false, - "globallyUniqueId": "c2010031/s2010032", - "isSystem": false, - "allowUserKeys": true, - "keyOptions": { - "allowUserKeys": true, - "type": "traditional", - "lastValue": 4010010 - }, - "objectId": "3010228", - "cacheEnabled": false, - "indexes": [ - { - "id": "0", - "type": "primary", - "fields": [ - "_key" - ], - "unique": true, - "sparse": false - }, - { - "id": "2010033", - "type": "skiplist", - "fields": [ - "time" - ], - "unique": false, - "sparse": false, - "deduplicate": true - } - ], - "isSmart": false, - "planId": "2010031", - "numberOfShards": 1, - "shards": { - "s2010032": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ] - }, - "replicationFactor": 2, - "shardKeys": [ - "_key" - ], - "shardingStrategy": "hash", - "theLeader": "", - "servers": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ] - } - }, - "foo": { - "s2010094": { - "id": "3010032", - "name": "s2010094", - "cid": "3010032", - "type": 2, - "status": 3, - "statusString": "loaded", - "version": 7, - "waitForSync": false, - "deleted": false, - "globallyUniqueId": "c2010088/s2010094", - "isSystem": false, - "allowUserKeys": true, - "keyOptions": { - "allowUserKeys": true, - "type": "traditional", - "lastValue": 0 - }, - "objectId": "3011317", - "cacheEnabled": false, - "indexes": [ - { - "id": "0", - "type": "primary", - "fields": [ - "_key" - ], - "unique": true, - "sparse": false - } - ], - "isSmart": false, - "planId": "2010088", - "numberOfShards": 6, - "shards": { - "s2010093": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010094": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "s2010091": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "s2010092": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010089": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010090": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ] - }, - "replicationFactor": 2, - "shardKeys": [ - "_key" - ], - "shardingStrategy": "hash", - "theLeader": "", - "servers": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ] - }, - "s2010093": { - "id": "3010031", - "name": "s2010093", - "cid": "3010031", - "type": 2, - "status": 3, - "statusString": "loaded", - "version": 7, - "waitForSync": false, - "deleted": false, - "globallyUniqueId": "c2010088/s2010093", - "isSystem": false, - "allowUserKeys": true, - "keyOptions": { - "allowUserKeys": true, - "type": "traditional", - "lastValue": 0 - }, - "objectId": "3011313", - "cacheEnabled": false, - "indexes": [ - { - "id": "0", - "type": "primary", - "fields": [ - "_key" - ], - "unique": true, - "sparse": false - } - ], - "isSmart": false, - "planId": "2010088", - "numberOfShards": 6, - "shards": { - "s2010093": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010094": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "s2010091": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "s2010092": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010089": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010090": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ] - }, - "replicationFactor": 2, - "shardKeys": [ - "_key" - ], - "shardingStrategy": "hash", - "theLeader": "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - }, - "s2010084": { - "id": "3010026", - "name": "s2010084", - "cid": "3010026", + "s4010054": { + "globallyUniqueId": "c4010053/s4010054", + "id": "3010021", + "name": "s4010054", + "cid": "3010021", "type": 3, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010083/s2010084", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -2153,7 +1645,7 @@ R"=( "type": "traditional", "lastValue": 0 }, - "objectId": "3011240", + "objectId": "4011174", "cacheEnabled": false, "indexes": [ { @@ -2185,28 +1677,28 @@ R"=( } ], "isSmart": false, - "planId": "2010083", + "planId": "4010053", "numberOfShards": 4, "shards": { - "s2010087": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "s4010057": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ], - "s2010086": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "s4010056": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ], - "s2010084": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "s4010054": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" ], - "s2010085": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "s4010055": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" ] }, "replicationFactor": 3, @@ -2214,19 +1706,276 @@ R"=( "_key" ], "shardingStrategy": "hash", - "theLeader": "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "theLeader": "", + "theLeaderTouched": true, + "servers": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] }, - "s2010085": { + "s4010055": { + "globallyUniqueId": "c4010053/s4010055", + "id": "3010022", + "name": "s4010055", + "cid": "3010022", + "type": 3, + "status": 3, + "statusString": "loaded", + "version": 7, + "waitForSync": false, + "deleted": false, + "isSystem": false, + "allowUserKeys": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional", + "lastValue": 0 + }, + "objectId": "4011175", + "cacheEnabled": false, + "indexes": [ + { + "id": "0", + "type": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + }, + { + "id": "1", + "type": "edge", + "fields": [ + "_from" + ], + "unique": false, + "sparse": false + }, + { + "id": "2", + "type": "edge", + "fields": [ + "_to" + ], + "unique": false, + "sparse": false + } + ], + "isSmart": false, + "planId": "4010053", + "numberOfShards": 4, + "shards": { + "s4010057": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010056": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010054": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010055": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ] + }, + "replicationFactor": 3, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "theLeader": "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "theLeaderTouched": true + }, + "s4010056": { + "globallyUniqueId": "c4010053/s4010056", + "id": "3010023", + "name": "s4010056", + "cid": "3010023", + "type": 3, + "status": 3, + "statusString": "loaded", + "version": 7, + "waitForSync": false, + "deleted": false, + "isSystem": false, + "allowUserKeys": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional", + "lastValue": 0 + }, + "objectId": "4011177", + "cacheEnabled": false, + "indexes": [ + { + "id": "0", + "type": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + }, + { + "id": "1", + "type": "edge", + "fields": [ + "_from" + ], + "unique": false, + "sparse": false + }, + { + "id": "2", + "type": "edge", + "fields": [ + "_to" + ], + "unique": false, + "sparse": false + } + ], + "isSmart": false, + "planId": "4010053", + "numberOfShards": 4, + "shards": { + "s4010057": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010056": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010054": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010055": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ] + }, + "replicationFactor": 3, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "theLeader": "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "theLeaderTouched": true + }, + "s4010057": { + "globallyUniqueId": "c4010053/s4010057", + "id": "3010024", + "name": "s4010057", + "cid": "3010024", + "type": 3, + "status": 3, + "statusString": "loaded", + "version": 7, + "waitForSync": false, + "deleted": false, + "isSystem": false, + "allowUserKeys": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional", + "lastValue": 0 + }, + "objectId": "4011179", + "cacheEnabled": false, + "indexes": [ + { + "id": "0", + "type": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + }, + { + "id": "1", + "type": "edge", + "fields": [ + "_from" + ], + "unique": false, + "sparse": false + }, + { + "id": "2", + "type": "edge", + "fields": [ + "_to" + ], + "unique": false, + "sparse": false + } + ], + "isSmart": false, + "planId": "4010053", + "numberOfShards": 4, + "shards": { + "s4010057": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010056": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010054": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010055": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ] + }, + "replicationFactor": 3, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "theLeader": "", + "theLeaderTouched": true, + "servers": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] + }, + "s4010059": { + "globallyUniqueId": "c4010058/s4010059", "id": "3010025", - "name": "s2010085", + "name": "s4010059", "cid": "3010025", - "type": 3, + "type": 2, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010083/s2010085", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -2234,7 +1983,7 @@ R"=( "type": "traditional", "lastValue": 0 }, - "objectId": "3011241", + "objectId": "4011245", "cacheEnabled": false, "indexes": [ { @@ -2245,236 +1994,60 @@ R"=( ], "unique": true, "sparse": false - }, - { - "id": "1", - "type": "edge", - "fields": [ - "_from" - ], - "unique": false, - "sparse": false - }, - { - "id": "2", - "type": "edge", - "fields": [ - "_to" - ], - "unique": false, - "sparse": false } ], "isSmart": false, - "planId": "2010083", - "numberOfShards": 4, + "planId": "4010058", + "numberOfShards": 6, "shards": { - "s2010087": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "s4010063": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ], - "s2010086": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "s4010064": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" ], - "s2010084": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "s4010062": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" ], - "s2010085": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "s4010059": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010061": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010060": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, - "replicationFactor": 3, - "shardKeys": [ - "_key" - ], - "shardingStrategy": "hash", - "theLeader": "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - }, - "s2010086": { - "id": "3010027", - "name": "s2010086", - "cid": "3010027", - "type": 3, - "status": 3, - "statusString": "loaded", - "version": 7, - "waitForSync": false, - "deleted": false, - "globallyUniqueId": "c2010083/s2010086", - "isSystem": false, - "allowUserKeys": true, - "keyOptions": { - "allowUserKeys": true, - "type": "traditional", - "lastValue": 0 - }, - "objectId": "3011242", - "cacheEnabled": false, - "indexes": [ - { - "id": "0", - "type": "primary", - "fields": [ - "_key" - ], - "unique": true, - "sparse": false - }, - { - "id": "1", - "type": "edge", - "fields": [ - "_from" - ], - "unique": false, - "sparse": false - }, - { - "id": "2", - "type": "edge", - "fields": [ - "_to" - ], - "unique": false, - "sparse": false - } - ], - "isSmart": false, - "planId": "2010083", - "numberOfShards": 4, - "shards": { - "s2010087": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010086": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010084": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010085": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ] - }, - "replicationFactor": 3, + "replicationFactor": 2, "shardKeys": [ "_key" ], "shardingStrategy": "hash", "theLeader": "", + "theLeaderTouched": true, "servers": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" ] }, - "s2010087": { - "id": "3010028", - "name": "s2010087", - "cid": "3010028", - "type": 3, - "status": 3, - "statusString": "loaded", - "version": 7, - "waitForSync": false, - "deleted": false, - "globallyUniqueId": "c2010083/s2010087", - "isSystem": false, - "allowUserKeys": true, - "keyOptions": { - "allowUserKeys": true, - "type": "traditional", - "lastValue": 0 - }, - "objectId": "3011252", - "cacheEnabled": false, - "indexes": [ - { - "id": "0", - "type": "primary", - "fields": [ - "_key" - ], - "unique": true, - "sparse": false - }, - { - "id": "1", - "type": "edge", - "fields": [ - "_from" - ], - "unique": false, - "sparse": false - }, - { - "id": "2", - "type": "edge", - "fields": [ - "_to" - ], - "unique": false, - "sparse": false - } - ], - "isSmart": false, - "planId": "2010083", - "numberOfShards": 4, - "shards": { - "s2010087": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010086": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010084": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010085": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ] - }, - "replicationFactor": 3, - "shardKeys": [ - "_key" - ], - "shardingStrategy": "hash", - "theLeader": "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - }, - "s2010090": { - "id": "3010029", - "name": "s2010090", - "cid": "3010029", + "s4010061": { + "globallyUniqueId": "c4010058/s4010061", + "id": "3010026", + "name": "s4010061", + "cid": "3010026", "type": 2, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010088/s2010090", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -2482,7 +2055,7 @@ R"=( "type": "traditional", "lastValue": 0 }, - "objectId": "3011311", + "objectId": "4011246", "cacheEnabled": false, "indexes": [ { @@ -2496,32 +2069,32 @@ R"=( } ], "isSmart": false, - "planId": "2010088", + "planId": "4010058", "numberOfShards": 6, "shards": { - "s2010093": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "s4010063": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ], - "s2010094": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s4010064": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" ], - "s2010091": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s4010062": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" ], - "s2010092": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "s4010059": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" ], - "s2010089": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "s4010061": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" ], - "s2010090": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "s4010060": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -2529,19 +2102,20 @@ R"=( "_key" ], "shardingStrategy": "hash", - "theLeader": "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "theLeader": "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "theLeaderTouched": true }, - "s2010091": { - "id": "3010030", - "name": "s2010091", - "cid": "3010030", + "s4010062": { + "globallyUniqueId": "c4010058/s4010062", + "id": "3010027", + "name": "s4010062", + "cid": "3010027", "type": 2, "status": 3, "statusString": "loaded", "version": 7, "waitForSync": false, "deleted": false, - "globallyUniqueId": "c2010088/s2010091", "isSystem": false, "allowUserKeys": true, "keyOptions": { @@ -2549,7 +2123,7 @@ R"=( "type": "traditional", "lastValue": 0 }, - "objectId": "3011312", + "objectId": "4011247", "cacheEnabled": false, "indexes": [ { @@ -2563,32 +2137,32 @@ R"=( } ], "isSmart": false, - "planId": "2010088", + "planId": "4010058", "numberOfShards": 6, "shards": { - "s2010093": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "s4010063": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ], - "s2010094": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s4010064": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" ], - "s2010091": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s4010062": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" ], - "s2010092": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "s4010059": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" ], - "s2010089": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "s4010061": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" ], - "s2010090": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "s4010060": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "replicationFactor": 2, @@ -2597,9 +2171,10 @@ R"=( ], "shardingStrategy": "hash", "theLeader": "", + "theLeaderTouched": true, "servers": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" ] } } diff --git a/tests/Maintenance/Plan.json b/tests/Maintenance/Plan.json index c5ab9bedb1..64b716efbc 100644 --- a/tests/Maintenance/Plan.json +++ b/tests/Maintenance/Plan.json @@ -6,8 +6,8 @@ R"=( "name": "_system" }, "foo": { - "id": "2010058", - "coordinator": "CRDN-383e3a90-2b26-49fe-9974-f9fce7b5eabf", + "id": "4010028", + "coordinator": "CRDN-33a81ec1-e22a-43fe-997c-6cc766208cb0", "options": {}, "name": "foo" } @@ -18,8 +18,8 @@ R"=( "status": 3, "shards": { "s2010007": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "keyOptions": { @@ -38,13 +38,13 @@ R"=( "isSystem": true, "indexes": [ { + "id": "0", + "type": "primary", "fields": [ "_key" ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true + "unique": true, + "sparse": false } ], "name": "_modules", @@ -59,8 +59,8 @@ R"=( "status": 3, "shards": { "s2010009": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "keyOptions": { @@ -79,13 +79,13 @@ R"=( "isSystem": true, "indexes": [ { + "id": "0", + "type": "primary", "fields": [ "_key" ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true + "unique": true, + "sparse": false } ], "name": "_iresearch_analyzers", @@ -112,13 +112,13 @@ R"=( "type": 2, "indexes": [ { + "id": "0", + "type": "primary", "fields": [ "_key" ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true + "unique": true, + "sparse": false } ], "name": "_graphs", @@ -131,17 +131,68 @@ R"=( ], "shards": { "s2010002": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] } }, + "2010033": { + "status": 3, + "shards": { + "s2010034": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] + }, + "keyOptions": { + "lastValue": 0, + "type": "traditional", + "allowUserKeys": true + }, + "cacheEnabled": false, + "waitForSync": false, + "id": "2010033", + "isSmart": false, + "type": 2, + "numberOfShards": 1, + "deleted": false, + "distributeShardsLike": "2010001", + "isSystem": true, + "indexes": [ + { + "id": "0", + "type": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + }, + { + "deduplicate": true, + "fields": [ + "time" + ], + "id": "2010035", + "sparse": false, + "type": "skiplist", + "unique": false + } + ], + "name": "_statisticsRaw", + "shardingStrategy": "hash", + "statusString": "loaded", + "replicationFactor": 2, + "shardKeys": [ + "_key" + ] + }, "2010015": { "status": 3, "shards": { "s2010016": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "keyOptions": { @@ -160,13 +211,13 @@ R"=( "isSystem": true, "indexes": [ { + "id": "0", + "type": "primary", "fields": [ "_key" ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true + "unique": true, + "sparse": false } ], "name": "_aqlfunctions", @@ -181,8 +232,8 @@ R"=( "status": 3, "shards": { "s2010011": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "keyOptions": { @@ -201,13 +252,13 @@ R"=( "isSystem": true, "indexes": [ { + "id": "0", + "type": "primary", "fields": [ "_key" ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true + "unique": true, + "sparse": false } ], "name": "_routing", @@ -219,41 +270,36 @@ R"=( ] }, "2010003": { - "cacheEnabled": false, - "type": 2, - "shardingStrategy": "hash", - "statusString": "loaded", + "status": 3, "shards": { "s2010004": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, - "status": 3, - "waitForSync": false, - "shardKeys": [ - "_key" - ], - "replicationFactor": 2, - "numberOfShards": 1, - "deleted": false, - "distributeShardsLike": "2010001", "keyOptions": { "lastValue": 0, "type": "traditional", "allowUserKeys": true }, + "cacheEnabled": false, + "waitForSync": false, + "id": "2010003", + "isSmart": false, + "type": 2, + "numberOfShards": 1, + "deleted": false, + "distributeShardsLike": "2010001", "isSystem": true, - "name": "_users", "indexes": [ { + "id": "0", + "type": "primary", "fields": [ "_key" ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true + "unique": true, + "sparse": false }, { "deduplicate": true, @@ -266,15 +312,20 @@ R"=( "unique": true } ], - "id": "2010003", - "isSmart": false + "name": "_users", + "shardingStrategy": "hash", + "statusString": "loaded", + "replicationFactor": 2, + "shardKeys": [ + "_key" + ] }, "2010017": { "status": 3, "shards": { "s2010018": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "keyOptions": { @@ -293,13 +344,13 @@ R"=( "isSystem": true, "indexes": [ { + "id": "0", + "type": "primary", "fields": [ "_key" ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true + "unique": true, + "sparse": false } ], "name": "_frontend", @@ -310,12 +361,12 @@ R"=( "_key" ] }, - "2010019": { + "2010039": { "status": 3, "shards": { - "s2010020": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "s2010040": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "keyOptions": { @@ -325,7 +376,7 @@ R"=( }, "cacheEnabled": false, "waitForSync": false, - "id": "2010019", + "id": "2010039", "isSmart": false, "type": 2, "numberOfShards": 1, @@ -334,16 +385,26 @@ R"=( "isSystem": true, "indexes": [ { + "id": "0", + "type": "primary", "fields": [ "_key" ], - "id": "0", + "unique": true, + "sparse": false + }, + { + "deduplicate": true, + "fields": [ + "time" + ], + "id": "2010041", "sparse": false, - "type": "primary", - "unique": true + "type": "skiplist", + "unique": false } ], - "name": "_queues", + "name": "_statistics15", "shardingStrategy": "hash", "statusString": "loaded", "replicationFactor": 2, @@ -351,251 +412,237 @@ R"=( "_key" ] }, - "2010034": { - "cacheEnabled": false, - "type": 2, - "shardingStrategy": "hash", - "statusString": "loaded", - "shards": { - "s2010035": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ] - }, + "4010026": { "status": 3, - "waitForSync": false, - "shardKeys": [ - "_key" - ], - "replicationFactor": 2, - "numberOfShards": 1, - "deleted": false, - "distributeShardsLike": "2010001", "keyOptions": { "lastValue": 0, "type": "traditional", "allowUserKeys": true }, - "isSystem": true, - "name": "_statistics", - "indexes": [ - { - "fields": [ - "_key" - ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true - }, - { - "deduplicate": true, - "fields": [ - "time" - ], - "id": "2010036", - "sparse": false, - "type": "skiplist", - "unique": false - } - ], - "id": "2010034", - "isSmart": false - }, - "2010031": { "cacheEnabled": false, - "type": 2, - "shardingStrategy": "hash", - "statusString": "loaded", - "shards": { - "s2010032": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ] - }, - "status": 3, "waitForSync": false, - "shardKeys": [ - "_key" - ], - "replicationFactor": 2, - "numberOfShards": 1, - "deleted": false, - "distributeShardsLike": "2010001", - "keyOptions": { - "lastValue": 0, - "type": "traditional", - "allowUserKeys": true - }, - "isSystem": true, - "name": "_statisticsRaw", - "indexes": [ - { - "fields": [ - "_key" - ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true - }, - { - "deduplicate": true, - "fields": [ - "time" - ], - "id": "2010033", - "sparse": false, - "type": "skiplist", - "unique": false - } - ], - "id": "2010031", - "isSmart": false - }, - "2010037": { - "cacheEnabled": false, - "type": 2, - "shardingStrategy": "hash", - "statusString": "loaded", - "shards": { - "s2010038": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ] - }, - "status": 3, - "waitForSync": false, - "shardKeys": [ - "_key" - ], - "replicationFactor": 2, - "numberOfShards": 1, - "deleted": false, - "distributeShardsLike": "2010001", - "keyOptions": { - "lastValue": 0, - "type": "traditional", - "allowUserKeys": true - }, - "isSystem": true, - "name": "_statistics15", - "indexes": [ - { - "fields": [ - "_key" - ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true - }, - { - "deduplicate": true, - "fields": [ - "time" - ], - "id": "2010039", - "sparse": false, - "type": "skiplist", - "unique": false - } - ], - "id": "2010037", - "isSmart": false - }, - "2010041": { - "cacheEnabled": false, - "type": 3, - "deleted": false, - "shardingStrategy": "hash", - "statusString": "loaded", - "shards": { - "s2010047": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "s2010046": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010045": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010049": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010050": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "s2010048": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010042": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010043": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010044": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ] - }, - "status": 3, - "waitForSync": false, - "shardKeys": [ - "_key" - ], - "replicationFactor": 2, - "numberOfShards": 9, - "keyOptions": { - "lastValue": 0, - "type": "traditional", - "allowUserKeys": true - }, + "isSmart": false, + "id": "4010026", "isSystem": false, - "name": "bar", + "deleted": false, + "type": 2, "indexes": [ { + "id": "0", + "type": "primary", "fields": [ "_key" ], + "unique": true, + "sparse": false + } + ], + "name": "baz", + "shardingStrategy": "hash", + "statusString": "loaded", + "numberOfShards": 1, + "replicationFactor": 2, + "shardKeys": [ + "_key" + ], + "shards": { + "s4010027": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ] + } + }, + "2010028": { + "status": 3, + "shards": { + "s2010029": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] + }, + "keyOptions": { + "lastValue": 0, + "type": "traditional", + "allowUserKeys": true + }, + "cacheEnabled": false, + "waitForSync": false, + "id": "2010028", + "isSmart": false, + "type": 2, + "numberOfShards": 1, + "deleted": false, + "distributeShardsLike": "2010001", + "isSystem": true, + "indexes": [ + { "id": "0", - "sparse": false, "type": "primary", - "unique": true + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + } + ], + "name": "_appbundles", + "shardingStrategy": "hash", + "statusString": "loaded", + "replicationFactor": 2, + "shardKeys": [ + "_key" + ] + }, + "2010036": { + "status": 3, + "shards": { + "s2010037": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] + }, + "keyOptions": { + "lastValue": 0, + "type": "traditional", + "allowUserKeys": true + }, + "cacheEnabled": false, + "waitForSync": false, + "id": "2010036", + "isSmart": false, + "type": 2, + "numberOfShards": 1, + "deleted": false, + "distributeShardsLike": "2010001", + "isSystem": true, + "indexes": [ + { + "id": "0", + "type": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false }, { + "deduplicate": true, + "fields": [ + "time" + ], + "id": "2010038", + "sparse": false, + "type": "skiplist", + "unique": false + } + ], + "name": "_statistics", + "shardingStrategy": "hash", + "statusString": "loaded", + "replicationFactor": 2, + "shardKeys": [ + "_key" + ] + }, + "2010025": { + "status": 3, + "shards": { + "s2010026": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] + }, + "keyOptions": { + "lastValue": 0, + "type": "traditional", + "allowUserKeys": true + }, + "cacheEnabled": false, + "waitForSync": false, + "id": "2010025", + "isSmart": false, + "type": 2, + "numberOfShards": 1, + "deleted": false, + "distributeShardsLike": "2010001", + "isSystem": true, + "indexes": [ + { + "id": "0", + "type": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + }, + { + "deduplicate": true, + "fields": [ + "mount" + ], + "id": "2010027", + "sparse": true, + "type": "hash", + "unique": true + } + ], + "name": "_apps", + "shardingStrategy": "hash", + "statusString": "loaded", + "replicationFactor": 2, + "shardKeys": [ + "_key" + ] + }, + "4010011": { + "status": 3, + "keyOptions": { + "lastValue": 0, + "type": "traditional", + "allowUserKeys": true + }, + "cacheEnabled": false, + "waitForSync": false, + "isSmart": false, + "id": "4010011", + "isSystem": false, + "deleted": false, + "type": 3, + "indexes": [ + { + "id": "0", + "type": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + }, + { + "id": "1", + "type": "edge", "fields": [ "_from" ], - "id": "1", - "sparse": false, - "type": "edge", - "unique": false + "unique": false, + "sparse": false }, { + "id": "2", + "type": "edge", "fields": [ "_to" ], - "id": "2", - "sparse": false, - "type": "edge", - "unique": false + "unique": false, + "sparse": false }, { "fields": [ "gi" ], "geoJson": false, - "id": "2010051", + "id": "4010021", "sparse": true, "type": "geo", "unique": false @@ -605,7 +652,7 @@ R"=( "gij" ], "geoJson": true, - "id": "2010052", + "id": "4010022", "sparse": true, "type": "geo", "unique": false @@ -616,7 +663,7 @@ R"=( "hi", "_key" ], - "id": "2010053", + "id": "4010023", "sparse": false, "type": "hash", "unique": true @@ -626,7 +673,7 @@ R"=( "fields": [ "pi" ], - "id": "2010054", + "id": "4010024", "sparse": true, "type": "persistent", "unique": false @@ -646,21 +693,65 @@ R"=( "fields": [ "sli" ], - "id": "2010055", + "id": "4010025", "sparse": false, "type": "skiplist", "unique": false } ], - "id": "2010041", - "isSmart": false + "name": "bar", + "shardingStrategy": "hash", + "statusString": "loaded", + "numberOfShards": 9, + "replicationFactor": 2, + "shardKeys": [ + "_key" + ], + "shards": { + "s4010017": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010016": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010020": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010018": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010019": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010012": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010013": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010014": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010015": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ] + } }, - "2010028": { + "2010019": { "status": 3, "shards": { - "s2010029": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "s2010020": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "keyOptions": { @@ -670,7 +761,7 @@ R"=( }, "cacheEnabled": false, "waitForSync": false, - "id": "2010028", + "id": "2010019", "isSmart": false, "type": 2, "numberOfShards": 1, @@ -679,16 +770,16 @@ R"=( "isSystem": true, "indexes": [ { + "id": "0", + "type": "primary", "fields": [ "_key" ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true + "unique": true, + "sparse": false } ], - "name": "_appbundles", + "name": "_queues", "shardingStrategy": "hash", "statusString": "loaded", "replicationFactor": 2, @@ -696,93 +787,37 @@ R"=( "_key" ] }, - "2010025": { - "cacheEnabled": false, - "type": 2, - "shardingStrategy": "hash", - "statusString": "loaded", - "shards": { - "s2010026": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ] - }, - "status": 3, - "waitForSync": false, - "shardKeys": [ - "_key" - ], - "replicationFactor": 2, - "numberOfShards": 1, - "deleted": false, - "distributeShardsLike": "2010001", - "keyOptions": { - "lastValue": 0, - "type": "traditional", - "allowUserKeys": true - }, - "isSystem": true, - "name": "_apps", - "indexes": [ - { - "fields": [ - "_key" - ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true - }, - { - "deduplicate": true, - "fields": [ - "mount" - ], - "id": "2010027", - "sparse": true, - "type": "hash", - "unique": true - } - ], - "id": "2010025", - "isSmart": false - }, "2010021": { - "cacheEnabled": false, - "type": 2, - "shardingStrategy": "hash", - "statusString": "loaded", + "status": 3, "shards": { "s2010022": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, - "status": 3, - "waitForSync": false, - "shardKeys": [ - "_key" - ], - "replicationFactor": 2, - "numberOfShards": 1, - "deleted": false, - "distributeShardsLike": "2010001", "keyOptions": { "lastValue": 0, "type": "traditional", "allowUserKeys": true }, + "cacheEnabled": false, + "waitForSync": false, + "id": "2010021", + "isSmart": false, + "type": 2, + "numberOfShards": 1, + "deleted": false, + "distributeShardsLike": "2010001", "isSystem": true, - "name": "_jobs", "indexes": [ { + "id": "0", + "type": "primary", "fields": [ "_key" ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true + "unique": true, + "sparse": false }, { "deduplicate": true, @@ -809,57 +844,22 @@ R"=( "unique": true } ], - "id": "2010021", - "isSmart": false - }, - "2010056": { - "status": 3, - "keyOptions": { - "lastValue": 0, - "type": "traditional", - "allowUserKeys": true - }, - "cacheEnabled": false, - "waitForSync": false, - "isSmart": false, - "id": "2010056", - "isSystem": false, - "deleted": false, - "type": 2, - "indexes": [ - { - "fields": [ - "_key" - ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true - } - ], - "name": "baz", + "name": "_jobs", "shardingStrategy": "hash", "statusString": "loaded", - "numberOfShards": 1, "replicationFactor": 2, "shardKeys": [ "_key" - ], - "shards": { - "s2010057": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ] - } + ] } }, "foo": { - "2010072": { + "4010042": { "status": 3, "shards": { - "s2010073": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s4010043": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "keyOptions": { @@ -869,22 +869,22 @@ R"=( }, "cacheEnabled": false, "waitForSync": false, - "id": "2010072", + "id": "4010042", "isSmart": false, "type": 2, "numberOfShards": 1, "deleted": false, - "distributeShardsLike": "2010059", + "distributeShardsLike": "4010029", "isSystem": true, "indexes": [ { + "id": "0", + "type": "primary", "fields": [ "_key" ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true + "unique": true, + "sparse": false } ], "name": "_queues", @@ -895,12 +895,12 @@ R"=( "_key" ] }, - "2010061": { + "4010040": { "status": 3, "shards": { - "s2010062": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s4010041": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "keyOptions": { @@ -910,25 +910,25 @@ R"=( }, "cacheEnabled": false, "waitForSync": false, - "id": "2010061", + "id": "4010040", "isSmart": false, "type": 2, "numberOfShards": 1, "deleted": false, - "distributeShardsLike": "2010059", + "distributeShardsLike": "4010029", "isSystem": true, "indexes": [ { + "id": "0", + "type": "primary", "fields": [ "_key" ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true + "unique": true, + "sparse": false } ], - "name": "_modules", + "name": "_frontend", "shardingStrategy": "hash", "statusString": "loaded", "replicationFactor": 2, @@ -936,12 +936,12 @@ R"=( "_key" ] }, - "2010063": { + "4010033": { "status": 3, "shards": { - "s2010064": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s4010034": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "keyOptions": { @@ -951,22 +951,22 @@ R"=( }, "cacheEnabled": false, "waitForSync": false, - "id": "2010063", + "id": "4010033", "isSmart": false, "type": 2, "numberOfShards": 1, "deleted": false, - "distributeShardsLike": "2010059", + "distributeShardsLike": "4010029", "isSystem": true, "indexes": [ { + "id": "0", + "type": "primary", "fields": [ "_key" ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true + "unique": true, + "sparse": false } ], "name": "_routing", @@ -977,123 +977,12 @@ R"=( "_key" ] }, - "2010078": { - "cacheEnabled": false, - "type": 2, - "shardingStrategy": "hash", - "statusString": "loaded", - "shards": { - "s2010079": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ] - }, - "status": 3, - "waitForSync": false, - "shardKeys": [ - "_key" - ], - "replicationFactor": 2, - "numberOfShards": 1, - "deleted": false, - "distributeShardsLike": "2010059", - "keyOptions": { - "lastValue": 0, - "type": "traditional", - "allowUserKeys": true - }, - "isSystem": true, - "name": "_apps", - "indexes": [ - { - "fields": [ - "_key" - ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true - }, - { - "deduplicate": true, - "fields": [ - "mount" - ], - "id": "2010080", - "sparse": true, - "type": "hash", - "unique": true - } - ], - "id": "2010078", - "isSmart": false - }, - "2010088": { - "status": 3, - "keyOptions": { - "lastValue": 0, - "type": "traditional", - "allowUserKeys": true - }, - "cacheEnabled": false, - "waitForSync": false, - "isSmart": false, - "id": "2010088", - "isSystem": false, - "deleted": false, - "type": 2, - "indexes": [ - { - "fields": [ - "_key" - ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true - } - ], - "name": "foobaz", - "shardingStrategy": "hash", - "statusString": "loaded", - "numberOfShards": 6, - "replicationFactor": 2, - "shardKeys": [ - "_key" - ], - "shards": { - "s2010090": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010089": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010092": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" - ], - "s2010093": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" - ], - "s2010091": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ], - "s2010094": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ] - } - }, - "2010068": { + "4010038": { "status": 3, "shards": { - "s2010069": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s4010039": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "keyOptions": { @@ -1103,22 +992,22 @@ R"=( }, "cacheEnabled": false, "waitForSync": false, - "id": "2010068", + "id": "4010038", "isSmart": false, "type": 2, "numberOfShards": 1, "deleted": false, - "distributeShardsLike": "2010059", + "distributeShardsLike": "4010029", "isSystem": true, "indexes": [ { + "id": "0", + "type": "primary", "fields": [ "_key" ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true + "unique": true, + "sparse": false } ], "name": "_aqlfunctions", @@ -1129,48 +1018,7 @@ R"=( "_key" ] }, - "2010081": { - "status": 3, - "shards": { - "s2010082": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ] - }, - "keyOptions": { - "lastValue": 0, - "type": "traditional", - "allowUserKeys": true - }, - "cacheEnabled": false, - "waitForSync": false, - "id": "2010081", - "isSmart": false, - "type": 2, - "numberOfShards": 1, - "deleted": false, - "distributeShardsLike": "2010059", - "isSystem": true, - "indexes": [ - { - "fields": [ - "_key" - ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true - } - ], - "name": "_appbundles", - "shardingStrategy": "hash", - "statusString": "loaded", - "replicationFactor": 2, - "shardKeys": [ - "_key" - ] - }, - "2010083": { + "4010053": { "status": 3, "keyOptions": { "lastValue": 0, @@ -1180,37 +1028,37 @@ R"=( "cacheEnabled": false, "waitForSync": false, "isSmart": false, - "id": "2010083", + "id": "4010053", "isSystem": false, "deleted": false, "type": 3, "indexes": [ { + "id": "0", + "type": "primary", "fields": [ "_key" ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true + "unique": true, + "sparse": false }, { + "id": "1", + "type": "edge", "fields": [ "_from" ], - "id": "1", - "sparse": false, - "type": "edge", - "unique": false + "unique": false, + "sparse": false }, { + "id": "2", + "type": "edge", "fields": [ "_to" ], - "id": "2", - "sparse": false, - "type": "edge", - "unique": false + "unique": false, + "sparse": false } ], "name": "foobar", @@ -1222,99 +1070,94 @@ R"=( "_key" ], "shards": { - "s2010085": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "s4010055": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" ], - "s2010084": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf" + "s4010054": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" ], - "s2010087": [ - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "s4010057": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ], - "s2010086": [ - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da" + "s4010056": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] } }, - "2010074": { - "cacheEnabled": false, - "type": 2, - "shardingStrategy": "hash", - "statusString": "loaded", - "shards": { - "s2010075": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" - ] - }, + "4010058": { "status": 3, - "waitForSync": false, - "shardKeys": [ - "_key" - ], - "replicationFactor": 2, - "numberOfShards": 1, - "deleted": false, - "distributeShardsLike": "2010059", "keyOptions": { "lastValue": 0, "type": "traditional", "allowUserKeys": true }, - "isSystem": true, - "name": "_jobs", + "cacheEnabled": false, + "waitForSync": false, + "isSmart": false, + "id": "4010058", + "isSystem": false, + "deleted": false, + "type": 2, "indexes": [ { + "id": "0", + "type": "primary", "fields": [ "_key" ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true - }, - { - "deduplicate": true, - "fields": [ - "queue", - "status", - "delayUntil" - ], - "id": "2010076", - "sparse": true, - "type": "skiplist", - "unique": true - }, - { - "deduplicate": true, - "fields": [ - "status", - "queue", - "delayUntil" - ], - "id": "2010077", - "sparse": true, - "type": "skiplist", - "unique": true + "unique": true, + "sparse": false } ], - "id": "2010074", - "isSmart": false + "name": "foobaz", + "shardingStrategy": "hash", + "statusString": "loaded", + "numberOfShards": 6, + "replicationFactor": 2, + "shardKeys": [ + "_key" + ], + "shards": { + "s4010060": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010061": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ], + "s4010059": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010063": [ + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ], + "s4010062": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23" + ], + "s4010064": [ + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86" + ] + } }, - "2010070": { + "4010051": { "status": 3, "shards": { - "s2010071": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s4010052": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] }, "keyOptions": { @@ -1324,25 +1167,25 @@ R"=( }, "cacheEnabled": false, "waitForSync": false, - "id": "2010070", + "id": "4010051", "isSmart": false, "type": 2, "numberOfShards": 1, "deleted": false, - "distributeShardsLike": "2010059", + "distributeShardsLike": "4010029", "isSystem": true, "indexes": [ { + "id": "0", + "type": "primary", "fields": [ "_key" ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true + "unique": true, + "sparse": false } ], - "name": "_frontend", + "name": "_appbundles", "shardingStrategy": "hash", "statusString": "loaded", "replicationFactor": 2, @@ -1350,7 +1193,58 @@ R"=( "_key" ] }, - "2010059": { + "4010048": { + "status": 3, + "shards": { + "s4010049": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] + }, + "keyOptions": { + "lastValue": 0, + "type": "traditional", + "allowUserKeys": true + }, + "cacheEnabled": false, + "waitForSync": false, + "id": "4010048", + "isSmart": false, + "type": 2, + "numberOfShards": 1, + "deleted": false, + "distributeShardsLike": "4010029", + "isSystem": true, + "indexes": [ + { + "id": "0", + "type": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + }, + { + "deduplicate": true, + "fields": [ + "mount" + ], + "id": "4010050", + "sparse": true, + "type": "hash", + "unique": true + } + ], + "name": "_apps", + "shardingStrategy": "hash", + "statusString": "loaded", + "replicationFactor": 2, + "shardKeys": [ + "_key" + ] + }, + "4010029": { "status": 3, "keyOptions": { "lastValue": 0, @@ -1360,19 +1254,19 @@ R"=( "cacheEnabled": false, "waitForSync": false, "isSmart": false, - "id": "2010059", + "id": "4010029", "isSystem": true, "deleted": false, "type": 2, "indexes": [ { + "id": "0", + "type": "primary", "fields": [ "_key" ], - "id": "0", - "sparse": false, - "type": "primary", - "unique": true + "unique": true, + "sparse": false } ], "name": "_graphs", @@ -1384,11 +1278,117 @@ R"=( "_key" ], "shards": { - "s2010060": [ - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da", - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d" + "s4010030": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" ] } + }, + "4010044": { + "status": 3, + "shards": { + "s4010045": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] + }, + "keyOptions": { + "lastValue": 0, + "type": "traditional", + "allowUserKeys": true + }, + "cacheEnabled": false, + "waitForSync": false, + "id": "4010044", + "isSmart": false, + "type": 2, + "numberOfShards": 1, + "deleted": false, + "distributeShardsLike": "4010029", + "isSystem": true, + "indexes": [ + { + "id": "0", + "type": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + }, + { + "deduplicate": true, + "fields": [ + "queue", + "status", + "delayUntil" + ], + "id": "4010046", + "sparse": true, + "type": "skiplist", + "unique": true + }, + { + "deduplicate": true, + "fields": [ + "status", + "queue", + "delayUntil" + ], + "id": "4010047", + "sparse": true, + "type": "skiplist", + "unique": true + } + ], + "name": "_jobs", + "shardingStrategy": "hash", + "statusString": "loaded", + "replicationFactor": 2, + "shardKeys": [ + "_key" + ] + }, + "4010031": { + "status": 3, + "shards": { + "s4010032": [ + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f" + ] + }, + "keyOptions": { + "lastValue": 0, + "type": "traditional", + "allowUserKeys": true + }, + "cacheEnabled": false, + "waitForSync": false, + "id": "4010031", + "isSmart": false, + "type": 2, + "numberOfShards": 1, + "deleted": false, + "distributeShardsLike": "4010029", + "isSystem": true, + "indexes": [ + { + "id": "0", + "type": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + } + ], + "name": "_modules", + "shardingStrategy": "hash", + "statusString": "loaded", + "replicationFactor": 2, + "shardKeys": [ + "_key" + ] } } }, @@ -1397,15 +1397,15 @@ R"=( "_system": {} }, "Coordinators": { - "CRDN-383e3a90-2b26-49fe-9974-f9fce7b5eabf": "none", - "CRDN-8d79ded3-9062-4521-8fa6-7ef3aaf144ad": "none" + "CRDN-122291f4-3bfe-4037-b51d-b6b1066604b0": "none", + "CRDN-33a81ec1-e22a-43fe-997c-6cc766208cb0": "none" }, - "Version": 50, + "Version": 66, "Lock": "UNLOCKED", "DBServers": { - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d": "none", - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da": "none", - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf": "none" + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23": "none", + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f": "none", + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86": "none" }, "Singles": {} } diff --git a/tests/Maintenance/Supervision.json b/tests/Maintenance/Supervision.json index c37eae7b92..d4961851c2 100644 --- a/tests/Maintenance/Supervision.json +++ b/tests/Maintenance/Supervision.json @@ -1,56 +1,71 @@ R"=( { "Health": { - "PRMR-d6e6b701-e455-4f8f-86cf-a87faaf235da": { - "AdvertisedEndpoint": "", - "Timestamp": "2018-10-01T10:17:22Z", - "SyncStatus": "SERVING", - "Host": "ac8ddefc7d1f4364ba655b4debcd076f", - "Status": "GOOD", - "ShortName": "DBServer0002", - "Endpoint": "tcp://[::1]:11198" - }, - "PRMR-62eeb203-c38c-4879-b343-ca34633705cf": { - "AdvertisedEndpoint": "", - "Timestamp": "2018-10-01T10:17:23Z", - "SyncStatus": "SERVING", - "Host": "ac8ddefc7d1f4364ba655b4debcd076f", - "Status": "GOOD", - "ShortName": "DBServer0003", - "Endpoint": "tcp://[::1]:11196" - }, - "PRMR-498a2f3d-9700-4917-afa9-ec317f6e2e3d": { - "AdvertisedEndpoint": "", - "Timestamp": "2018-10-01T10:17:22Z", - "SyncStatus": "SERVING", - "Host": "ac8ddefc7d1f4364ba655b4debcd076f", - "Status": "GOOD", - "ShortName": "DBServer0001", - "Endpoint": "tcp://[::1]:11197" - }, - "CRDN-8d79ded3-9062-4521-8fa6-7ef3aaf144ad": { - "AdvertisedEndpoint": "", - "SyncStatus": "SERVING", - "Timestamp": "2018-10-01T10:17:24Z", - "Host": "ac8ddefc7d1f4364ba655b4debcd076f", - "ShortName": "Coordinator0002", - "Status": "GOOD", - "Endpoint": "tcp://[::1]:11098" - }, - "CRDN-383e3a90-2b26-49fe-9974-f9fce7b5eabf": { - "AdvertisedEndpoint": "", - "SyncStatus": "SERVING", - "Timestamp": "2018-10-01T10:17:24Z", - "Host": "ac8ddefc7d1f4364ba655b4debcd076f", + "CRDN-122291f4-3bfe-4037-b51d-b6b1066604b0": { + "Endpoint": "tcp://[::1]:11098", "ShortName": "Coordinator0001", "Status": "GOOD", - "Endpoint": "tcp://[::1]:11097" + "Version": "3.4.0-rc.5", + "SyncTime": "2018-12-03T09:58:57Z", + "Timestamp": "2018-12-03T09:58:58Z", + "Host": "7e56da52e94b4c5190f0e8d559243c42", + "SyncStatus": "SERVING", + "LastAckedTime": "2018-12-03T09:58:58Z", + "Engine": "rocksdb" + }, + "PRMR-5dcd6f32-1207-47b2-bdc4-4ab7d23bbc23": { + "Endpoint": "tcp://[::1]:11198", + "ShortName": "DBServer0001", + "Status": "GOOD", + "Version": "3.4.0-rc.5", + "SyncTime": "2018-12-03T09:58:56Z", + "Timestamp": "2018-12-03T09:58:57Z", + "Host": "7e56da52e94b4c5190f0e8d559243c42", + "SyncStatus": "SERVING", + "LastAckedTime": "2018-12-03T09:58:57Z", + "Engine": "rocksdb" + }, + "CRDN-33a81ec1-e22a-43fe-997c-6cc766208cb0": { + "Endpoint": "tcp://[::1]:11097", + "ShortName": "Coordinator0002", + "Status": "GOOD", + "Version": "3.4.0-rc.5", + "SyncTime": "2018-12-03T09:58:57Z", + "Timestamp": "2018-12-03T09:58:58Z", + "Host": "7e56da52e94b4c5190f0e8d559243c42", + "SyncStatus": "SERVING", + "LastAckedTime": "2018-12-03T09:58:58Z", + "Engine": "rocksdb" + }, + "PRMR-16df9cb4-e499-4193-92fb-db98e891949f": { + "Endpoint": "tcp://[::1]:11197", + "ShortName": "DBServer0002", + "Status": "GOOD", + "Version": "3.4.0-rc.5", + "SyncTime": "2018-12-03T09:58:57Z", + "Timestamp": "2018-12-03T09:58:58Z", + "Host": "7e56da52e94b4c5190f0e8d559243c42", + "SyncStatus": "SERVING", + "LastAckedTime": "2018-12-03T09:58:58Z", + "Engine": "rocksdb" + }, + "PRMR-1296936a-96c5-4304-9ecd-fb623dd98f86": { + "Endpoint": "tcp://[::1]:11196", + "ShortName": "DBServer0003", + "Status": "GOOD", + "Version": "3.4.0-rc.5", + "SyncTime": "2018-12-03T09:58:58Z", + "Timestamp": "2018-12-03T09:58:59Z", + "Host": "7e56da52e94b4c5190f0e8d559243c42", + "SyncStatus": "SERVING", + "LastAckedTime": "2018-12-03T09:58:59Z", + "Engine": "rocksdb" } }, "DBServers": {}, "State": { "Mode": "Normal", - "Timestamp": "2018-10-01T10:17:22Z" + "Timestamp": "2018-12-03T09:58:56Z" }, "Shards": {} }