From 4cc4311a9e1d8af83e24ee66bc1bd2c2bc06cdf0 Mon Sep 17 00:00:00 2001 From: ajanikow <12255597+ajanikow@users.noreply.github.com> Date: Tue, 12 Apr 2022 09:32:17 +0000 Subject: [PATCH] [Bugfix] Fix Agency satellite collections --- CHANGELOG.md | 1 + .../agency/generator_collection_test.go | 4 +- pkg/deployment/agency/plan_collections.go | 10 +- pkg/deployment/agency/rf.go | 76 + pkg/deployment/agency/state.go | 16 +- pkg/deployment/agency/state_test.go | 12 +- .../testdata/agency_dump.3.9.satellite.json | 6866 +++++++++++++++++ 7 files changed, 6972 insertions(+), 13 deletions(-) create mode 100644 pkg/deployment/agency/rf.go create mode 100644 pkg/deployment/agency/testdata/agency_dump.3.9.satellite.json diff --git a/CHANGELOG.md b/CHANGELOG.md index aed37449b..6c3b79527 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ## [master](https://github.com/arangodb/kube-arangodb/tree/master) (N/A) - (Feature) Allow configuration for securityContext.runAsUser value +- (Bugfix) Fix Satellite collections in Agency ## [1.2.9](https://github.com/arangodb/kube-arangodb/tree/1.2.9) (2022-03-30) - (Feature) Improve Kubernetes clientsets management diff --git a/pkg/deployment/agency/generator_collection_test.go b/pkg/deployment/agency/generator_collection_test.go index e307e3a32..4deca1862 100644 --- a/pkg/deployment/agency/generator_collection_test.go +++ b/pkg/deployment/agency/generator_collection_test.go @@ -32,7 +32,7 @@ type collectionGenerator struct { col string wc *int - rf *int + rf *ReplicationFactor shards map[int]shardGenerator } @@ -59,6 +59,6 @@ func (c collectionGenerator) WithWriteConcern(wc int) CollectionGeneratorInterfa } func (c collectionGenerator) WithReplicationFactor(rf int) CollectionGeneratorInterface { - c.rf = &rf + c.rf = (*ReplicationFactor)(&rf) return c } diff --git a/pkg/deployment/agency/plan_collections.go b/pkg/deployment/agency/plan_collections.go index b89b3d858..36a5d5f0a 100644 --- a/pkg/deployment/agency/plan_collections.go +++ b/pkg/deployment/agency/plan_collections.go @@ -57,17 +57,17 @@ type StatePlanCollection struct { Shards Shards `json:"shards"` // deprecated // MinReplicationFactor is deprecated, but we have to support it for backward compatibility - MinReplicationFactor *int `json:"minReplicationFactor,omitempty"` - WriteConcern *int `json:"writeConcern,omitempty"` - ReplicationFactor *int `json:"replicationFactor,omitempty"` + MinReplicationFactor *int `json:"minReplicationFactor,omitempty"` + WriteConcern *int `json:"writeConcern,omitempty"` + ReplicationFactor *ReplicationFactor `json:"replicationFactor,omitempty"` } -func (a *StatePlanCollection) GetReplicationFactor(shard string) int { +func (a *StatePlanCollection) GetReplicationFactor(shard string) ReplicationFactor { if a == nil { return 0 } - l := len(a.Shards[shard]) + l := ReplicationFactor(len(a.Shards[shard])) if z := a.ReplicationFactor; z == nil { return l diff --git a/pkg/deployment/agency/rf.go b/pkg/deployment/agency/rf.go new file mode 100644 index 000000000..a0492fde4 --- /dev/null +++ b/pkg/deployment/agency/rf.go @@ -0,0 +1,76 @@ +// +// DISCLAIMER +// +// Copyright 2016-2022 ArangoDB GmbH, Cologne, Germany +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// Copyright holder is ArangoDB GmbH, Cologne, Germany +// + +package agency + +import ( + "encoding/json" + + "github.com/pkg/errors" + "k8s.io/apimachinery/pkg/util/intstr" +) + +const ( + UnknownReplicationFactor ReplicationFactor = -1000 + SatelliteReplicationFactor ReplicationFactor = -100 +) + +type ReplicationFactor int + +func (r *ReplicationFactor) IsUnknown() bool { + if r == nil { + return false + } + + return *r == UnknownReplicationFactor +} + +func (r *ReplicationFactor) IsSatellite() bool { + if r == nil { + return false + } + + return *r == SatelliteReplicationFactor +} + +func (r *ReplicationFactor) UnmarshalJSON(bytes []byte) error { + var i intstr.IntOrString + + if err := json.Unmarshal(bytes, &i); err != nil { + return err + } + + switch i.Type { + case intstr.Int: + *r = ReplicationFactor(i.IntVal) + return nil + case intstr.String: + switch i.StrVal { + case "satellite": + *r = SatelliteReplicationFactor + return nil + default: + *r = UnknownReplicationFactor + return nil + } + } + + return errors.Errorf("Unable to parse value") +} diff --git a/pkg/deployment/agency/state.go b/pkg/deployment/agency/state.go index 969ab4bf8..aa8aa047a 100644 --- a/pkg/deployment/agency/state.go +++ b/pkg/deployment/agency/state.go @@ -219,9 +219,21 @@ func FilterDBServerShardRestart(serverID string) StateShardFilter { return true } - // If WriteConcern equals replicationFactor then downtime is always there wc := plan.GetWriteConcern(1) - if rf := plan.GetReplicationFactor(shard); wc >= rf { + var rf int + + if plan.ReplicationFactor.IsUnknown() { + // We are on unknown + rf = len(currentShard) + } else if plan.ReplicationFactor.IsSatellite() { + // We are on satellite + rf = len(s.PlanServers()) + } else { + rf = int(plan.GetReplicationFactor(shard)) + } + + // If WriteConcern equals replicationFactor then downtime is always there + if wc >= rf { wc = rf - 1 } diff --git a/pkg/deployment/agency/state_test.go b/pkg/deployment/agency/state_test.go index ff6b2b20f..7e19abad7 100644 --- a/pkg/deployment/agency/state_test.go +++ b/pkg/deployment/agency/state_test.go @@ -40,12 +40,16 @@ var agencyDump38 []byte //go:embed testdata/agency_dump.3.9.json var agencyDump39 []byte +//go:embed testdata/agency_dump.3.9.satellite.json +var agencyDump39Satellite []byte + var ( data = map[string][]byte{ - "3.6": agencyDump36, - "3.7": agencyDump37, - "3.8": agencyDump38, - "3.9": agencyDump39, + "3.6": agencyDump36, + "3.7": agencyDump37, + "3.8": agencyDump38, + "3.9": agencyDump39, + "3.9-satellite": agencyDump39Satellite, } ) diff --git a/pkg/deployment/agency/testdata/agency_dump.3.9.satellite.json b/pkg/deployment/agency/testdata/agency_dump.3.9.satellite.json new file mode 100644 index 000000000..c06e0c376 --- /dev/null +++ b/pkg/deployment/agency/testdata/agency_dump.3.9.satellite.json @@ -0,0 +1,6866 @@ +{ + "index": 132, + "term": 1, + "agency": { + "arango": { + "SystemCollectionsCreated": true, + "ClusterUpgradeVersion": 30900, + "Bootstrap": "CRDN-g6s8btds: done", + ".license": { + "version": 1, + "license": "JD4EOk5VNRAPdSRUOywRewdAVAJgUm4GPjwpDCwTY0RhNylaFGQaMh0bPG5bNCsfYAMSOCAqd2B5CBNkL1xIMSA7AQECagIDOR94QlA9CzMBAG9qETMxQjQIPAolCzhcB1FaLFYaIk8VECUjSUEDVj5+FWE8LQF6AHVIBQAAAxwAQSkILBMUFTdzLHwVMzM7EiUeTBNeKQBvQ10gDywiJX5gFysKXQFSJhQVADBoVDZkDmE/Nj0MdRo4fwN8CEZjE3YsCyYWMF1hCSs8VzokBhcqPj98VQgEOG8dLxgGDRYGQzNbMkNdQ2I9cCwqOX9wJQgDXzs3OC4efGVqATVZG3gmECAgExgldBt7FBJhK2UOcysmA2gNRT8tUjoHJy02LRBJLwFjVwUoCBICJgkeWBAADyNXJEEpGHV/E0luHBwkYzswExQNBw1BAShlN1sBAEgtLiwBd0FlDz18P1oGMhUlHmdpQQ0oYQYGNSUCOgB+PS18AGErVC0XIz03HR1DAUFaK2dbCygXOHt7EiIlQj8MJCAKJDhfMjRdU1YcLQMMACI5eEJWEylxQGYPFgo3NmViGgQ+XV82JCYwHgdkFipYLEcrVk8pIwYCVCthKkV/GlUwFhIUPklUFy89BD8bJxcsOTFGFVBUJ3k8ADwxNCo5YzR5UR99FF0wAxJ8YB1ZQy8fUyg0HxMAJh1/VAtvOAQnIxkEHnoBaAlgOhoORVUHCysdHGsJJw8hQjslQwkWfCx5BydaJXgnDE8gACYBSRoDCydYKAA9CSw2NR5tRiladAQpQSp0GT8UIzJhEgMoMDwFC38GXSN0IThvC2gdF3UmHk9sMTMybjsUEDgzIQ15IyhXCHE8Ni15dwM6RQhTUDlsPnc7Mx5+LHRsQSMFVSUzRhQBGC1gLTldNHJEMR4GDTYZRAUCOR9aN2g9GyoDEHt0Jj0xbj9SCgcICAZhMyt0MmE5KggkKnoiYjZoVxEFM3owcwp+AnpANjw8Ayk7JzJ2FDhvMi1aJEY/CBFzCiMsZiBILgtSJnsQE3YIGGYKFyAOcCBQPQkeNzBoFTN7U18gBy0bLRoRVQBlJkZyEnYNdBEIElh2KzcleCgwGxR2IiV+CQdwOAYzBRksATYAdQFwLjZ8KH9bEw4vZ0VUPh8uBCA2NA4jBg5HKiZ4LWAbKgMVAAg6dEJ0CxAEO38OByN7NnhyRQAzdCstNXQFL2QUIzZ+DUEkMEp4DiBkEA==", + "hash": "ad800a7be16f904b1ae3e3889c17b0ceb2672ccc0bb8fa9990a724a582ecaa3b", + "features": { + "expires": 1646985599 + } + }, + "Sync": { + "UserVersion": 2, + "ServerStates": {}, + "LatestID": 10010001, + "Problems": {}, + "HeartbeatIntervalMs": 1000 + }, + "Supervision": { + "State": { + "Timestamp": "2022-03-09T13:37:41Z", + "Mode": "Normal" + }, + "Shards": {}, + "Health": { + "CRDN-ssc2yc0x": { + "Timestamp": "2022-03-09T13:37:55Z", + "SyncStatus": "SERVING", + "ShortName": "Coordinator0002", + "Status": "GOOD", + "LastAckedTime": "2022-03-09T13:37:55Z", + "Host": "ip-10-0-101-183.eu-central-1.compute.internal", + "Engine": "rocksdb", + "Version": "3.9.0", + "SyncTime": "2022-03-09T13:37:55Z", + "Endpoint": "ssl://cluster-uexabr-coordinator-ssc2yc0x.cluster-uexabr-int.3dcd4eac-c549-41b6-bc8f-40e11983ebd2.svc:8529" + }, + "CRDN-cg5kjymo": { + "Timestamp": "2022-03-09T13:37:55Z", + "SyncStatus": "SERVING", + "ShortName": "Coordinator0003", + "Status": "GOOD", + "LastAckedTime": "2022-03-09T13:37:55Z", + "Host": "ip-10-0-101-110.eu-central-1.compute.internal", + "Engine": "rocksdb", + "Version": "3.9.0", + "SyncTime": "2022-03-09T13:37:55Z", + "Endpoint": "ssl://cluster-uexabr-coordinator-cg5kjymo.cluster-uexabr-int.3dcd4eac-c549-41b6-bc8f-40e11983ebd2.svc:8529" + }, + "PRMR-rg51yv2h": { + "Timestamp": "2022-03-09T13:38:06Z", + "SyncStatus": "SERVING", + "ShortName": "DBServer0003", + "Status": "GOOD", + "LastAckedTime": "2022-03-09T13:38:06Z", + "Host": "ip-10-0-101-233.eu-central-1.compute.internal", + "Engine": "rocksdb", + "Version": "3.9.0", + "SyncTime": "2022-03-09T13:38:06Z", + "Endpoint": "ssl://cluster-uexabr-dbserver-rg51yv2h.cluster-uexabr-int.3dcd4eac-c549-41b6-bc8f-40e11983ebd2.svc:8529" + }, + "CRDN-g6s8btds": { + "Timestamp": "2022-03-09T13:37:55Z", + "SyncStatus": "SERVING", + "ShortName": "Coordinator0001", + "Status": "GOOD", + "LastAckedTime": "2022-03-09T13:37:55Z", + "Host": "ip-10-0-100-174.eu-central-1.compute.internal", + "Engine": "rocksdb", + "Version": "3.9.0", + "SyncTime": "2022-03-09T13:37:55Z", + "Endpoint": "ssl://cluster-uexabr-coordinator-g6s8btds.cluster-uexabr-int.3dcd4eac-c549-41b6-bc8f-40e11983ebd2.svc:8529" + }, + "PRMR-a24adubi": { + "Timestamp": "2022-03-09T13:37:56Z", + "SyncStatus": "SERVING", + "ShortName": "DBServer0001", + "Status": "GOOD", + "LastAckedTime": "2022-03-09T13:37:56Z", + "Host": "ip-10-0-101-183.eu-central-1.compute.internal", + "Engine": "rocksdb", + "Version": "3.9.0", + "SyncTime": "2022-03-09T13:37:56Z", + "Endpoint": "ssl://cluster-uexabr-dbserver-a24adubi.cluster-uexabr-int.3dcd4eac-c549-41b6-bc8f-40e11983ebd2.svc:8529" + }, + "PRMR-n92yizyp": { + "Timestamp": "2022-03-09T13:37:56Z", + "SyncStatus": "SERVING", + "ShortName": "DBServer0002", + "Status": "GOOD", + "LastAckedTime": "2022-03-09T13:37:56Z", + "Host": "ip-10-0-101-138.eu-central-1.compute.internal", + "Engine": "rocksdb", + "Version": "3.9.0", + "SyncTime": "2022-03-09T13:37:55Z", + "Endpoint": "ssl://cluster-uexabr-dbserver-n92yizyp.cluster-uexabr-int.3dcd4eac-c549-41b6-bc8f-40e11983ebd2.svc:8529" + } + }, + "DBServers": {} + }, + "Target": { + "LatestDBServerId": 3, + "CleanedServers": [], + "NumberOfCoordinators": 3, + "Failed": {}, + "Lock": "UNLOCKED", + "LatestCoordinatorId": 3, + "FailedServers": {}, + "Pending": {}, + "Finished": {}, + "ToBeCleanedServers": [], + "ToDo": {}, + "MapUniqueToShortID": { + "PRMR-n92yizyp": { + "TransactionID": 2, + "ShortName": "DBServer0002" + }, + "CRDN-cg5kjymo": { + "TransactionID": 3, + "ShortName": "Coordinator0003" + }, + "PRMR-a24adubi": { + "TransactionID": 1, + "ShortName": "DBServer0001" + }, + "CRDN-ssc2yc0x": { + "TransactionID": 2, + "ShortName": "Coordinator0002" + }, + "PRMR-rg51yv2h": { + "TransactionID": 3, + "ShortName": "DBServer0003" + }, + "CRDN-g6s8btds": { + "TransactionID": 1, + "ShortName": "Coordinator0001" + } + }, + "NumberOfDBServers": 3, + "Version": 1 + }, + "InitDone": true, + "Plan": { + "Views": { + "_system": {} + }, + "Version": 25, + "Lock": "UNLOCKED", + "Databases": { + "_system": { + "name": "_system", + "id": "1" + } + }, + "Coordinators": { + "CRDN-cg5kjymo": "none", + "CRDN-ssc2yc0x": "none", + "CRDN-g6s8btds": "none" + }, + "AsyncReplication": {}, + "Singles": {}, + "DBServers": { + "PRMR-rg51yv2h": "none", + "PRMR-n92yizyp": "none", + "PRMR-a24adubi": "none" + }, + "Collections": { + "_system": { + "10011": { + "writeConcern": 1, + "waitForSync": false, + "usesRevisionsAsDocumentIds": true, + "syncByRevision": true, + "shards": { + "s10022": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + }, + "schema": null, + "type": 2, + "status": 3, + "replicationFactor": "satellite", + "cacheEnabled": false, + "isSystem": true, + "deleted": false, + "shardingStrategy": "hash", + "distributeShardsLike": "10001", + "internalValidatorType": 0, + "isSmartChild": false, + "shardKeys": [ + "_key" + ], + "indexes": [ + { + "id": "0", + "type": "primary", + "name": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + }, + { + "deduplicate": true, + "estimates": false, + "fields": [ + "mount" + ], + "id": "10029", + "inBackground": false, + "name": "idx_1726829640049229824", + "sparse": true, + "type": "hash", + "unique": true + } + ], + "isDisjoint": false, + "numberOfShards": 1, + "id": "10011", + "minReplicationFactor": 1, + "statusString": "loaded", + "isSmart": false, + "name": "_apps", + "keyOptions": { + "type": "traditional", + "allowUserKeys": true + } + }, + "10013": { + "writeConcern": 1, + "waitForSync": false, + "usesRevisionsAsDocumentIds": true, + "syncByRevision": true, + "shards": { + "s10024": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + }, + "schema": null, + "type": 2, + "status": 3, + "replicationFactor": 2, + "cacheEnabled": false, + "isSystem": true, + "deleted": false, + "shardingStrategy": "hash", + "distributeShardsLike": "10001", + "internalValidatorType": 0, + "isSmartChild": false, + "shardKeys": [ + "_key" + ], + "indexes": [ + { + "id": "0", + "type": "primary", + "name": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + } + ], + "isDisjoint": false, + "numberOfShards": 1, + "id": "10013", + "minReplicationFactor": 1, + "statusString": "loaded", + "isSmart": false, + "name": "_frontend", + "keyOptions": { + "type": "traditional", + "allowUserKeys": true + } + }, + "10009": { + "writeConcern": 1, + "waitForSync": false, + "usesRevisionsAsDocumentIds": true, + "syncByRevision": true, + "shards": { + "s10020": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + }, + "schema": null, + "type": 2, + "status": 3, + "replicationFactor": 2, + "cacheEnabled": false, + "isSystem": true, + "deleted": false, + "shardingStrategy": "hash", + "distributeShardsLike": "10001", + "internalValidatorType": 0, + "isSmartChild": false, + "shardKeys": [ + "_key" + ], + "indexes": [ + { + "id": "0", + "type": "primary", + "name": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + } + ], + "isDisjoint": false, + "numberOfShards": 1, + "id": "10009", + "minReplicationFactor": 1, + "statusString": "loaded", + "isSmart": false, + "name": "_queues", + "keyOptions": { + "type": "traditional", + "allowUserKeys": true + } + }, + "10005": { + "writeConcern": 1, + "waitForSync": false, + "usesRevisionsAsDocumentIds": true, + "syncByRevision": true, + "shards": { + "s10016": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + }, + "schema": null, + "type": 2, + "status": 3, + "replicationFactor": 2, + "cacheEnabled": false, + "isSystem": true, + "deleted": false, + "shardingStrategy": "hash", + "distributeShardsLike": "10001", + "internalValidatorType": 0, + "isSmartChild": false, + "shardKeys": [ + "_key" + ], + "indexes": [ + { + "id": "0", + "type": "primary", + "name": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + }, + { + "deduplicate": true, + "estimates": false, + "fields": [ + "time" + ], + "id": "10027", + "inBackground": false, + "name": "idx_1726829639976878081", + "sparse": false, + "type": "skiplist", + "unique": false + } + ], + "isDisjoint": false, + "numberOfShards": 1, + "id": "10005", + "minReplicationFactor": 1, + "statusString": "loaded", + "isSmart": false, + "name": "_statistics15", + "keyOptions": { + "type": "traditional", + "allowUserKeys": true + } + }, + "10012": { + "writeConcern": 1, + "waitForSync": false, + "usesRevisionsAsDocumentIds": true, + "syncByRevision": true, + "shards": { + "s10023": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + }, + "schema": null, + "type": 2, + "status": 3, + "replicationFactor": 2, + "cacheEnabled": false, + "isSystem": true, + "deleted": false, + "shardingStrategy": "hash", + "distributeShardsLike": "10001", + "internalValidatorType": 0, + "isSmartChild": false, + "shardKeys": [ + "_key" + ], + "indexes": [ + { + "id": "0", + "type": "primary", + "name": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + } + ], + "isDisjoint": false, + "numberOfShards": 1, + "id": "10012", + "minReplicationFactor": 1, + "statusString": "loaded", + "isSmart": false, + "name": "_appbundles", + "keyOptions": { + "type": "traditional", + "allowUserKeys": true + } + }, + "10010": { + "writeConcern": 1, + "waitForSync": false, + "usesRevisionsAsDocumentIds": true, + "syncByRevision": true, + "shards": { + "s10021": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + }, + "schema": null, + "type": 2, + "status": 3, + "replicationFactor": 2, + "cacheEnabled": false, + "isSystem": true, + "deleted": false, + "shardingStrategy": "hash", + "distributeShardsLike": "10001", + "internalValidatorType": 0, + "isSmartChild": false, + "shardKeys": [ + "_key" + ], + "indexes": [ + { + "id": "0", + "type": "primary", + "name": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + }, + { + "deduplicate": true, + "estimates": false, + "fields": [ + "queue", + "status", + "delayUntil" + ], + "id": "10030", + "inBackground": false, + "name": "idx_1726829640074395648", + "sparse": false, + "type": "skiplist", + "unique": false + }, + { + "deduplicate": true, + "estimates": false, + "fields": [ + "status", + "queue", + "delayUntil" + ], + "id": "10031", + "inBackground": false, + "name": "idx_1726829640102707201", + "sparse": false, + "type": "skiplist", + "unique": false + } + ], + "isDisjoint": false, + "numberOfShards": 1, + "id": "10010", + "minReplicationFactor": 1, + "statusString": "loaded", + "isSmart": false, + "name": "_jobs", + "keyOptions": { + "type": "traditional", + "allowUserKeys": true + } + }, + "10004": { + "writeConcern": 1, + "waitForSync": false, + "usesRevisionsAsDocumentIds": true, + "syncByRevision": true, + "shards": { + "s10015": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + }, + "schema": null, + "type": 2, + "status": 3, + "replicationFactor": 2, + "cacheEnabled": false, + "isSystem": true, + "deleted": false, + "shardingStrategy": "hash", + "distributeShardsLike": "10001", + "internalValidatorType": 0, + "isSmartChild": false, + "shardKeys": [ + "_key" + ], + "indexes": [ + { + "id": "0", + "type": "primary", + "name": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + }, + { + "deduplicate": true, + "estimates": false, + "fields": [ + "time" + ], + "id": "10026", + "inBackground": false, + "name": "idx_1726829639950663681", + "sparse": false, + "type": "skiplist", + "unique": false + } + ], + "isDisjoint": false, + "numberOfShards": 1, + "id": "10004", + "minReplicationFactor": 1, + "statusString": "loaded", + "isSmart": false, + "name": "_statistics", + "keyOptions": { + "type": "traditional", + "allowUserKeys": true + } + }, + "10006": { + "writeConcern": 1, + "waitForSync": false, + "usesRevisionsAsDocumentIds": true, + "syncByRevision": true, + "shards": { + "s10017": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + }, + "schema": null, + "type": 2, + "status": 3, + "replicationFactor": 2, + "cacheEnabled": false, + "isSystem": true, + "deleted": false, + "shardingStrategy": "hash", + "distributeShardsLike": "10001", + "internalValidatorType": 0, + "isSmartChild": false, + "shardKeys": [ + "_key" + ], + "indexes": [ + { + "id": "0", + "type": "primary", + "name": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + }, + { + "deduplicate": true, + "estimates": false, + "fields": [ + "time" + ], + "id": "10028", + "inBackground": false, + "name": "idx_1726829640006238208", + "sparse": false, + "type": "skiplist", + "unique": false + } + ], + "isDisjoint": false, + "numberOfShards": 1, + "id": "10006", + "minReplicationFactor": 1, + "statusString": "loaded", + "isSmart": false, + "name": "_statisticsRaw", + "keyOptions": { + "type": "traditional", + "allowUserKeys": true + } + }, + "10003": { + "writeConcern": 1, + "waitForSync": false, + "usesRevisionsAsDocumentIds": true, + "syncByRevision": true, + "shards": { + "s10014": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + }, + "schema": null, + "type": 2, + "status": 3, + "replicationFactor": 2, + "cacheEnabled": false, + "isSystem": true, + "deleted": false, + "shardingStrategy": "hash", + "distributeShardsLike": "10001", + "internalValidatorType": 0, + "isSmartChild": false, + "shardKeys": [ + "_key" + ], + "indexes": [ + { + "id": "0", + "type": "primary", + "name": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + } + ], + "isDisjoint": false, + "numberOfShards": 1, + "id": "10003", + "minReplicationFactor": 1, + "statusString": "loaded", + "isSmart": false, + "name": "_graphs", + "keyOptions": { + "type": "traditional", + "allowUserKeys": true + } + }, + "10008": { + "writeConcern": 1, + "waitForSync": false, + "usesRevisionsAsDocumentIds": true, + "syncByRevision": true, + "shards": { + "s10019": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + }, + "schema": null, + "type": 2, + "status": 3, + "replicationFactor": 2, + "cacheEnabled": false, + "isSystem": true, + "deleted": false, + "shardingStrategy": "hash", + "distributeShardsLike": "10001", + "internalValidatorType": 0, + "isSmartChild": false, + "shardKeys": [ + "_key" + ], + "indexes": [ + { + "id": "0", + "type": "primary", + "name": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + } + ], + "isDisjoint": false, + "numberOfShards": 1, + "id": "10008", + "minReplicationFactor": 1, + "statusString": "loaded", + "isSmart": false, + "name": "_aqlfunctions", + "keyOptions": { + "type": "traditional", + "allowUserKeys": true + } + }, + "10007": { + "writeConcern": 1, + "waitForSync": false, + "usesRevisionsAsDocumentIds": true, + "syncByRevision": true, + "shards": { + "s10018": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + }, + "schema": null, + "type": 2, + "status": 3, + "replicationFactor": 2, + "cacheEnabled": false, + "isSystem": true, + "deleted": false, + "shardingStrategy": "hash", + "distributeShardsLike": "10001", + "internalValidatorType": 0, + "isSmartChild": false, + "shardKeys": [ + "_key" + ], + "indexes": [ + { + "id": "0", + "type": "primary", + "name": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + } + ], + "isDisjoint": false, + "numberOfShards": 1, + "id": "10007", + "minReplicationFactor": 1, + "statusString": "loaded", + "isSmart": false, + "name": "_analyzers", + "keyOptions": { + "type": "traditional", + "allowUserKeys": true + } + }, + "10001": { + "writeConcern": 1, + "waitForSync": false, + "usesRevisionsAsDocumentIds": true, + "syncByRevision": true, + "shards": { + "s10002": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + }, + "shardingStrategy": "hash", + "schema": null, + "type": 2, + "status": 3, + "replicationFactor": 2, + "cacheEnabled": false, + "isSystem": true, + "deleted": false, + "isSmartChild": false, + "internalValidatorType": 0, + "shardKeys": [ + "_key" + ], + "indexes": [ + { + "id": "0", + "type": "primary", + "name": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + }, + { + "deduplicate": true, + "estimates": false, + "fields": [ + "user" + ], + "id": "10025", + "inBackground": false, + "name": "idx_1726829639915012096", + "sparse": true, + "type": "hash", + "unique": true + } + ], + "isDisjoint": false, + "id": "10001", + "numberOfShards": 1, + "minReplicationFactor": 1, + "statusString": "loaded", + "isSmart": false, + "name": "_users", + "keyOptions": { + "type": "traditional", + "allowUserKeys": true + } + } + } + }, + "Analyzers": { + "_system": { + "revision": 0, + "buildingRevision": 0 + } + } + }, + "Current": { + "FoxxmasterQueueupdate": false, + "AsyncReplication": {}, + "Collections": { + "_system": { + "10011": { + "s10022": { + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010042", + "sparse": false, + "type": "primary", + "unique": true + }, + { + "deduplicate": true, + "estimates": true, + "fields": [ + "mount" + ], + "id": "10029", + "name": "idx_1726829640049229824", + "objectId": "4010164", + "sparse": true, + "type": "hash", + "unique": true + } + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "errorNum": 0, + "errorMessage": "", + "error": false + } + }, + "10013": { + "s10024": { + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010040", + "sparse": false, + "type": "primary", + "unique": true + } + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "errorNum": 0, + "errorMessage": "", + "error": false + } + }, + "10009": { + "s10020": { + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010038", + "sparse": false, + "type": "primary", + "unique": true + } + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "errorNum": 0, + "errorMessage": "", + "error": false + } + }, + "10005": { + "s10016": { + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010036", + "sparse": false, + "type": "primary", + "unique": true + }, + { + "deduplicate": true, + "estimates": false, + "fields": [ + "time" + ], + "id": "10027", + "name": "idx_1726829639976878081", + "objectId": "4010144", + "sparse": false, + "type": "skiplist", + "unique": false + } + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "errorNum": 0, + "errorMessage": "", + "error": false + } + }, + "10012": { + "s10023": { + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010034", + "sparse": false, + "type": "primary", + "unique": true + } + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "errorNum": 0, + "errorMessage": "", + "error": false + } + }, + "10010": { + "s10021": { + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010032", + "sparse": false, + "type": "primary", + "unique": true + }, + { + "deduplicate": true, + "estimates": false, + "fields": [ + "queue", + "status", + "delayUntil" + ], + "id": "10030", + "name": "idx_1726829640074395648", + "objectId": "4010174", + "sparse": false, + "type": "skiplist", + "unique": false + }, + { + "deduplicate": true, + "estimates": false, + "fields": [ + "status", + "queue", + "delayUntil" + ], + "id": "10031", + "name": "idx_1726829640102707201", + "objectId": "4010186", + "sparse": false, + "type": "skiplist", + "unique": false + } + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "errorNum": 0, + "errorMessage": "", + "error": false + } + }, + "10004": { + "s10015": { + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010030", + "sparse": false, + "type": "primary", + "unique": true + }, + { + "deduplicate": true, + "estimates": false, + "fields": [ + "time" + ], + "id": "10026", + "name": "idx_1726829639950663681", + "objectId": "4010134", + "sparse": false, + "type": "skiplist", + "unique": false + } + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "errorNum": 0, + "errorMessage": "", + "error": false + } + }, + "10006": { + "s10017": { + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010028", + "sparse": false, + "type": "primary", + "unique": true + }, + { + "deduplicate": true, + "estimates": false, + "fields": [ + "time" + ], + "id": "10028", + "name": "idx_1726829640006238208", + "objectId": "4010154", + "sparse": false, + "type": "skiplist", + "unique": false + } + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "errorNum": 0, + "errorMessage": "", + "error": false + } + }, + "10003": { + "s10014": { + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010026", + "sparse": false, + "type": "primary", + "unique": true + } + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "errorNum": 0, + "errorMessage": "", + "error": false + } + }, + "10008": { + "s10019": { + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010024", + "sparse": false, + "type": "primary", + "unique": true + } + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "errorNum": 0, + "errorMessage": "", + "error": false + } + }, + "10007": { + "s10018": { + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010023", + "sparse": false, + "type": "primary", + "unique": true + } + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "errorNum": 0, + "errorMessage": "", + "error": false + } + }, + "10001": { + "s10002": { + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010002", + "sparse": false, + "type": "primary", + "unique": true + }, + { + "deduplicate": true, + "estimates": true, + "fields": [ + "user" + ], + "id": "10025", + "name": "idx_1726829639915012096", + "objectId": "4010124", + "sparse": true, + "type": "hash", + "unique": true + } + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "errorNum": 0, + "errorMessage": "", + "error": false + } + } + } + }, + "DBServers": { + "PRMR-rg51yv2h": "none", + "PRMR-n92yizyp": "none", + "PRMR-a24adubi": "none" + }, + "Singles": {}, + "Databases": { + "_system": { + "PRMR-rg51yv2h": { + "id": "1", + "errorNum": 0, + "name": "_system", + "errorMessage": "", + "error": false + }, + "PRMR-a24adubi": { + "id": "1", + "errorNum": 0, + "name": "_system", + "errorMessage": "", + "error": false + }, + "PRMR-n92yizyp": { + "id": "1", + "errorNum": 0, + "name": "_system", + "errorMessage": "", + "error": false + } + } + }, + "Lock": "UNLOCKED", + "ServersKnown": { + "PRMR-n92yizyp": { + "rebootId": 1 + }, + "CRDN-cg5kjymo": { + "rebootId": 1 + }, + "PRMR-a24adubi": { + "rebootId": 1 + }, + "CRDN-ssc2yc0x": { + "rebootId": 1 + }, + "PRMR-rg51yv2h": { + "rebootId": 1 + }, + "CRDN-g6s8btds": { + "rebootId": 1 + } + }, + "Coordinators": { + "CRDN-cg5kjymo": "none", + "CRDN-ssc2yc0x": "none", + "CRDN-g6s8btds": "none" + }, + "NewServers": {}, + "ServersRegistered": { + "PRMR-n92yizyp": { + "timestamp": "2022-03-09T13:37:53Z", + "host": "ip-10-0-101-138.eu-central-1.compute.internal", + "versionString": "3.9.0", + "extendedNamesDatabases": false, + "version": 30900, + "engine": "rocksdb", + "endpoint": "ssl://cluster-uexabr-dbserver-n92yizyp.cluster-uexabr-int.3dcd4eac-c549-41b6-bc8f-40e11983ebd2.svc:8529", + "advertisedEndpoint": "" + }, + "CRDN-cg5kjymo": { + "timestamp": "2022-03-09T13:37:44Z", + "host": "ip-10-0-101-110.eu-central-1.compute.internal", + "versionString": "3.9.0", + "extendedNamesDatabases": false, + "version": 30900, + "engine": "rocksdb", + "endpoint": "ssl://cluster-uexabr-coordinator-cg5kjymo.cluster-uexabr-int.3dcd4eac-c549-41b6-bc8f-40e11983ebd2.svc:8529", + "advertisedEndpoint": "" + }, + "PRMR-a24adubi": { + "timestamp": "2022-03-09T13:37:43Z", + "host": "ip-10-0-101-183.eu-central-1.compute.internal", + "versionString": "3.9.0", + "extendedNamesDatabases": false, + "version": 30900, + "engine": "rocksdb", + "endpoint": "ssl://cluster-uexabr-dbserver-a24adubi.cluster-uexabr-int.3dcd4eac-c549-41b6-bc8f-40e11983ebd2.svc:8529", + "advertisedEndpoint": "" + }, + "PRMR-rg51yv2h": { + "timestamp": "2022-03-09T13:38:03Z", + "host": "ip-10-0-101-233.eu-central-1.compute.internal", + "versionString": "3.9.0", + "extendedNamesDatabases": false, + "version": 30900, + "engine": "rocksdb", + "endpoint": "ssl://cluster-uexabr-dbserver-rg51yv2h.cluster-uexabr-int.3dcd4eac-c549-41b6-bc8f-40e11983ebd2.svc:8529", + "advertisedEndpoint": "" + }, + "CRDN-g6s8btds": { + "timestamp": "2022-03-09T13:37:41Z", + "host": "ip-10-0-100-174.eu-central-1.compute.internal", + "versionString": "3.9.0", + "extendedNamesDatabases": false, + "version": 30900, + "engine": "rocksdb", + "endpoint": "ssl://cluster-uexabr-coordinator-g6s8btds.cluster-uexabr-int.3dcd4eac-c549-41b6-bc8f-40e11983ebd2.svc:8529", + "advertisedEndpoint": "" + }, + "CRDN-ssc2yc0x": { + "timestamp": "2022-03-09T13:37:43Z", + "host": "ip-10-0-101-183.eu-central-1.compute.internal", + "versionString": "3.9.0", + "extendedNamesDatabases": false, + "version": 30900, + "engine": "rocksdb", + "endpoint": "ssl://cluster-uexabr-coordinator-ssc2yc0x.cluster-uexabr-int.3dcd4eac-c549-41b6-bc8f-40e11983ebd2.svc:8529", + "advertisedEndpoint": "" + }, + "Version": 1 + }, + "ShardsCopied": {}, + "Version": 75, + "Foxxmaster": "CRDN-g6s8btds" + }, + "Cluster": "8c15fcd5-9711-49e3-bd8f-1c0a3147f0b6", + "Agency": { + "Definition": 1 + } + }, + ".agency": { + "timeoutMult": 1, + "term": 1, + "size": 3, + "pool": { + "AGNT-q2cs6q1j": "ssl://cluster-uexabr-agent-q2cs6q1j.cluster-uexabr-int.3dcd4eac-c549-41b6-bc8f-40e11983ebd2.svc:8529", + "AGNT-ec6b7qdz": "ssl://cluster-uexabr-agent-ec6b7qdz.cluster-uexabr-int.3dcd4eac-c549-41b6-bc8f-40e11983ebd2.svc:8529", + "AGNT-8sek6mbr": "ssl://cluster-uexabr-agent-8sek6mbr.cluster-uexabr-int.3dcd4eac-c549-41b6-bc8f-40e11983ebd2.svc:8529" + }, + "id": "AGNT-ec6b7qdz", + "active": [ + "AGNT-q2cs6q1j", + "AGNT-8sek6mbr", + "AGNT-ec6b7qdz" + ] + } + }, + "log": [ + { + "_key": "00000000000000000000", + "_rev": "_d05kI-q---", + "clientId": "", + "epoch_millis": 1646833051656, + "request": {}, + "term": 0, + "timestamp": "2022-03-09 13:37:31 UTC" + }, + { + "_key": "00000000000000000001", + "_rev": "_d05kRDm---", + "clientId": "", + "epoch_millis": 1646833060954, + "request": { + ".agency": { + "op": "set", + "new": { + "term": 1, + "id": "AGNT-ec6b7qdz", + "active": [ + "AGNT-q2cs6q1j", + "AGNT-8sek6mbr", + "AGNT-ec6b7qdz" + ], + "pool": { + "AGNT-q2cs6q1j": "ssl://cluster-uexabr-agent-q2cs6q1j.cluster-uexabr-int.3dcd4eac-c549-41b6-bc8f-40e11983ebd2.svc:8529", + "AGNT-8sek6mbr": "ssl://cluster-uexabr-agent-8sek6mbr.cluster-uexabr-int.3dcd4eac-c549-41b6-bc8f-40e11983ebd2.svc:8529", + "AGNT-ec6b7qdz": "ssl://cluster-uexabr-agent-ec6b7qdz.cluster-uexabr-int.3dcd4eac-c549-41b6-bc8f-40e11983ebd2.svc:8529" + }, + "size": 3, + "timeoutMult": 1 + } + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:40 UTC" + }, + { + "_key": "00000000000000000002", + "_rev": "_d05kREG--A", + "clientId": "acb77479-a799-43a6-9d40-b0657e495b2a", + "epoch_millis": 1646833060962, + "request": { + "arango/": { + "op": "set", + "new": { + "Cluster": "8c15fcd5-9711-49e3-bd8f-1c0a3147f0b6", + "Agency": { + "Definition": 1 + }, + "Current": { + "AsyncReplication": {}, + "Collections": { + "_system": {} + }, + "Version": 1, + "ShardsCopied": {}, + "NewServers": {}, + "Coordinators": {}, + "Lock": "UNLOCKED", + "DBServers": {}, + "Singles": {}, + "ServersRegistered": { + "Version": 1 + }, + "Databases": {} + }, + "InitDone": true, + "Plan": { + "AsyncReplication": {}, + "Coordinators": {}, + "Databases": { + "_system": { + "name": "_system", + "id": "1" + } + }, + "Lock": "UNLOCKED", + "DBServers": {}, + "Singles": {}, + "Version": 1, + "Collections": { + "_system": {} + }, + "Views": { + "_system": {} + }, + "Analyzers": { + "_system": { + "revision": 0, + "buildingRevision": 0 + } + } + }, + "Sync": { + "LatestID": 1, + "Problems": {}, + "UserVersion": 1, + "ServerStates": {}, + "HeartbeatIntervalMs": 1000 + }, + "Supervision": { + "Health": {}, + "Shards": {}, + "DBServers": {} + }, + "Target": { + "NumberOfCoordinators": null, + "NumberOfDBServers": null, + "CleanedServers": [], + "ToBeCleanedServers": [], + "FailedServers": {}, + "Lock": "UNLOCKED", + "Failed": {}, + "Finished": {}, + "Pending": {}, + "ToDo": {}, + "Version": 1 + } + } + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:40 UTC" + }, + { + "_key": "00000000000000000003", + "_rev": "_d05kREy--B", + "clientId": "CRDN-g6s8btds:039b23c6-78cb-46d2-ac94-d9acca05e5e0", + "epoch_millis": 1646833060973, + "request": { + "arango/Plan/Coordinators/CRDN-g6s8btds": { + "op": "set", + "new": "none" + }, + "arango/Plan/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:40 UTC" + }, + { + "_key": "00000000000000000004", + "_rev": "_d05kRFO--A", + "clientId": "CRDN-g6s8btds:a3b01a5a-b3f3-4e78-b0c6-1be605930dbf", + "epoch_millis": 1646833060980, + "request": { + "arango/Current/Coordinators/CRDN-g6s8btds": { + "op": "set", + "new": "none" + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:40 UTC" + }, + { + "_key": "00000000000000000005", + "_rev": "_d05kRKS---", + "clientId": "CRDN-g6s8btds:bb6fac3d-d756-46ce-8349-4b72ed278ad5", + "epoch_millis": 1646833061061, + "request": { + "arango/Target/LatestCoordinatorId": { + "op": "increment" + }, + "arango/Target/MapUniqueToShortID/CRDN-g6s8btds": { + "op": "set", + "new": { + "TransactionID": 1, + "ShortName": "Coordinator0001" + } + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:41 UTC" + }, + { + "_key": "00000000000000000006", + "_rev": "_d05kRKu--A", + "clientId": "CRDN-g6s8btds:1a984fa6-ce84-42de-96c5-afc9f418832f", + "epoch_millis": 1646833061068, + "request": { + "arango/Current/ServersRegistered/CRDN-g6s8btds": { + "op": "set", + "new": { + "endpoint": "ssl://cluster-uexabr-coordinator-g6s8btds.cluster-uexabr-int.3dcd4eac-c549-41b6-bc8f-40e11983ebd2.svc:8529", + "advertisedEndpoint": "", + "host": "ip-10-0-100-174.eu-central-1.compute.internal", + "version": 30900, + "versionString": "3.9.0", + "engine": "rocksdb", + "extendedNamesDatabases": false, + "timestamp": "2022-03-09T13:37:41Z" + } + }, + "arango/Current/ServersKnown/CRDN-g6s8btds/rebootId": { + "op": "increment" + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:41 UTC" + }, + { + "_key": "00000000000000000007", + "_rev": "_d05kRw----", + "clientId": "", + "epoch_millis": 1646833061664, + "request": { + "/arango/Sync/LatestID": { + "op": "increment", + "step": 10000 + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:41 UTC" + }, + { + "_key": "00000000000000000008", + "_rev": "_d05kRwK--_", + "clientId": "", + "epoch_millis": 1646833061667, + "request": { + "/arango/Supervision/State": { + "Mode": "Normal", + "Timestamp": "2022-03-09T13:37:41Z" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:41 UTC" + }, + { + "_key": "00000000000000000009", + "_rev": "_d05kTBu--A", + "clientId": "CRDN-ssc2yc0x:562d04c3-d494-42b2-a396-1eb0aa9edd81", + "epoch_millis": 1646833062972, + "request": { + "arango/Plan/Coordinators/CRDN-ssc2yc0x": { + "op": "set", + "new": "none" + }, + "arango/Plan/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:42 UTC" + }, + { + "_key": "00000000000000000010", + "_rev": "_d05kTB6--_", + "clientId": "CRDN-cg5kjymo:c7c6b48c-5de6-48f8-96ba-6c3305ef7f28", + "epoch_millis": 1646833062975, + "request": { + "arango/Plan/Coordinators/CRDN-cg5kjymo": { + "op": "set", + "new": "none" + }, + "arango/Plan/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:42 UTC" + }, + { + "_key": "00000000000000000011", + "_rev": "_d05kTCW---", + "clientId": "CRDN-ssc2yc0x:0dcc9e60-51fb-4ed4-b779-f7419ccaeb8b", + "epoch_millis": 1646833062981, + "request": { + "arango/Current/Coordinators/CRDN-ssc2yc0x": { + "op": "set", + "new": "none" + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:42 UTC" + }, + { + "_key": "00000000000000000012", + "_rev": "_d05kTCm--A", + "clientId": "CRDN-cg5kjymo:8f252e18-f381-4419-98dd-774bd97841d9", + "epoch_millis": 1646833062986, + "request": { + "arango/Current/Coordinators/CRDN-cg5kjymo": { + "op": "set", + "new": "none" + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:42 UTC" + }, + { + "_key": "00000000000000000013", + "_rev": "_d05kTDG--A", + "clientId": "CRDN-ssc2yc0x:4779d131-fe12-4c63-8591-6bd185fd7b98", + "epoch_millis": 1646833062994, + "request": { + "arango/Target/LatestCoordinatorId": { + "op": "increment" + }, + "arango/Target/MapUniqueToShortID/CRDN-ssc2yc0x": { + "op": "set", + "new": { + "TransactionID": 2, + "ShortName": "Coordinator0002" + } + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:42 UTC" + }, + { + "_key": "00000000000000000014", + "_rev": "_d05kTE---_", + "clientId": "CRDN-ssc2yc0x:2b57c925-4eed-45e3-9d95-bdfaa4fe71bc", + "epoch_millis": 1646833063008, + "request": { + "arango/Current/ServersRegistered/CRDN-ssc2yc0x": { + "op": "set", + "new": { + "endpoint": "ssl://cluster-uexabr-coordinator-ssc2yc0x.cluster-uexabr-int.3dcd4eac-c549-41b6-bc8f-40e11983ebd2.svc:8529", + "advertisedEndpoint": "", + "host": "ip-10-0-101-183.eu-central-1.compute.internal", + "version": 30900, + "versionString": "3.9.0", + "engine": "rocksdb", + "extendedNamesDatabases": false, + "timestamp": "2022-03-09T13:37:43Z" + } + }, + "arango/Current/ServersKnown/CRDN-ssc2yc0x/rebootId": { + "op": "increment" + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:43 UTC" + }, + { + "_key": "00000000000000000015", + "_rev": "_d05kTji--A", + "clientId": "PRMR-a24adubi:9389e5ac-c4a7-4b17-8494-6dc58e9aaeff", + "epoch_millis": 1646833063513, + "request": { + "arango/Plan/DBServers/PRMR-a24adubi": { + "op": "set", + "new": "none" + }, + "arango/Plan/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:43 UTC" + }, + { + "_key": "00000000000000000016", + "_rev": "_d05kTkG--A", + "clientId": "PRMR-a24adubi:f39d1b45-d8a8-4f27-b3c5-24be9c8f291a", + "epoch_millis": 1646833063522, + "request": { + "arango/Current/DBServers/PRMR-a24adubi": { + "op": "set", + "new": "none" + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:43 UTC" + }, + { + "_key": "00000000000000000017", + "_rev": "_d05kTku--_", + "clientId": "PRMR-a24adubi:771cbee3-c143-46c6-9920-badd031a3b17", + "epoch_millis": 1646833063532, + "request": { + "arango/Target/LatestDBServerId": { + "op": "increment" + }, + "arango/Target/MapUniqueToShortID/PRMR-a24adubi": { + "op": "set", + "new": { + "TransactionID": 1, + "ShortName": "DBServer0001" + } + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:43 UTC" + }, + { + "_key": "00000000000000000018", + "_rev": "_d05kTlO--_", + "clientId": "PRMR-a24adubi:5bcd2f02-3e65-4dfa-8867-db01146db348", + "epoch_millis": 1646833063540, + "request": { + "arango/Current/ServersRegistered/PRMR-a24adubi": { + "op": "set", + "new": { + "endpoint": "ssl://cluster-uexabr-dbserver-a24adubi.cluster-uexabr-int.3dcd4eac-c549-41b6-bc8f-40e11983ebd2.svc:8529", + "advertisedEndpoint": "", + "host": "ip-10-0-101-183.eu-central-1.compute.internal", + "version": 30900, + "versionString": "3.9.0", + "engine": "rocksdb", + "extendedNamesDatabases": false, + "timestamp": "2022-03-09T13:37:43Z" + } + }, + "arango/Current/ServersKnown/PRMR-a24adubi/rebootId": { + "op": "increment" + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:43 UTC" + }, + { + "_key": "00000000000000000019", + "_rev": "_d05kT4e---", + "clientId": "PRMR-a24adubi:791724a4-d4e8-4258-863a-25be444160fd", + "epoch_millis": 1646833063848, + "request": { + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:43 UTC" + }, + { + "_key": "00000000000000000020", + "_rev": "_d05kT9W--A", + "clientId": "PRMR-a24adubi:99652721-37a3-4699-8fb1-0ca992a2896e", + "epoch_millis": 1646833063926, + "request": { + "arango/.license": { + "op": "set", + "new": { + "features": { + "expires": 1647005863 + }, + "license": "JD4EOXdvNVUPbicOETgOeDFULw9TKnUBBxcXPQc+Qgl8CSIFPHUrcAgKDVdeK1VW", + "version": 1 + } + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:43 UTC" + }, + { + "_key": "00000000000000000021", + "_rev": "_d05kUCy--_", + "clientId": "CRDN-cg5kjymo:a43281ca-c713-4c8a-b63e-68f7cff1bd04", + "epoch_millis": 1646833064013, + "request": { + "arango/Target/LatestCoordinatorId": { + "op": "increment" + }, + "arango/Target/MapUniqueToShortID/CRDN-cg5kjymo": { + "op": "set", + "new": { + "TransactionID": 3, + "ShortName": "Coordinator0003" + } + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:44 UTC" + }, + { + "_key": "00000000000000000022", + "_rev": "_d05kUDS--B", + "clientId": "CRDN-cg5kjymo:1857e7cd-7c0a-4088-8643-501d892a9f3f", + "epoch_millis": 1646833064021, + "request": { + "arango/Current/ServersRegistered/CRDN-cg5kjymo": { + "op": "set", + "new": { + "endpoint": "ssl://cluster-uexabr-coordinator-cg5kjymo.cluster-uexabr-int.3dcd4eac-c549-41b6-bc8f-40e11983ebd2.svc:8529", + "advertisedEndpoint": "", + "host": "ip-10-0-101-110.eu-central-1.compute.internal", + "version": 30900, + "versionString": "3.9.0", + "engine": "rocksdb", + "extendedNamesDatabases": false, + "timestamp": "2022-03-09T13:37:44Z" + } + }, + "arango/Current/ServersKnown/CRDN-cg5kjymo/rebootId": { + "op": "increment" + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:44 UTC" + }, + { + "_key": "00000000000000000023", + "_rev": "_d05kdEC--_", + "clientId": "PRMR-n92yizyp:37cc16cd-e2c7-42cb-8a39-e2ecd5bed813", + "epoch_millis": 1646833073249, + "request": { + "arango/Plan/DBServers/PRMR-n92yizyp": { + "op": "set", + "new": "none" + }, + "arango/Plan/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:53 UTC" + }, + { + "_key": "00000000000000000024", + "_rev": "_d05kdEe--A", + "clientId": "PRMR-n92yizyp:779dcb76-89b2-4e63-b193-5c089c5a078e", + "epoch_millis": 1646833073256, + "request": { + "arango/Current/DBServers/PRMR-n92yizyp": { + "op": "set", + "new": "none" + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:53 UTC" + }, + { + "_key": "00000000000000000025", + "_rev": "_d05kdFG--A", + "clientId": "PRMR-n92yizyp:6f715cc0-4b0d-428e-85fb-1a35e6b303aa", + "epoch_millis": 1646833073266, + "request": { + "arango/Target/LatestDBServerId": { + "op": "increment" + }, + "arango/Target/MapUniqueToShortID/PRMR-n92yizyp": { + "op": "set", + "new": { + "TransactionID": 2, + "ShortName": "DBServer0002" + } + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:53 UTC" + }, + { + "_key": "00000000000000000026", + "_rev": "_d05kdFm--D", + "clientId": "PRMR-n92yizyp:c3d9e218-0d45-4bc3-9144-9f8636b4d57c", + "epoch_millis": 1646833073274, + "request": { + "arango/Current/ServersRegistered/PRMR-n92yizyp": { + "op": "set", + "new": { + "endpoint": "ssl://cluster-uexabr-dbserver-n92yizyp.cluster-uexabr-int.3dcd4eac-c549-41b6-bc8f-40e11983ebd2.svc:8529", + "advertisedEndpoint": "", + "host": "ip-10-0-101-138.eu-central-1.compute.internal", + "version": 30900, + "versionString": "3.9.0", + "engine": "rocksdb", + "extendedNamesDatabases": false, + "timestamp": "2022-03-09T13:37:53Z" + } + }, + "arango/Current/ServersKnown/PRMR-n92yizyp/rebootId": { + "op": "increment" + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:53 UTC" + }, + { + "_key": "00000000000000000027", + "_rev": "_d05kdGG--_", + "clientId": "CRDN-g6s8btds:889dfac1-a3e5-4860-b9a5-70c6bf5aaac3", + "epoch_millis": 1646833073282, + "request": { + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:53 UTC" + }, + { + "_key": "00000000000000000028", + "_rev": "_d05kdHC--_", + "clientId": "CRDN-g6s8btds:d480f288-a32c-423b-aefc-7f91ee6a6727", + "epoch_millis": 1646833073297, + "request": { + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:53 UTC" + }, + { + "_key": "00000000000000000029", + "_rev": "_d05kdUe--_", + "clientId": "CRDN-cg5kjymo:2052e8d0-159c-4e51-8d83-d82f71092494", + "epoch_millis": 1646833073512, + "request": { + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:53 UTC" + }, + { + "_key": "00000000000000000030", + "_rev": "_d05kdU2--_", + "clientId": "CRDN-cg5kjymo:916d1402-f5bc-4879-8223-1b3a506ad7f7", + "epoch_millis": 1646833073518, + "request": { + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:53 UTC" + }, + { + "_key": "00000000000000000031", + "_rev": "_d05kdgu--A", + "clientId": "PRMR-n92yizyp:3ce57651-efba-41c2-9729-2a2467cf45cf", + "epoch_millis": 1646833073708, + "request": { + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:53 UTC" + }, + { + "_key": "00000000000000000032", + "_rev": "_d05kdhO--B", + "clientId": "CRDN-g6s8btds:b90ab076-e1a9-40a5-9ae3-6cab22075716", + "epoch_millis": 1646833073716, + "request": { + "arango/Bootstrap": { + "op": "set", + "new": "CRDN-g6s8btds", + "ttl": 300 + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:53 UTC" + }, + { + "_key": "00000000000000000033", + "_rev": "_d05kdhu--A", + "clientId": "CRDN-g6s8btds:2bb2dd70-615b-4c44-919f-6df366036f87", + "epoch_millis": 1646833073724, + "request": { + "arango/Sync/LatestID": { + "op": "set", + "new": 2010001 + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:53 UTC" + }, + { + "_key": "00000000000000000034", + "_rev": "_d05kdja---", + "clientId": "CRDN-g6s8btds:99266912-daa7-48e7-bba2-885569db8e3d", + "epoch_millis": 1646833073750, + "request": { + "arango/Plan/Version": { + "op": "increment" + }, + "arango/Plan/Collections/_system/10001": { + "op": "set", + "new": { + "cacheEnabled": false, + "deleted": false, + "id": "10001", + "indexes": [ + { + "id": "0", + "type": "primary", + "name": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + } + ], + "internalValidatorType": 0, + "isDisjoint": false, + "isSmart": false, + "isSmartChild": false, + "isSystem": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional" + }, + "minReplicationFactor": 1, + "name": "_users", + "numberOfShards": 1, + "replicationFactor": 2, + "schema": null, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "shards": { + "s10002": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + }, + "status": 3, + "statusString": "loaded", + "syncByRevision": true, + "type": 2, + "usesRevisionsAsDocumentIds": true, + "waitForSync": false, + "writeConcern": 1, + "isBuilding": true, + "coordinatorRebootId": 1, + "coordinator": "CRDN-g6s8btds" + } + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:53 UTC" + }, + { + "_key": "00000000000000000035", + "_rev": "_d05ke-2---", + "clientId": "CRDN-ssc2yc0x:c9ba947c-4397-41a9-b9a5-7f2de148c087", + "epoch_millis": 1646833074189, + "request": { + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:54 UTC" + }, + { + "_key": "00000000000000000036", + "_rev": "_d05ke_6---", + "clientId": "CRDN-ssc2yc0x:897c15b5-eea3-4689-ba60-faed8deee5d0", + "epoch_millis": 1646833074207, + "request": { + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:54 UTC" + }, + { + "_key": "00000000000000000037", + "_rev": "_d05keEm--_", + "clientId": "CRDN-g6s8btds:2452742d-e8fa-43f4-ab94-93d42bd3d7f8", + "epoch_millis": 1646833074282, + "request": { + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:54 UTC" + }, + { + "_key": "00000000000000000038", + "_rev": "_d05keSq--A", + "clientId": "CRDN-cg5kjymo:b544c5ac-b2cf-4705-99c9-be2176a86d02", + "epoch_millis": 1646833074507, + "request": { + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:54 UTC" + }, + { + "_key": "00000000000000000039", + "_rev": "_d05ke9W--_", + "clientId": "CRDN-ssc2yc0x:386500b2-8d4d-4d6d-8e17-45583c0cf97a", + "epoch_millis": 1646833075190, + "request": { + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:55 UTC" + }, + { + "_key": "00000000000000000040", + "_rev": "_d05kfDG--A", + "clientId": "CRDN-g6s8btds:b86a2dd9-86f0-4e83-88c0-302b1098ca86", + "epoch_millis": 1646833075282, + "request": { + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:55 UTC" + }, + { + "_key": "00000000000000000041", + "_rev": "_d05kfRK---", + "clientId": "CRDN-cg5kjymo:2f98d7cc-a365-4fe3-befd-0dc2c4211fd6", + "epoch_millis": 1646833075507, + "request": { + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:55 UTC" + }, + { + "_key": "00000000000000000042", + "_rev": "_d05kfbK---", + "clientId": "", + "epoch_millis": 1646833075667, + "request": { + "/arango/Supervision/Health/PRMR-n92yizyp": { + "ShortName": "DBServer0002", + "Endpoint": "ssl://cluster-uexabr-dbserver-n92yizyp.cluster-uexabr-int.3dcd4eac-c549-41b6-bc8f-40e11983ebd2.svc:8529", + "Host": "ip-10-0-101-138.eu-central-1.compute.internal", + "SyncStatus": "STARTUP", + "Status": "GOOD", + "Version": "3.9.0", + "Engine": "rocksdb", + "Timestamp": "2022-03-09T13:37:55Z", + "SyncTime": "2022-03-09T13:37:53Z", + "LastAckedTime": "2022-03-09T13:37:54Z" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:55 UTC" + }, + { + "_key": "00000000000000000043", + "_rev": "_d05kfbS--A", + "clientId": "", + "epoch_millis": 1646833075669, + "request": { + "/arango/Supervision/Health/PRMR-a24adubi": { + "ShortName": "DBServer0001", + "Endpoint": "ssl://cluster-uexabr-dbserver-a24adubi.cluster-uexabr-int.3dcd4eac-c549-41b6-bc8f-40e11983ebd2.svc:8529", + "Host": "ip-10-0-101-183.eu-central-1.compute.internal", + "SyncStatus": "STARTUP", + "Status": "GOOD", + "Version": "3.9.0", + "Engine": "rocksdb", + "Timestamp": "2022-03-09T13:37:55Z", + "SyncTime": "2022-03-09T13:37:43Z", + "LastAckedTime": "2022-03-09T13:37:54Z" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:55 UTC" + }, + { + "_key": "00000000000000000044", + "_rev": "_d05kfbe--A", + "clientId": "", + "epoch_millis": 1646833075672, + "request": { + "/arango/Supervision/Health/CRDN-g6s8btds": { + "ShortName": "Coordinator0001", + "Endpoint": "ssl://cluster-uexabr-coordinator-g6s8btds.cluster-uexabr-int.3dcd4eac-c549-41b6-bc8f-40e11983ebd2.svc:8529", + "Host": "ip-10-0-100-174.eu-central-1.compute.internal", + "SyncStatus": "SERVING", + "Status": "GOOD", + "Version": "3.9.0", + "Engine": "rocksdb", + "Timestamp": "2022-03-09T13:37:55Z", + "SyncTime": "2022-03-09T13:37:55Z", + "LastAckedTime": "2022-03-09T13:37:55Z" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:55 UTC" + }, + { + "_key": "00000000000000000045", + "_rev": "_d05kfbq--A", + "clientId": "", + "epoch_millis": 1646833075675, + "request": { + "/arango/Supervision/Health/CRDN-cg5kjymo": { + "ShortName": "Coordinator0003", + "Endpoint": "ssl://cluster-uexabr-coordinator-cg5kjymo.cluster-uexabr-int.3dcd4eac-c549-41b6-bc8f-40e11983ebd2.svc:8529", + "Host": "ip-10-0-101-110.eu-central-1.compute.internal", + "SyncStatus": "SERVING", + "Status": "GOOD", + "Version": "3.9.0", + "Engine": "rocksdb", + "Timestamp": "2022-03-09T13:37:55Z", + "SyncTime": "2022-03-09T13:37:55Z", + "LastAckedTime": "2022-03-09T13:37:55Z" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:55 UTC" + }, + { + "_key": "00000000000000000046", + "_rev": "_d05kfb2--A", + "clientId": "", + "epoch_millis": 1646833075678, + "request": { + "/arango/Supervision/Health/CRDN-ssc2yc0x": { + "ShortName": "Coordinator0002", + "Endpoint": "ssl://cluster-uexabr-coordinator-ssc2yc0x.cluster-uexabr-int.3dcd4eac-c549-41b6-bc8f-40e11983ebd2.svc:8529", + "Host": "ip-10-0-101-183.eu-central-1.compute.internal", + "SyncStatus": "SERVING", + "Status": "GOOD", + "Version": "3.9.0", + "Engine": "rocksdb", + "Timestamp": "2022-03-09T13:37:55Z", + "SyncTime": "2022-03-09T13:37:55Z", + "LastAckedTime": "2022-03-09T13:37:55Z" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:55 UTC" + }, + { + "_key": "00000000000000000047", + "_rev": "_d05kfqe--A", + "clientId": "PRMR-n92yizyp:41469515-61d3-4561-b9b7-77390ff8224f", + "epoch_millis": 1646833075912, + "request": { + "arango/Current/Databases/_system/PRMR-n92yizyp": { + "op": "set", + "new": { + "error": false, + "errorNum": 0, + "errorMessage": "", + "id": "1", + "name": "_system" + } + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:55 UTC" + }, + { + "_key": "00000000000000000048", + "_rev": "_d05kfqq---", + "clientId": "PRMR-n92yizyp:8f72c03b-fb9f-4bae-af2c-1867cfcebb74", + "epoch_millis": 1646833075915, + "request": { + "arango/Sync/LatestID": { + "op": "set", + "new": 4010001 + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:55 UTC" + }, + { + "_key": "00000000000000000049", + "_rev": "_d05kfra--_", + "clientId": "PRMR-n92yizyp:431f3af4-f35b-4523-a1a4-2580f05e6b20", + "epoch_millis": 1646833075927, + "request": { + "arango/Current/Databases/_system/PRMR-n92yizyp": { + "op": "set", + "new": { + "error": false, + "errorNum": 0, + "errorMessage": "", + "id": "1", + "name": "_system" + } + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:55 UTC" + }, + { + "_key": "00000000000000000050", + "_rev": "_d05kfzm---", + "clientId": "PRMR-a24adubi:d2957b9f-89e2-4274-b19e-5e051e24ed9d", + "epoch_millis": 1646833076057, + "request": { + "arango/Current/Databases/_system/PRMR-a24adubi": { + "op": "set", + "new": { + "error": false, + "errorNum": 0, + "errorMessage": "", + "id": "1", + "name": "_system" + } + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000051", + "_rev": "_d05kfzy---", + "clientId": "PRMR-a24adubi:dda1ab94-65ee-48f1-9e0c-5cd06e8e7041", + "epoch_millis": 1646833076061, + "request": { + "arango/Sync/LatestID": { + "op": "set", + "new": 6010001 + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000052", + "_rev": "_d05kf0W--B", + "clientId": "PRMR-a24adubi:96cb5630-8653-49a8-bbb0-a6077a3ede15", + "epoch_millis": 1646833076070, + "request": { + "arango/Current/Databases/_system/PRMR-a24adubi": { + "op": "set", + "new": { + "error": false, + "errorNum": 0, + "errorMessage": "", + "id": "1", + "name": "_system" + } + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000053", + "_rev": "_d05kf1q--_", + "clientId": "PRMR-a24adubi:1a6fc62d-134b-4cd8-8d86-59ab06ed303d", + "epoch_millis": 1646833076091, + "request": { + "arango/Current/Collections/_system/10001/s10002": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010002", + "sparse": false, + "type": "primary", + "unique": true + } + ], + "servers": [ + "PRMR-a24adubi" + ], + "failoverCandidates": [ + "PRMR-a24adubi" + ] + } + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000054", + "_rev": "_d05kf4S--A", + "clientId": "PRMR-a24adubi:a3d8351c-68ec-4888-b036-77eb0360bc58", + "epoch_millis": 1646833076133, + "request": { + "arango/Current/Collections/_system/10001/s10002": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010002", + "sparse": false, + "type": "primary", + "unique": true + } + ], + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + } + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000055", + "_rev": "_d05kf42---", + "clientId": "CRDN-g6s8btds:3b0af2e2-cbf9-492f-adb7-1d7708bdfc36", + "epoch_millis": 1646833076142, + "request": { + "arango/Plan/Version": { + "op": "increment" + }, + "arango/Plan/Collections/_system/10001": { + "op": "set", + "new": { + "cacheEnabled": false, + "deleted": false, + "id": "10001", + "indexes": [ + { + "id": "0", + "type": "primary", + "name": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + } + ], + "internalValidatorType": 0, + "isDisjoint": false, + "isSmart": false, + "isSmartChild": false, + "isSystem": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional" + }, + "minReplicationFactor": 1, + "name": "_users", + "numberOfShards": 1, + "replicationFactor": 2, + "schema": null, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "shards": { + "s10002": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + }, + "status": 3, + "statusString": "loaded", + "syncByRevision": true, + "type": 2, + "usesRevisionsAsDocumentIds": true, + "waitForSync": false, + "writeConcern": 1 + } + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000056", + "_rev": "_d05kf5a---", + "clientId": "CRDN-g6s8btds:5690337c-9e5e-4a3a-bf0d-14521ffc5c2c", + "epoch_millis": 1646833076151, + "request": { + "arango/Plan/Version": { + "op": "increment" + }, + "arango/Plan/Collections/_system/10003": { + "op": "set", + "new": { + "cacheEnabled": false, + "deleted": false, + "distributeShardsLike": "10001", + "id": "10003", + "indexes": [ + { + "id": "0", + "type": "primary", + "name": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + } + ], + "internalValidatorType": 0, + "isDisjoint": false, + "isSmart": false, + "isSmartChild": false, + "isSystem": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional" + }, + "minReplicationFactor": 1, + "name": "_graphs", + "numberOfShards": 1, + "replicationFactor": 2, + "schema": null, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "shards": { + "s10014": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + }, + "status": 3, + "statusString": "loaded", + "syncByRevision": true, + "type": 2, + "usesRevisionsAsDocumentIds": true, + "waitForSync": false, + "writeConcern": 1, + "isBuilding": true, + "coordinatorRebootId": 1, + "coordinator": "CRDN-g6s8btds" + } + }, + "arango/Plan/Collections/_system/10004": { + "op": "set", + "new": { + "cacheEnabled": false, + "deleted": false, + "distributeShardsLike": "10001", + "id": "10004", + "indexes": [ + { + "id": "0", + "type": "primary", + "name": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + } + ], + "internalValidatorType": 0, + "isDisjoint": false, + "isSmart": false, + "isSmartChild": false, + "isSystem": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional" + }, + "minReplicationFactor": 1, + "name": "_statistics", + "numberOfShards": 1, + "replicationFactor": 2, + "schema": null, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "shards": { + "s10015": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + }, + "status": 3, + "statusString": "loaded", + "syncByRevision": true, + "type": 2, + "usesRevisionsAsDocumentIds": true, + "waitForSync": false, + "writeConcern": 1, + "isBuilding": true, + "coordinatorRebootId": 1, + "coordinator": "CRDN-g6s8btds" + } + }, + "arango/Plan/Collections/_system/10005": { + "op": "set", + "new": { + "cacheEnabled": false, + "deleted": false, + "distributeShardsLike": "10001", + "id": "10005", + "indexes": [ + { + "id": "0", + "type": "primary", + "name": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + } + ], + "internalValidatorType": 0, + "isDisjoint": false, + "isSmart": false, + "isSmartChild": false, + "isSystem": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional" + }, + "minReplicationFactor": 1, + "name": "_statistics15", + "numberOfShards": 1, + "replicationFactor": 2, + "schema": null, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "shards": { + "s10016": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + }, + "status": 3, + "statusString": "loaded", + "syncByRevision": true, + "type": 2, + "usesRevisionsAsDocumentIds": true, + "waitForSync": false, + "writeConcern": 1, + "isBuilding": true, + "coordinatorRebootId": 1, + "coordinator": "CRDN-g6s8btds" + } + }, + "arango/Plan/Collections/_system/10006": { + "op": "set", + "new": { + "cacheEnabled": false, + "deleted": false, + "distributeShardsLike": "10001", + "id": "10006", + "indexes": [ + { + "id": "0", + "type": "primary", + "name": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + } + ], + "internalValidatorType": 0, + "isDisjoint": false, + "isSmart": false, + "isSmartChild": false, + "isSystem": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional" + }, + "minReplicationFactor": 1, + "name": "_statisticsRaw", + "numberOfShards": 1, + "replicationFactor": 2, + "schema": null, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "shards": { + "s10017": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + }, + "status": 3, + "statusString": "loaded", + "syncByRevision": true, + "type": 2, + "usesRevisionsAsDocumentIds": true, + "waitForSync": false, + "writeConcern": 1, + "isBuilding": true, + "coordinatorRebootId": 1, + "coordinator": "CRDN-g6s8btds" + } + }, + "arango/Plan/Collections/_system/10007": { + "op": "set", + "new": { + "cacheEnabled": false, + "deleted": false, + "distributeShardsLike": "10001", + "id": "10007", + "indexes": [ + { + "id": "0", + "type": "primary", + "name": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + } + ], + "internalValidatorType": 0, + "isDisjoint": false, + "isSmart": false, + "isSmartChild": false, + "isSystem": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional" + }, + "minReplicationFactor": 1, + "name": "_analyzers", + "numberOfShards": 1, + "replicationFactor": 2, + "schema": null, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "shards": { + "s10018": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + }, + "status": 3, + "statusString": "loaded", + "syncByRevision": true, + "type": 2, + "usesRevisionsAsDocumentIds": true, + "waitForSync": false, + "writeConcern": 1, + "isBuilding": true, + "coordinatorRebootId": 1, + "coordinator": "CRDN-g6s8btds" + } + }, + "arango/Plan/Collections/_system/10008": { + "op": "set", + "new": { + "cacheEnabled": false, + "deleted": false, + "distributeShardsLike": "10001", + "id": "10008", + "indexes": [ + { + "id": "0", + "type": "primary", + "name": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + } + ], + "internalValidatorType": 0, + "isDisjoint": false, + "isSmart": false, + "isSmartChild": false, + "isSystem": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional" + }, + "minReplicationFactor": 1, + "name": "_aqlfunctions", + "numberOfShards": 1, + "replicationFactor": 2, + "schema": null, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "shards": { + "s10019": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + }, + "status": 3, + "statusString": "loaded", + "syncByRevision": true, + "type": 2, + "usesRevisionsAsDocumentIds": true, + "waitForSync": false, + "writeConcern": 1, + "isBuilding": true, + "coordinatorRebootId": 1, + "coordinator": "CRDN-g6s8btds" + } + }, + "arango/Plan/Collections/_system/10009": { + "op": "set", + "new": { + "cacheEnabled": false, + "deleted": false, + "distributeShardsLike": "10001", + "id": "10009", + "indexes": [ + { + "id": "0", + "type": "primary", + "name": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + } + ], + "internalValidatorType": 0, + "isDisjoint": false, + "isSmart": false, + "isSmartChild": false, + "isSystem": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional" + }, + "minReplicationFactor": 1, + "name": "_queues", + "numberOfShards": 1, + "replicationFactor": 2, + "schema": null, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "shards": { + "s10020": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + }, + "status": 3, + "statusString": "loaded", + "syncByRevision": true, + "type": 2, + "usesRevisionsAsDocumentIds": true, + "waitForSync": false, + "writeConcern": 1, + "isBuilding": true, + "coordinatorRebootId": 1, + "coordinator": "CRDN-g6s8btds" + } + }, + "arango/Plan/Collections/_system/10010": { + "op": "set", + "new": { + "cacheEnabled": false, + "deleted": false, + "distributeShardsLike": "10001", + "id": "10010", + "indexes": [ + { + "id": "0", + "type": "primary", + "name": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + } + ], + "internalValidatorType": 0, + "isDisjoint": false, + "isSmart": false, + "isSmartChild": false, + "isSystem": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional" + }, + "minReplicationFactor": 1, + "name": "_jobs", + "numberOfShards": 1, + "replicationFactor": 2, + "schema": null, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "shards": { + "s10021": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + }, + "status": 3, + "statusString": "loaded", + "syncByRevision": true, + "type": 2, + "usesRevisionsAsDocumentIds": true, + "waitForSync": false, + "writeConcern": 1, + "isBuilding": true, + "coordinatorRebootId": 1, + "coordinator": "CRDN-g6s8btds" + } + }, + "arango/Plan/Collections/_system/10011": { + "op": "set", + "new": { + "cacheEnabled": false, + "deleted": false, + "distributeShardsLike": "10001", + "id": "10011", + "indexes": [ + { + "id": "0", + "type": "primary", + "name": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + } + ], + "internalValidatorType": 0, + "isDisjoint": false, + "isSmart": false, + "isSmartChild": false, + "isSystem": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional" + }, + "minReplicationFactor": 1, + "name": "_apps", + "numberOfShards": 1, + "replicationFactor": 2, + "schema": null, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "shards": { + "s10022": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + }, + "status": 3, + "statusString": "loaded", + "syncByRevision": true, + "type": 2, + "usesRevisionsAsDocumentIds": true, + "waitForSync": false, + "writeConcern": 1, + "isBuilding": true, + "coordinatorRebootId": 1, + "coordinator": "CRDN-g6s8btds" + } + }, + "arango/Plan/Collections/_system/10012": { + "op": "set", + "new": { + "cacheEnabled": false, + "deleted": false, + "distributeShardsLike": "10001", + "id": "10012", + "indexes": [ + { + "id": "0", + "type": "primary", + "name": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + } + ], + "internalValidatorType": 0, + "isDisjoint": false, + "isSmart": false, + "isSmartChild": false, + "isSystem": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional" + }, + "minReplicationFactor": 1, + "name": "_appbundles", + "numberOfShards": 1, + "replicationFactor": 2, + "schema": null, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "shards": { + "s10023": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + }, + "status": 3, + "statusString": "loaded", + "syncByRevision": true, + "type": 2, + "usesRevisionsAsDocumentIds": true, + "waitForSync": false, + "writeConcern": 1, + "isBuilding": true, + "coordinatorRebootId": 1, + "coordinator": "CRDN-g6s8btds" + } + }, + "arango/Plan/Collections/_system/10013": { + "op": "set", + "new": { + "cacheEnabled": false, + "deleted": false, + "distributeShardsLike": "10001", + "id": "10013", + "indexes": [ + { + "id": "0", + "type": "primary", + "name": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + } + ], + "internalValidatorType": 0, + "isDisjoint": false, + "isSmart": false, + "isSmartChild": false, + "isSystem": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional" + }, + "minReplicationFactor": 1, + "name": "_frontend", + "numberOfShards": 1, + "replicationFactor": 2, + "schema": null, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "shards": { + "s10024": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + }, + "status": 3, + "statusString": "loaded", + "syncByRevision": true, + "type": 2, + "usesRevisionsAsDocumentIds": true, + "waitForSync": false, + "writeConcern": 1, + "isBuilding": true, + "coordinatorRebootId": 1, + "coordinator": "CRDN-g6s8btds" + } + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000057", + "_rev": "_d05kf6S---", + "clientId": "PRMR-a24adubi:d763235f-e6d8-4228-afcc-d8bedfac3cdf", + "epoch_millis": 1646833076165, + "request": { + "arango/Current/Collections/_system/10003/s10014": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010026", + "sparse": false, + "type": "primary", + "unique": true + } + ], + "servers": [ + "PRMR-a24adubi" + ], + "failoverCandidates": [ + "PRMR-a24adubi" + ] + } + }, + "arango/Current/Collections/_system/10004/s10015": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010030", + "sparse": false, + "type": "primary", + "unique": true + } + ], + "servers": [ + "PRMR-a24adubi" + ], + "failoverCandidates": [ + "PRMR-a24adubi" + ] + } + }, + "arango/Current/Collections/_system/10005/s10016": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010036", + "sparse": false, + "type": "primary", + "unique": true + } + ], + "servers": [ + "PRMR-a24adubi" + ], + "failoverCandidates": [ + "PRMR-a24adubi" + ] + } + }, + "arango/Current/Collections/_system/10006/s10017": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010028", + "sparse": false, + "type": "primary", + "unique": true + } + ], + "servers": [ + "PRMR-a24adubi" + ], + "failoverCandidates": [ + "PRMR-a24adubi" + ] + } + }, + "arango/Current/Collections/_system/10007/s10018": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010023", + "sparse": false, + "type": "primary", + "unique": true + } + ], + "servers": [ + "PRMR-a24adubi" + ], + "failoverCandidates": [ + "PRMR-a24adubi" + ] + } + }, + "arango/Current/Collections/_system/10008/s10019": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010024", + "sparse": false, + "type": "primary", + "unique": true + } + ], + "servers": [ + "PRMR-a24adubi" + ], + "failoverCandidates": [ + "PRMR-a24adubi" + ] + } + }, + "arango/Current/Collections/_system/10009/s10020": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010038", + "sparse": false, + "type": "primary", + "unique": true + } + ], + "servers": [ + "PRMR-a24adubi" + ], + "failoverCandidates": [ + "PRMR-a24adubi" + ] + } + }, + "arango/Current/Collections/_system/10010/s10021": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010032", + "sparse": false, + "type": "primary", + "unique": true + } + ], + "servers": [ + "PRMR-a24adubi" + ], + "failoverCandidates": [ + "PRMR-a24adubi" + ] + } + }, + "arango/Current/Collections/_system/10011/s10022": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010042", + "sparse": false, + "type": "primary", + "unique": true + } + ], + "servers": [ + "PRMR-a24adubi" + ], + "failoverCandidates": [ + "PRMR-a24adubi" + ] + } + }, + "arango/Current/Collections/_system/10012/s10023": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010034", + "sparse": false, + "type": "primary", + "unique": true + } + ], + "servers": [ + "PRMR-a24adubi" + ], + "failoverCandidates": [ + "PRMR-a24adubi" + ] + } + }, + "arango/Current/Collections/_system/10013/s10024": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010040", + "sparse": false, + "type": "primary", + "unique": true + } + ], + "servers": [ + "PRMR-a24adubi" + ], + "failoverCandidates": [ + "PRMR-a24adubi" + ] + } + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000058", + "_rev": "_d05kf7u---", + "clientId": "PRMR-a24adubi:2de6e398-b67a-4db5-9ca3-e36bb94b31a2", + "epoch_millis": 1646833076188, + "request": { + "arango/Current/Collections/_system/10003/s10014": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010026", + "sparse": false, + "type": "primary", + "unique": true + } + ], + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + } + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000059", + "_rev": "_d05kf8C--A", + "clientId": "CRDN-ssc2yc0x:a7c93f41-530c-4c05-b830-1efb65abe3d0", + "epoch_millis": 1646833076193, + "request": { + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000060", + "_rev": "_d05kf8S--B", + "clientId": "PRMR-a24adubi:d1e8c789-7ebd-420b-bb2a-e7f2c731e5a2", + "epoch_millis": 1646833076197, + "request": { + "arango/Current/Collections/_system/10004/s10015": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010030", + "sparse": false, + "type": "primary", + "unique": true + } + ], + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + } + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000061", + "_rev": "_d05kf8q--A", + "clientId": "PRMR-a24adubi:7206807a-500b-4f4e-9883-2aae9c827030", + "epoch_millis": 1646833076203, + "request": { + "arango/Current/Collections/_system/10004/s10015": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010030", + "sparse": false, + "type": "primary", + "unique": true + } + ], + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + } + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000062", + "_rev": "_d05kf9O--_", + "clientId": "PRMR-a24adubi:89e5153b-3773-4971-b553-0f8762fe0498", + "epoch_millis": 1646833076212, + "request": { + "arango/Current/Collections/_system/10005/s10016": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010036", + "sparse": false, + "type": "primary", + "unique": true + } + ], + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + } + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000063", + "_rev": "_d05kf9u--C", + "clientId": "PRMR-a24adubi:a0064372-f39f-489e-99f7-2aaf1e6d3cc0", + "epoch_millis": 1646833076220, + "request": { + "arango/Current/Collections/_system/10006/s10017": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010028", + "sparse": false, + "type": "primary", + "unique": true + } + ], + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + } + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000064", + "_rev": "_d05kf92--A", + "clientId": "PRMR-a24adubi:f0d73d81-65e9-48c2-9988-0cab85201bcb", + "epoch_millis": 1646833076222, + "request": { + "arango/Current/Collections/_system/10006/s10017": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010028", + "sparse": false, + "type": "primary", + "unique": true + } + ], + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + } + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000065", + "_rev": "_d05kg_2--_", + "clientId": "PRMR-a24adubi:c8df640f-5a3a-492a-866b-bbf8c8a3b4b0", + "epoch_millis": 1646833076254, + "request": { + "arango/Current/Collections/_system/10007/s10018": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010023", + "sparse": false, + "type": "primary", + "unique": true + } + ], + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + } + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000066", + "_rev": "_d05kgAu--_", + "clientId": "PRMR-a24adubi:21c76458-1d1a-4a0c-b64d-59136808faa1", + "epoch_millis": 1646833076268, + "request": { + "arango/Current/Collections/_system/10005/s10016": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010036", + "sparse": false, + "type": "primary", + "unique": true + } + ], + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + } + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000067", + "_rev": "_d05kgA6--B", + "clientId": "PRMR-a24adubi:68f3ba94-3351-4530-92c5-ae27373d2ee6", + "epoch_millis": 1646833076271, + "request": { + "arango/Current/Collections/_system/10008/s10019": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010024", + "sparse": false, + "type": "primary", + "unique": true + } + ], + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + } + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000068", + "_rev": "_d05kgBS--_", + "clientId": "PRMR-a24adubi:af0c6ec6-512d-4d46-8cbe-b535e5b1ec13", + "epoch_millis": 1646833076277, + "request": { + "arango/Current/Collections/_system/10008/s10019": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010024", + "sparse": false, + "type": "primary", + "unique": true + } + ], + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + } + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000069", + "_rev": "_d05kgBm--C", + "clientId": "CRDN-g6s8btds:46144953-f11b-4875-a6ea-19461b19d5fc", + "epoch_millis": 1646833076282, + "request": { + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000070", + "_rev": "_d05kgB6--D", + "clientId": "PRMR-a24adubi:03c435ac-edda-41a4-bf21-2e799344b27d", + "epoch_millis": 1646833076287, + "request": { + "arango/Current/Collections/_system/10009/s10020": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010038", + "sparse": false, + "type": "primary", + "unique": true + } + ], + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + } + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000071", + "_rev": "_d05kgCO---", + "clientId": "PRMR-a24adubi:06da24a8-63c0-430a-9d99-d254d14cf5dd", + "epoch_millis": 1646833076292, + "request": { + "arango/Current/Collections/_system/10010/s10021": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010032", + "sparse": false, + "type": "primary", + "unique": true + } + ], + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + } + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000072", + "_rev": "_d05kgCm--A", + "clientId": "PRMR-a24adubi:6c68202e-365f-4856-b9a6-97d24d2e58d5", + "epoch_millis": 1646833076298, + "request": { + "arango/Current/Collections/_system/10009/s10020": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010038", + "sparse": false, + "type": "primary", + "unique": true + } + ], + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + } + }, + "arango/Current/Collections/_system/10010/s10021": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010032", + "sparse": false, + "type": "primary", + "unique": true + } + ], + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + } + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000073", + "_rev": "_d05kgEa---", + "clientId": "PRMR-a24adubi:0947282c-f775-4e53-b091-0f4f45e31fc7", + "epoch_millis": 1646833076327, + "request": { + "arango/Current/Collections/_system/10011/s10022": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010042", + "sparse": false, + "type": "primary", + "unique": true + } + ], + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + } + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000074", + "_rev": "_d05kgFi---", + "clientId": "PRMR-a24adubi:54afa475-78c4-4514-a6e6-7d7f53abe9b3", + "epoch_millis": 1646833076345, + "request": { + "arango/Current/Collections/_system/10009/s10020": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010038", + "sparse": false, + "type": "primary", + "unique": true + } + ], + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + } + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000075", + "_rev": "_d05kgG---A", + "clientId": "PRMR-a24adubi:c9cca904-0c00-49e3-8079-f2eb03698c21", + "epoch_millis": 1646833076352, + "request": { + "arango/Current/Collections/_system/10012/s10023": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010034", + "sparse": false, + "type": "primary", + "unique": true + } + ], + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + } + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000076", + "_rev": "_d05kgGK--A", + "clientId": "PRMR-a24adubi:b28ee24f-592b-4905-ae42-04d88e0a6bef", + "epoch_millis": 1646833076355, + "request": { + "arango/Current/Collections/_system/10012/s10023": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010034", + "sparse": false, + "type": "primary", + "unique": true + } + ], + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + } + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000077", + "_rev": "_d05kgHG--_", + "clientId": "PRMR-a24adubi:86eb2963-c116-48af-9422-92025d83b380", + "epoch_millis": 1646833076370, + "request": { + "arango/Current/Collections/_system/10013/s10024": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010040", + "sparse": false, + "type": "primary", + "unique": true + } + ], + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + } + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000078", + "_rev": "_d05kgH2---", + "clientId": "CRDN-g6s8btds:8f845e7e-1bf2-486e-be7d-7bf68442f160", + "epoch_millis": 1646833076382, + "request": { + "arango/Plan/Version": { + "op": "increment" + }, + "arango/Plan/Collections/_system/10003": { + "op": "set", + "new": { + "cacheEnabled": false, + "deleted": false, + "distributeShardsLike": "10001", + "id": "10003", + "indexes": [ + { + "id": "0", + "type": "primary", + "name": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + } + ], + "internalValidatorType": 0, + "isDisjoint": false, + "isSmart": false, + "isSmartChild": false, + "isSystem": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional" + }, + "minReplicationFactor": 1, + "name": "_graphs", + "numberOfShards": 1, + "replicationFactor": 2, + "schema": null, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "shards": { + "s10014": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + }, + "status": 3, + "statusString": "loaded", + "syncByRevision": true, + "type": 2, + "usesRevisionsAsDocumentIds": true, + "waitForSync": false, + "writeConcern": 1 + } + }, + "arango/Plan/Collections/_system/10004": { + "op": "set", + "new": { + "cacheEnabled": false, + "deleted": false, + "distributeShardsLike": "10001", + "id": "10004", + "indexes": [ + { + "id": "0", + "type": "primary", + "name": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + } + ], + "internalValidatorType": 0, + "isDisjoint": false, + "isSmart": false, + "isSmartChild": false, + "isSystem": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional" + }, + "minReplicationFactor": 1, + "name": "_statistics", + "numberOfShards": 1, + "replicationFactor": 2, + "schema": null, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "shards": { + "s10015": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + }, + "status": 3, + "statusString": "loaded", + "syncByRevision": true, + "type": 2, + "usesRevisionsAsDocumentIds": true, + "waitForSync": false, + "writeConcern": 1 + } + }, + "arango/Plan/Collections/_system/10005": { + "op": "set", + "new": { + "cacheEnabled": false, + "deleted": false, + "distributeShardsLike": "10001", + "id": "10005", + "indexes": [ + { + "id": "0", + "type": "primary", + "name": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + } + ], + "internalValidatorType": 0, + "isDisjoint": false, + "isSmart": false, + "isSmartChild": false, + "isSystem": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional" + }, + "minReplicationFactor": 1, + "name": "_statistics15", + "numberOfShards": 1, + "replicationFactor": 2, + "schema": null, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "shards": { + "s10016": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + }, + "status": 3, + "statusString": "loaded", + "syncByRevision": true, + "type": 2, + "usesRevisionsAsDocumentIds": true, + "waitForSync": false, + "writeConcern": 1 + } + }, + "arango/Plan/Collections/_system/10006": { + "op": "set", + "new": { + "cacheEnabled": false, + "deleted": false, + "distributeShardsLike": "10001", + "id": "10006", + "indexes": [ + { + "id": "0", + "type": "primary", + "name": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + } + ], + "internalValidatorType": 0, + "isDisjoint": false, + "isSmart": false, + "isSmartChild": false, + "isSystem": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional" + }, + "minReplicationFactor": 1, + "name": "_statisticsRaw", + "numberOfShards": 1, + "replicationFactor": 2, + "schema": null, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "shards": { + "s10017": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + }, + "status": 3, + "statusString": "loaded", + "syncByRevision": true, + "type": 2, + "usesRevisionsAsDocumentIds": true, + "waitForSync": false, + "writeConcern": 1 + } + }, + "arango/Plan/Collections/_system/10007": { + "op": "set", + "new": { + "cacheEnabled": false, + "deleted": false, + "distributeShardsLike": "10001", + "id": "10007", + "indexes": [ + { + "id": "0", + "type": "primary", + "name": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + } + ], + "internalValidatorType": 0, + "isDisjoint": false, + "isSmart": false, + "isSmartChild": false, + "isSystem": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional" + }, + "minReplicationFactor": 1, + "name": "_analyzers", + "numberOfShards": 1, + "replicationFactor": 2, + "schema": null, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "shards": { + "s10018": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + }, + "status": 3, + "statusString": "loaded", + "syncByRevision": true, + "type": 2, + "usesRevisionsAsDocumentIds": true, + "waitForSync": false, + "writeConcern": 1 + } + }, + "arango/Plan/Collections/_system/10008": { + "op": "set", + "new": { + "cacheEnabled": false, + "deleted": false, + "distributeShardsLike": "10001", + "id": "10008", + "indexes": [ + { + "id": "0", + "type": "primary", + "name": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + } + ], + "internalValidatorType": 0, + "isDisjoint": false, + "isSmart": false, + "isSmartChild": false, + "isSystem": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional" + }, + "minReplicationFactor": 1, + "name": "_aqlfunctions", + "numberOfShards": 1, + "replicationFactor": 2, + "schema": null, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "shards": { + "s10019": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + }, + "status": 3, + "statusString": "loaded", + "syncByRevision": true, + "type": 2, + "usesRevisionsAsDocumentIds": true, + "waitForSync": false, + "writeConcern": 1 + } + }, + "arango/Plan/Collections/_system/10009": { + "op": "set", + "new": { + "cacheEnabled": false, + "deleted": false, + "distributeShardsLike": "10001", + "id": "10009", + "indexes": [ + { + "id": "0", + "type": "primary", + "name": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + } + ], + "internalValidatorType": 0, + "isDisjoint": false, + "isSmart": false, + "isSmartChild": false, + "isSystem": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional" + }, + "minReplicationFactor": 1, + "name": "_queues", + "numberOfShards": 1, + "replicationFactor": 2, + "schema": null, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "shards": { + "s10020": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + }, + "status": 3, + "statusString": "loaded", + "syncByRevision": true, + "type": 2, + "usesRevisionsAsDocumentIds": true, + "waitForSync": false, + "writeConcern": 1 + } + }, + "arango/Plan/Collections/_system/10010": { + "op": "set", + "new": { + "cacheEnabled": false, + "deleted": false, + "distributeShardsLike": "10001", + "id": "10010", + "indexes": [ + { + "id": "0", + "type": "primary", + "name": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + } + ], + "internalValidatorType": 0, + "isDisjoint": false, + "isSmart": false, + "isSmartChild": false, + "isSystem": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional" + }, + "minReplicationFactor": 1, + "name": "_jobs", + "numberOfShards": 1, + "replicationFactor": 2, + "schema": null, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "shards": { + "s10021": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + }, + "status": 3, + "statusString": "loaded", + "syncByRevision": true, + "type": 2, + "usesRevisionsAsDocumentIds": true, + "waitForSync": false, + "writeConcern": 1 + } + }, + "arango/Plan/Collections/_system/10011": { + "op": "set", + "new": { + "cacheEnabled": false, + "deleted": false, + "distributeShardsLike": "10001", + "id": "10011", + "indexes": [ + { + "id": "0", + "type": "primary", + "name": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + } + ], + "internalValidatorType": 0, + "isDisjoint": false, + "isSmart": false, + "isSmartChild": false, + "isSystem": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional" + }, + "minReplicationFactor": 1, + "name": "_apps", + "numberOfShards": 1, + "replicationFactor": 2, + "schema": null, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "shards": { + "s10022": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + }, + "status": 3, + "statusString": "loaded", + "syncByRevision": true, + "type": 2, + "usesRevisionsAsDocumentIds": true, + "waitForSync": false, + "writeConcern": 1 + } + }, + "arango/Plan/Collections/_system/10012": { + "op": "set", + "new": { + "cacheEnabled": false, + "deleted": false, + "distributeShardsLike": "10001", + "id": "10012", + "indexes": [ + { + "id": "0", + "type": "primary", + "name": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + } + ], + "internalValidatorType": 0, + "isDisjoint": false, + "isSmart": false, + "isSmartChild": false, + "isSystem": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional" + }, + "minReplicationFactor": 1, + "name": "_appbundles", + "numberOfShards": 1, + "replicationFactor": 2, + "schema": null, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "shards": { + "s10023": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + }, + "status": 3, + "statusString": "loaded", + "syncByRevision": true, + "type": 2, + "usesRevisionsAsDocumentIds": true, + "waitForSync": false, + "writeConcern": 1 + } + }, + "arango/Plan/Collections/_system/10013": { + "op": "set", + "new": { + "cacheEnabled": false, + "deleted": false, + "distributeShardsLike": "10001", + "id": "10013", + "indexes": [ + { + "id": "0", + "type": "primary", + "name": "primary", + "fields": [ + "_key" + ], + "unique": true, + "sparse": false + } + ], + "internalValidatorType": 0, + "isDisjoint": false, + "isSmart": false, + "isSmartChild": false, + "isSystem": true, + "keyOptions": { + "allowUserKeys": true, + "type": "traditional" + }, + "minReplicationFactor": 1, + "name": "_frontend", + "numberOfShards": 1, + "replicationFactor": 2, + "schema": null, + "shardKeys": [ + "_key" + ], + "shardingStrategy": "hash", + "shards": { + "s10024": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + }, + "status": 3, + "statusString": "loaded", + "syncByRevision": true, + "type": 2, + "usesRevisionsAsDocumentIds": true, + "waitForSync": false, + "writeConcern": 1 + } + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000079", + "_rev": "_d05kgIy--A", + "clientId": "CRDN-g6s8btds:baaf4d26-e67a-4f6f-acf8-eb6c9ac80203", + "epoch_millis": 1646833076397, + "request": { + "arango/Plan/Collections/_system/10001/indexes": { + "op": "push", + "new": { + "deduplicate": true, + "estimates": false, + "fields": [ + "user" + ], + "inBackground": false, + "name": "idx_1726829639915012096", + "sparse": true, + "type": "hash", + "unique": true, + "isBuilding": true, + "id": "10025" + } + }, + "arango/Plan/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000080", + "_rev": "_d05kgJa--A", + "clientId": "PRMR-a24adubi:08c94d1d-91dd-489b-8b55-25b5c52698b3", + "epoch_millis": 1646833076407, + "request": { + "arango/Current/Collections/_system/10001/s10002": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010002", + "sparse": false, + "type": "primary", + "unique": true + }, + { + "deduplicate": true, + "estimates": true, + "fields": [ + "user" + ], + "id": "10025", + "name": "idx_1726829639915012096", + "objectId": "4010124", + "sparse": true, + "type": "hash", + "unique": true + } + ], + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + } + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000081", + "_rev": "_d05kgKK--E", + "clientId": "CRDN-g6s8btds:cd87d8b8-fb6a-4a66-b5d4-6514e9e5eed2", + "epoch_millis": 1646833076419, + "request": { + "arango/Plan/Collections/_system/10001/indexes": { + "op": "replace", + "new": { + "deduplicate": true, + "estimates": false, + "fields": [ + "user" + ], + "id": "10025", + "inBackground": false, + "name": "idx_1726829639915012096", + "sparse": true, + "type": "hash", + "unique": true + }, + "val": { + "deduplicate": true, + "estimates": false, + "fields": [ + "user" + ], + "inBackground": false, + "name": "idx_1726829639915012096", + "sparse": true, + "type": "hash", + "unique": true, + "isBuilding": true, + "id": "10025" + } + }, + "arango/Plan/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000082", + "_rev": "_d05kgKW---", + "clientId": "PRMR-a24adubi:5eaa4da0-961b-4161-8797-6a29a22c1160", + "epoch_millis": 1646833076422, + "request": { + "arango/Current/Collections/_system/10001/s10002": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010002", + "sparse": false, + "type": "primary", + "unique": true + }, + { + "deduplicate": true, + "estimates": true, + "fields": [ + "user" + ], + "id": "10025", + "name": "idx_1726829639915012096", + "objectId": "4010124", + "sparse": true, + "type": "hash", + "unique": true + } + ], + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + } + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000083", + "_rev": "_d05kgK6--A", + "clientId": "CRDN-g6s8btds:3848cadc-7988-481c-b8ad-90630211cc7f", + "epoch_millis": 1646833076431, + "request": { + "arango/Plan/Collections/_system/10004/indexes": { + "op": "push", + "new": { + "deduplicate": true, + "estimates": false, + "fields": [ + "time" + ], + "inBackground": false, + "name": "idx_1726829639950663681", + "sparse": false, + "type": "skiplist", + "unique": false, + "isBuilding": true, + "id": "10026" + } + }, + "arango/Plan/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000084", + "_rev": "_d05kgLe--A", + "clientId": "PRMR-a24adubi:74f84a49-1807-4ea0-aa99-e31a19eeed38", + "epoch_millis": 1646833076440, + "request": { + "arango/Current/Collections/_system/10004/s10015": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010030", + "sparse": false, + "type": "primary", + "unique": true + }, + { + "deduplicate": true, + "estimates": false, + "fields": [ + "time" + ], + "id": "10026", + "name": "idx_1726829639950663681", + "objectId": "4010134", + "sparse": false, + "type": "skiplist", + "unique": false + } + ], + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + } + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000085", + "_rev": "_d05kgM---A", + "clientId": "CRDN-g6s8btds:11fea306-25b0-4d0c-a460-4ec9dfaf6332", + "epoch_millis": 1646833076448, + "request": { + "arango/Plan/Collections/_system/10004/indexes": { + "op": "replace", + "new": { + "deduplicate": true, + "estimates": false, + "fields": [ + "time" + ], + "id": "10026", + "inBackground": false, + "name": "idx_1726829639950663681", + "sparse": false, + "type": "skiplist", + "unique": false + }, + "val": { + "deduplicate": true, + "estimates": false, + "fields": [ + "time" + ], + "inBackground": false, + "name": "idx_1726829639950663681", + "sparse": false, + "type": "skiplist", + "unique": false, + "isBuilding": true, + "id": "10026" + } + }, + "arango/Plan/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000086", + "_rev": "_d05kgMG--A", + "clientId": "PRMR-a24adubi:0782f771-b229-4285-a87b-5b2096fb9127", + "epoch_millis": 1646833076450, + "request": { + "arango/Current/Collections/_system/10004/s10015": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010030", + "sparse": false, + "type": "primary", + "unique": true + }, + { + "deduplicate": true, + "estimates": false, + "fields": [ + "time" + ], + "id": "10026", + "name": "idx_1726829639950663681", + "objectId": "4010134", + "sparse": false, + "type": "skiplist", + "unique": false + } + ], + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + } + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000087", + "_rev": "_d05kgMe---", + "clientId": "CRDN-g6s8btds:d379e56f-b918-4963-8a68-cbb63e3555c0", + "epoch_millis": 1646833076456, + "request": { + "arango/Plan/Collections/_system/10005/indexes": { + "op": "push", + "new": { + "deduplicate": true, + "estimates": false, + "fields": [ + "time" + ], + "inBackground": false, + "name": "idx_1726829639976878081", + "sparse": false, + "type": "skiplist", + "unique": false, + "isBuilding": true, + "id": "10027" + } + }, + "arango/Plan/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000088", + "_rev": "_d05kgN---_", + "clientId": "PRMR-a24adubi:42ba892c-a25f-447b-b870-47e174c03c00", + "epoch_millis": 1646833076464, + "request": { + "arango/Current/Collections/_system/10005/s10016": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010036", + "sparse": false, + "type": "primary", + "unique": true + }, + { + "deduplicate": true, + "estimates": false, + "fields": [ + "time" + ], + "id": "10027", + "name": "idx_1726829639976878081", + "objectId": "4010144", + "sparse": false, + "type": "skiplist", + "unique": false + } + ], + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + } + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000089", + "_rev": "_d05kgNe--B", + "clientId": "CRDN-g6s8btds:2f285d06-c30f-4e66-977b-e76ee63abc4c", + "epoch_millis": 1646833076472, + "request": { + "arango/Plan/Collections/_system/10005/indexes": { + "op": "replace", + "new": { + "deduplicate": true, + "estimates": false, + "fields": [ + "time" + ], + "id": "10027", + "inBackground": false, + "name": "idx_1726829639976878081", + "sparse": false, + "type": "skiplist", + "unique": false + }, + "val": { + "deduplicate": true, + "estimates": false, + "fields": [ + "time" + ], + "inBackground": false, + "name": "idx_1726829639976878081", + "sparse": false, + "type": "skiplist", + "unique": false, + "isBuilding": true, + "id": "10027" + } + }, + "arango/Plan/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000090", + "_rev": "_d05kgNu--A", + "clientId": "PRMR-a24adubi:5b9e1622-0acd-4afd-b34b-b988988e0069", + "epoch_millis": 1646833076476, + "request": { + "arango/Current/Collections/_system/10005/s10016": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010036", + "sparse": false, + "type": "primary", + "unique": true + }, + { + "deduplicate": true, + "estimates": false, + "fields": [ + "time" + ], + "id": "10027", + "name": "idx_1726829639976878081", + "objectId": "4010144", + "sparse": false, + "type": "skiplist", + "unique": false + } + ], + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + } + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000091", + "_rev": "_d05kgOO--_", + "clientId": "CRDN-g6s8btds:27e4b41d-10d9-434b-9dc9-e29903b7fe0f", + "epoch_millis": 1646833076484, + "request": { + "arango/Plan/Collections/_system/10006/indexes": { + "op": "push", + "new": { + "deduplicate": true, + "estimates": false, + "fields": [ + "time" + ], + "inBackground": false, + "name": "idx_1726829640006238208", + "sparse": false, + "type": "skiplist", + "unique": false, + "isBuilding": true, + "id": "10028" + } + }, + "arango/Plan/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000092", + "_rev": "_d05kgO6---", + "clientId": "PRMR-a24adubi:01d1f055-5f39-4f26-8fed-466ebf9d340f", + "epoch_millis": 1646833076495, + "request": { + "arango/Current/Collections/_system/10006/s10017": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010028", + "sparse": false, + "type": "primary", + "unique": true + }, + { + "deduplicate": true, + "estimates": false, + "fields": [ + "time" + ], + "id": "10028", + "name": "idx_1726829640006238208", + "objectId": "4010154", + "sparse": false, + "type": "skiplist", + "unique": false + } + ], + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + } + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000093", + "_rev": "_d05kgPm---", + "clientId": "CRDN-g6s8btds:c33d599e-4105-4f55-a878-1644a6b61234", + "epoch_millis": 1646833076506, + "request": { + "arango/Plan/Collections/_system/10006/indexes": { + "op": "replace", + "new": { + "deduplicate": true, + "estimates": false, + "fields": [ + "time" + ], + "id": "10028", + "inBackground": false, + "name": "idx_1726829640006238208", + "sparse": false, + "type": "skiplist", + "unique": false + }, + "val": { + "deduplicate": true, + "estimates": false, + "fields": [ + "time" + ], + "inBackground": false, + "name": "idx_1726829640006238208", + "sparse": false, + "type": "skiplist", + "unique": false, + "isBuilding": true, + "id": "10028" + } + }, + "arango/Plan/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000094", + "_rev": "_d05kgQ----", + "clientId": "PRMR-a24adubi:b18fa15d-446c-4cbc-9f57-942c619c3a89", + "epoch_millis": 1646833076512, + "request": { + "arango/Current/Collections/_system/10006/s10017": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010028", + "sparse": false, + "type": "primary", + "unique": true + }, + { + "deduplicate": true, + "estimates": false, + "fields": [ + "time" + ], + "id": "10028", + "name": "idx_1726829640006238208", + "objectId": "4010154", + "sparse": false, + "type": "skiplist", + "unique": false + } + ], + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + } + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000095", + "_rev": "_d05kgQO--_", + "clientId": "CRDN-cg5kjymo:0ac3495f-5595-4874-b9a4-157f4ca0a86d", + "epoch_millis": 1646833076516, + "request": { + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000096", + "_rev": "_d05kgQy---", + "clientId": "CRDN-g6s8btds:525d48ae-4946-4c1e-8d48-0c3bfd0cd71c", + "epoch_millis": 1646833076525, + "request": { + "arango/Plan/Collections/_system/10011/indexes": { + "op": "push", + "new": { + "deduplicate": true, + "estimates": false, + "fields": [ + "mount" + ], + "inBackground": false, + "name": "idx_1726829640049229824", + "sparse": true, + "type": "hash", + "unique": true, + "isBuilding": true, + "id": "10029" + } + }, + "arango/Plan/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000097", + "_rev": "_d05kgRW--A", + "clientId": "PRMR-a24adubi:091bdfb7-67bb-49fb-8593-a68750b614df", + "epoch_millis": 1646833076534, + "request": { + "arango/Current/Collections/_system/10011/s10022": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010042", + "sparse": false, + "type": "primary", + "unique": true + }, + { + "deduplicate": true, + "estimates": true, + "fields": [ + "mount" + ], + "id": "10029", + "name": "idx_1726829640049229824", + "objectId": "4010164", + "sparse": true, + "type": "hash", + "unique": true + } + ], + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + } + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000098", + "_rev": "_d05kgRy--A", + "clientId": "CRDN-g6s8btds:86673a27-41c9-4b6e-a9f7-0c3d7c8968b0", + "epoch_millis": 1646833076541, + "request": { + "arango/Plan/Collections/_system/10011/indexes": { + "op": "replace", + "new": { + "deduplicate": true, + "estimates": false, + "fields": [ + "mount" + ], + "id": "10029", + "inBackground": false, + "name": "idx_1726829640049229824", + "sparse": true, + "type": "hash", + "unique": true + }, + "val": { + "deduplicate": true, + "estimates": false, + "fields": [ + "mount" + ], + "inBackground": false, + "name": "idx_1726829640049229824", + "sparse": true, + "type": "hash", + "unique": true, + "isBuilding": true, + "id": "10029" + } + }, + "arango/Plan/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000099", + "_rev": "_d05kgS---_", + "clientId": "PRMR-a24adubi:678bd6d7-2d89-4c9b-bb01-65f4e6965412", + "epoch_millis": 1646833076544, + "request": { + "arango/Current/Collections/_system/10011/s10022": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010042", + "sparse": false, + "type": "primary", + "unique": true + }, + { + "deduplicate": true, + "estimates": true, + "fields": [ + "mount" + ], + "id": "10029", + "name": "idx_1726829640049229824", + "objectId": "4010164", + "sparse": true, + "type": "hash", + "unique": true + } + ], + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + } + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000100", + "_rev": "_d05kgSO--C", + "clientId": "CRDN-g6s8btds:e2879a07-7ee2-4fa8-aaf5-b49fb5e7ab9a", + "epoch_millis": 1646833076548, + "request": { + "arango/Plan/Collections/_system/10010/indexes": { + "op": "push", + "new": { + "deduplicate": true, + "estimates": false, + "fields": [ + "queue", + "status", + "delayUntil" + ], + "inBackground": false, + "name": "idx_1726829640074395648", + "sparse": false, + "type": "skiplist", + "unique": false, + "isBuilding": true, + "id": "10030" + } + }, + "arango/Plan/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000101", + "_rev": "_d05kgTC---", + "clientId": "PRMR-a24adubi:8a81717b-64df-44dd-bb57-11624f1e22f4", + "epoch_millis": 1646833076561, + "request": { + "arango/Current/Collections/_system/10010/s10021": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010032", + "sparse": false, + "type": "primary", + "unique": true + }, + { + "deduplicate": true, + "estimates": false, + "fields": [ + "queue", + "status", + "delayUntil" + ], + "id": "10030", + "name": "idx_1726829640074395648", + "objectId": "4010174", + "sparse": false, + "type": "skiplist", + "unique": false + } + ], + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + } + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000102", + "_rev": "_d05kgTe--C", + "clientId": "CRDN-g6s8btds:0a191d4e-6dc4-4592-a9be-c0065ba64dd6", + "epoch_millis": 1646833076568, + "request": { + "arango/Plan/Collections/_system/10010/indexes": { + "op": "replace", + "new": { + "deduplicate": true, + "estimates": false, + "fields": [ + "queue", + "status", + "delayUntil" + ], + "id": "10030", + "inBackground": false, + "name": "idx_1726829640074395648", + "sparse": false, + "type": "skiplist", + "unique": false + }, + "val": { + "deduplicate": true, + "estimates": false, + "fields": [ + "queue", + "status", + "delayUntil" + ], + "inBackground": false, + "name": "idx_1726829640074395648", + "sparse": false, + "type": "skiplist", + "unique": false, + "isBuilding": true, + "id": "10030" + } + }, + "arango/Plan/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000103", + "_rev": "_d05kgU---A", + "clientId": "CRDN-g6s8btds:b32e5c9d-3559-4b04-93e0-b2eb1fd27b06", + "epoch_millis": 1646833076576, + "request": { + "arango/Plan/Collections/_system/10010/indexes": { + "op": "push", + "new": { + "deduplicate": true, + "estimates": false, + "fields": [ + "status", + "queue", + "delayUntil" + ], + "inBackground": false, + "name": "idx_1726829640102707201", + "sparse": false, + "type": "skiplist", + "unique": false, + "isBuilding": true, + "id": "10031" + } + }, + "arango/Plan/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000104", + "_rev": "_d05kgUi---", + "clientId": "PRMR-a24adubi:eebea08f-84d2-4ec2-99d7-6a2a3218b2dd", + "epoch_millis": 1646833076584, + "request": { + "arango/Current/Collections/_system/10010/s10021": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010032", + "sparse": false, + "type": "primary", + "unique": true + }, + { + "deduplicate": true, + "estimates": false, + "fields": [ + "queue", + "status", + "delayUntil" + ], + "id": "10030", + "name": "idx_1726829640074395648", + "objectId": "4010174", + "sparse": false, + "type": "skiplist", + "unique": false + }, + { + "deduplicate": true, + "estimates": false, + "fields": [ + "status", + "queue", + "delayUntil" + ], + "id": "10031", + "name": "idx_1726829640102707201", + "objectId": "4010186", + "sparse": false, + "type": "skiplist", + "unique": false + } + ], + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + } + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000105", + "_rev": "_d05kgU6--A", + "clientId": "CRDN-g6s8btds:1b776041-c85b-475e-b26d-9be473c46240", + "epoch_millis": 1646833076591, + "request": { + "arango/Plan/Collections/_system/10010/indexes": { + "op": "replace", + "new": { + "deduplicate": true, + "estimates": false, + "fields": [ + "status", + "queue", + "delayUntil" + ], + "id": "10031", + "inBackground": false, + "name": "idx_1726829640102707201", + "sparse": false, + "type": "skiplist", + "unique": false + }, + "val": { + "deduplicate": true, + "estimates": false, + "fields": [ + "status", + "queue", + "delayUntil" + ], + "inBackground": false, + "name": "idx_1726829640102707201", + "sparse": false, + "type": "skiplist", + "unique": false, + "isBuilding": true, + "id": "10031" + } + }, + "arango/Plan/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000106", + "_rev": "_d05kgVi--D", + "clientId": "CRDN-g6s8btds:11582ff5-64fa-4e09-81c8-caeb5f6b9a17", + "epoch_millis": 1646833076601, + "request": { + "arango/Current/Foxxmaster": { + "op": "set", + "new": "CRDN-g6s8btds" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000107", + "_rev": "_d05kgW---A", + "clientId": "CRDN-g6s8btds:ff27a79c-9d73-4087-b24e-41e3969c7e8e", + "epoch_millis": 1646833076608, + "request": { + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000108", + "_rev": "_d05kgXe--A", + "clientId": "PRMR-a24adubi:3ad1de74-0b8a-4fa3-85d6-84bd018605f7", + "epoch_millis": 1646833076632, + "request": { + "arango/Current/Collections/_system/10001/s10002": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010002", + "sparse": false, + "type": "primary", + "unique": true + }, + { + "deduplicate": true, + "estimates": true, + "fields": [ + "user" + ], + "id": "10025", + "name": "idx_1726829639915012096", + "objectId": "4010124", + "sparse": true, + "type": "hash", + "unique": true + } + ], + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + } + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000109", + "_rev": "_d05kgYa--_", + "clientId": "CRDN-g6s8btds:8bfe8ab9-220e-4097-a093-e0b4cd7ef0f1", + "epoch_millis": 1646833076647, + "request": { + "arango/Sync/UserVersion": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000110", + "_rev": "_d05kgY2--B", + "clientId": "CRDN-g6s8btds:41c7615d-15bf-425e-a4d3-25e97d59ea98", + "epoch_millis": 1646833076654, + "request": { + "arango/Bootstrap": { + "op": "set", + "new": "CRDN-g6s8btds: done" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000111", + "_rev": "_d05kgZO--B", + "clientId": "CRDN-g6s8btds:baa2ecde-d929-4db1-8e00-42e311b467a5", + "epoch_millis": 1646833076660, + "request": { + "arango/ClusterUpgradeVersion": { + "op": "set", + "new": 30900 + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000112", + "_rev": "_d05kgZ6--_", + "clientId": "", + "epoch_millis": 1646833076671, + "request": { + "/arango/Supervision/Health/PRMR-n92yizyp": { + "ShortName": "DBServer0002", + "Endpoint": "ssl://cluster-uexabr-dbserver-n92yizyp.cluster-uexabr-int.3dcd4eac-c549-41b6-bc8f-40e11983ebd2.svc:8529", + "Host": "ip-10-0-101-138.eu-central-1.compute.internal", + "SyncStatus": "SERVING", + "Status": "GOOD", + "Version": "3.9.0", + "Engine": "rocksdb", + "Timestamp": "2022-03-09T13:37:56Z", + "SyncTime": "2022-03-09T13:37:55Z", + "LastAckedTime": "2022-03-09T13:37:56Z" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000113", + "_rev": "_d05kgae---", + "clientId": "CRDN-g6s8btds:caa89917-ae5e-41a1-89b8-68e6bdaa33c6", + "epoch_millis": 1646833076679, + "request": { + "arango/SystemCollectionsCreated": { + "op": "set", + "new": true + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000114", + "_rev": "_d05kgam--_", + "clientId": "", + "epoch_millis": 1646833076682, + "request": { + "/arango/Supervision/Health/PRMR-a24adubi": { + "ShortName": "DBServer0001", + "Endpoint": "ssl://cluster-uexabr-dbserver-a24adubi.cluster-uexabr-int.3dcd4eac-c549-41b6-bc8f-40e11983ebd2.svc:8529", + "Host": "ip-10-0-101-183.eu-central-1.compute.internal", + "SyncStatus": "SERVING", + "Status": "GOOD", + "Version": "3.9.0", + "Engine": "rocksdb", + "Timestamp": "2022-03-09T13:37:56Z", + "SyncTime": "2022-03-09T13:37:56Z", + "LastAckedTime": "2022-03-09T13:37:56Z" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000115", + "_rev": "_d05kgg6--_", + "clientId": "PRMR-a24adubi:c420fd40-ca20-47a4-b8b9-4864f808e309", + "epoch_millis": 1646833076783, + "request": { + "arango/Current/Collections/_system/10009/s10020": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010038", + "sparse": false, + "type": "primary", + "unique": true + } + ], + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + } + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:56 UTC" + }, + { + "_key": "00000000000000000116", + "_rev": "_d05khgG---", + "clientId": "CRDN-g6s8btds:f42a35b7-2735-4a54-bce0-55d2b2094661", + "epoch_millis": 1646833077794, + "request": { + "arango/Current/FoxxmasterQueueupdate": { + "op": "set", + "new": false + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:57 UTC" + }, + { + "_key": "00000000000000000117", + "_rev": "_d05khgi--A", + "clientId": "CRDN-g6s8btds:7c855ded-4fd5-4fca-b4f4-9096c4bc8058", + "epoch_millis": 1646833077801, + "request": { + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:57 UTC" + }, + { + "_key": "00000000000000000118", + "_rev": "_d05khhO--A", + "clientId": "CRDN-cg5kjymo:fdffd08f-e0bf-477e-a6b2-5d97f2976e0a", + "epoch_millis": 1646833077812, + "request": { + "arango/Sync/LatestID": { + "op": "set", + "new": 8010001 + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:57 UTC" + }, + { + "_key": "00000000000000000119", + "_rev": "_d05kiIa---", + "clientId": "CRDN-cg5kjymo:17009b24-4d48-40a6-86dc-a42331c0ee08", + "epoch_millis": 1646833078439, + "request": { + "/arango/Target/NumberOfCoordinators": { + "op": "set", + "new": 3 + }, + "/arango/Target/NumberOfDBServers": { + "op": "set", + "new": 3 + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:58 UTC" + }, + { + "_key": "00000000000000000120", + "_rev": "_d05kiJq--_", + "clientId": "CRDN-ssc2yc0x:de91abcc-2b25-40ca-8665-17644fb1b9aa", + "epoch_millis": 1646833078459, + "request": { + "arango/Sync/LatestID": { + "op": "set", + "new": 10010001 + } + }, + "term": 1, + "timestamp": "2022-03-09 13:37:58 UTC" + }, + { + "_key": "00000000000000000121", + "_rev": "_d05kkMy---", + "clientId": "PRMR-a24adubi:813f9bc6-cd0a-4ab7-969e-d553221ccb9a", + "epoch_millis": 1646833080556, + "request": { + "arango/Current/Collections/_system/10006/s10017": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010028", + "sparse": false, + "type": "primary", + "unique": true + }, + { + "deduplicate": true, + "estimates": false, + "fields": [ + "time" + ], + "id": "10028", + "name": "idx_1726829640006238208", + "objectId": "4010154", + "sparse": false, + "type": "skiplist", + "unique": false + } + ], + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + } + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:38:00 UTC" + }, + { + "_key": "00000000000000000122", + "_rev": "_d05knFO--A", + "clientId": "PRMR-rg51yv2h:b177a6c5-303f-4fde-af37-ac0c7de8d3b9", + "epoch_millis": 1646833083508, + "request": { + "arango/Plan/DBServers/PRMR-rg51yv2h": { + "op": "set", + "new": "none" + }, + "arango/Plan/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:38:03 UTC" + }, + { + "_key": "00000000000000000123", + "_rev": "_d05knF6--_", + "clientId": "PRMR-rg51yv2h:260404b2-9c92-4b49-b11d-92eaf6505f42", + "epoch_millis": 1646833083519, + "request": { + "arango/Current/DBServers/PRMR-rg51yv2h": { + "op": "set", + "new": "none" + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:38:03 UTC" + }, + { + "_key": "00000000000000000124", + "_rev": "_d05knGq--A", + "clientId": "PRMR-rg51yv2h:5a38bfe7-1f3e-4ce6-90bd-cb6c019a2477", + "epoch_millis": 1646833083531, + "request": { + "arango/Target/LatestDBServerId": { + "op": "increment" + }, + "arango/Target/MapUniqueToShortID/PRMR-rg51yv2h": { + "op": "set", + "new": { + "TransactionID": 3, + "ShortName": "DBServer0003" + } + } + }, + "term": 1, + "timestamp": "2022-03-09 13:38:03 UTC" + }, + { + "_key": "00000000000000000125", + "_rev": "_d05knHS--A", + "clientId": "PRMR-rg51yv2h:2271b33b-5e97-45dd-8b34-1408d8d94a57", + "epoch_millis": 1646833083541, + "request": { + "arango/Current/ServersRegistered/PRMR-rg51yv2h": { + "op": "set", + "new": { + "endpoint": "ssl://cluster-uexabr-dbserver-rg51yv2h.cluster-uexabr-int.3dcd4eac-c549-41b6-bc8f-40e11983ebd2.svc:8529", + "advertisedEndpoint": "", + "host": "ip-10-0-101-233.eu-central-1.compute.internal", + "version": 30900, + "versionString": "3.9.0", + "engine": "rocksdb", + "extendedNamesDatabases": false, + "timestamp": "2022-03-09T13:38:03Z" + } + }, + "arango/Current/ServersKnown/PRMR-rg51yv2h/rebootId": { + "op": "increment" + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:38:03 UTC" + }, + { + "_key": "00000000000000000126", + "_rev": "_d05kneG---", + "clientId": "PRMR-rg51yv2h:d89ceac4-7405-45b4-b816-c813838a6fb5", + "epoch_millis": 1646833083906, + "request": { + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:38:03 UTC" + }, + { + "_key": "00000000000000000127", + "_rev": "_d05kpMO---", + "clientId": "", + "epoch_millis": 1646833085668, + "request": { + "/arango/Supervision/Health/PRMR-rg51yv2h": { + "ShortName": "DBServer0003", + "Endpoint": "ssl://cluster-uexabr-dbserver-rg51yv2h.cluster-uexabr-int.3dcd4eac-c549-41b6-bc8f-40e11983ebd2.svc:8529", + "Host": "ip-10-0-101-233.eu-central-1.compute.internal", + "SyncStatus": "STARTUP", + "Status": "GOOD", + "Version": "3.9.0", + "Engine": "rocksdb", + "Timestamp": "2022-03-09T13:38:05Z", + "SyncTime": "2022-03-09T13:38:03Z", + "LastAckedTime": "2022-03-09T13:38:04Z" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:38:05 UTC" + }, + { + "_key": "00000000000000000128", + "_rev": "_d05kppK---", + "clientId": "PRMR-rg51yv2h:05dad1b3-e271-42b0-85eb-c9398b2eb19a", + "epoch_millis": 1646833086131, + "request": { + "arango/Current/Databases/_system/PRMR-rg51yv2h": { + "op": "set", + "new": { + "error": false, + "errorNum": 0, + "errorMessage": "", + "id": "1", + "name": "_system" + } + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:38:06 UTC" + }, + { + "_key": "00000000000000000129", + "_rev": "_d05kqKu---", + "clientId": "", + "epoch_millis": 1646833086668, + "request": { + "/arango/Supervision/Health/PRMR-rg51yv2h": { + "ShortName": "DBServer0003", + "Endpoint": "ssl://cluster-uexabr-dbserver-rg51yv2h.cluster-uexabr-int.3dcd4eac-c549-41b6-bc8f-40e11983ebd2.svc:8529", + "Host": "ip-10-0-101-233.eu-central-1.compute.internal", + "SyncStatus": "SERVING", + "Status": "GOOD", + "Version": "3.9.0", + "Engine": "rocksdb", + "Timestamp": "2022-03-09T13:38:06Z", + "SyncTime": "2022-03-09T13:38:06Z", + "LastAckedTime": "2022-03-09T13:38:06Z" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:38:06 UTC" + }, + { + "_key": "00000000000000000130", + "_rev": "_d05ku-y--A", + "clientId": "PRMR-a24adubi:a7b433cd-c4c8-4452-95ad-645e888b53af", + "epoch_millis": 1646833090573, + "request": { + "arango/Current/Collections/_system/10004/s10015": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010030", + "sparse": false, + "type": "primary", + "unique": true + }, + { + "deduplicate": true, + "estimates": false, + "fields": [ + "time" + ], + "id": "10026", + "name": "idx_1726829639950663681", + "objectId": "4010134", + "sparse": false, + "type": "skiplist", + "unique": false + } + ], + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + } + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:38:10 UTC" + }, + { + "_key": "00000000000000000131", + "_rev": "_d05k6Fy---", + "clientId": "PRMR-a24adubi:cfc0eef6-6e31-4cac-aaa8-8d87137cae3f", + "epoch_millis": 1646833102973, + "request": { + "arango/.license": { + "op": "set", + "new": { + "features": { + "expires": 1646985599 + }, + "version": 1, + "hash": "ad800a7be16f904b1ae3e3889c17b0ceb2672ccc0bb8fa9990a724a582ecaa3b", + "license": "JD4EOk5VNRAPdSRUOywRewdAVAJgUm4GPjwpDCwTY0RhNylaFGQaMh0bPG5bNCsfYAMSOCAqd2B5CBNkL1xIMSA7AQECagIDOR94QlA9CzMBAG9qETMxQjQIPAolCzhcB1FaLFYaIk8VECUjSUEDVj5+FWE8LQF6AHVIBQAAAxwAQSkILBMUFTdzLHwVMzM7EiUeTBNeKQBvQ10gDywiJX5gFysKXQFSJhQVADBoVDZkDmE/Nj0MdRo4fwN8CEZjE3YsCyYWMF1hCSs8VzokBhcqPj98VQgEOG8dLxgGDRYGQzNbMkNdQ2I9cCwqOX9wJQgDXzs3OC4efGVqATVZG3gmECAgExgldBt7FBJhK2UOcysmA2gNRT8tUjoHJy02LRBJLwFjVwUoCBICJgkeWBAADyNXJEEpGHV/E0luHBwkYzswExQNBw1BAShlN1sBAEgtLiwBd0FlDz18P1oGMhUlHmdpQQ0oYQYGNSUCOgB+PS18AGErVC0XIz03HR1DAUFaK2dbCygXOHt7EiIlQj8MJCAKJDhfMjRdU1YcLQMMACI5eEJWEylxQGYPFgo3NmViGgQ+XV82JCYwHgdkFipYLEcrVk8pIwYCVCthKkV/GlUwFhIUPklUFy89BD8bJxcsOTFGFVBUJ3k8ADwxNCo5YzR5UR99FF0wAxJ8YB1ZQy8fUyg0HxMAJh1/VAtvOAQnIxkEHnoBaAlgOhoORVUHCysdHGsJJw8hQjslQwkWfCx5BydaJXgnDE8gACYBSRoDCydYKAA9CSw2NR5tRiladAQpQSp0GT8UIzJhEgMoMDwFC38GXSN0IThvC2gdF3UmHk9sMTMybjsUEDgzIQ15IyhXCHE8Ni15dwM6RQhTUDlsPnc7Mx5+LHRsQSMFVSUzRhQBGC1gLTldNHJEMR4GDTYZRAUCOR9aN2g9GyoDEHt0Jj0xbj9SCgcICAZhMyt0MmE5KggkKnoiYjZoVxEFM3owcwp+AnpANjw8Ayk7JzJ2FDhvMi1aJEY/CBFzCiMsZiBILgtSJnsQE3YIGGYKFyAOcCBQPQkeNzBoFTN7U18gBy0bLRoRVQBlJkZyEnYNdBEIElh2KzcleCgwGxR2IiV+CQdwOAYzBRksATYAdQFwLjZ8KH9bEw4vZ0VUPh8uBCA2NA4jBg5HKiZ4LWAbKgMVAAg6dEJ0CxAEO38OByN7NnhyRQAzdCstNXQFL2QUIzZ+DUEkMEp4DiBkEA==" + } + } + }, + "term": 1, + "timestamp": "2022-03-09 13:38:22 UTC" + }, + { + "_key": "00000000000000000132", + "_rev": "_d05yPBW--A", + "clientId": "PRMR-a24adubi:c2062125-a0a0-4326-8d48-811f5146254d", + "epoch_millis": 1646833976374, + "request": { + "arango/Current/Collections/_system/10005/s10016": { + "op": "set", + "new": { + "error": false, + "errorMessage": "", + "errorNum": 0, + "indexes": [ + { + "fields": [ + "_key" + ], + "id": "0", + "name": "primary", + "objectId": "4010036", + "sparse": false, + "type": "primary", + "unique": true + }, + { + "deduplicate": true, + "estimates": false, + "fields": [ + "time" + ], + "id": "10027", + "name": "idx_1726829639976878081", + "objectId": "4010144", + "sparse": false, + "type": "skiplist", + "unique": false + } + ], + "servers": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ], + "failoverCandidates": [ + "PRMR-a24adubi", + "PRMR-n92yizyp" + ] + } + }, + "arango/Current/Version": { + "op": "increment" + } + }, + "term": 1, + "timestamp": "2022-03-09 13:52:56 UTC" + } + ] +}