From 73efc64d24c4574dcd425aef23f0e3bb51285829 Mon Sep 17 00:00:00 2001 From: Heiko Kernbach Date: Tue, 3 Aug 2021 21:23:12 +0200 Subject: [PATCH 01/21] added general docu about hybrid smart graphs --- 3.9/graphs-smart-graphs.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/3.9/graphs-smart-graphs.md b/3.9/graphs-smart-graphs.md index 774bd25037..23b638d801 100644 --- a/3.9/graphs-smart-graphs.md +++ b/3.9/graphs-smart-graphs.md @@ -71,6 +71,17 @@ overhead. The more subgraphs are touched the more network cost will apply. However the overall performance is never worse than the same query using a General Graph. +Benefits of Hybrid SmartGraphs +------------------------------- + +Hybrid SmartGraphs are capable of using Satellite Collections within their graph +definition. Therefore, defined EdgeDefinitions between SmartCollections and +SatelliteCollections can be created. As Satellite Collections are globally +replicated to each participating DB-Server, graph traversals, shortest path, +weighted traversals and k-shortest-paths queries can be executed partially +locally on each DB-Server. This means that query execution is guaranteed to be +fully local whenever data from the Satellite part is required. + Benefits of Disjoint SmartGraphs ------------------------------- @@ -83,6 +94,13 @@ This ensures that graph traversals, shortest path, and k-shortest-paths queries can be executed locally on a DB-Server, achieving improved performance for these type of queries. +Benefits of Hybrid Disjoint SmartGraphs +------------------------------- + +Hybrid Disjoint SmartGraphs benefit of all advantages which are present in +Hybrid SmartGraphs. The rules of Disjoint SmartGraphs, described in the chapter +above, stay true. + Getting started --------------- From 5b3ffd84b79e7d20b05f69972eb33f63132cd010 Mon Sep 17 00:00:00 2001 From: Heiko Kernbach Date: Tue, 3 Aug 2021 22:12:26 +0200 Subject: [PATCH 02/21] added options to _extendEdgeDefinitions --- 3.9/graphs-general-graphs-management.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/3.9/graphs-general-graphs-management.md b/3.9/graphs-general-graphs-management.md index d5f8dfeb71..0e635ff036 100644 --- a/3.9/graphs-general-graphs-management.md +++ b/3.9/graphs-general-graphs-management.md @@ -343,10 +343,12 @@ You can still add, delete or modify edge definitions and vertex collections. Add another edge definition to the graph: -`graph._extendEdgeDefinitions(edgeDefinition)` +`graph._extendEdgeDefinitions(edgeDefinition, options)` - `edgeDefinition` (object): The relation definition to extend the graph +- `options` (object): + Additional options related to the edgeDefinition itself. Extends the edge definitions of a graph. If an orphan collection is used in this edge definition, it will be removed from the orphanage. If the edge collection of From b90e97f1a85fa5f8e02803f3f55fa8e34535773f Mon Sep 17 00:00:00 2001 From: Heiko Kernbach Date: Tue, 3 Aug 2021 22:14:26 +0200 Subject: [PATCH 03/21] added options to _editEdgeDefinitions --- 3.9/graphs-general-graphs-management.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/3.9/graphs-general-graphs-management.md b/3.9/graphs-general-graphs-management.md index 0e635ff036..8ce943571a 100644 --- a/3.9/graphs-general-graphs-management.md +++ b/3.9/graphs-general-graphs-management.md @@ -376,11 +376,13 @@ graph with different *from* and/or *to* collections an error is thrown. Modify a relation definition: -`graph_module._editEdgeDefinitions(edgeDefinition)` +`graph_module._editEdgeDefinitions(edgeDefinition, options)` - `edgeDefinition` (object): The edge definition to replace the existing edge definition with the same attribute *collection*. +- `options` (object): + Additional options related to the edgeDefinition itself. Edits one relation definition of a graph. The edge definition used as argument will replace the existing edge definition of the graph which has the same collection. From f59db21e8c3b1bf169e3701db21b850a7a4031e6 Mon Sep 17 00:00:00 2001 From: Heiko Kernbach Date: Wed, 4 Aug 2021 10:48:07 +0200 Subject: [PATCH 04/21] added release notes api changes 39 --- 3.9/release-notes-api-changes39.md | 78 +++++++++--------------------- 1 file changed, 24 insertions(+), 54 deletions(-) diff --git a/3.9/release-notes-api-changes39.md b/3.9/release-notes-api-changes39.md index 2713618715..c72f08a8e9 100644 --- a/3.9/release-notes-api-changes39.md +++ b/3.9/release-notes-api-changes39.md @@ -11,57 +11,27 @@ integrations for ArangoDB 3.9. ## HTTP RESTful API -### Privilege changes - -### Endpoint return value changes - -### Endpoints added - -### Endpoints augmented - -### Endpoints moved - -### Endpoints removed - -#### Export API - -The REST API endpoint `/_api/export` has been removed in ArangoDB 3.9. -This endpoint was previously only present in single server, but never -supported in cluster deployments. - -The purpose of the endpoint was to provide the full data of a collection -without holding collection locks for a long time, which was useful for -the MMFile storage engine with its collection-level locks. - -The MMFiles engine is gone since ArangoDB 3.7, and the only remaining -storage engine since then is RocksDB. For the RocksDB engine, the -`/_api/export` endpoint internally used a streaming AQL query such as - -```js -FOR doc IN @@collection RETURN doc -``` - -anyway. To remove API redundancy, the API endpoint has been deprecated -in ArangoDB 3.8 and is now removed. If the functionality is still required -by client applications, running a streaming AQL query can be used as a -substitution. - -#### Redirects - -Since ArangoDB 3.7, some cluster APIs were made available under different -paths. The old paths were left in place and simply redirected to the new -address. These redirects have now been removed in ArangoDB 3.9. - -The following list shows the old, now dysfunctional paths and their -replacements: - -- `/_admin/clusterNodeVersion`: replaced by `/_admin/cluster/nodeVersion` -- `/_admin/clusterNodeEngine`: replaced by `/_admin/cluster/nodeEngine` -- `/_admin/clusterNodeStats`: replaced by `/_admin/cluster/nodeStatistics` -- `/_admin/clusterStatistics`: replaced by `/_admin/cluster/statistics` - -Using the replacements will work from ArangoDB 3.7 onwards already, so -any client applications that still call the old addresses can be adjusted -to call the new addresses from 3.7 onwards. - -## JavaScript API +### GRAPH API (Gharial) + +The following changes affect the behavior of the RESTful collection APIs at +endpoints starting with path `/_api/gharial/`: + +The options object now supports a new field: `satellites`, when creating a graph (POST). +The value of satellites is optional. In case it is defined, it needs to be an array +of collection names. Each defined collection name must be a string. This value is +only valid in case of SmartGraphs (Enterprise-Only). In a community based graph it +will be ignored. + +Using `satellites` during SmartGraph creation will result in a Hybrid Smart Graph. +Using `satellites` during Disjoint SmartGraph creation will result in a Hybrid +Disjoint SmartGraph. + +Hybrid (Disjoint) SmartGraphs are capable of having Satellite collections in their +graph definitions. If a collection is found in `satellites` and they are also being +used in the graph definition itself (e.g. EdgeDefinition), this collection will be +created as a satellite collection. Hybrid (Disjoint) Smart Graphs are then capable +of executing all type of graph queries between the regular SmartCollections and +Satellite collections. + +The following changes affect the behavior of the RESTful collection APIs at +endpoints starting with path `/_api/gharial/{graph}/edge`: From 41b293a7938ccce27c0634aa7aeea389ee39cc9a Mon Sep 17 00:00:00 2001 From: Heiko Kernbach Date: Wed, 4 Aug 2021 12:19:58 +0200 Subject: [PATCH 05/21] docu for new vertex, new/modify edge --- 3.9/release-notes-api-changes39.md | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/3.9/release-notes-api-changes39.md b/3.9/release-notes-api-changes39.md index c72f08a8e9..8f5b5f3fda 100644 --- a/3.9/release-notes-api-changes39.md +++ b/3.9/release-notes-api-changes39.md @@ -13,7 +13,7 @@ integrations for ArangoDB 3.9. ### GRAPH API (Gharial) -The following changes affect the behavior of the RESTful collection APIs at +The following changes affect the behavior of the RESTful graph APIs at endpoints starting with path `/_api/gharial/`: The options object now supports a new field: `satellites`, when creating a graph (POST). @@ -33,5 +33,24 @@ created as a satellite collection. Hybrid (Disjoint) Smart Graphs are then capab of executing all type of graph queries between the regular SmartCollections and Satellite collections. -The following changes affect the behavior of the RESTful collection APIs at +The following changes affect the behavior of the RESTful graph APIs at endpoints starting with path `/_api/gharial/{graph}/edge`: + +Creating and modifying a new edge definition (POST / PUT): +Added new optional options object. This was not available in previous ArangoDB +versions. The options object currently can contain a field called `satellites`. +The field must be an array and contain collection name(s) written down as strings. +If an EdgeDefinition does contain a collection name, which is also defined in +the satellites option entry, it will be created as a Satellite collection. +Otherwise, it will be ignored. This option only takes effect using SmartGraphs. + +The following changes affect the behavior of the RESTful graph APIs at +endpoints starting with path `/_api/gharial/{graph}/vertex`: + +Creating a new vertex collection (POST): +Added new optional options object. This was not available in previous ArangoDB +versions. The options object currently can contain a field called `satellites`. +The field must be an array and contain collection name(s) written down as strings. +If the vertex to add is also defined in the satellites option entry, it will be +created as a Satellite collection. Otherwise, it will be ignored. This option +only takes effect using SmartGraphs. From 8e052b72f350b2a2d33c8c3f3c67e95dbb330012 Mon Sep 17 00:00:00 2001 From: Heiko Kernbach Date: Wed, 4 Aug 2021 13:02:07 +0200 Subject: [PATCH 06/21] readded already existing doumentation --- 3.9/release-notes-api-changes39.md | 53 ++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) diff --git a/3.9/release-notes-api-changes39.md b/3.9/release-notes-api-changes39.md index 8f5b5f3fda..5730b41efd 100644 --- a/3.9/release-notes-api-changes39.md +++ b/3.9/release-notes-api-changes39.md @@ -9,6 +9,59 @@ This document summarizes the HTTP API changes and other API changes in ArangoDB The target audience for this document are developers who maintain drivers and integrations for ArangoDB 3.9. +### Privilege changes + +### Endpoint return value changes + +### Endpoints added + +### Endpoints augmented + +### Endpoints moved + +### Endpoints removed + +#### Export API + +The REST API endpoint `/_api/export` has been removed in ArangoDB 3.9. +This endpoint was previously only present in single server, but never +supported in cluster deployments. + +The purpose of the endpoint was to provide the full data of a collection +without holding collection locks for a long time, which was useful for +the MMFile storage engine with its collection-level locks. + +The MMFiles engine is gone since ArangoDB 3.7, and the only remaining +storage engine since then is RocksDB. For the RocksDB engine, the +`/_api/export` endpoint internally used a streaming AQL query such as + +```js +FOR doc IN @@collection RETURN doc +``` + +anyway. To remove API redundancy, the API endpoint has been deprecated +in ArangoDB 3.8 and is now removed. If the functionality is still required +by client applications, running a streaming AQL query can be used as a +substitution. + +#### Redirects + +Since ArangoDB 3.7, some cluster APIs were made available under different +paths. The old paths were left in place and simply redirected to the new +address. These redirects have now been removed in ArangoDB 3.9. + +The following list shows the old, now dysfunctional paths and their +replacements: + +- `/_admin/clusterNodeVersion`: replaced by `/_admin/cluster/nodeVersion` +- `/_admin/clusterNodeEngine`: replaced by `/_admin/cluster/nodeEngine` +- `/_admin/clusterNodeStats`: replaced by `/_admin/cluster/nodeStatistics` +- `/_admin/clusterStatistics`: replaced by `/_admin/cluster/statistics` + +Using the replacements will work from ArangoDB 3.7 onwards already, so +any client applications that still call the old addresses can be adjusted +to call the new addresses from 3.7 onwards. + ## HTTP RESTful API ### GRAPH API (Gharial) From fee86c29eec40ec4a25959724e0d7013074ed17d Mon Sep 17 00:00:00 2001 From: Heiko Kernbach Date: Wed, 4 Aug 2021 13:03:12 +0200 Subject: [PATCH 07/21] restructure --- 3.9/release-notes-api-changes39.md | 49 ++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) diff --git a/3.9/release-notes-api-changes39.md b/3.9/release-notes-api-changes39.md index 5730b41efd..873a7cdf35 100644 --- a/3.9/release-notes-api-changes39.md +++ b/3.9/release-notes-api-changes39.md @@ -9,6 +9,53 @@ This document summarizes the HTTP API changes and other API changes in ArangoDB The target audience for this document are developers who maintain drivers and integrations for ArangoDB 3.9. +## HTTP RESTful API + +### GRAPH API (Gharial) + +The following changes affect the behavior of the RESTful graph APIs at +endpoints starting with path `/_api/gharial/`: + +The options object now supports a new field: `satellites`, when creating a graph (POST). +The value of satellites is optional. In case it is defined, it needs to be an array +of collection names. Each defined collection name must be a string. This value is +only valid in case of SmartGraphs (Enterprise-Only). In a community based graph it +will be ignored. + +Using `satellites` during SmartGraph creation will result in a Hybrid Smart Graph. +Using `satellites` during Disjoint SmartGraph creation will result in a Hybrid +Disjoint SmartGraph. + +Hybrid (Disjoint) SmartGraphs are capable of having Satellite collections in their +graph definitions. If a collection is found in `satellites` and they are also being +used in the graph definition itself (e.g. EdgeDefinition), this collection will be +created as a satellite collection. Hybrid (Disjoint) Smart Graphs are then capable +of executing all type of graph queries between the regular SmartCollections and +Satellite collections. + +The following changes affect the behavior of the RESTful graph APIs at +endpoints starting with path `/_api/gharial/{graph}/edge`: + +Creating and modifying a new edge definition (POST / PUT): +Added new optional options object. This was not available in previous ArangoDB +versions. The options object currently can contain a field called `satellites`. +The field must be an array and contain collection name(s) written down as strings. +If an EdgeDefinition does contain a collection name, which is also defined in +the satellites option entry, it will be created as a Satellite collection. +Otherwise, it will be ignored. This option only takes effect using SmartGraphs. + +The following changes affect the behavior of the RESTful graph APIs at +endpoints starting with path `/_api/gharial/{graph}/vertex`: + +Creating a new vertex collection (POST): +Added new optional options object. This was not available in previous ArangoDB +versions. The options object currently can contain a field called `satellites`. +The field must be an array and contain collection name(s) written down as strings. +If the vertex to add is also defined in the satellites option entry, it will be +created as a Satellite collection. Otherwise, it will be ignored. This option +only takes effect using SmartGraphs. + + ### Privilege changes ### Endpoint return value changes @@ -107,3 +154,5 @@ The field must be an array and contain collection name(s) written down as string If the vertex to add is also defined in the satellites option entry, it will be created as a Satellite collection. Otherwise, it will be ignored. This option only takes effect using SmartGraphs. + +## JavaScript API From 6066b4972846e3c205a6c8cdd937a76bf7abba9c Mon Sep 17 00:00:00 2001 From: Heiko Kernbach Date: Wed, 4 Aug 2021 14:19:12 +0200 Subject: [PATCH 08/21] add vertex collection api --- 3.9/graphs-general-graphs-management.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/3.9/graphs-general-graphs-management.md b/3.9/graphs-general-graphs-management.md index 8ce943571a..f3dac64188 100644 --- a/3.9/graphs-general-graphs-management.md +++ b/3.9/graphs-general-graphs-management.md @@ -474,12 +474,18 @@ orphans, it will be removed from the set of orphan collection automatically. Add a vertex collection to the graph: -`graph._addVertexCollection(vertexCollectionName, createCollection)` +`graph._addVertexCollection(vertexCollectionName, createCollection, options)` - `vertexCollectionName` (string): Name of vertex collection. - `createCollection` (bool, _optional_): If true the collection will be created if it does not exist. Default: true +- `options` (object, _optional_): + Additional option object for advanced configuration. The object can contain the + property `satellites`. This value is only valid in case of SmartGraphs + (Enterprise-Only). It must be an array and can contain valid collection + names. If provided, the collection will be created as a Satellite Collection. + The collection type cannot be modified later. Default: {} Adds a vertex collection to the set of orphan collections of the graph. If the collection does not exist, it will be created. If it is already used by any edge From 0ff4c4fb39eab986fadc5d03cd6e8db09bf961eb Mon Sep 17 00:00:00 2001 From: Heiko Kernbach Date: Wed, 4 Aug 2021 16:11:14 +0200 Subject: [PATCH 09/21] adding examples --- .../Examples/HttpGharialAddEdge.generated | 24 +- .../Examples/HttpGharialAddEdgeCol.generated | 60 +- .../Examples/HttpGharialAddVertex.generated | 20 +- .../HttpGharialAddVertexCol.generated | 40 +- .../Examples/HttpGharialCreate.generated | 46 +- .../Examples/HttpGharialCreate2.generated | 62 +- .../Examples/HttpGharialDeleteEdge.generated | 8 +- .../HttpGharialDeleteVertex.generated | 8 +- .../Examples/HttpGharialDrop.generated | 8 +- .../HttpGharialEdgeDefinitionRemove.generated | 26 +- .../Examples/HttpGharialGetEdge.generated | 26 +- .../Examples/HttpGharialGetGraph.generated | 30 +- .../Examples/HttpGharialGetVertex.generated | 18 +- .../Examples/HttpGharialList.generated | 80 +- .../Examples/HttpGharialListEdge.generated | 10 +- .../Examples/HttpGharialListVertex.generated | 12 +- .../HttpGharialModifyVertex.generated | 20 +- .../Examples/HttpGharialPatchEdge.generated | 22 +- .../Examples/HttpGharialPutEdge.generated | 26 +- ...ttpGharialRemoveVertexCollection.generated | 36 +- ...rialRemoveVertexCollectionFailed.generated | 10 +- .../HttpGharialReplaceEdgeCol.generated | 58 +- .../HttpGharialReplaceVertex.generated | 22 +- .../Examples/RestAdminCompact.generated | 2 +- .../Examples/RestAdminMetrics.generated | 220 +- .../Examples/RestAdminMetricsV2.generated | 360 +- .../Examples/RestAdminStatistics1.generated | 304 +- .../RestAdminStatisticsDescription1.generated | 536 +- .../Examples/RestAnalyzerDelete.generated | 8 +- .../RestAnalyzerDeleteForce.generated | 28 +- .../Examples/RestAnalyzerGet.generated | 14 +- .../Examples/RestAnalyzerPost.generated | 14 +- .../Examples/RestAnalyzersGet.generated | 308 +- .../Examples/RestAqlfunctionCreate.generated | 14 +- .../Examples/RestAqlfunctionDelete.generated | 8 +- .../RestAqlfunctionDeleteFails.generated | 10 +- .../Examples/RestAqlfunctionsGetAll.generated | 8 +- .../RestBackupCreateBackup_rocksdb.generated | 22 +- .../RestBackupDeleteBackup_rocksdb.generated | 10 +- ...kupDownloadBackupStarted_rocksdb.generated | 26 +- ...RestBackupDownloadBackup_rocksdb.generated | 22 +- .../RestBackupListBackup_rocksdb.generated | 78 +- .../RestBackupRestoreBackup_rocksdb.generated | 14 +- ...ackupUploadBackupStarted_rocksdb.generated | 26 +- .../RestBackupUploadBackup_rocksdb.generated | 22 +- .../RestBatchImplicitBoundary.generated | 18 +- .../RestBatchMultipartHeader.generated | 142 +- .../RestCollectionCreateCollection.generated | 106 +- .../RestCollectionCreateKeyopt.generated | 64 +- ...ectionDeleteCollectionIdentifier.generated | 10 +- ...stCollectionDeleteCollectionName.generated | 10 +- ...CollectionDeleteCollectionSystem.generated | 10 +- .../RestCollectionGetAllCollections.generated | 176 +- ...tCollectionGetCollectionChecksum.generated | 24 +- ...ectionGetCollectionChecksumNoRev.generated | 24 +- ...RestCollectionGetCollectionCount.generated | 52 +- ...stCollectionGetCollectionFigures.generated | 70 +- ...ctionGetCollectionFiguresDetails.generated | 82 +- ...ollectionGetCollectionIdentifier.generated | 52 +- .../RestCollectionGetCollectionName.generated | 50 +- ...tCollectionGetCollectionRevision.generated | 52 +- .../RestCollectionIdentifierLoad.generated | 22 +- ...nIdentifierLoadIndexesIntoMemory.generated | 8 +- ...llectionIdentifierPropertiesSync.generated | 52 +- .../RestCollectionIdentifierRename.generated | 22 +- ...RestCollectionIdentifierTruncate.generated | 20 +- .../RestCollectionIdentifierUnload.generated | 20 +- .../Examples/RestCreateUser.generated | 16 +- ...CursorCreateCursorForLimitReturn.generated | 62 +- ...CreateCursorForLimitReturnSingle.generated | 60 +- ...estCursorCreateCursorMissingBody.generated | 10 +- .../RestCursorCreateCursorOption.generated | 46 +- ...sorCreateCursorUnknownCollection.generated | 16 +- .../Examples/RestCursorDelete.generated | 64 +- .../Examples/RestCursorDeleteIgnore.generated | 38 +- .../Examples/RestCursorDeleteQuery.generated | 38 +- .../RestCursorDeleteQueryFail.generated | 12 +- .../RestCursorForLimitReturnCont.generated | 64 +- ...estCursorInvalidCursorIdentifier.generated | 10 +- ...estCursorMissingCursorIdentifier.generated | 10 +- .../RestCursorOptimizerRules.generated | 52 +- ...RestCursorPostForLimitReturnCont.generated | 64 +- ...ursorPostInvalidCursorIdentifier.generated | 10 +- ...ursorPostMissingCursorIdentifier.generated | 10 +- .../Examples/RestCursorProfileQuery.generated | 308 +- .../Examples/RestDatabaseCreate.generated | 16 +- .../RestDatabaseCreateUsers.generated | 24 +- .../Examples/RestDatabaseDrop.generated | 8 +- .../Examples/RestDatabaseGet.generated | 10 +- .../Examples/RestDatabaseGetInfo.generated | 16 +- .../Examples/RestDatabaseGetUser.generated | 10 +- .../Examples/RestDeleteUser.generated | 6 +- ...estDocumentHandlerDeleteDocument.generated | 14 +- ...lerDeleteDocumentIdentifierMulti.generated | 18 +- ...andlerDeleteDocumentIfMatchOther.generated | 20 +- ...entHandlerDeleteDocumentKeyMulti.generated | 18 +- ...HandlerDeleteDocumentObjectMulti.generated | 18 +- ...erDeleteDocumentRevConflictMulti.generated | 24 +- ...entHandlerDeleteDocumentRevMulti.generated | 22 +- ...ndlerDeleteDocumentUnknownHandle.generated | 10 +- ...andlerDeleteDocumentUnknownMulti.generated | 20 +- ...RestDocumentHandlerPatchDocument.generated | 118 +- ...ocumentHandlerPatchDocumentMerge.generated | 88 +- .../RestDocumentHandlerPostAccept1.generated | 14 +- .../RestDocumentHandlerPostBadJson1.generated | 10 +- ...tDocumentHandlerPostBadJsonMulti.generated | 16 +- .../RestDocumentHandlerPostCreate1.generated | 14 +- .../RestDocumentHandlerPostMulti1.generated | 22 +- .../RestDocumentHandlerPostMulti2.generated | 52 +- ...RestDocumentHandlerPostOverwrite.generated | 22 +- ...RestDocumentHandlerPostReturnNew.generated | 24 +- ...entHandlerPostUnknownCollection1.generated | 10 +- .../RestDocumentHandlerPostWait1.generated | 14 +- .../RestDocumentHandlerReadDocument.generated | 14 +- ...tDocumentHandlerReadDocumentHead.generated | 2 +- ...ntHandlerReadDocumentIfNoneMatch.generated | 2 +- ...HandlerReadDocumentUnknownHandle.generated | 10 +- ...DocumentHandlerReadMultiDocument.generated | 18 +- ...estDocumentHandlerUpdateDocument.generated | 16 +- ...andlerUpdateDocumentIfMatchOther.generated | 20 +- ...ndlerUpdateDocumentUnknownHandle.generated | 10 +- .../Examples/RestEdgesReadEdgesAny.generated | 62 +- .../Examples/RestEdgesReadEdgesIn.generated | 52 +- .../Examples/RestEdgesReadEdgesOut.generated | 38 +- .../Examples/RestEndpointGet.generated | 4 +- .../Examples/RestEngine_rocksdb.generated | 34 +- .../Examples/RestExplainAllPlans.generated | 210 +- .../Examples/RestExplainEmpty.generated | 178 +- .../Examples/RestExplainInvalid.generated | 12 +- .../RestExplainOptimizerRules.generated | 298 +- .../Examples/RestExplainOptions.generated | 394 +- .../Examples/RestExplainValid.generated | 118 +- .../Examples/RestExplainWarning.generated | 208 +- .../Examples/RestFetchAllUser.generated | 26 +- .../Examples/RestFetchUser.generated | 12 +- ...estFetchUserCollectionPermission.generated | 8 +- .../RestFetchUserDatabaseList.generated | 10 +- .../RestFetchUserDatabaseListFull.generated | 48 +- .../RestFetchUserDatabasePermission.generated | 8 +- ...tResponsibleShardExample_cluster.generated | 8 +- ...RestGetShardsWithDetails_cluster.generated | 6 +- .../Examples/RestGetShards_cluster.generated | 6 +- .../Examples/RestGrantCollection.generated | 10 +- .../Examples/RestGrantDatabase.generated | 10 +- .../Examples/RestImportCsvEdge.generated | 14 +- .../RestImportCsvEdgeInvalid.generated | 20 +- .../Examples/RestImportCsvExample.generated | 14 +- .../RestImportCsvInvalidBody.generated | 10 +- .../RestImportCsvInvalidCollection.generated | 10 +- .../RestImportCsvUniqueContinue.generated | 18 +- .../RestImportCsvUniqueFail.generated | 10 +- .../Examples/RestImportJsonEdge.generated | 14 +- .../RestImportJsonEdgeInvalid.generated | 20 +- .../RestImportJsonInvalidBody.generated | 10 +- .../RestImportJsonInvalidCollection.generated | 10 +- .../Examples/RestImportJsonLines.generated | 14 +- .../Examples/RestImportJsonList.generated | 32 +- .../Examples/RestImportJsonType.generated | 32 +- .../RestImportJsonUniqueContinue.generated | 18 +- .../RestImportJsonUniqueFail.generated | 10 +- .../Examples/RestIndexAllIndexes.generated | 130 +- ...tIndexCreateGeoLatitudeLongitude.generated | 42 +- .../RestIndexCreateGeoLocation.generated | 38 +- .../RestIndexCreateNewFulltext.generated | 32 +- .../RestIndexCreateNewHashIndex.generated | 42 +- .../RestIndexCreateNewPersistent.generated | 42 +- .../RestIndexCreateNewSkiplist.generated | 42 +- .../RestIndexCreateNewTtlIndex.generated | 34 +- ...stIndexCreateNewUniqueConstraint.generated | 42 +- .../RestIndexCreateSparseHashIndex.generated | 40 +- .../RestIndexCreateSparsePersistent.generated | 40 +- .../RestIndexCreateSparseSkiplist.generated | 40 +- .../RestIndexDeleteUniqueSkiplist.generated | 10 +- .../Examples/RestIndexPrimaryIndex.generated | 20 +- ...tPregelCancelConnectedComponents.generated | 4 +- ...stPregelStartConnectedComponents.generated | 16 +- ...tPregelStatusConnectedComponents.generated | 35 +- .../Examples/RestQueryInvalid.generated | 10 +- .../Examples/RestQueryValid.generated | 90 +- .../Examples/RestReplaceUser.generated | 14 +- .../RestReplicationApplierGetConfig.generated | 50 +- .../RestReplicationApplierSetConfig.generated | 68 +- .../RestReplicationApplierStart.generated | 68 +- ...eplicationApplierStateNotRunning.generated | 66 +- ...stReplicationApplierStateRunning.generated | 68 +- .../RestReplicationApplierStop.generated | 66 +- .../RestReplicationLoggerFirstTick.generated | 6 +- ...plicationLoggerFollowBufferLimit.generated | 126 +- ...RestReplicationLoggerFollowEmpty.generated | 6 +- .../RestReplicationLoggerFollowSome.generated | 240 +- ...RestReplicationLoggerStateActive.generated | 26 +- .../RestReplicationLoggerTickRanges.generated | 28 +- .../RestReplicationServerId.generated | 6 +- .../Examples/RestRevokeCollection.generated | 6 +- .../Examples/RestRevokeDatabase.generated | 6 +- .../Examples/RestTasksCreate.generated | 34 +- .../Examples/RestTasksDelete.generated | 6 +- .../Examples/RestTasksDeleteFail.generated | 10 +- .../Examples/RestTasksListAll.generated | 2 +- .../RestTasksListNonExisting.generated | 10 +- .../Examples/RestTasksListOne.generated | 20 +- .../Examples/RestTasksPutWithId.generated | 34 +- .../Examples/RestTransactionAbort.generated | 16 +- .../RestTransactionAbortInternal.generated | 16 +- .../RestTransactionBeginAbort.generated | 14 +- .../RestTransactionBeginCommit.generated | 14 +- .../RestTransactionBeginNonExisting.generated | 14 +- .../RestTransactionBeginSingle.generated | 18 +- .../Examples/RestTransactionGet.generated | 14 +- .../Examples/RestTransactionMulti.generated | 18 +- .../RestTransactionNonExisting.generated | 16 +- .../Examples/RestTransactionSingle.generated | 14 +- .../Examples/RestTransactionsGet.generated | 10 +- .../Examples/RestUpdateUser.generated | 14 +- 3.9/generated/Examples/RestVersion.generated | 8 +- .../Examples/RestVersionDetails.generated | 114 +- ...DeleteViewIdentifierArangoSearch.generated | 8 +- ...stViewDeleteViewNameArangoSearch.generated | 8 +- .../Examples/RestViewGetAllViews.generated | 16 +- ...iewGetViewIdentifierArangoSearch.generated | 16 +- .../RestViewGetViewNameArangoSearch.generated | 16 +- ...PropertiesIdentifierArangoSearch.generated | 50 +- ...etViewPropertiesNameArangoSearch.generated | 50 +- ...tViewPatchPropertiesArangoSearch.generated | 48 +- .../RestViewPostViewArangoSearch.generated | 50 +- ...estViewPutPropertiesArangoSearch.generated | 48 +- .../Examples/RestViewPutRename.generated | 18 +- .../Examples/RestWalAccessFirstTick.generated | 14 +- .../RestWalAccessTailingBufferLimit.generated | 18 +- .../RestWalAccessTailingEmpty.generated | 6 +- .../RestWalAccessTailingSome.generated | 18 +- .../Examples/RestWalAccessTickRange.generated | 16 +- 3.9/generated/Examples/arangobackup.json | 1116 ++ 3.9/generated/Examples/arangobench.json | 1395 +++ 3.9/generated/Examples/arangod.json | 9867 +++++++++++++++++ 3.9/generated/Examples/arangodump.json | 1322 +++ 3.9/generated/Examples/arangoexport.json | 1202 ++ 3.9/generated/Examples/arangoimport.json | 1432 +++ 3.9/generated/Examples/arangoinspect.json | 1745 +++ 3.9/generated/Examples/arangorestore.json | 1468 +++ 3.9/generated/Examples/arangosh.json | 1746 +++ 3.9/generated/Examples/arangovpack.json | 799 ++ 3.9/generated/Examples/job_cancel.generated | 22 +- .../Examples/job_delete_01.generated | 8 +- .../Examples/job_delete_02.generated | 18 +- .../Examples/job_delete_03.generated | 8 +- .../Examples/job_delete_04.generated | 10 +- .../Examples/job_fetch_result_01.generated | 10 +- .../Examples/job_fetch_result_02.generated | 10 +- .../Examples/job_fetch_result_03.generated | 14 +- .../Examples/job_fetch_result_04.generated | 18 +- .../Examples/job_getByType_01.generated | 10 +- .../Examples/job_getByType_02.generated | 6 +- .../Examples/job_getByType_03.generated | 22 +- .../Examples/job_getStatusById_01.generated | 14 +- .../Examples/job_getStatusById_02.generated | 14 +- 256 files changed, 27112 insertions(+), 5047 deletions(-) create mode 100644 3.9/generated/Examples/arangobackup.json create mode 100644 3.9/generated/Examples/arangobench.json create mode 100644 3.9/generated/Examples/arangod.json create mode 100644 3.9/generated/Examples/arangodump.json create mode 100644 3.9/generated/Examples/arangoexport.json create mode 100644 3.9/generated/Examples/arangoimport.json create mode 100644 3.9/generated/Examples/arangoinspect.json create mode 100644 3.9/generated/Examples/arangorestore.json create mode 100644 3.9/generated/Examples/arangosh.json create mode 100644 3.9/generated/Examples/arangovpack.json diff --git a/3.9/generated/Examples/HttpGharialAddEdge.generated b/3.9/generated/Examples/HttpGharialAddEdge.generated index be60896d89..cc4f3b8b78 100644 --- a/3.9/generated/Examples/HttpGharialAddEdge.generated +++ b/3.9/generated/Examples/HttpGharialAddEdge.generated @@ -1,25 +1,25 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial/social/edge/relation <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial/social/edge/relation <<EOF { - "type" : "friend", - "_from" : "female/alice", - "_to" : "female/diana" + "type" : "friend", + "_from" : "female/alice", + "_to" : "female/diana" } EOF HTTP/1.1 202 Accepted content-type: application/json connection: Keep-Alive -content-length: 94 -etag: _cYKKcKq--- +content-length: 90 +etag: _cvD7g2O--- server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 202, - "edge" : { - "_id" : "relation/64583", - "_key" : "64583", - "_rev" : "_cYKKcKq---" + "error" : false, + "code" : 202, + "edge" : { + "_id" : "relation/139", + "_key" : "139", + "_rev" : "_cvD7g2O---" } } diff --git a/3.9/generated/Examples/HttpGharialAddEdgeCol.generated b/3.9/generated/Examples/HttpGharialAddEdgeCol.generated index ed9b7c1e2a..f825654786 100644 --- a/3.9/generated/Examples/HttpGharialAddEdgeCol.generated +++ b/3.9/generated/Examples/HttpGharialAddEdgeCol.generated @@ -1,12 +1,12 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial/social/edge <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial/social/edge <<EOF { - "collection" : "works_in", - "from" : [ - "female", - "male" + "collection" : "works_in", + "from" : [ + "female", + "male" ], - "to" : [ - "city" + "to" : [ + "city" ] } EOF @@ -15,41 +15,41 @@ HTTP/1.1 202 A content-type: application/json connection: Keep-Alive content-length: 294 -etag: _cYKKcL2--- +etag: _cvD7g3y--A server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 202, - "graph" : { - "_key" : "social", - "edgeDefinitions" : [ + "error" : false, + "code" : 202, + "graph" : { + "_key" : "social", + "edgeDefinitions" : [ { - "collection" : "relation", - "from" : [ - "female", - "male" + "collection" : "relation", + "from" : [ + "female", + "male" ], - "to" : [ - "female", - "male" + "to" : [ + "female", + "male" ] }, { - "collection" : "works_in", - "from" : [ - "female", - "male" + "collection" : "works_in", + "from" : [ + "female", + "male" ], - "to" : [ - "city" + "to" : [ + "city" ] } ], - "orphanCollections" : [ ], - "_rev" : "_cYKKcL2---", - "_id" : "_graphs/social", - "name" : "social" + "orphanCollections" : [ ], + "_rev" : "_cvD7g3y--A", + "_id" : "_graphs/social", + "name" : "social" } } diff --git a/3.9/generated/Examples/HttpGharialAddVertex.generated b/3.9/generated/Examples/HttpGharialAddVertex.generated index 8bb075c95a..fb4eed73b3 100644 --- a/3.9/generated/Examples/HttpGharialAddVertex.generated +++ b/3.9/generated/Examples/HttpGharialAddVertex.generated @@ -1,23 +1,23 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial/social/vertex/male <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial/social/vertex/male <<EOF { - "name" : "Francis" + "name" : "Francis" } EOF HTTP/1.1 202 Accepted content-type: application/json connection: Keep-Alive -content-length: 92 -etag: _cYKKcN---- +content-length: 88 +etag: _cvD7g4i--B server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 202, - "vertex" : { - "_id" : "male/64732", - "_key" : "64732", - "_rev" : "_cYKKcN----" + "error" : false, + "code" : 202, + "vertex" : { + "_id" : "male/288", + "_key" : "288", + "_rev" : "_cvD7g4i--B" } } diff --git a/3.9/generated/Examples/HttpGharialAddVertexCol.generated b/3.9/generated/Examples/HttpGharialAddVertexCol.generated index 4ccbb4541a..4af357d66d 100644 --- a/3.9/generated/Examples/HttpGharialAddVertexCol.generated +++ b/3.9/generated/Examples/HttpGharialAddVertexCol.generated @@ -1,6 +1,6 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial/social/vertex <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial/social/vertex <<EOF { - "collection" : "otherVertices" + "collection" : "otherVertices" } EOF @@ -8,33 +8,33 @@ HTTP/1.1 202 A content-type: application/json connection: Keep-Alive content-length: 244 -etag: _cYKKcOC--- +etag: _cvD7g5S--_ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 202, - "graph" : { - "_key" : "social", - "edgeDefinitions" : [ + "error" : false, + "code" : 202, + "graph" : { + "_key" : "social", + "edgeDefinitions" : [ { - "collection" : "relation", - "from" : [ - "female", - "male" + "collection" : "relation", + "from" : [ + "female", + "male" ], - "to" : [ - "female", - "male" + "to" : [ + "female", + "male" ] } ], - "orphanCollections" : [ - "otherVertices" + "orphanCollections" : [ + "otherVertices" ], - "_rev" : "_cYKKcOC---", - "_id" : "_graphs/social", - "name" : "social" + "_rev" : "_cvD7g5S--_", + "_id" : "_graphs/social", + "name" : "social" } } diff --git a/3.9/generated/Examples/HttpGharialCreate.generated b/3.9/generated/Examples/HttpGharialCreate.generated index 68b66f5b9b..0d0ac8975f 100644 --- a/3.9/generated/Examples/HttpGharialCreate.generated +++ b/3.9/generated/Examples/HttpGharialCreate.generated @@ -1,14 +1,14 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial <<EOF { - "name" : "myGraph", - "edgeDefinitions" : [ + "name" : "myGraph", + "edgeDefinitions" : [ { - "collection" : "edges", - "from" : [ - "startVertices" + "collection" : "edges", + "from" : [ + "startVertices" ], - "to" : [ - "endVertices" + "to" : [ + "endVertices" ] } ] @@ -19,29 +19,29 @@ HTTP/1.1 202 A content-type: application/json connection: Keep-Alive content-length: 227 -etag: _cYKKcOm--_ +etag: _cvD7g5y--_ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 202, - "graph" : { - "_key" : "myGraph", - "edgeDefinitions" : [ + "error" : false, + "code" : 202, + "graph" : { + "_key" : "myGraph", + "edgeDefinitions" : [ { - "collection" : "edges", - "from" : [ - "startVertices" + "collection" : "edges", + "from" : [ + "startVertices" ], - "to" : [ - "endVertices" + "to" : [ + "endVertices" ] } ], - "orphanCollections" : [ ], - "_rev" : "_cYKKcOm--_", - "_id" : "_graphs/myGraph", - "name" : "myGraph" + "orphanCollections" : [ ], + "_rev" : "_cvD7g5y--_", + "_id" : "_graphs/myGraph", + "name" : "myGraph" } } diff --git a/3.9/generated/Examples/HttpGharialCreate2.generated b/3.9/generated/Examples/HttpGharialCreate2.generated index a2ee9f6eae..5a446e7225 100644 --- a/3.9/generated/Examples/HttpGharialCreate2.generated +++ b/3.9/generated/Examples/HttpGharialCreate2.generated @@ -1,25 +1,25 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial <<EOF { - "name" : "myGraph", - "edgeDefinitions" : [ + "name" : "myGraph", + "edgeDefinitions" : [ { - "collection" : "edges", - "from" : [ - "startVertices" + "collection" : "edges", + "from" : [ + "startVertices" ], - "to" : [ - "endVertices" + "to" : [ + "endVertices" ] } ], - "orphanCollections" : [ - "orphanVertices" + "orphanCollections" : [ + "orphanVertices" ], - "isSmart" : true, - "options" : { - "replicationFactor" : 2, - "numberOfShards" : 9, - "smartGraphAttribute" : "region" + "isSmart" : true, + "options" : { + "replicationFactor" : 2, + "numberOfShards" : 9, + "smartGraphAttribute" : "region" } } EOF @@ -28,31 +28,31 @@ HTTP/1.1 202 A content-type: application/json connection: Keep-Alive content-length: 243 -etag: _cYKKcPG--_ +etag: _cvD7g6O--_ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 202, - "graph" : { - "_key" : "myGraph", - "edgeDefinitions" : [ + "error" : false, + "code" : 202, + "graph" : { + "_key" : "myGraph", + "edgeDefinitions" : [ { - "collection" : "edges", - "from" : [ - "startVertices" + "collection" : "edges", + "from" : [ + "startVertices" ], - "to" : [ - "endVertices" + "to" : [ + "endVertices" ] } ], - "orphanCollections" : [ - "orphanVertices" + "orphanCollections" : [ + "orphanVertices" ], - "_rev" : "_cYKKcPG--_", - "_id" : "_graphs/myGraph", - "name" : "myGraph" + "_rev" : "_cvD7g6O--_", + "_id" : "_graphs/myGraph", + "name" : "myGraph" } } diff --git a/3.9/generated/Examples/HttpGharialDeleteEdge.generated b/3.9/generated/Examples/HttpGharialDeleteEdge.generated index 93a683ebd3..94696d7fb5 100644 --- a/3.9/generated/Examples/HttpGharialDeleteEdge.generated +++ b/3.9/generated/Examples/HttpGharialDeleteEdge.generated @@ -1,4 +1,4 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/social/edge/relation/64955 +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/social/edge/relation/511 HTTP/1.1 202 Accepted content-type: application/json @@ -8,7 +8,7 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 202, - "removed" : true + "error" : false, + "code" : 202, + "removed" : true } diff --git a/3.9/generated/Examples/HttpGharialDeleteVertex.generated b/3.9/generated/Examples/HttpGharialDeleteVertex.generated index bc41463e12..4ecaaa557a 100644 --- a/3.9/generated/Examples/HttpGharialDeleteVertex.generated +++ b/3.9/generated/Examples/HttpGharialDeleteVertex.generated @@ -1,4 +1,4 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/social/vertex/female/alice +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/social/vertex/female/alice HTTP/1.1 202 Accepted content-type: application/json @@ -8,7 +8,7 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 202, - "removed" : true + "error" : false, + "code" : 202, + "removed" : true } diff --git a/3.9/generated/Examples/HttpGharialDrop.generated b/3.9/generated/Examples/HttpGharialDrop.generated index a0bb692389..8164f29ab7 100644 --- a/3.9/generated/Examples/HttpGharialDrop.generated +++ b/3.9/generated/Examples/HttpGharialDrop.generated @@ -1,4 +1,4 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/social?dropCollections=true +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/social?dropCollections=true HTTP/1.1 202 Accepted content-type: application/json @@ -8,7 +8,7 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 202, - "removed" : true + "error" : false, + "code" : 202, + "removed" : true } diff --git a/3.9/generated/Examples/HttpGharialEdgeDefinitionRemove.generated b/3.9/generated/Examples/HttpGharialEdgeDefinitionRemove.generated index 1b44f47d33..2ee4736179 100644 --- a/3.9/generated/Examples/HttpGharialEdgeDefinitionRemove.generated +++ b/3.9/generated/Examples/HttpGharialEdgeDefinitionRemove.generated @@ -1,25 +1,25 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/social/edge/relation +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/social/edge/relation HTTP/1.1 202 Accepted content-type: application/json connection: Keep-Alive content-length: 171 -etag: _cYKKcTa--_ +etag: _cvD7g9S--B server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 202, - "graph" : { - "_key" : "social", - "edgeDefinitions" : [ ], - "orphanCollections" : [ - "female", - "male" + "error" : false, + "code" : 202, + "graph" : { + "_key" : "social", + "edgeDefinitions" : [ ], + "orphanCollections" : [ + "female", + "male" ], - "_rev" : "_cYKKcTa--_", - "_id" : "_graphs/social", - "name" : "social" + "_rev" : "_cvD7g9S--B", + "_id" : "_graphs/social", + "name" : "social" } } diff --git a/3.9/generated/Examples/HttpGharialGetEdge.generated b/3.9/generated/Examples/HttpGharialGetEdge.generated index a0ea4ee5b4..ed752def41 100644 --- a/3.9/generated/Examples/HttpGharialGetEdge.generated +++ b/3.9/generated/Examples/HttpGharialGetEdge.generated @@ -1,23 +1,23 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/social/edge/relation/65217 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/social/edge/relation/771 HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 165 -etag: _cYKKcUW--_ +content-length: 168 +etag: _cvD7h----B server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "edge" : { - "_key" : "65217", - "_id" : "relation/65217", - "_from" : "male/bob", - "_to" : "female/diana", - "_rev" : "_cYKKcUW--_", - "type" : "friend", - "vertex" : "bob" + "error" : false, + "code" : 200, + "edge" : { + "_key" : "771", + "_id" : "relation/771", + "_from" : "male/charly", + "_to" : "female/diana", + "_rev" : "_cvD7h----B", + "type" : "married", + "vertex" : "charly" } } diff --git a/3.9/generated/Examples/HttpGharialGetGraph.generated b/3.9/generated/Examples/HttpGharialGetGraph.generated index a2b29be102..fae7b37331 100644 --- a/3.9/generated/Examples/HttpGharialGetGraph.generated +++ b/3.9/generated/Examples/HttpGharialGetGraph.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/myGraph +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/myGraph HTTP/1.1 200 OK content-type: application/json @@ -8,24 +8,24 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "graph" : { - "_key" : "myGraph", - "edgeDefinitions" : [ + "error" : false, + "code" : 200, + "graph" : { + "_key" : "myGraph", + "edgeDefinitions" : [ { - "collection" : "edges", - "from" : [ - "startVertices" + "collection" : "edges", + "from" : [ + "startVertices" ], - "to" : [ - "endVertices" + "to" : [ + "endVertices" ] } ], - "orphanCollections" : [ ], - "_rev" : "_cYKKcU6--_", - "_id" : "_graphs/myGraph", - "name" : "myGraph" + "orphanCollections" : [ ], + "_rev" : "_cvD7h-a--_", + "_id" : "_graphs/myGraph", + "name" : "myGraph" } } diff --git a/3.9/generated/Examples/HttpGharialGetVertex.generated b/3.9/generated/Examples/HttpGharialGetVertex.generated index 730484f8b8..019d42ab8a 100644 --- a/3.9/generated/Examples/HttpGharialGetVertex.generated +++ b/3.9/generated/Examples/HttpGharialGetVertex.generated @@ -1,20 +1,20 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/social/vertex/female/alice +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/social/vertex/female/alice HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive content-length: 109 -etag: _cYKKcVy--- +etag: _cvD7h_C--- server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "vertex" : { - "_key" : "alice", - "_id" : "female/alice", - "_rev" : "_cYKKcVy---", - "name" : "Alice" + "error" : false, + "code" : 200, + "vertex" : { + "_key" : "alice", + "_id" : "female/alice", + "_rev" : "_cvD7h_C---", + "name" : "Alice" } } diff --git a/3.9/generated/Examples/HttpGharialList.generated b/3.9/generated/Examples/HttpGharialList.generated index 6d1944f95a..3d3e5c0682 100644 --- a/3.9/generated/Examples/HttpGharialList.generated +++ b/3.9/generated/Examples/HttpGharialList.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial HTTP/1.1 200 OK content-type: application/json @@ -8,66 +8,66 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "graphs" : [ + "error" : false, + "code" : 200, + "graphs" : [ { - "_id" : "_graphs/social", - "_key" : "social", - "_rev" : "_cYKKcWq---", - "edgeDefinitions" : [ + "_id" : "_graphs/social", + "_key" : "social", + "_rev" : "_cvD7h_q---", + "edgeDefinitions" : [ { - "collection" : "relation", - "from" : [ - "female", - "male" + "collection" : "relation", + "from" : [ + "female", + "male" ], - "to" : [ - "female", - "male" + "to" : [ + "female", + "male" ] } ], - "orphanCollections" : [ ], - "name" : "social" + "orphanCollections" : [ ], + "name" : "social" }, { - "_id" : "_graphs/routeplanner", - "_key" : "routeplanner", - "_rev" : "_cYKKcXK--_", - "edgeDefinitions" : [ + "_id" : "_graphs/routeplanner", + "_key" : "routeplanner", + "_rev" : "_cvD7hA----", + "edgeDefinitions" : [ { - "collection" : "frenchHighway", - "from" : [ - "frenchCity" + "collection" : "frenchHighway", + "from" : [ + "frenchCity" ], - "to" : [ - "frenchCity" + "to" : [ + "frenchCity" ] }, { - "collection" : "germanHighway", - "from" : [ - "germanCity" + "collection" : "germanHighway", + "from" : [ + "germanCity" ], - "to" : [ - "germanCity" + "to" : [ + "germanCity" ] }, { - "collection" : "internationalHighway", - "from" : [ - "frenchCity", - "germanCity" + "collection" : "internationalHighway", + "from" : [ + "frenchCity", + "germanCity" ], - "to" : [ - "frenchCity", - "germanCity" + "to" : [ + "frenchCity", + "germanCity" ] } ], - "orphanCollections" : [ ], - "name" : "routeplanner" + "orphanCollections" : [ ], + "name" : "routeplanner" } ] } diff --git a/3.9/generated/Examples/HttpGharialListEdge.generated b/3.9/generated/Examples/HttpGharialListEdge.generated index 2167a49643..851c990afa 100644 --- a/3.9/generated/Examples/HttpGharialListEdge.generated +++ b/3.9/generated/Examples/HttpGharialListEdge.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/social/edge +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/social/edge HTTP/1.1 200 OK content-type: application/json @@ -8,9 +8,9 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "collections" : [ - "relation" + "error" : false, + "code" : 200, + "collections" : [ + "relation" ] } diff --git a/3.9/generated/Examples/HttpGharialListVertex.generated b/3.9/generated/Examples/HttpGharialListVertex.generated index 8c264ad589..0fbe302fc0 100644 --- a/3.9/generated/Examples/HttpGharialListVertex.generated +++ b/3.9/generated/Examples/HttpGharialListVertex.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/social/vertex +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/social/vertex HTTP/1.1 200 OK content-type: application/json @@ -8,10 +8,10 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "collections" : [ - "female", - "male" + "error" : false, + "code" : 200, + "collections" : [ + "female", + "male" ] } diff --git a/3.9/generated/Examples/HttpGharialModifyVertex.generated b/3.9/generated/Examples/HttpGharialModifyVertex.generated index f0cce72bc1..596c7dfa6d 100644 --- a/3.9/generated/Examples/HttpGharialModifyVertex.generated +++ b/3.9/generated/Examples/HttpGharialModifyVertex.generated @@ -1,6 +1,6 @@ -shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial/social/vertex/female/alice <<EOF +shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial/social/vertex/female/alice <<EOF { - "age" : 26 + "age" : 26 } EOF @@ -8,17 +8,17 @@ HTTP/1.1 202 A content-type: application/json connection: Keep-Alive content-length: 118 -etag: _cYKKca2--A +etag: _cvD7hCy--A server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 202, - "vertex" : { - "_id" : "female/alice", - "_key" : "alice", - "_oldRev" : "_cYKKcau---", - "_rev" : "_cYKKca2--A" + "error" : false, + "code" : 202, + "vertex" : { + "_id" : "female/alice", + "_key" : "alice", + "_oldRev" : "_cvD7hCq---", + "_rev" : "_cvD7hCy--A" } } diff --git a/3.9/generated/Examples/HttpGharialPatchEdge.generated b/3.9/generated/Examples/HttpGharialPatchEdge.generated index 1b74d3ca59..06e2ecc5a1 100644 --- a/3.9/generated/Examples/HttpGharialPatchEdge.generated +++ b/3.9/generated/Examples/HttpGharialPatchEdge.generated @@ -1,24 +1,24 @@ -shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial/social/edge/relation/65722 <<EOF +shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial/social/edge/relation/1284 <<EOF { - "since" : "01.01.2001" + "since" : "01.01.2001" } EOF HTTP/1.1 202 Accepted content-type: application/json connection: Keep-Alive -content-length: 118 -etag: _cYKKcbu--- +content-length: 116 +etag: _cvD7hDi--- server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 202, - "edge" : { - "_id" : "relation/65722", - "_key" : "65722", - "_oldRev" : "_cYKKcbm--A", - "_rev" : "_cYKKcbu---" + "error" : false, + "code" : 202, + "edge" : { + "_id" : "relation/1284", + "_key" : "1284", + "_oldRev" : "_cvD7hDe--_", + "_rev" : "_cvD7hDi---" } } diff --git a/3.9/generated/Examples/HttpGharialPutEdge.generated b/3.9/generated/Examples/HttpGharialPutEdge.generated index 63ddaa1b21..91615cae94 100644 --- a/3.9/generated/Examples/HttpGharialPutEdge.generated +++ b/3.9/generated/Examples/HttpGharialPutEdge.generated @@ -1,26 +1,26 @@ -shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial/social/edge/relation/65785 <<EOF +shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial/social/edge/relation/1345 <<EOF { - "type" : "divorced", - "_from" : "female/alice", - "_to" : "male/bob" + "type" : "divorced", + "_from" : "female/alice", + "_to" : "male/bob" } EOF HTTP/1.1 202 Accepted content-type: application/json connection: Keep-Alive -content-length: 118 -etag: _cYKKccq--- +content-length: 116 +etag: _cvD7hEK--A server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 202, - "edge" : { - "_id" : "relation/65785", - "_key" : "65785", - "_oldRev" : "_cYKKcci---", - "_rev" : "_cYKKccq---" + "error" : false, + "code" : 202, + "edge" : { + "_id" : "relation/1345", + "_key" : "1345", + "_oldRev" : "_cvD7hEK---", + "_rev" : "_cvD7hEK--A" } } diff --git a/3.9/generated/Examples/HttpGharialRemoveVertexCollection.generated b/3.9/generated/Examples/HttpGharialRemoveVertexCollection.generated index 251ae9a7d7..166a9d72ff 100644 --- a/3.9/generated/Examples/HttpGharialRemoveVertexCollection.generated +++ b/3.9/generated/Examples/HttpGharialRemoveVertexCollection.generated @@ -1,34 +1,34 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/social/vertex/otherVertices +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/social/vertex/otherVertices HTTP/1.1 202 Accepted content-type: application/json connection: Keep-Alive content-length: 229 -etag: _cYKKcdy--- +etag: _cvD7hF---- server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 202, - "graph" : { - "_key" : "social", - "edgeDefinitions" : [ + "error" : false, + "code" : 202, + "graph" : { + "_key" : "social", + "edgeDefinitions" : [ { - "collection" : "relation", - "from" : [ - "female", - "male" + "collection" : "relation", + "from" : [ + "female", + "male" ], - "to" : [ - "female", - "male" + "to" : [ + "female", + "male" ] } ], - "orphanCollections" : [ ], - "_rev" : "_cYKKcdy---", - "_id" : "_graphs/social", - "name" : "social" + "orphanCollections" : [ ], + "_rev" : "_cvD7hF----", + "_id" : "_graphs/social", + "name" : "social" } } diff --git a/3.9/generated/Examples/HttpGharialRemoveVertexCollectionFailed.generated b/3.9/generated/Examples/HttpGharialRemoveVertexCollectionFailed.generated index 22b4b663b8..f8fbf62e98 100644 --- a/3.9/generated/Examples/HttpGharialRemoveVertexCollectionFailed.generated +++ b/3.9/generated/Examples/HttpGharialRemoveVertexCollectionFailed.generated @@ -1,4 +1,4 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/social/vertex/male +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/social/vertex/male HTTP/1.1 400 Bad Request content-type: application/json @@ -8,8 +8,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 400, - "error" : true, - "errorMessage" : "collection is not in list of orphan collections", - "errorNum" : 1928 + "code" : 400, + "error" : true, + "errorMessage" : "collection is not in list of orphan collections", + "errorNum" : 1928 } diff --git a/3.9/generated/Examples/HttpGharialReplaceEdgeCol.generated b/3.9/generated/Examples/HttpGharialReplaceEdgeCol.generated index 4db52dd4c6..5b98e9ba54 100644 --- a/3.9/generated/Examples/HttpGharialReplaceEdgeCol.generated +++ b/3.9/generated/Examples/HttpGharialReplaceEdgeCol.generated @@ -1,15 +1,15 @@ -shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial/social/edge/relation <<EOF +shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial/social/edge/relation <<EOF { - "collection" : "relation", - "from" : [ - "female", - "male", - "animal" + "collection" : "relation", + "from" : [ + "female", + "male", + "animal" ], - "to" : [ - "female", - "male", - "animal" + "to" : [ + "female", + "male", + "animal" ] } EOF @@ -18,33 +18,33 @@ HTTP/1.1 202 A content-type: application/json connection: Keep-Alive content-length: 247 -etag: _cYKKcfu--- +etag: _cvD7hGS--- server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 202, - "graph" : { - "_key" : "social", - "edgeDefinitions" : [ + "error" : false, + "code" : 202, + "graph" : { + "_key" : "social", + "edgeDefinitions" : [ { - "collection" : "relation", - "from" : [ - "animal", - "female", - "male" + "collection" : "relation", + "from" : [ + "animal", + "female", + "male" ], - "to" : [ - "animal", - "female", - "male" + "to" : [ + "animal", + "female", + "male" ] } ], - "orphanCollections" : [ ], - "_rev" : "_cYKKcfu---", - "_id" : "_graphs/social", - "name" : "social" + "orphanCollections" : [ ], + "_rev" : "_cvD7hGS---", + "_id" : "_graphs/social", + "name" : "social" } } diff --git a/3.9/generated/Examples/HttpGharialReplaceVertex.generated b/3.9/generated/Examples/HttpGharialReplaceVertex.generated index 2e529616d9..5a21a77779 100644 --- a/3.9/generated/Examples/HttpGharialReplaceVertex.generated +++ b/3.9/generated/Examples/HttpGharialReplaceVertex.generated @@ -1,7 +1,7 @@ -shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial/social/vertex/female/alice <<EOF +shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial/social/vertex/female/alice <<EOF { - "name" : "Alice Cooper", - "age" : 26 + "name" : "Alice Cooper", + "age" : 26 } EOF @@ -9,17 +9,17 @@ HTTP/1.1 202 A content-type: application/json connection: Keep-Alive content-length: 118 -etag: _cYKKcgu--_ +etag: _cvD7hHS--_ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 202, - "vertex" : { - "_id" : "female/alice", - "_key" : "alice", - "_oldRev" : "_cYKKcge---", - "_rev" : "_cYKKcgu--_" + "error" : false, + "code" : 202, + "vertex" : { + "_id" : "female/alice", + "_key" : "alice", + "_oldRev" : "_cvD7hHK---", + "_rev" : "_cvD7hHS--_" } } diff --git a/3.9/generated/Examples/RestAdminCompact.generated b/3.9/generated/Examples/RestAdminCompact.generated index d0fa115642..151e8ad2ad 100644 --- a/3.9/generated/Examples/RestAdminCompact.generated +++ b/3.9/generated/Examples/RestAdminCompact.generated @@ -1,4 +1,4 @@ -shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_admin/compact +shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_admin/compact HTTP/1.1 200 OK content-type: application/json diff --git a/3.9/generated/Examples/RestAdminMetrics.generated b/3.9/generated/Examples/RestAdminMetrics.generated index 919c53464a..bf2b88f166 100644 --- a/3.9/generated/Examples/RestAdminMetrics.generated +++ b/3.9/generated/Examples/RestAdminMetrics.generated @@ -1,9 +1,9 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_admin/metrics +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_admin/metrics HTTP/1.1 200 OK content-type: text/plain connection: Keep-Alive -content-length: 47215 +content-length: 46390 server: ArangoDB x-content-type-options: nosniff @@ -35,7 +35,7 @@ arangodb_agencycomm_request_time_msec_count{role="SINGLE"} 0 # HELP arangodb_aql_all_query Total number of AQL queries finished # TYPE arangodb_aql_all_query counter -arangodb_aql_all_query{role="SINGLE"} 358 +arangodb_aql_all_query{role="SINGLE"} 115 # HELP arangodb_aql_current_query Current number of AQL queries executing # TYPE arangodb_aql_current_query gauge @@ -43,7 +43,7 @@ arangodb_aql_current_query{role="SINGLE"} 0 # HELP arangodb_aql_global_memory_limit Total memory limit for all AQL queries combined [bytes] # TYPE arangodb_aql_global_memory_limit gauge -arangodb_aql_global_memory_limit{role="SINGLE"} 51208202281 +arangodb_aql_global_memory_limit{role="SINGLE"} 27831388078 # HELP arangodb_aql_global_memory_usage Total memory usage of all AQL queries executing [bytes], granularity: 32768 bytes steps # TYPE arangodb_aql_global_memory_usage gauge @@ -55,35 +55,35 @@ arangodb_aql_global_query_memory_limit_reached_total{role="SINGLE"} 0 # HELP arangodb_aql_local_query_memory_limit_reached_total Number of local AQL query memory limit violations # TYPE arangodb_aql_local_query_memory_limit_reached_total counter -arangodb_aql_local_query_memory_limit_reached_total{role="SINGLE"} 1 +arangodb_aql_local_query_memory_limit_reached_total{role="SINGLE"} 0 # HELP arangodb_aql_query_time Execution time histogram for all AQL queries [s] # TYPE arangodb_aql_query_time histogram -arangodb_aql_query_time_bucket{role="SINGLE",le="0.000095"} 76 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.000191"} 144 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.000381"} 91 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.000763"} 33 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.001526"} 10 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.003052"} 0 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.000095"} 0 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.000191"} 2 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.000381"} 106 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.000763"} 3 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.001526"} 1 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.003052"} 1 arangodb_aql_query_time_bucket{role="SINGLE",le="0.006104"} 1 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.012207"} 0 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.024414"} 1 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.012207"} 1 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.024414"} 0 arangodb_aql_query_time_bucket{role="SINGLE",le="0.048828"} 0 arangodb_aql_query_time_bucket{role="SINGLE",le="0.097656"} 0 arangodb_aql_query_time_bucket{role="SINGLE",le="0.195312"} 0 arangodb_aql_query_time_bucket{role="SINGLE",le="0.390625"} 0 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.781250"} 1 -arangodb_aql_query_time_bucket{role="SINGLE",le="1.562500"} 1 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.781250"} 0 +arangodb_aql_query_time_bucket{role="SINGLE",le="1.562500"} 0 arangodb_aql_query_time_bucket{role="SINGLE",le="3.125000"} 0 arangodb_aql_query_time_bucket{role="SINGLE",le="6.250000"} 0 arangodb_aql_query_time_bucket{role="SINGLE",le="12.500000"} 0 arangodb_aql_query_time_bucket{role="SINGLE",le="25.000000"} 0 arangodb_aql_query_time_bucket{role="SINGLE",le="+Inf"} 0 -arangodb_aql_query_time_count{role="SINGLE"} 358 +arangodb_aql_query_time_count{role="SINGLE"} 115 # HELP arangodb_aql_slow_query_time Execution time histogram for slow AQL queries [s] # TYPE arangodb_aql_slow_query_time histogram -arangodb_aql_slow_query_time_bucket{role="SINGLE",le="4.904297"} 1 +arangodb_aql_slow_query_time_bucket{role="SINGLE",le="4.904297"} 0 arangodb_aql_slow_query_time_bucket{role="SINGLE",le="8.808594"} 0 arangodb_aql_slow_query_time_bucket{role="SINGLE",le="16.617188"} 0 arangodb_aql_slow_query_time_bucket{role="SINGLE",le="32.234375"} 0 @@ -93,26 +93,26 @@ arangodb_aql_slow_query_time_bucket{role="SINGLE",le="250.875000"} 0 arangodb_aql_slow_query_time_bucket{role="SINGLE",le="500.750000"} 0 arangodb_aql_slow_query_time_bucket{role="SINGLE",le="1000.500000"} 0 arangodb_aql_slow_query_time_bucket{role="SINGLE",le="+Inf"} 0 -arangodb_aql_slow_query_time_count{role="SINGLE"} 1 +arangodb_aql_slow_query_time_count{role="SINGLE"} 0 # HELP arangodb_aql_slow_query Total number of slow AQL queries finished # TYPE arangodb_aql_slow_query counter -arangodb_aql_slow_query{role="SINGLE"} 1 +arangodb_aql_slow_query{role="SINGLE"} 0 # HELP arangodb_aql_total_query_time_msec Total execution time of all AQL queries [ms] # TYPE arangodb_aql_total_query_time_msec counter -arangodb_aql_total_query_time_msec{role="SINGLE"} 1826 +arangodb_aql_total_query_time_msec{role="SINGLE"} 15 # HELP arangodb_collection_lock_acquisition_micros Total amount of collection lock acquisition time [μs] # TYPE arangodb_collection_lock_acquisition_micros counter -arangodb_collection_lock_acquisition_micros{role="SINGLE"} 9852 +arangodb_collection_lock_acquisition_micros{role="SINGLE"} 898 # HELP arangodb_collection_lock_acquisition_time Collection lock acquisition time histogram [s] # TYPE arangodb_collection_lock_acquisition_time histogram -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000000"} 0 -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000001"} 23110 -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000010"} 8896 -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000100"} 24 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000000"} 6 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000001"} 2 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000010"} 387 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000100"} 5 arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.001000"} 0 arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.010000"} 0 arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.100000"} 0 @@ -120,7 +120,7 @@ arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="1.000000"} 0 arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="10.000000"} 0 arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="100.000000"} 0 arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="+Inf"} 0 -arangodb_collection_lock_acquisition_time_count{role="SINGLE"} 32030 +arangodb_collection_lock_acquisition_time_count{role="SINGLE"} 400 # HELP arangodb_collection_lock_sequential_mode Number of transactions using sequential locking of collections to avoid deadlocking # TYPE arangodb_collection_lock_sequential_mode counter @@ -369,15 +369,15 @@ arangodb_scheduler_high_prio_queue_length{role="SINGLE"} 0 # HELP arangodb_scheduler_jobs_dequeued Total number of jobs dequeued # TYPE arangodb_scheduler_jobs_dequeued gauge -arangodb_scheduler_jobs_dequeued{role="SINGLE"} 32830 +arangodb_scheduler_jobs_dequeued{role="SINGLE"} 188 # HELP arangodb_scheduler_jobs_done Total number of queue jobs done # TYPE arangodb_scheduler_jobs_done gauge -arangodb_scheduler_jobs_done{role="SINGLE"} 32829 +arangodb_scheduler_jobs_done{role="SINGLE"} 188 # HELP arangodb_scheduler_jobs_submitted Total number of jobs submitted to the scheduler # TYPE arangodb_scheduler_jobs_submitted gauge -arangodb_scheduler_jobs_submitted{role="SINGLE"} 32830 +arangodb_scheduler_jobs_submitted{role="SINGLE"} 188 # HELP arangodb_scheduler_low_prio_queue_last_dequeue_time Last recorded dequeue time for a low priority queue item [ms] # TYPE arangodb_scheduler_low_prio_queue_last_dequeue_time gauge @@ -397,7 +397,7 @@ arangodb_scheduler_medium_prio_queue_length{role="SINGLE"} 0 # HELP arangodb_scheduler_awake_threads Number of awake worker threads # TYPE arangodb_scheduler_awake_threads gauge -arangodb_scheduler_awake_threads{role="SINGLE"} 1 +arangodb_scheduler_awake_threads{role="SINGLE"} 0 # HELP arangodb_scheduler_num_worker_threads Number of worker threads # TYPE arangodb_scheduler_num_worker_threads gauge @@ -405,7 +405,7 @@ arangodb_scheduler_num_worker_threads{role="SINGLE"} 4 # HELP arangodb_scheduler_num_working_threads Number of working threads # TYPE arangodb_scheduler_num_working_threads gauge -arangodb_scheduler_num_working_threads{role="SINGLE"} 1 +arangodb_scheduler_num_working_threads{role="SINGLE"} 0 # HELP arangodb_scheduler_ongoing_low_prio Total number of ongoing RestHandlers coming from the low prio queue # TYPE arangodb_scheduler_ongoing_low_prio gauge @@ -429,11 +429,11 @@ arangodb_scheduler_threads_stopped{role="SINGLE"} 0 # HELP arangodb_transactions_aborted Number of transactions aborted # TYPE arangodb_transactions_aborted counter -arangodb_transactions_aborted{role="SINGLE"} 292 +arangodb_transactions_aborted{role="SINGLE"} 131 # HELP arangodb_transactions_committed Number of transactions committed # TYPE arangodb_transactions_committed counter -arangodb_transactions_committed{role="SINGLE"} 32823 +arangodb_transactions_committed{role="SINGLE"} 637 # HELP arangodb_transactions_expired Total number of expired transactions # TYPE arangodb_transactions_expired counter @@ -441,15 +441,15 @@ arangodb_transactions_expired{role="SINGLE"} 0 # HELP arangodb_transactions_started Number of transactions started # TYPE arangodb_transactions_started counter -arangodb_transactions_started{role="SINGLE"} 33115 +arangodb_transactions_started{role="SINGLE"} 768 # HELP arangodb_v8_context_created V8 contexts created # TYPE arangodb_v8_context_created counter -arangodb_v8_context_created{role="SINGLE"} 2 +arangodb_v8_context_created{role="SINGLE"} 1 # HELP arangodb_v8_context_creation_time_msec Total time for creating V8 contexts [ms] # TYPE arangodb_v8_context_creation_time_msec counter -arangodb_v8_context_creation_time_msec{role="SINGLE"} 12 +arangodb_v8_context_creation_time_msec{role="SINGLE"} 28 # HELP arangodb_v8_context_destroyed V8 contexts destroyed # TYPE arangodb_v8_context_destroyed counter @@ -461,73 +461,57 @@ arangodb_v8_context_enter_failures{role="SINGLE"} 0 # HELP arangodb_v8_context_entered V8 context enter events # TYPE arangodb_v8_context_entered counter -arangodb_v8_context_entered{role="SINGLE"} 23 +arangodb_v8_context_entered{role="SINGLE"} 5 # HELP arangodb_v8_context_exited V8 context exit events # TYPE arangodb_v8_context_exited counter -arangodb_v8_context_exited{role="SINGLE"} 23 +arangodb_v8_context_exited{role="SINGLE"} 5 # HELP arangodb_process_statistics_minor_page_faults The number of minor faults the process has made which have not required loading a memory page from disk. This figure is not reported on Windows # TYPE arangodb_process_statistics_minor_page_faults gauge -arangodb_process_statistics_minor_page_faults 76801 +arangodb_process_statistics_minor_page_faults 51348 # HELP arangodb_process_statistics_major_page_faults On Windows, this figure contains the total number of page faults. On other system, this figure contains the number of major faults the process has made which have required loading a memory page from disk # TYPE arangodb_process_statistics_major_page_faults gauge -arangodb_process_statistics_major_page_faults 0 +arangodb_process_statistics_major_page_faults 3505 # HELP arangodb_process_statistics_user_time Amount of time that this process has been scheduled in user mode, measured in seconds # TYPE arangodb_process_statistics_user_time gauge -arangodb_process_statistics_user_time 6.660000 +arangodb_process_statistics_user_time 0.485617 # HELP arangodb_process_statistics_system_time Amount of time that this process has been scheduled in kernel mode, measured in seconds # TYPE arangodb_process_statistics_system_time gauge -arangodb_process_statistics_system_time 3.050000 +arangodb_process_statistics_system_time 0.194748 # HELP arangodb_process_statistics_number_of_threads Number of threads in the arangod process # TYPE arangodb_process_statistics_number_of_threads gauge -arangodb_process_statistics_number_of_threads 51 +arangodb_process_statistics_number_of_threads 47 # HELP arangodb_process_statistics_resident_set_size The total size of the number of pages the process has in real memory. This is just the pages which count toward text, data, or stack space. This does not include pages which have not been demand-loaded in, or which are swapped out. The resident set size is reported in bytes # TYPE arangodb_process_statistics_resident_set_size gauge -arangodb_process_statistics_resident_set_size 314568704 +arangodb_process_statistics_resident_set_size 215175168 # HELP arangodb_process_statistics_resident_set_size_percent The relative size of the number of pages the process has in real memory compared to system memory. This is just the pages which count toward text, data, or stack space. This does not include pages which have not been demand-loaded in, or which are swapped out. The value is a ratio between 0.00 and 1.00 # TYPE arangodb_process_statistics_resident_set_size_percent gauge -arangodb_process_statistics_resident_set_size_percent 0.004976 +arangodb_process_statistics_resident_set_size_percent 0.006262 # HELP arangodb_process_statistics_virtual_memory_size On Windows, this figure contains the total amount of memory that the memory manager has committed for the arangod process. On other systems, this figure contains The size of the virtual memory the process is using # TYPE arangodb_process_statistics_virtual_memory_size gauge -arangodb_process_statistics_virtual_memory_size 1363283968 +arangodb_process_statistics_virtual_memory_size 6059905024 # HELP arangodb_server_statistics_physical_memory Physical memory in bytes # TYPE arangodb_server_statistics_physical_memory gauge -arangodb_server_statistics_physical_memory 63220002816 +arangodb_server_statistics_physical_memory 34359738368 # HELP arangodb_server_statistics_server_uptime Number of seconds elapsed since server start # TYPE arangodb_server_statistics_server_uptime gauge -arangodb_server_statistics_server_uptime 14.741664 +arangodb_server_statistics_server_uptime 1.533868 # HELP arangodb_server_statistics_cpu_cores Number of CPU cores visible to the arangod process # TYPE arangodb_server_statistics_cpu_cores gauge arangodb_server_statistics_cpu_cores 16 -# HELP arangodb_server_statistics_user_percent Percentage of time that the system CPUs have spent in user mode -# TYPE arangodb_server_statistics_user_percent gauge -arangodb_server_statistics_user_percent 28.774406 - -# HELP arangodb_server_statistics_system_percent Percentage of time that the system CPUs have spent in kernel mode -# TYPE arangodb_server_statistics_system_percent gauge -arangodb_server_statistics_system_percent 8.682358 - -# HELP arangodb_server_statistics_idle_percent Percentage of time that the system CPUs have been idle -# TYPE arangodb_server_statistics_idle_percent gauge -arangodb_server_statistics_idle_percent 62.349647 - -# HELP arangodb_server_statistics_iowait_percent Percentage of time that the system CPUs have been waiting for I/O -# TYPE arangodb_server_statistics_iowait_percent gauge -arangodb_server_statistics_iowait_percent 0.089262 - # HELP arangodb_client_connection_statistics_client_connections The number of client connections that are currently open # TYPE arangodb_client_connection_statistics_client_connections gauge arangodb_client_connection_statistics_client_connections 2 @@ -542,35 +526,35 @@ arangodb_client_connection_statistics_connection_time_count 0 # HELP arangodb_client_connection_statistics_total_time Total time needed to answer a request # TYPE arangodb_client_connection_statistics_total_time histogram -arangodb_client_connection_statistics_total_time_bucket{le="0.01"} 32799 -arangodb_client_connection_statistics_total_time_bucket{le="0.05"} 4 -arangodb_client_connection_statistics_total_time_bucket{le="0.1"} 1 +arangodb_client_connection_statistics_total_time_bucket{le="0.01"} 441 +arangodb_client_connection_statistics_total_time_bucket{le="0.05"} 0 +arangodb_client_connection_statistics_total_time_bucket{le="0.1"} 0 arangodb_client_connection_statistics_total_time_bucket{le="0.2"} 0 arangodb_client_connection_statistics_total_time_bucket{le="0.5"} 0 -arangodb_client_connection_statistics_total_time_bucket{le="1.0"} 1 +arangodb_client_connection_statistics_total_time_bucket{le="1.0"} 0 arangodb_client_connection_statistics_total_time_bucket{le="5.0"} 0 arangodb_client_connection_statistics_total_time_bucket{le="15.0"} 0 arangodb_client_connection_statistics_total_time_bucket{le="30.0"} 0 arangodb_client_connection_statistics_total_time_bucket{le="+Inf"} 0 -arangodb_client_connection_statistics_total_time_count 32805 +arangodb_client_connection_statistics_total_time_count 441 # HELP arangodb_client_connection_statistics_request_time Request time needed to answer a request # TYPE arangodb_client_connection_statistics_request_time histogram -arangodb_client_connection_statistics_request_time_bucket{le="0.01"} 32799 -arangodb_client_connection_statistics_request_time_bucket{le="0.05"} 4 -arangodb_client_connection_statistics_request_time_bucket{le="0.1"} 1 +arangodb_client_connection_statistics_request_time_bucket{le="0.01"} 441 +arangodb_client_connection_statistics_request_time_bucket{le="0.05"} 0 +arangodb_client_connection_statistics_request_time_bucket{le="0.1"} 0 arangodb_client_connection_statistics_request_time_bucket{le="0.2"} 0 arangodb_client_connection_statistics_request_time_bucket{le="0.5"} 0 -arangodb_client_connection_statistics_request_time_bucket{le="1.0"} 1 +arangodb_client_connection_statistics_request_time_bucket{le="1.0"} 0 arangodb_client_connection_statistics_request_time_bucket{le="5.0"} 0 arangodb_client_connection_statistics_request_time_bucket{le="15.0"} 0 arangodb_client_connection_statistics_request_time_bucket{le="30.0"} 0 arangodb_client_connection_statistics_request_time_bucket{le="+Inf"} 0 -arangodb_client_connection_statistics_request_time_count 32805 +arangodb_client_connection_statistics_request_time_count 441 # HELP arangodb_client_connection_statistics_queue_time Request time needed to answer a request # TYPE arangodb_client_connection_statistics_queue_time histogram -arangodb_client_connection_statistics_queue_time_bucket{le="0.01"} 32805 +arangodb_client_connection_statistics_queue_time_bucket{le="0.01"} 441 arangodb_client_connection_statistics_queue_time_bucket{le="0.05"} 0 arangodb_client_connection_statistics_queue_time_bucket{le="0.1"} 0 arangodb_client_connection_statistics_queue_time_bucket{le="0.2"} 0 @@ -580,11 +564,11 @@ arangodb_client_connection_statistics_queue_time_bucket{le="5.0"} 0 arangodb_client_connection_statistics_queue_time_bucket{le="15.0"} 0 arangodb_client_connection_statistics_queue_time_bucket{le="30.0"} 0 arangodb_client_connection_statistics_queue_time_bucket{le="+Inf"} 0 -arangodb_client_connection_statistics_queue_time_count 32805 +arangodb_client_connection_statistics_queue_time_count 441 # HELP arangodb_client_connection_statistics_io_time Request time needed to answer a request # TYPE arangodb_client_connection_statistics_io_time histogram -arangodb_client_connection_statistics_io_time_bucket{le="0.01"} 32805 +arangodb_client_connection_statistics_io_time_bucket{le="0.01"} 441 arangodb_client_connection_statistics_io_time_bucket{le="0.05"} 0 arangodb_client_connection_statistics_io_time_bucket{le="0.1"} 0 arangodb_client_connection_statistics_io_time_bucket{le="0.2"} 0 @@ -594,27 +578,27 @@ arangodb_client_connection_statistics_io_time_bucket{le="5.0"} 0 arangodb_client_connection_statistics_io_time_bucket{le="15.0"} 0 arangodb_client_connection_statistics_io_time_bucket{le="30.0"} 0 arangodb_client_connection_statistics_io_time_bucket{le="+Inf"} 0 -arangodb_client_connection_statistics_io_time_count 32805 +arangodb_client_connection_statistics_io_time_count 441 # HELP arangodb_client_connection_statistics_bytes_sent Bytes sent for a request # TYPE arangodb_client_connection_statistics_bytes_sent histogram -arangodb_client_connection_statistics_bytes_sent_bucket{le="250"} 404 -arangodb_client_connection_statistics_bytes_sent_bucket{le="1000"} 31986 -arangodb_client_connection_statistics_bytes_sent_bucket{le="2000"} 382 -arangodb_client_connection_statistics_bytes_sent_bucket{le="5000"} 25 -arangodb_client_connection_statistics_bytes_sent_bucket{le="10000"} 4 -arangodb_client_connection_statistics_bytes_sent_bucket{le="+Inf"} 4 -arangodb_client_connection_statistics_bytes_sent_count 32805 +arangodb_client_connection_statistics_bytes_sent_bucket{le="250"} 101 +arangodb_client_connection_statistics_bytes_sent_bucket{le="1000"} 250 +arangodb_client_connection_statistics_bytes_sent_bucket{le="2000"} 88 +arangodb_client_connection_statistics_bytes_sent_bucket{le="5000"} 2 +arangodb_client_connection_statistics_bytes_sent_bucket{le="10000"} 0 +arangodb_client_connection_statistics_bytes_sent_bucket{le="+Inf"} 0 +arangodb_client_connection_statistics_bytes_sent_count 441 # HELP arangodb_client_connection_statistics_bytes_received Bytes received for a request # TYPE arangodb_client_connection_statistics_bytes_received histogram -arangodb_client_connection_statistics_bytes_received_bucket{le="250"} 31699 -arangodb_client_connection_statistics_bytes_received_bucket{le="1000"} 1106 +arangodb_client_connection_statistics_bytes_received_bucket{le="250"} 311 +arangodb_client_connection_statistics_bytes_received_bucket{le="1000"} 130 arangodb_client_connection_statistics_bytes_received_bucket{le="2000"} 0 arangodb_client_connection_statistics_bytes_received_bucket{le="5000"} 0 arangodb_client_connection_statistics_bytes_received_bucket{le="10000"} 0 arangodb_client_connection_statistics_bytes_received_bucket{le="+Inf"} 0 -arangodb_client_connection_statistics_bytes_received_count 32805 +arangodb_client_connection_statistics_bytes_received_count 441 # HELP arangodb_http_request_statistics_async_requests Number of asynchronously executed HTTP requests # TYPE arangodb_http_request_statistics_async_requests gauge @@ -622,11 +606,11 @@ arangodb_http_request_statistics_async_requests 0 # HELP arangodb_http_request_statistics_http_delete_requests Number of HTTP DELETE requests # TYPE arangodb_http_request_statistics_http_delete_requests gauge -arangodb_http_request_statistics_http_delete_requests 103 +arangodb_http_request_statistics_http_delete_requests 22 # HELP arangodb_http_request_statistics_http_get_requests Number of HTTP GET requests # TYPE arangodb_http_request_statistics_http_get_requests gauge -arangodb_http_request_statistics_http_get_requests 906 +arangodb_http_request_statistics_http_get_requests 205 # HELP arangodb_http_request_statistics_http_head_requests Number of HTTP HEAD requests # TYPE arangodb_http_request_statistics_http_head_requests gauge @@ -642,11 +626,11 @@ arangodb_http_request_statistics_http_patch_requests 2 # HELP arangodb_http_request_statistics_http_post_requests Number of HTTP POST requests # TYPE arangodb_http_request_statistics_http_post_requests gauge -arangodb_http_request_statistics_http_post_requests 31764 +arangodb_http_request_statistics_http_post_requests 209 # HELP arangodb_http_request_statistics_http_put_requests Number of HTTP PUT requests # TYPE arangodb_http_request_statistics_http_put_requests gauge -arangodb_http_request_statistics_http_put_requests 30 +arangodb_http_request_statistics_http_put_requests 3 # HELP arangodb_http_request_statistics_other_http_requests Number of other HTTP requests # TYPE arangodb_http_request_statistics_other_http_requests gauge @@ -654,7 +638,7 @@ arangodb_http_request_statistics_other_http_requests 0 # HELP arangodb_http_request_statistics_total_requests Total number of HTTP requests # TYPE arangodb_http_request_statistics_total_requests gauge -arangodb_http_request_statistics_total_requests 32805 +arangodb_http_request_statistics_total_requests 441 # HELP arangodb_http_request_statistics_superuser_requests Total number of HTTP requests executed by superuser/JWT # TYPE arangodb_http_request_statistics_superuser_requests gauge @@ -662,11 +646,11 @@ arangodb_http_request_statistics_superuser_requests 0 # HELP arangodb_http_request_statistics_user_requests Total number of HTTP requests executed by clients # TYPE arangodb_http_request_statistics_user_requests gauge -arangodb_http_request_statistics_user_requests 32805 +arangodb_http_request_statistics_user_requests 441 # HELP arangodb_v8_context_alive Number of V8 contexts currently alive # TYPE arangodb_v8_context_alive gauge -arangodb_v8_context_alive 2 +arangodb_v8_context_alive 1 # HELP arangodb_v8_context_busy Number of V8 contexts currently busy # TYPE arangodb_v8_context_busy gauge @@ -678,7 +662,7 @@ arangodb_v8_context_dirty 0 # HELP arangodb_v8_context_free Number of V8 contexts currently free # TYPE arangodb_v8_context_free gauge -arangodb_v8_context_free 2 +arangodb_v8_context_free 1 # HELP arangodb_v8_context_min Minimum number of concurrent V8 contexts # TYPE arangodb_v8_context_min gauge @@ -691,19 +675,19 @@ arangodb_v8_context_max 16 # HELP rocksdb_cache_allocated rocksdb_cache_allocated # TYPE rocksdb_cache_allocated gauge -rocksdb_cache_allocated 1356792 +rocksdb_cache_allocated 1355928 # HELP rocksdb_cache_hit_rate_lifetime rocksdb_cache_hit_rate_lifetime # TYPE rocksdb_cache_hit_rate_lifetime gauge -rocksdb_cache_hit_rate_lifetime 9 +rocksdb_cache_hit_rate_lifetime 0 # HELP rocksdb_cache_hit_rate_recent rocksdb_cache_hit_rate_recent # TYPE rocksdb_cache_hit_rate_recent gauge -rocksdb_cache_hit_rate_recent 9 +rocksdb_cache_hit_rate_recent 0 # HELP rocksdb_cache_limit rocksdb_cache_limit # TYPE rocksdb_cache_limit gauge -rocksdb_cache_limit 15268129792 +rocksdb_cache_limit 8053063680 # HELP rocksdb_actual_delayed_write_rate rocksdb_actual_delayed_write_rate # TYPE rocksdb_actual_delayed_write_rate gauge @@ -719,15 +703,15 @@ rocksdb_base_level 6 # HELP rocksdb_block_cache_capacity rocksdb_block_cache_capacity # TYPE rocksdb_block_cache_capacity gauge -rocksdb_block_cache_capacity 18321755750 +rocksdb_block_cache_capacity 9663676416 # HELP rocksdb_block_cache_pinned_usage rocksdb_block_cache_pinned_usage # TYPE rocksdb_block_cache_pinned_usage gauge -rocksdb_block_cache_pinned_usage 0 +rocksdb_block_cache_pinned_usage 3770 # HELP rocksdb_block_cache_usage rocksdb_block_cache_usage # TYPE rocksdb_block_cache_usage gauge -rocksdb_block_cache_usage 0 +rocksdb_block_cache_usage 3770 # HELP rocksdb_compaction_pending rocksdb_compaction_pending # TYPE rocksdb_compaction_pending gauge @@ -759,23 +743,23 @@ rocksdb_compression_ratio_at_level5 0 # HELP rocksdb_compression_ratio_at_level6 rocksdb_compression_ratio_at_level6 # TYPE rocksdb_compression_ratio_at_level6 gauge -rocksdb_compression_ratio_at_level6 4 +rocksdb_compression_ratio_at_level6 1 # HELP rocksdb_cur_size_active_mem_table rocksdb_cur_size_active_mem_table # TYPE rocksdb_cur_size_active_mem_table gauge -rocksdb_cur_size_active_mem_table 73405456 +rocksdb_cur_size_active_mem_table 67114088 # HELP rocksdb_cur_size_all_mem_tables rocksdb_cur_size_all_mem_tables # TYPE rocksdb_cur_size_all_mem_tables gauge -rocksdb_cur_size_all_mem_tables 73405456 +rocksdb_cur_size_all_mem_tables 67114088 # HELP rocksdb_estimate_live_data_size rocksdb_estimate_live_data_size # TYPE rocksdb_estimate_live_data_size gauge -rocksdb_estimate_live_data_size 1508677 +rocksdb_estimate_live_data_size 31008 # HELP rocksdb_estimate_num_keys rocksdb_estimate_num_keys # TYPE rocksdb_estimate_num_keys gauge -rocksdb_estimate_num_keys 0 +rocksdb_estimate_num_keys 19 # HELP rocksdb_estimate_pending_compaction_bytes rocksdb_estimate_pending_compaction_bytes # TYPE rocksdb_estimate_pending_compaction_bytes gauge @@ -783,15 +767,15 @@ rocksdb_estimate_pending_compaction_bytes 0 # HELP rocksdb_estimate_table_readers_mem rocksdb_estimate_table_readers_mem # TYPE rocksdb_estimate_table_readers_mem gauge -rocksdb_estimate_table_readers_mem 91504 +rocksdb_estimate_table_readers_mem 3000 # HELP rocksdb_free_disk_space rocksdb_free_disk_space # TYPE rocksdb_free_disk_space gauge -rocksdb_free_disk_space 237715292160 +rocksdb_free_disk_space 52822654582784 # HELP rocksdb_free_inodes rocksdb_free_inodes # TYPE rocksdb_free_inodes gauge -rocksdb_free_inodes 32307058 +rocksdb_free_inodes 585049566 # HELP rocksdb_is_file_deletions_enabled rocksdb_is_file_deletions_enabled # TYPE rocksdb_is_file_deletions_enabled gauge @@ -803,7 +787,7 @@ rocksdb_is_write_stopped 0 # HELP rocksdb_live_sst_files_size rocksdb_live_sst_files_size # TYPE rocksdb_live_sst_files_size gauge -rocksdb_live_sst_files_size 1508677 +rocksdb_live_sst_files_size 31008 # HELP rocksdb_mem_table_flush_pending rocksdb_mem_table_flush_pending # TYPE rocksdb_mem_table_flush_pending gauge @@ -885,21 +869,25 @@ rocksdb_num_snapshots 0 # TYPE rocksdb_oldest_snapshot_time gauge rocksdb_oldest_snapshot_time 0 +# HELP rocksdb_read_only rocksdb_read_only +# TYPE rocksdb_read_only gauge +rocksdb_read_only 0 + # HELP rocksdb_size_all_mem_tables rocksdb_size_all_mem_tables # TYPE rocksdb_size_all_mem_tables gauge -rocksdb_size_all_mem_tables 142166264 +rocksdb_size_all_mem_tables 121149696 # HELP rocksdb_total_disk_space rocksdb_total_disk_space # TYPE rocksdb_total_disk_space gauge -rocksdb_total_disk_space 266219864064 +rocksdb_total_disk_space 127990572777472 # HELP rocksdb_total_inodes rocksdb_total_inodes # TYPE rocksdb_total_inodes gauge -rocksdb_total_inodes 33030144 +rocksdb_total_inodes 587485584 # HELP rocksdb_total_sst_files_size rocksdb_total_sst_files_size # TYPE rocksdb_total_sst_files_size gauge -rocksdb_total_sst_files_size 1508677 +rocksdb_total_sst_files_size 31008 # HELP rocksdbengine_throttle_bps rocksdbengine_throttle_bps # TYPE rocksdbengine_throttle_bps gauge diff --git a/3.9/generated/Examples/RestAdminMetricsV2.generated b/3.9/generated/Examples/RestAdminMetricsV2.generated index d1766cbbfb..0eb4dcbfd2 100644 --- a/3.9/generated/Examples/RestAdminMetricsV2.generated +++ b/3.9/generated/Examples/RestAdminMetricsV2.generated @@ -1,9 +1,9 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_admin/metrics/v2 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_admin/metrics/v2 HTTP/1.1 200 OK content-type: text/plain connection: Keep-Alive -content-length: 49120 +content-length: 48189 server: ArangoDB x-content-type-options: nosniff @@ -36,7 +36,7 @@ arangodb_agencycomm_request_time_msec_sum{role="SINGLE"} 0 # HELP arangodb_aql_all_query_total Total number of AQL queries finished # TYPE arangodb_aql_all_query_total counter -arangodb_aql_all_query_total{role="SINGLE"} 358 +arangodb_aql_all_query_total{role="SINGLE"} 115 # HELP arangodb_aql_current_query Current number of AQL queries executing # TYPE arangodb_aql_current_query gauge @@ -44,7 +44,7 @@ arangodb_aql_current_query{role="SINGLE"} 0 # HELP arangodb_aql_global_memory_limit Total memory limit for all AQL queries combined [bytes] # TYPE arangodb_aql_global_memory_limit gauge -arangodb_aql_global_memory_limit{role="SINGLE"} 54686007705 +arangodb_aql_global_memory_limit{role="SINGLE"} 27831388078 # HELP arangodb_aql_global_memory_usage Total memory usage of all AQL queries executing [bytes], granularity: 32768 bytes steps # TYPE arangodb_aql_global_memory_usage gauge @@ -56,71 +56,71 @@ arangodb_aql_global_query_memory_limit_reached_total{role="SINGLE"} 0 # HELP arangodb_aql_local_query_memory_limit_reached_total Number of local AQL query memory limit violations # TYPE arangodb_aql_local_query_memory_limit_reached_total counter -arangodb_aql_local_query_memory_limit_reached_total{role="SINGLE"} 1 +arangodb_aql_local_query_memory_limit_reached_total{role="SINGLE"} 0 # HELP arangodb_aql_query_time Execution time histogram for all AQL queries [s] # TYPE arangodb_aql_query_time histogram arangodb_aql_query_time_bucket{role="SINGLE",le="0.000095"} 0 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.000191"} 0 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.000381"} 54 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.000763"} 298 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.001526"} 344 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.003052"} 354 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.006104"} 355 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.012207"} 355 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.024414"} 355 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.048828"} 356 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.097656"} 356 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.195312"} 356 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.390625"} 356 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.781250"} 357 -arangodb_aql_query_time_bucket{role="SINGLE",le="1.562500"} 358 -arangodb_aql_query_time_bucket{role="SINGLE",le="3.125000"} 358 -arangodb_aql_query_time_bucket{role="SINGLE",le="6.250000"} 358 -arangodb_aql_query_time_bucket{role="SINGLE",le="12.500000"} 358 -arangodb_aql_query_time_bucket{role="SINGLE",le="25.000000"} 358 -arangodb_aql_query_time_bucket{role="SINGLE",le="+Inf"} 358 -arangodb_aql_query_time_count{role="SINGLE"} 358 -arangodb_aql_query_time_sum{role="SINGLE"} 2.042929 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.000191"} 2 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.000381"} 108 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.000763"} 111 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.001526"} 112 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.003052"} 113 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.006104"} 114 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.012207"} 115 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.024414"} 115 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.048828"} 115 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.097656"} 115 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.195312"} 115 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.390625"} 115 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.781250"} 115 +arangodb_aql_query_time_bucket{role="SINGLE",le="1.562500"} 115 +arangodb_aql_query_time_bucket{role="SINGLE",le="3.125000"} 115 +arangodb_aql_query_time_bucket{role="SINGLE",le="6.250000"} 115 +arangodb_aql_query_time_bucket{role="SINGLE",le="12.500000"} 115 +arangodb_aql_query_time_bucket{role="SINGLE",le="25.000000"} 115 +arangodb_aql_query_time_bucket{role="SINGLE",le="+Inf"} 115 +arangodb_aql_query_time_count{role="SINGLE"} 115 +arangodb_aql_query_time_sum{role="SINGLE"} 0.046801 # HELP arangodb_aql_slow_query_time Execution time histogram for slow AQL queries [s] # TYPE arangodb_aql_slow_query_time histogram -arangodb_aql_slow_query_time_bucket{role="SINGLE",le="4.904297"} 1 -arangodb_aql_slow_query_time_bucket{role="SINGLE",le="8.808594"} 1 -arangodb_aql_slow_query_time_bucket{role="SINGLE",le="16.617188"} 1 -arangodb_aql_slow_query_time_bucket{role="SINGLE",le="32.234375"} 1 -arangodb_aql_slow_query_time_bucket{role="SINGLE",le="63.468750"} 1 -arangodb_aql_slow_query_time_bucket{role="SINGLE",le="125.937500"} 1 -arangodb_aql_slow_query_time_bucket{role="SINGLE",le="250.875000"} 1 -arangodb_aql_slow_query_time_bucket{role="SINGLE",le="500.750000"} 1 -arangodb_aql_slow_query_time_bucket{role="SINGLE",le="1000.500000"} 1 -arangodb_aql_slow_query_time_bucket{role="SINGLE",le="+Inf"} 1 -arangodb_aql_slow_query_time_count{role="SINGLE"} 1 -arangodb_aql_slow_query_time_sum{role="SINGLE"} 1.048727 +arangodb_aql_slow_query_time_bucket{role="SINGLE",le="4.904297"} 0 +arangodb_aql_slow_query_time_bucket{role="SINGLE",le="8.808594"} 0 +arangodb_aql_slow_query_time_bucket{role="SINGLE",le="16.617188"} 0 +arangodb_aql_slow_query_time_bucket{role="SINGLE",le="32.234375"} 0 +arangodb_aql_slow_query_time_bucket{role="SINGLE",le="63.468750"} 0 +arangodb_aql_slow_query_time_bucket{role="SINGLE",le="125.937500"} 0 +arangodb_aql_slow_query_time_bucket{role="SINGLE",le="250.875000"} 0 +arangodb_aql_slow_query_time_bucket{role="SINGLE",le="500.750000"} 0 +arangodb_aql_slow_query_time_bucket{role="SINGLE",le="1000.500000"} 0 +arangodb_aql_slow_query_time_bucket{role="SINGLE",le="+Inf"} 0 +arangodb_aql_slow_query_time_count{role="SINGLE"} 0 +arangodb_aql_slow_query_time_sum{role="SINGLE"} 0.000000 # HELP arangodb_aql_total_query_time_msec_total Total execution time of all AQL queries [ms] # TYPE arangodb_aql_total_query_time_msec_total counter -arangodb_aql_total_query_time_msec_total{role="SINGLE"} 1874 +arangodb_aql_total_query_time_msec_total{role="SINGLE"} 15 # HELP arangodb_collection_lock_acquisition_micros_total Total amount of collection lock acquisition time [μs] # TYPE arangodb_collection_lock_acquisition_micros_total counter -arangodb_collection_lock_acquisition_micros_total{role="SINGLE"} 136278 +arangodb_collection_lock_acquisition_micros_total{role="SINGLE"} 898 # HELP arangodb_collection_lock_acquisition_time Collection lock acquisition time histogram [s] # TYPE arangodb_collection_lock_acquisition_time histogram -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000000"} 0 -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000001"} 27 -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000010"} 31928 -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000100"} 32030 -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.001000"} 32030 -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.010000"} 32030 -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.100000"} 32030 -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="1.000000"} 32030 -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="10.000000"} 32030 -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="100.000000"} 32030 -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="+Inf"} 32030 -arangodb_collection_lock_acquisition_time_count{role="SINGLE"} 32030 -arangodb_collection_lock_acquisition_time_sum{role="SINGLE"} 0.149390 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000000"} 6 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000001"} 8 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000010"} 395 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000100"} 400 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.001000"} 400 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.010000"} 400 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.100000"} 400 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="1.000000"} 400 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="10.000000"} 400 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="100.000000"} 400 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="+Inf"} 400 +arangodb_collection_lock_acquisition_time_count{role="SINGLE"} 400 +arangodb_collection_lock_acquisition_time_sum{role="SINGLE"} 0.001088 # HELP arangodb_collection_lock_sequential_mode_total Number of transactions using sequential locking of collections to avoid deadlocking # TYPE arangodb_collection_lock_sequential_mode_total counter @@ -366,15 +366,15 @@ arangodb_scheduler_high_prio_queue_length{role="SINGLE"} 0 # HELP arangodb_scheduler_jobs_dequeued_total Total number of jobs dequeued # TYPE arangodb_scheduler_jobs_dequeued_total counter -arangodb_scheduler_jobs_dequeued_total{role="SINGLE"} 32848 +arangodb_scheduler_jobs_dequeued_total{role="SINGLE"} 188 # HELP arangodb_scheduler_jobs_done_total Total number of queue jobs done # TYPE arangodb_scheduler_jobs_done_total counter -arangodb_scheduler_jobs_done_total{role="SINGLE"} 32847 +arangodb_scheduler_jobs_done_total{role="SINGLE"} 188 # HELP arangodb_scheduler_jobs_submitted_total Total number of jobs submitted to the scheduler # TYPE arangodb_scheduler_jobs_submitted_total counter -arangodb_scheduler_jobs_submitted_total{role="SINGLE"} 32848 +arangodb_scheduler_jobs_submitted_total{role="SINGLE"} 188 # HELP arangodb_scheduler_low_prio_queue_last_dequeue_time Last recorded dequeue time for a low priority queue item [ms] # TYPE arangodb_scheduler_low_prio_queue_last_dequeue_time gauge @@ -394,7 +394,7 @@ arangodb_scheduler_medium_prio_queue_length{role="SINGLE"} 0 # HELP arangodb_scheduler_num_awake_threads Number of awake worker threads # TYPE arangodb_scheduler_num_awake_threads gauge -arangodb_scheduler_num_awake_threads{role="SINGLE"} 1 +arangodb_scheduler_num_awake_threads{role="SINGLE"} 0 # HELP arangodb_scheduler_num_worker_threads Number of worker threads # TYPE arangodb_scheduler_num_worker_threads gauge @@ -402,7 +402,7 @@ arangodb_scheduler_num_worker_threads{role="SINGLE"} 4 # HELP arangodb_scheduler_num_working_threads Number of working threads # TYPE arangodb_scheduler_num_working_threads gauge -arangodb_scheduler_num_working_threads{role="SINGLE"} 1 +arangodb_scheduler_num_working_threads{role="SINGLE"} 0 # HELP arangodb_scheduler_ongoing_low_prio Total number of ongoing RestHandlers coming from the low prio queue # TYPE arangodb_scheduler_ongoing_low_prio gauge @@ -426,11 +426,11 @@ arangodb_scheduler_threads_stopped_total{role="SINGLE"} 0 # HELP arangodb_transactions_aborted_total Number of transactions aborted # TYPE arangodb_transactions_aborted_total counter -arangodb_transactions_aborted_total{role="SINGLE"} 292 +arangodb_transactions_aborted_total{role="SINGLE"} 131 # HELP arangodb_transactions_committed_total Number of transactions committed # TYPE arangodb_transactions_committed_total counter -arangodb_transactions_committed_total{role="SINGLE"} 32824 +arangodb_transactions_committed_total{role="SINGLE"} 638 # HELP arangodb_transactions_expired_total Total number of expired transactions # TYPE arangodb_transactions_expired_total counter @@ -438,15 +438,15 @@ arangodb_transactions_expired_total{role="SINGLE"} 0 # HELP arangodb_transactions_started_total Number of transactions started # TYPE arangodb_transactions_started_total counter -arangodb_transactions_started_total{role="SINGLE"} 33116 +arangodb_transactions_started_total{role="SINGLE"} 769 # HELP arangodb_v8_context_created_total V8 contexts created # TYPE arangodb_v8_context_created_total counter -arangodb_v8_context_created_total{role="SINGLE"} 2 +arangodb_v8_context_created_total{role="SINGLE"} 1 # HELP arangodb_v8_context_creation_time_msec_total Total time for creating V8 contexts [ms] # TYPE arangodb_v8_context_creation_time_msec_total counter -arangodb_v8_context_creation_time_msec_total{role="SINGLE"} 19 +arangodb_v8_context_creation_time_msec_total{role="SINGLE"} 28 # HELP arangodb_v8_context_destroyed_total V8 contexts destroyed # TYPE arangodb_v8_context_destroyed_total counter @@ -458,72 +458,56 @@ arangodb_v8_context_enter_failures_total{role="SINGLE"} 0 # HELP arangodb_v8_context_entered_total V8 context enter events # TYPE arangodb_v8_context_entered_total counter -arangodb_v8_context_entered_total{role="SINGLE"} 24 +arangodb_v8_context_entered_total{role="SINGLE"} 5 # HELP arangodb_v8_context_exited_total V8 context exit events # TYPE arangodb_v8_context_exited_total counter -arangodb_v8_context_exited_total{role="SINGLE"} 24 +arangodb_v8_context_exited_total{role="SINGLE"} 5 # HELP arangodb_process_statistics_minor_page_faults_total The number of minor faults the process has made which have not required loading a memory page from disk. This figure is not reported on Windows # TYPE arangodb_process_statistics_minor_page_faults_total counter -arangodb_process_statistics_minor_page_faults_total 87021 +arangodb_process_statistics_minor_page_faults_total 51376 # HELP arangodb_process_statistics_major_page_faults_total On Windows, this figure contains the total number of page faults. On other system, this figure contains the number of major faults the process has made which have required loading a memory page from disk # TYPE arangodb_process_statistics_major_page_faults_total counter -arangodb_process_statistics_major_page_faults_total 2 +arangodb_process_statistics_major_page_faults_total 3515 # HELP arangodb_process_statistics_user_time Amount of time that this process has been scheduled in user mode, measured in seconds # TYPE arangodb_process_statistics_user_time gauge -arangodb_process_statistics_user_time 9.310000 +arangodb_process_statistics_user_time 0.488361 # HELP arangodb_process_statistics_system_time Amount of time that this process has been scheduled in kernel mode, measured in seconds # TYPE arangodb_process_statistics_system_time gauge -arangodb_process_statistics_system_time 2.390000 +arangodb_process_statistics_system_time 0.197894 # HELP arangodb_process_statistics_number_of_threads Number of threads in the arangod process # TYPE arangodb_process_statistics_number_of_threads gauge -arangodb_process_statistics_number_of_threads 55 +arangodb_process_statistics_number_of_threads 47 # HELP arangodb_process_statistics_resident_set_size The total size of the number of pages the process has in real memory. This is just the pages which count toward text, data, or stack space. This does not include pages which have not been demand-loaded in, or which are swapped out. The resident set size is reported in bytes # TYPE arangodb_process_statistics_resident_set_size gauge -arangodb_process_statistics_resident_set_size 314122240 +arangodb_process_statistics_resident_set_size 215318528 # HELP arangodb_process_statistics_resident_set_size_percent The relative size of the number of pages the process has in real memory compared to system memory. This is just the pages which count toward text, data, or stack space. This does not include pages which have not been demand-loaded in, or which are swapped out. The value is a ratio between 0.00 and 1.00 # TYPE arangodb_process_statistics_resident_set_size_percent gauge -arangodb_process_statistics_resident_set_size_percent 0.004653 +arangodb_process_statistics_resident_set_size_percent 0.006267 # HELP arangodb_process_statistics_virtual_memory_size On Windows, this figure contains the total amount of memory that the memory manager has committed for the arangod process. On other systems, this figure contains The size of the virtual memory the process is using # TYPE arangodb_process_statistics_virtual_memory_size gauge -arangodb_process_statistics_virtual_memory_size 1402511360 +arangodb_process_statistics_virtual_memory_size 6194122752 # HELP arangodb_server_statistics_physical_memory Physical memory in bytes # TYPE arangodb_server_statistics_physical_memory gauge -arangodb_server_statistics_physical_memory 67513589760 +arangodb_server_statistics_physical_memory 34359738368 # HELP arangodb_server_statistics_server_uptime_total Number of seconds elapsed since server start # TYPE arangodb_server_statistics_server_uptime_total counter -arangodb_server_statistics_server_uptime_total 15.751129 +arangodb_server_statistics_server_uptime_total 1.537952 # HELP arangodb_server_statistics_cpu_cores Number of CPU cores visible to the arangod process # TYPE arangodb_server_statistics_cpu_cores gauge -arangodb_server_statistics_cpu_cores 32 - -# HELP arangodb_server_statistics_user_percent Percentage of time that the system CPUs have spent in user mode -# TYPE arangodb_server_statistics_user_percent gauge -arangodb_server_statistics_user_percent 32.142857 - -# HELP arangodb_server_statistics_system_percent Percentage of time that the system CPUs have spent in kernel mode -# TYPE arangodb_server_statistics_system_percent gauge -arangodb_server_statistics_system_percent 3.571429 - -# HELP arangodb_server_statistics_idle_percent Percentage of time that the system CPUs have been idle -# TYPE arangodb_server_statistics_idle_percent gauge -arangodb_server_statistics_idle_percent 60.714286 - -# HELP arangodb_server_statistics_iowait_percent Percentage of time that the system CPUs have been waiting for I/O -# TYPE arangodb_server_statistics_iowait_percent gauge -arangodb_server_statistics_iowait_percent 0.000000 +arangodb_server_statistics_cpu_cores 16 # HELP arangodb_client_connection_statistics_client_connections The number of client connections that are currently open # TYPE arangodb_client_connection_statistics_client_connections gauge @@ -540,85 +524,85 @@ arangodb_client_connection_statistics_connection_time_sum 0.000000 # HELP arangodb_client_connection_statistics_total_time Total time needed to answer a request # TYPE arangodb_client_connection_statistics_total_time histogram -arangodb_client_connection_statistics_total_time_bucket{le="0.01"} 32799 -arangodb_client_connection_statistics_total_time_bucket{le="0.05"} 32801 -arangodb_client_connection_statistics_total_time_bucket{le="0.1"} 32803 -arangodb_client_connection_statistics_total_time_bucket{le="0.2"} 32804 -arangodb_client_connection_statistics_total_time_bucket{le="0.5"} 32804 -arangodb_client_connection_statistics_total_time_bucket{le="1.0"} 32805 -arangodb_client_connection_statistics_total_time_bucket{le="5.0"} 32805 -arangodb_client_connection_statistics_total_time_bucket{le="15.0"} 32805 -arangodb_client_connection_statistics_total_time_bucket{le="30.0"} 32805 -arangodb_client_connection_statistics_total_time_bucket{le="+Inf"} 32805 -arangodb_client_connection_statistics_total_time_count 32805 -arangodb_client_connection_statistics_total_time_sum 8.515468 +arangodb_client_connection_statistics_total_time_bucket{le="0.01"} 586 +arangodb_client_connection_statistics_total_time_bucket{le="0.05"} 587 +arangodb_client_connection_statistics_total_time_bucket{le="0.1"} 587 +arangodb_client_connection_statistics_total_time_bucket{le="0.2"} 587 +arangodb_client_connection_statistics_total_time_bucket{le="0.5"} 587 +arangodb_client_connection_statistics_total_time_bucket{le="1.0"} 587 +arangodb_client_connection_statistics_total_time_bucket{le="5.0"} 587 +arangodb_client_connection_statistics_total_time_bucket{le="15.0"} 587 +arangodb_client_connection_statistics_total_time_bucket{le="30.0"} 587 +arangodb_client_connection_statistics_total_time_bucket{le="+Inf"} 587 +arangodb_client_connection_statistics_total_time_count 587 +arangodb_client_connection_statistics_total_time_sum 0.197809 # HELP arangodb_client_connection_statistics_request_time Request time needed to answer a request # TYPE arangodb_client_connection_statistics_request_time histogram -arangodb_client_connection_statistics_request_time_bucket{le="0.01"} 32799 -arangodb_client_connection_statistics_request_time_bucket{le="0.05"} 32801 -arangodb_client_connection_statistics_request_time_bucket{le="0.1"} 32803 -arangodb_client_connection_statistics_request_time_bucket{le="0.2"} 32804 -arangodb_client_connection_statistics_request_time_bucket{le="0.5"} 32804 -arangodb_client_connection_statistics_request_time_bucket{le="1.0"} 32805 -arangodb_client_connection_statistics_request_time_bucket{le="5.0"} 32805 -arangodb_client_connection_statistics_request_time_bucket{le="15.0"} 32805 -arangodb_client_connection_statistics_request_time_bucket{le="30.0"} 32805 -arangodb_client_connection_statistics_request_time_bucket{le="+Inf"} 32805 -arangodb_client_connection_statistics_request_time_count 32805 -arangodb_client_connection_statistics_request_time_sum 5.366849 +arangodb_client_connection_statistics_request_time_bucket{le="0.01"} 586 +arangodb_client_connection_statistics_request_time_bucket{le="0.05"} 587 +arangodb_client_connection_statistics_request_time_bucket{le="0.1"} 587 +arangodb_client_connection_statistics_request_time_bucket{le="0.2"} 587 +arangodb_client_connection_statistics_request_time_bucket{le="0.5"} 587 +arangodb_client_connection_statistics_request_time_bucket{le="1.0"} 587 +arangodb_client_connection_statistics_request_time_bucket{le="5.0"} 587 +arangodb_client_connection_statistics_request_time_bucket{le="15.0"} 587 +arangodb_client_connection_statistics_request_time_bucket{le="30.0"} 587 +arangodb_client_connection_statistics_request_time_bucket{le="+Inf"} 587 +arangodb_client_connection_statistics_request_time_count 587 +arangodb_client_connection_statistics_request_time_sum 0.154675 # HELP arangodb_client_connection_statistics_queue_time Request time needed to answer a request # TYPE arangodb_client_connection_statistics_queue_time histogram -arangodb_client_connection_statistics_queue_time_bucket{le="0.01"} 32805 -arangodb_client_connection_statistics_queue_time_bucket{le="0.05"} 32805 -arangodb_client_connection_statistics_queue_time_bucket{le="0.1"} 32805 -arangodb_client_connection_statistics_queue_time_bucket{le="0.2"} 32805 -arangodb_client_connection_statistics_queue_time_bucket{le="0.5"} 32805 -arangodb_client_connection_statistics_queue_time_bucket{le="1.0"} 32805 -arangodb_client_connection_statistics_queue_time_bucket{le="5.0"} 32805 -arangodb_client_connection_statistics_queue_time_bucket{le="15.0"} 32805 -arangodb_client_connection_statistics_queue_time_bucket{le="30.0"} 32805 -arangodb_client_connection_statistics_queue_time_bucket{le="+Inf"} 32805 -arangodb_client_connection_statistics_queue_time_count 32805 -arangodb_client_connection_statistics_queue_time_sum 0.340286 +arangodb_client_connection_statistics_queue_time_bucket{le="0.01"} 587 +arangodb_client_connection_statistics_queue_time_bucket{le="0.05"} 587 +arangodb_client_connection_statistics_queue_time_bucket{le="0.1"} 587 +arangodb_client_connection_statistics_queue_time_bucket{le="0.2"} 587 +arangodb_client_connection_statistics_queue_time_bucket{le="0.5"} 587 +arangodb_client_connection_statistics_queue_time_bucket{le="1.0"} 587 +arangodb_client_connection_statistics_queue_time_bucket{le="5.0"} 587 +arangodb_client_connection_statistics_queue_time_bucket{le="15.0"} 587 +arangodb_client_connection_statistics_queue_time_bucket{le="30.0"} 587 +arangodb_client_connection_statistics_queue_time_bucket{le="+Inf"} 587 +arangodb_client_connection_statistics_queue_time_count 587 +arangodb_client_connection_statistics_queue_time_sum 0.004099 # HELP arangodb_client_connection_statistics_io_time Request time needed to answer a request # TYPE arangodb_client_connection_statistics_io_time histogram -arangodb_client_connection_statistics_io_time_bucket{le="0.01"} 32805 -arangodb_client_connection_statistics_io_time_bucket{le="0.05"} 32805 -arangodb_client_connection_statistics_io_time_bucket{le="0.1"} 32805 -arangodb_client_connection_statistics_io_time_bucket{le="0.2"} 32805 -arangodb_client_connection_statistics_io_time_bucket{le="0.5"} 32805 -arangodb_client_connection_statistics_io_time_bucket{le="1.0"} 32805 -arangodb_client_connection_statistics_io_time_bucket{le="5.0"} 32805 -arangodb_client_connection_statistics_io_time_bucket{le="15.0"} 32805 -arangodb_client_connection_statistics_io_time_bucket{le="30.0"} 32805 -arangodb_client_connection_statistics_io_time_bucket{le="+Inf"} 32805 -arangodb_client_connection_statistics_io_time_count 32805 -arangodb_client_connection_statistics_io_time_sum 2.808333 +arangodb_client_connection_statistics_io_time_bucket{le="0.01"} 587 +arangodb_client_connection_statistics_io_time_bucket{le="0.05"} 587 +arangodb_client_connection_statistics_io_time_bucket{le="0.1"} 587 +arangodb_client_connection_statistics_io_time_bucket{le="0.2"} 587 +arangodb_client_connection_statistics_io_time_bucket{le="0.5"} 587 +arangodb_client_connection_statistics_io_time_bucket{le="1.0"} 587 +arangodb_client_connection_statistics_io_time_bucket{le="5.0"} 587 +arangodb_client_connection_statistics_io_time_bucket{le="15.0"} 587 +arangodb_client_connection_statistics_io_time_bucket{le="30.0"} 587 +arangodb_client_connection_statistics_io_time_bucket{le="+Inf"} 587 +arangodb_client_connection_statistics_io_time_count 587 +arangodb_client_connection_statistics_io_time_sum 0.039034 # HELP arangodb_client_connection_statistics_bytes_sent Bytes sent for a request # TYPE arangodb_client_connection_statistics_bytes_sent histogram -arangodb_client_connection_statistics_bytes_sent_bucket{le="250"} 404 -arangodb_client_connection_statistics_bytes_sent_bucket{le="1000"} 32390 -arangodb_client_connection_statistics_bytes_sent_bucket{le="2000"} 32772 -arangodb_client_connection_statistics_bytes_sent_bucket{le="5000"} 32797 -arangodb_client_connection_statistics_bytes_sent_bucket{le="10000"} 32801 -arangodb_client_connection_statistics_bytes_sent_bucket{le="+Inf"} 32805 -arangodb_client_connection_statistics_bytes_sent_count 32805 -arangodb_client_connection_statistics_bytes_sent_sum 9853436.000000 +arangodb_client_connection_statistics_bytes_sent_bucket{le="250"} 134 +arangodb_client_connection_statistics_bytes_sent_bucket{le="1000"} 464 +arangodb_client_connection_statistics_bytes_sent_bucket{le="2000"} 584 +arangodb_client_connection_statistics_bytes_sent_bucket{le="5000"} 586 +arangodb_client_connection_statistics_bytes_sent_bucket{le="10000"} 586 +arangodb_client_connection_statistics_bytes_sent_bucket{le="+Inf"} 587 +arangodb_client_connection_statistics_bytes_sent_count 587 +arangodb_client_connection_statistics_bytes_sent_sum 369333.000000 # HELP arangodb_client_connection_statistics_bytes_received Bytes received for a request # TYPE arangodb_client_connection_statistics_bytes_received histogram -arangodb_client_connection_statistics_bytes_received_bucket{le="250"} 31695 -arangodb_client_connection_statistics_bytes_received_bucket{le="1000"} 32805 -arangodb_client_connection_statistics_bytes_received_bucket{le="2000"} 32805 -arangodb_client_connection_statistics_bytes_received_bucket{le="5000"} 32805 -arangodb_client_connection_statistics_bytes_received_bucket{le="10000"} 32805 -arangodb_client_connection_statistics_bytes_received_bucket{le="+Inf"} 32805 -arangodb_client_connection_statistics_bytes_received_count 32805 -arangodb_client_connection_statistics_bytes_received_sum 7670558.000000 +arangodb_client_connection_statistics_bytes_received_bucket{le="250"} 418 +arangodb_client_connection_statistics_bytes_received_bucket{le="1000"} 587 +arangodb_client_connection_statistics_bytes_received_bucket{le="2000"} 587 +arangodb_client_connection_statistics_bytes_received_bucket{le="5000"} 587 +arangodb_client_connection_statistics_bytes_received_bucket{le="10000"} 587 +arangodb_client_connection_statistics_bytes_received_bucket{le="+Inf"} 587 +arangodb_client_connection_statistics_bytes_received_count 587 +arangodb_client_connection_statistics_bytes_received_sum 125014.000000 # HELP arangodb_http_request_statistics_async_requests_total Number of asynchronously executed HTTP requests # TYPE arangodb_http_request_statistics_async_requests_total counter @@ -626,11 +610,11 @@ arangodb_http_request_statistics_async_requests_total 0 # HELP arangodb_http_request_statistics_http_delete_requests_total Number of HTTP DELETE requests # TYPE arangodb_http_request_statistics_http_delete_requests_total counter -arangodb_http_request_statistics_http_delete_requests_total 103 +arangodb_http_request_statistics_http_delete_requests_total 34 # HELP arangodb_http_request_statistics_http_get_requests_total Number of HTTP GET requests # TYPE arangodb_http_request_statistics_http_get_requests_total counter -arangodb_http_request_statistics_http_get_requests_total 906 +arangodb_http_request_statistics_http_get_requests_total 273 # HELP arangodb_http_request_statistics_http_head_requests_total Number of HTTP HEAD requests # TYPE arangodb_http_request_statistics_http_head_requests_total counter @@ -646,11 +630,11 @@ arangodb_http_request_statistics_http_patch_requests_total 2 # HELP arangodb_http_request_statistics_http_post_requests_total Number of HTTP POST requests # TYPE arangodb_http_request_statistics_http_post_requests_total counter -arangodb_http_request_statistics_http_post_requests_total 31764 +arangodb_http_request_statistics_http_post_requests_total 270 # HELP arangodb_http_request_statistics_http_put_requests_total Number of HTTP PUT requests # TYPE arangodb_http_request_statistics_http_put_requests_total counter -arangodb_http_request_statistics_http_put_requests_total 30 +arangodb_http_request_statistics_http_put_requests_total 8 # HELP arangodb_http_request_statistics_other_http_requests_total Number of other HTTP requests # TYPE arangodb_http_request_statistics_other_http_requests_total counter @@ -658,7 +642,7 @@ arangodb_http_request_statistics_other_http_requests_total 0 # HELP arangodb_http_request_statistics_total_requests_total Total number of HTTP requests # TYPE arangodb_http_request_statistics_total_requests_total counter -arangodb_http_request_statistics_total_requests_total 32805 +arangodb_http_request_statistics_total_requests_total 587 # HELP arangodb_http_request_statistics_superuser_requests_total Total number of HTTP requests executed by superuser/JWT # TYPE arangodb_http_request_statistics_superuser_requests_total counter @@ -666,11 +650,11 @@ arangodb_http_request_statistics_superuser_requests_total 0 # HELP arangodb_http_request_statistics_user_requests_total Total number of HTTP requests executed by clients # TYPE arangodb_http_request_statistics_user_requests_total counter -arangodb_http_request_statistics_user_requests_total 32805 +arangodb_http_request_statistics_user_requests_total 587 # HELP arangodb_v8_context_alive Number of V8 contexts currently alive # TYPE arangodb_v8_context_alive gauge -arangodb_v8_context_alive 2 +arangodb_v8_context_alive 1 # HELP arangodb_v8_context_busy Number of V8 contexts currently busy # TYPE arangodb_v8_context_busy gauge @@ -682,7 +666,7 @@ arangodb_v8_context_dirty 0 # HELP arangodb_v8_context_free Number of V8 contexts currently free # TYPE arangodb_v8_context_free gauge -arangodb_v8_context_free 2 +arangodb_v8_context_free 1 # HELP arangodb_v8_context_min Minimum number of concurrent V8 contexts # TYPE arangodb_v8_context_min gauge @@ -695,19 +679,19 @@ arangodb_v8_context_max 16 # HELP rocksdb_cache_allocated rocksdb_cache_allocated # TYPE rocksdb_cache_allocated gauge -rocksdb_cache_allocated 1356792 +rocksdb_cache_allocated 1355928 # HELP rocksdb_cache_hit_rate_lifetime rocksdb_cache_hit_rate_lifetime # TYPE rocksdb_cache_hit_rate_lifetime gauge -rocksdb_cache_hit_rate_lifetime 4 +rocksdb_cache_hit_rate_lifetime 0 # HELP rocksdb_cache_hit_rate_recent rocksdb_cache_hit_rate_recent # TYPE rocksdb_cache_hit_rate_recent gauge -rocksdb_cache_hit_rate_recent 4 +rocksdb_cache_hit_rate_recent 0 # HELP rocksdb_cache_limit rocksdb_cache_limit # TYPE rocksdb_cache_limit gauge -rocksdb_cache_limit 16341526528 +rocksdb_cache_limit 8053063680 # HELP rocksdb_actual_delayed_write_rate rocksdb_actual_delayed_write_rate # TYPE rocksdb_actual_delayed_write_rate gauge @@ -723,7 +707,7 @@ rocksdb_base_level 6 # HELP rocksdb_block_cache_capacity rocksdb_block_cache_capacity # TYPE rocksdb_block_cache_capacity gauge -rocksdb_block_cache_capacity 19609831833 +rocksdb_block_cache_capacity 9663676416 # HELP rocksdb_block_cache_pinned_usage rocksdb_block_cache_pinned_usage # TYPE rocksdb_block_cache_pinned_usage gauge @@ -735,7 +719,7 @@ rocksdb_block_cache_usage 0 # HELP rocksdb_compaction_pending rocksdb_compaction_pending # TYPE rocksdb_compaction_pending gauge -rocksdb_compaction_pending 5 +rocksdb_compaction_pending 0 # HELP rocksdb_compression_ratio_at_level0 rocksdb_compression_ratio_at_level0 # TYPE rocksdb_compression_ratio_at_level0 gauge @@ -763,23 +747,23 @@ rocksdb_compression_ratio_at_level5 0 # HELP rocksdb_compression_ratio_at_level6 rocksdb_compression_ratio_at_level6 # TYPE rocksdb_compression_ratio_at_level6 gauge -rocksdb_compression_ratio_at_level6 4 +rocksdb_compression_ratio_at_level6 0 # HELP rocksdb_cur_size_active_mem_table rocksdb_cur_size_active_mem_table # TYPE rocksdb_cur_size_active_mem_table gauge -rocksdb_cur_size_active_mem_table 73405952 +rocksdb_cur_size_active_mem_table 67114088 # HELP rocksdb_cur_size_all_mem_tables rocksdb_cur_size_all_mem_tables # TYPE rocksdb_cur_size_all_mem_tables gauge -rocksdb_cur_size_all_mem_tables 73405952 +rocksdb_cur_size_all_mem_tables 67114088 # HELP rocksdb_estimate_live_data_size rocksdb_estimate_live_data_size # TYPE rocksdb_estimate_live_data_size gauge -rocksdb_estimate_live_data_size 1508729 +rocksdb_estimate_live_data_size 14428 # HELP rocksdb_estimate_num_keys rocksdb_estimate_num_keys # TYPE rocksdb_estimate_num_keys gauge -rocksdb_estimate_num_keys 6 +rocksdb_estimate_num_keys 25 # HELP rocksdb_estimate_pending_compaction_bytes rocksdb_estimate_pending_compaction_bytes # TYPE rocksdb_estimate_pending_compaction_bytes gauge @@ -787,15 +771,15 @@ rocksdb_estimate_pending_compaction_bytes 0 # HELP rocksdb_estimate_table_readers_mem rocksdb_estimate_table_readers_mem # TYPE rocksdb_estimate_table_readers_mem gauge -rocksdb_estimate_table_readers_mem 91488 +rocksdb_estimate_table_readers_mem 919 # HELP rocksdb_free_disk_space rocksdb_free_disk_space # TYPE rocksdb_free_disk_space gauge -rocksdb_free_disk_space 365944205312 +rocksdb_free_disk_space 52822649339904 # HELP rocksdb_free_inodes rocksdb_free_inodes # TYPE rocksdb_free_inodes gauge -rocksdb_free_inodes 27288645 +rocksdb_free_inodes 585049570 # HELP rocksdb_is_file_deletions_enabled rocksdb_is_file_deletions_enabled # TYPE rocksdb_is_file_deletions_enabled gauge @@ -807,7 +791,7 @@ rocksdb_is_write_stopped 0 # HELP rocksdb_live_sst_files_size rocksdb_live_sst_files_size # TYPE rocksdb_live_sst_files_size gauge -rocksdb_live_sst_files_size 1508729 +rocksdb_live_sst_files_size 14428 # HELP rocksdb_mem_table_flush_pending rocksdb_mem_table_flush_pending # TYPE rocksdb_mem_table_flush_pending gauge @@ -827,7 +811,7 @@ rocksdb_num_deletes_imm_mem_tables 0 # HELP rocksdb_num_entries_active_mem_table rocksdb_num_entries_active_mem_table # TYPE rocksdb_num_entries_active_mem_table gauge -rocksdb_num_entries_active_mem_table 6 +rocksdb_num_entries_active_mem_table 0 # HELP rocksdb_num_entries_imm_mem_tables rocksdb_num_entries_imm_mem_tables # TYPE rocksdb_num_entries_imm_mem_tables gauge @@ -859,7 +843,7 @@ rocksdb_num_files_at_level5 0 # HELP rocksdb_num_files_at_level6 rocksdb_num_files_at_level6 # TYPE rocksdb_num_files_at_level6 gauge -rocksdb_num_files_at_level6 6 +rocksdb_num_files_at_level6 4 # HELP rocksdb_num_immutable_mem_table rocksdb_num_immutable_mem_table # TYPE rocksdb_num_immutable_mem_table gauge @@ -875,7 +859,7 @@ rocksdb_num_live_versions 7 # HELP rocksdb_num_running_compactions rocksdb_num_running_compactions # TYPE rocksdb_num_running_compactions gauge -rocksdb_num_running_compactions 1 +rocksdb_num_running_compactions 0 # HELP rocksdb_num_running_flushes rocksdb_num_running_flushes # TYPE rocksdb_num_running_flushes gauge @@ -889,21 +873,25 @@ rocksdb_num_snapshots 0 # TYPE rocksdb_oldest_snapshot_time gauge rocksdb_oldest_snapshot_time 0 +# HELP rocksdb_read_only rocksdb_read_only +# TYPE rocksdb_read_only gauge +rocksdb_read_only 0 + # HELP rocksdb_size_all_mem_tables rocksdb_size_all_mem_tables # TYPE rocksdb_size_all_mem_tables gauge -rocksdb_size_all_mem_tables 142166152 +rocksdb_size_all_mem_tables 121149696 # HELP rocksdb_total_disk_space rocksdb_total_disk_space # TYPE rocksdb_total_disk_space gauge -rocksdb_total_disk_space 502996557824 +rocksdb_total_disk_space 127990572777472 # HELP rocksdb_total_inodes rocksdb_total_inodes # TYPE rocksdb_total_inodes gauge -rocksdb_total_inodes 31260672 +rocksdb_total_inodes 587485584 # HELP rocksdb_total_sst_files_size rocksdb_total_sst_files_size # TYPE rocksdb_total_sst_files_size gauge -rocksdb_total_sst_files_size 1508729 +rocksdb_total_sst_files_size 14428 # HELP rocksdb_engine_throttle_bps rocksdb_engine_throttle_bps # TYPE rocksdb_engine_throttle_bps gauge diff --git a/3.9/generated/Examples/RestAdminStatistics1.generated b/3.9/generated/Examples/RestAdminStatistics1.generated index 95e245e58d..2e768239df 100644 --- a/3.9/generated/Examples/RestAdminStatistics1.generated +++ b/3.9/generated/Examples/RestAdminStatistics1.generated @@ -1,74 +1,74 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_admin/statistics +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_admin/statistics HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 2240 +content-length: 2081 server: ArangoDB x-content-type-options: nosniff { - "time" : 1621938175.7288253, - "enabled" : true, - "system" : { - "minorPageFaults" : 76802, - "majorPageFaults" : 0, - "userTime" : 6.66, - "systemTime" : 3.05, - "numberOfThreads" : 51, - "residentSize" : 314568704, - "residentSizePercent" : 0.004975778076371543, - "virtualSize" : 1363283968 + "time" : 1628086045.893782, + "enabled" : true, + "system" : { + "minorPageFaults" : 51377, + "majorPageFaults" : 3515, + "userTime" : 0.489507, + "systemTime" : 0.198132, + "numberOfThreads" : 47, + "residentSize" : 215318528, + "residentSizePercent" : 0.006266593933105469, + "virtualSize" : 6194122752 }, - "client" : { - "httpConnections" : 2, - "connectionTime" : { - "sum" : 0, - "count" : 0, - "counts" : [ + "client" : { + "httpConnections" : 2, + "connectionTime" : { + "sum" : 0, + "count" : 0, + "counts" : [ 0, 0, 0, 0 ] }, - "totalTime" : { - "sum" : 6.609935283660889, - "count" : 32805, - "counts" : [ - 32799, - 4, + "totalTime" : { + "sum" : 0.19780850410461426, + "count" : 587, + "counts" : [ + 586, 1, 0, 0, - 1, + 0, + 0, 0, 0, 0, 0 ] }, - "requestTime" : { - "sum" : 3.635378360748291, - "count" : 32805, - "counts" : [ - 32799, - 4, + "requestTime" : { + "sum" : 0.15467500686645508, + "count" : 587, + "counts" : [ + 586, 1, 0, 0, - 1, + 0, + 0, 0, 0, 0, 0 ] }, - "queueTime" : { - "sum" : 0.9438483715057373, - "count" : 32805, - "counts" : [ - 32805, + "queueTime" : { + "sum" : 0.004099369049072266, + "count" : 587, + "counts" : [ + 587, 0, 0, 0, @@ -80,11 +80,11 @@ x-content-type-options: nosniff 0 ] }, - "ioTime" : { - "sum" : 2.0307085514068604, - "count" : 32805, - "counts" : [ - 32805, + "ioTime" : { + "sum" : 0.039034128189086914, + "count" : 587, + "counts" : [ + 587, 0, 0, 0, @@ -96,24 +96,24 @@ x-content-type-options: nosniff 0 ] }, - "bytesSent" : { - "sum" : 9853578, - "count" : 32805, - "counts" : [ - 404, - 31986, - 382, - 25, - 4, - 4 + "bytesSent" : { + "sum" : 369333, + "count" : 587, + "counts" : [ + 134, + 330, + 120, + 2, + 0, + 1 ] }, - "bytesReceived" : { - "sum" : 7670553, - "count" : 32805, - "counts" : [ - 31699, - 1106, + "bytesReceived" : { + "sum" : 125014, + "count" : 587, + "counts" : [ + 418, + 169, 0, 0, 0, @@ -121,55 +121,55 @@ x-content-type-options: nosniff ] } }, - "clientUser" : { - "httpConnections" : 2, - "connectionTime" : { - "sum" : 0, - "count" : 0, - "counts" : [ + "clientUser" : { + "httpConnections" : 2, + "connectionTime" : { + "sum" : 0, + "count" : 0, + "counts" : [ 0, 0, 0, 0 ] }, - "totalTime" : { - "sum" : 6.609935283660889, - "count" : 32805, - "counts" : [ - 32799, - 4, + "totalTime" : { + "sum" : 0.19780850410461426, + "count" : 587, + "counts" : [ + 586, 1, 0, 0, - 1, + 0, + 0, 0, 0, 0, 0 ] }, - "requestTime" : { - "sum" : 3.635378360748291, - "count" : 32805, - "counts" : [ - 32799, - 4, + "requestTime" : { + "sum" : 0.15467500686645508, + "count" : 587, + "counts" : [ + 586, 1, 0, 0, - 1, + 0, + 0, 0, 0, 0, 0 ] }, - "queueTime" : { - "sum" : 0.9438483715057373, - "count" : 32805, - "counts" : [ - 32805, + "queueTime" : { + "sum" : 0.004099369049072266, + "count" : 587, + "counts" : [ + 587, 0, 0, 0, @@ -181,11 +181,11 @@ x-content-type-options: nosniff 0 ] }, - "ioTime" : { - "sum" : 2.0307085514068604, - "count" : 32805, - "counts" : [ - 32805, + "ioTime" : { + "sum" : 0.039034128189086914, + "count" : 587, + "counts" : [ + 587, 0, 0, 0, @@ -197,24 +197,24 @@ x-content-type-options: nosniff 0 ] }, - "bytesSent" : { - "sum" : 9853578, - "count" : 32805, - "counts" : [ - 404, - 31986, - 382, - 25, - 4, - 4 + "bytesSent" : { + "sum" : 369333, + "count" : 587, + "counts" : [ + 134, + 330, + 120, + 2, + 0, + 1 ] }, - "bytesReceived" : { - "sum" : 7670553, - "count" : 32805, - "counts" : [ - 31699, - 1106, + "bytesReceived" : { + "sum" : 125014, + "count" : 587, + "counts" : [ + 418, + 169, 0, 0, 0, @@ -222,63 +222,55 @@ x-content-type-options: nosniff ] } }, - "http" : { - "requestsTotal" : 32805, - "requestsSuperuser" : 0, - "requestsUser" : 32805, - "requestsAsync" : 0, - "requestsGet" : 906, - "requestsHead" : 0, - "requestsPost" : 31764, - "requestsPut" : 30, - "requestsPatch" : 2, - "requestsDelete" : 103, - "requestsOptions" : 0, - "requestsOther" : 0 + "http" : { + "requestsTotal" : 587, + "requestsSuperuser" : 0, + "requestsUser" : 587, + "requestsAsync" : 0, + "requestsGet" : 273, + "requestsHead" : 0, + "requestsPost" : 270, + "requestsPut" : 8, + "requestsPatch" : 2, + "requestsDelete" : 34, + "requestsOptions" : 0, + "requestsOther" : 0 }, - "server" : { - "uptime" : 14.747324705123901, - "physicalMemory" : 63220002816, - "transactions" : { - "started" : 33116, - "aborted" : 292, - "committed" : 32824, - "intermediateCommits" : 0 + "server" : { + "uptime" : 1.5412790775299072, + "physicalMemory" : 34359738368, + "transactions" : { + "started" : 770, + "aborted" : 131, + "committed" : 639, + "intermediateCommits" : 0 }, - "v8Context" : { - "available" : 2, - "busy" : 0, - "dirty" : 0, - "free" : 2, - "max" : 16, - "min" : 1, - "memory" : [ - { - "contextId" : 0, - "tMax" : 1621938161.3602166, - "countOfTimes" : 7, - "heapMax" : 12417728, - "heapMin" : 0, - "invocations" : 25 - }, + "v8Context" : { + "available" : 1, + "busy" : 0, + "dirty" : 0, + "free" : 1, + "max" : 16, + "min" : 1, + "memory" : [ { - "contextId" : 1, - "tMax" : 1621938174.6807811, - "countOfTimes" : 7, - "heapMax" : 12417768, - "heapMin" : 0, - "invocations" : 3 + "contextId" : 0, + "tMax" : 1628086044.701857, + "countOfTimes" : 8, + "heapMax" : 12784008, + "heapMin" : 0, + "invocations" : 8 } ] }, - "threads" : { - "scheduler-threads" : 4, - "blocked" : 0, - "queued" : 1, - "in-progress" : 1, - "direct-exec" : 0 + "threads" : { + "scheduler-threads" : 4, + "blocked" : 0, + "queued" : 1, + "in-progress" : 1, + "direct-exec" : 0 } }, - "error" : false, - "code" : 200 + "error" : false, + "code" : 200 } diff --git a/3.9/generated/Examples/RestAdminStatisticsDescription1.generated b/3.9/generated/Examples/RestAdminStatisticsDescription1.generated index e744310116..fdf9095f8d 100644 --- a/3.9/generated/Examples/RestAdminStatisticsDescription1.generated +++ b/3.9/generated/Examples/RestAdminStatisticsDescription1.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_admin/statistics-description +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_admin/statistics-description HTTP/1.1 200 OK content-type: application/json @@ -8,113 +8,113 @@ server: ArangoDB x-content-type-options: nosniff { - "groups" : [ + "groups" : [ { - "group" : "system", - "name" : "Process Statistics", - "description" : "Statistics about the ArangoDB process" + "group" : "system", + "name" : "Process Statistics", + "description" : "Statistics about the ArangoDB process" }, { - "group" : "client", - "name" : "Client Connection Statistics", - "description" : "Statistics about the connections." + "group" : "client", + "name" : "Client Connection Statistics", + "description" : "Statistics about the connections." }, { - "group" : "clientUser", - "name" : "Client User Connection Statistics", - "description" : "Statistics about the connections, only user traffic (ignoring superuser JWT traffic)." + "group" : "clientUser", + "name" : "Client User Connection Statistics", + "description" : "Statistics about the connections, only user traffic (ignoring superuser JWT traffic)." }, { - "group" : "http", - "name" : "HTTP Request Statistics", - "description" : "Statistics about the HTTP requests." + "group" : "http", + "name" : "HTTP Request Statistics", + "description" : "Statistics about the HTTP requests." }, { - "group" : "server", - "name" : "Server Statistics", - "description" : "Statistics about the ArangoDB server" + "group" : "server", + "name" : "Server Statistics", + "description" : "Statistics about the ArangoDB server" } ], - "figures" : [ - { - "group" : "system", - "identifier" : "userTime", - "name" : "User Time", - "description" : "Amount of time that this process has been scheduled in user mode, measured in seconds.", - "type" : "accumulated", - "units" : "seconds" - }, - { - "group" : "system", - "identifier" : "systemTime", - "name" : "System Time", - "description" : "Amount of time that this process has been scheduled in kernel mode, measured in seconds.", - "type" : "accumulated", - "units" : "seconds" - }, - { - "group" : "system", - "identifier" : "numberOfThreads", - "name" : "Number of Threads", - "description" : "Number of threads in the arangod process.", - "type" : "current", - "units" : "number" - }, - { - "group" : "system", - "identifier" : "residentSize", - "name" : "Resident Set Size", - "description" : "The total size of the number of pages the process has in real memory. This is just the pages which count toward text, data, or stack space. This does not include pages which have not been demand-loaded in, or which are swapped out. The resident set size is reported in bytes.", - "type" : "current", - "units" : "bytes" - }, - { - "group" : "system", - "identifier" : "residentSizePercent", - "name" : "Resident Set Size", - "description" : "The percentage of physical memory used by the process as resident set size.", - "type" : "current", - "units" : "percent" - }, - { - "group" : "system", - "identifier" : "virtualSize", - "name" : "Virtual Memory Size", - "description" : "On Windows, this figure contains the total amount of memory that the memory manager has committed for the arangod process. On other systems, this figure contains The size of the virtual memory the process is using.", - "type" : "current", - "units" : "bytes" - }, - { - "group" : "system", - "identifier" : "minorPageFaults", - "name" : "Minor Page Faults", - "description" : "The number of minor faults the process has made which have not required loading a memory page from disk. This figure is not reported on Windows.", - "type" : "accumulated", - "units" : "number" - }, - { - "group" : "system", - "identifier" : "majorPageFaults", - "name" : "Major Page Faults", - "description" : "On Windows, this figure contains the total number of page faults. On other system, this figure contains the number of major faults the process has made which have required loading a memory page from disk.", - "type" : "accumulated", - "units" : "number" - }, - { - "group" : "client", - "identifier" : "httpConnections", - "name" : "Client Connections", - "description" : "The number of connections that are currently open.", - "type" : "current", - "units" : "number" - }, - { - "group" : "client", - "identifier" : "totalTime", - "name" : "Total Time", - "description" : "Total time needed to answer a request.", - "type" : "distribution", - "cuts" : [ + "figures" : [ + { + "group" : "system", + "identifier" : "userTime", + "name" : "User Time", + "description" : "Amount of time that this process has been scheduled in user mode, measured in seconds.", + "type" : "accumulated", + "units" : "seconds" + }, + { + "group" : "system", + "identifier" : "systemTime", + "name" : "System Time", + "description" : "Amount of time that this process has been scheduled in kernel mode, measured in seconds.", + "type" : "accumulated", + "units" : "seconds" + }, + { + "group" : "system", + "identifier" : "numberOfThreads", + "name" : "Number of Threads", + "description" : "Number of threads in the arangod process.", + "type" : "current", + "units" : "number" + }, + { + "group" : "system", + "identifier" : "residentSize", + "name" : "Resident Set Size", + "description" : "The total size of the number of pages the process has in real memory. This is just the pages which count toward text, data, or stack space. This does not include pages which have not been demand-loaded in, or which are swapped out. The resident set size is reported in bytes.", + "type" : "current", + "units" : "bytes" + }, + { + "group" : "system", + "identifier" : "residentSizePercent", + "name" : "Resident Set Size", + "description" : "The percentage of physical memory used by the process as resident set size.", + "type" : "current", + "units" : "percent" + }, + { + "group" : "system", + "identifier" : "virtualSize", + "name" : "Virtual Memory Size", + "description" : "On Windows, this figure contains the total amount of memory that the memory manager has committed for the arangod process. On other systems, this figure contains The size of the virtual memory the process is using.", + "type" : "current", + "units" : "bytes" + }, + { + "group" : "system", + "identifier" : "minorPageFaults", + "name" : "Minor Page Faults", + "description" : "The number of minor faults the process has made which have not required loading a memory page from disk. This figure is not reported on Windows.", + "type" : "accumulated", + "units" : "number" + }, + { + "group" : "system", + "identifier" : "majorPageFaults", + "name" : "Major Page Faults", + "description" : "On Windows, this figure contains the total number of page faults. On other system, this figure contains the number of major faults the process has made which have required loading a memory page from disk.", + "type" : "accumulated", + "units" : "number" + }, + { + "group" : "client", + "identifier" : "httpConnections", + "name" : "Client Connections", + "description" : "The number of connections that are currently open.", + "type" : "current", + "units" : "number" + }, + { + "group" : "client", + "identifier" : "totalTime", + "name" : "Total Time", + "description" : "Total time needed to answer a request.", + "type" : "distribution", + "cuts" : [ 0.01, 0.05, 0.1, @@ -125,15 +125,15 @@ x-content-type-options: nosniff 15, 30 ], - "units" : "seconds" + "units" : "seconds" }, { - "group" : "client", - "identifier" : "requestTime", - "name" : "Request Time", - "description" : "Request time needed to answer a request.", - "type" : "distribution", - "cuts" : [ + "group" : "client", + "identifier" : "requestTime", + "name" : "Request Time", + "description" : "Request time needed to answer a request.", + "type" : "distribution", + "cuts" : [ 0.01, 0.05, 0.1, @@ -144,15 +144,15 @@ x-content-type-options: nosniff 15, 30 ], - "units" : "seconds" + "units" : "seconds" }, { - "group" : "client", - "identifier" : "queueTime", - "name" : "Queue Time", - "description" : "Queue time needed to answer a request.", - "type" : "distribution", - "cuts" : [ + "group" : "client", + "identifier" : "queueTime", + "name" : "Queue Time", + "description" : "Queue time needed to answer a request.", + "type" : "distribution", + "cuts" : [ 0.01, 0.05, 0.1, @@ -163,66 +163,66 @@ x-content-type-options: nosniff 15, 30 ], - "units" : "seconds" + "units" : "seconds" }, { - "group" : "client", - "identifier" : "bytesSent", - "name" : "Bytes Sent", - "description" : "Bytes sents for a request.", - "type" : "distribution", - "cuts" : [ + "group" : "client", + "identifier" : "bytesSent", + "name" : "Bytes Sent", + "description" : "Bytes sents for a request.", + "type" : "distribution", + "cuts" : [ 250, 1000, 2000, 5000, 10000 ], - "units" : "bytes" + "units" : "bytes" }, { - "group" : "client", - "identifier" : "bytesReceived", - "name" : "Bytes Received", - "description" : "Bytes received for a request.", - "type" : "distribution", - "cuts" : [ + "group" : "client", + "identifier" : "bytesReceived", + "name" : "Bytes Received", + "description" : "Bytes received for a request.", + "type" : "distribution", + "cuts" : [ 250, 1000, 2000, 5000, 10000 ], - "units" : "bytes" + "units" : "bytes" }, { - "group" : "client", - "identifier" : "connectionTime", - "name" : "Connection Time", - "description" : "Total connection time of a client.", - "type" : "distribution", - "cuts" : [ + "group" : "client", + "identifier" : "connectionTime", + "name" : "Connection Time", + "description" : "Total connection time of a client.", + "type" : "distribution", + "cuts" : [ 0.1, 1, 60 ], - "units" : "seconds" + "units" : "seconds" }, { - "group" : "clientUser", - "identifier" : "httpConnections", - "name" : "Client Connections", - "description" : "The number of connections that are currently open (only user traffic).", - "type" : "current", - "units" : "number" + "group" : "clientUser", + "identifier" : "httpConnections", + "name" : "Client Connections", + "description" : "The number of connections that are currently open (only user traffic).", + "type" : "current", + "units" : "number" }, { - "group" : "clientUser", - "identifier" : "totalTime", - "name" : "Total Time", - "description" : "Total time needed to answer a request (only user traffic).", - "type" : "distribution", - "cuts" : [ + "group" : "clientUser", + "identifier" : "totalTime", + "name" : "Total Time", + "description" : "Total time needed to answer a request (only user traffic).", + "type" : "distribution", + "cuts" : [ 0.01, 0.05, 0.1, @@ -233,15 +233,15 @@ x-content-type-options: nosniff 15, 30 ], - "units" : "seconds" + "units" : "seconds" }, { - "group" : "clientUser", - "identifier" : "requestTime", - "name" : "Request Time", - "description" : "Request time needed to answer a request (only user traffic).", - "type" : "distribution", - "cuts" : [ + "group" : "clientUser", + "identifier" : "requestTime", + "name" : "Request Time", + "description" : "Request time needed to answer a request (only user traffic).", + "type" : "distribution", + "cuts" : [ 0.01, 0.05, 0.1, @@ -252,15 +252,15 @@ x-content-type-options: nosniff 15, 30 ], - "units" : "seconds" + "units" : "seconds" }, { - "group" : "clientUser", - "identifier" : "queueTime", - "name" : "Queue Time", - "description" : "Queue time needed to answer a request (only user traffic).", - "type" : "distribution", - "cuts" : [ + "group" : "clientUser", + "identifier" : "queueTime", + "name" : "Queue Time", + "description" : "Queue time needed to answer a request (only user traffic).", + "type" : "distribution", + "cuts" : [ 0.01, 0.05, 0.1, @@ -271,164 +271,164 @@ x-content-type-options: nosniff 15, 30 ], - "units" : "seconds" + "units" : "seconds" }, { - "group" : "clientUser", - "identifier" : "bytesSent", - "name" : "Bytes Sent", - "description" : "Bytes sents for a request (only user traffic).", - "type" : "distribution", - "cuts" : [ + "group" : "clientUser", + "identifier" : "bytesSent", + "name" : "Bytes Sent", + "description" : "Bytes sents for a request (only user traffic).", + "type" : "distribution", + "cuts" : [ 250, 1000, 2000, 5000, 10000 ], - "units" : "bytes" + "units" : "bytes" }, { - "group" : "clientUser", - "identifier" : "bytesReceived", - "name" : "Bytes Received", - "description" : "Bytes received for a request (only user traffic).", - "type" : "distribution", - "cuts" : [ + "group" : "clientUser", + "identifier" : "bytesReceived", + "name" : "Bytes Received", + "description" : "Bytes received for a request (only user traffic).", + "type" : "distribution", + "cuts" : [ 250, 1000, 2000, 5000, 10000 ], - "units" : "bytes" + "units" : "bytes" }, { - "group" : "clientUser", - "identifier" : "connectionTime", - "name" : "Connection Time", - "description" : "Total connection time of a client (only user traffic).", - "type" : "distribution", - "cuts" : [ + "group" : "clientUser", + "identifier" : "connectionTime", + "name" : "Connection Time", + "description" : "Total connection time of a client (only user traffic).", + "type" : "distribution", + "cuts" : [ 0.1, 1, 60 ], - "units" : "seconds" + "units" : "seconds" }, { - "group" : "http", - "identifier" : "requestsTotal", - "name" : "Total requests", - "description" : "Total number of HTTP requests.", - "type" : "accumulated", - "units" : "number" + "group" : "http", + "identifier" : "requestsTotal", + "name" : "Total requests", + "description" : "Total number of HTTP requests.", + "type" : "accumulated", + "units" : "number" }, { - "group" : "http", - "identifier" : "requestsSuperuser", - "name" : "Total superuser requests", - "description" : "Total number of HTTP requests executed by superuser/JWT.", - "type" : "accumulated", - "units" : "number" + "group" : "http", + "identifier" : "requestsSuperuser", + "name" : "Total superuser requests", + "description" : "Total number of HTTP requests executed by superuser/JWT.", + "type" : "accumulated", + "units" : "number" }, { - "group" : "http", - "identifier" : "requestsUser", - "name" : "Total user requests", - "description" : "Total number of HTTP requests executed by clients.", - "type" : "accumulated", - "units" : "number" + "group" : "http", + "identifier" : "requestsUser", + "name" : "Total user requests", + "description" : "Total number of HTTP requests executed by clients.", + "type" : "accumulated", + "units" : "number" }, { - "group" : "http", - "identifier" : "requestsAsync", - "name" : "Async requests", - "description" : "Number of asynchronously executed HTTP requests.", - "type" : "accumulated", - "units" : "number" + "group" : "http", + "identifier" : "requestsAsync", + "name" : "Async requests", + "description" : "Number of asynchronously executed HTTP requests.", + "type" : "accumulated", + "units" : "number" }, { - "group" : "http", - "identifier" : "requestsGet", - "name" : "HTTP GET requests", - "description" : "Number of HTTP GET requests.", - "type" : "accumulated", - "units" : "number" + "group" : "http", + "identifier" : "requestsGet", + "name" : "HTTP GET requests", + "description" : "Number of HTTP GET requests.", + "type" : "accumulated", + "units" : "number" }, { - "group" : "http", - "identifier" : "requestsHead", - "name" : "HTTP HEAD requests", - "description" : "Number of HTTP HEAD requests.", - "type" : "accumulated", - "units" : "number" + "group" : "http", + "identifier" : "requestsHead", + "name" : "HTTP HEAD requests", + "description" : "Number of HTTP HEAD requests.", + "type" : "accumulated", + "units" : "number" }, { - "group" : "http", - "identifier" : "requestsPost", - "name" : "HTTP POST requests", - "description" : "Number of HTTP POST requests.", - "type" : "accumulated", - "units" : "number" + "group" : "http", + "identifier" : "requestsPost", + "name" : "HTTP POST requests", + "description" : "Number of HTTP POST requests.", + "type" : "accumulated", + "units" : "number" }, { - "group" : "http", - "identifier" : "requestsPut", - "name" : "HTTP PUT requests", - "description" : "Number of HTTP PUT requests.", - "type" : "accumulated", - "units" : "number" + "group" : "http", + "identifier" : "requestsPut", + "name" : "HTTP PUT requests", + "description" : "Number of HTTP PUT requests.", + "type" : "accumulated", + "units" : "number" }, { - "group" : "http", - "identifier" : "requestsPatch", - "name" : "HTTP PATCH requests", - "description" : "Number of HTTP PATCH requests.", - "type" : "accumulated", - "units" : "number" + "group" : "http", + "identifier" : "requestsPatch", + "name" : "HTTP PATCH requests", + "description" : "Number of HTTP PATCH requests.", + "type" : "accumulated", + "units" : "number" }, { - "group" : "http", - "identifier" : "requestsDelete", - "name" : "HTTP DELETE requests", - "description" : "Number of HTTP DELETE requests.", - "type" : "accumulated", - "units" : "number" + "group" : "http", + "identifier" : "requestsDelete", + "name" : "HTTP DELETE requests", + "description" : "Number of HTTP DELETE requests.", + "type" : "accumulated", + "units" : "number" }, { - "group" : "http", - "identifier" : "requestsOptions", - "name" : "HTTP OPTIONS requests", - "description" : "Number of HTTP OPTIONS requests.", - "type" : "accumulated", - "units" : "number" + "group" : "http", + "identifier" : "requestsOptions", + "name" : "HTTP OPTIONS requests", + "description" : "Number of HTTP OPTIONS requests.", + "type" : "accumulated", + "units" : "number" }, { - "group" : "http", - "identifier" : "requestsOther", - "name" : "other HTTP requests", - "description" : "Number of other HTTP requests.", - "type" : "accumulated", - "units" : "number" + "group" : "http", + "identifier" : "requestsOther", + "name" : "other HTTP requests", + "description" : "Number of other HTTP requests.", + "type" : "accumulated", + "units" : "number" }, { - "group" : "server", - "identifier" : "uptime", - "name" : "Server Uptime", - "description" : "Number of seconds elapsed since server start.", - "type" : "current", - "units" : "seconds" - }, + "group" : "server", + "identifier" : "uptime", + "name" : "Server Uptime", + "description" : "Number of seconds elapsed since server start.", + "type" : "current", + "units" : "seconds" + }, { - "group" : "server", - "identifier" : "physicalMemory", - "name" : "Physical Memory", - "description" : "Physical memory in bytes.", - "type" : "current", - "units" : "bytes" + "group" : "server", + "identifier" : "physicalMemory", + "name" : "Physical Memory", + "description" : "Physical memory in bytes.", + "type" : "current", + "units" : "bytes" } ], - "error" : false, - "code" : 200 + "error" : false, + "code" : 200 } diff --git a/3.9/generated/Examples/RestAnalyzerDelete.generated b/3.9/generated/Examples/RestAnalyzerDelete.generated index f26b51d7eb..e3b26b3bea 100644 --- a/3.9/generated/Examples/RestAnalyzerDelete.generated +++ b/3.9/generated/Examples/RestAnalyzerDelete.generated @@ -1,4 +1,4 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/analyzer/testAnalyzer +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/analyzer/testAnalyzer HTTP/1.1 200 OK content-type: application/json @@ -8,7 +8,7 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "name" : "_system::testAnalyzer" + "error" : false, + "code" : 200, + "name" : "_system::testAnalyzer" } diff --git a/3.9/generated/Examples/RestAnalyzerDeleteForce.generated b/3.9/generated/Examples/RestAnalyzerDeleteForce.generated index b95f853c49..ef005452fa 100644 --- a/3.9/generated/Examples/RestAnalyzerDeleteForce.generated +++ b/3.9/generated/Examples/RestAnalyzerDeleteForce.generated @@ -1,26 +1,26 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/collection <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/collection <<EOF { - "name" : "testCollection" + "name" : "testCollection" } EOF -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/view <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/view <<EOF { - "name" : "testView", - "type" : "arangosearch", - "links" : { - "testCollection" : { - "analyzers" : [ - "testAnalyzer" + "name" : "testView", + "type" : "arangosearch", + "links" : { + "testCollection" : { + "analyzers" : [ + "testAnalyzer" ] } } } EOF -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/analyzer/testAnalyzer?force=false +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/analyzer/testAnalyzer?force=false -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/analyzer/testAnalyzer?force=true +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/analyzer/testAnalyzer?force=true HTTP/1.1 200 OK content-type: application/json @@ -30,7 +30,7 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "name" : "_system::testAnalyzer" + "error" : false, + "code" : 200, + "name" : "_system::testAnalyzer" } diff --git a/3.9/generated/Examples/RestAnalyzerGet.generated b/3.9/generated/Examples/RestAnalyzerGet.generated index 873723999c..6affa1507f 100644 --- a/3.9/generated/Examples/RestAnalyzerGet.generated +++ b/3.9/generated/Examples/RestAnalyzerGet.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/analyzer/testAnalyzer +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/analyzer/testAnalyzer HTTP/1.1 200 OK content-type: application/json @@ -8,11 +8,11 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "type" : "identity", - "properties" : { + "error" : false, + "code" : 200, + "type" : "identity", + "properties" : { }, - "name" : "_system::testAnalyzer", - "features" : [ ] + "name" : "_system::testAnalyzer", + "features" : [ ] } diff --git a/3.9/generated/Examples/RestAnalyzerPost.generated b/3.9/generated/Examples/RestAnalyzerPost.generated index fb596c976c..0675de301c 100644 --- a/3.9/generated/Examples/RestAnalyzerPost.generated +++ b/3.9/generated/Examples/RestAnalyzerPost.generated @@ -1,7 +1,7 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/analyzer <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/analyzer <<EOF { - "name" : "testAnalyzer", - "type" : "identity" + "name" : "testAnalyzer", + "type" : "identity" } EOF @@ -13,9 +13,9 @@ server: ArangoDB x-content-type-options: nosniff { - "name" : "_system::testAnalyzer", - "type" : "identity", - "properties" : { + "name" : "_system::testAnalyzer", + "type" : "identity", + "properties" : { }, - "features" : [ ] + "features" : [ ] } diff --git a/3.9/generated/Examples/RestAnalyzersGet.generated b/3.9/generated/Examples/RestAnalyzersGet.generated index b79d25867d..c9f34d262a 100644 --- a/3.9/generated/Examples/RestAnalyzersGet.generated +++ b/3.9/generated/Examples/RestAnalyzersGet.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/analyzer +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/analyzer HTTP/1.1 200 OK content-type: application/json @@ -8,209 +8,209 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "result" : [ + "error" : false, + "code" : 200, + "result" : [ { - "name" : "text_zh", - "type" : "text", - "properties" : { - "locale" : "zh.utf-8", - "case" : "lower", - "stopwords" : [ ], - "accent" : false, - "stemming" : true + "name" : "text_ru", + "type" : "text", + "properties" : { + "locale" : "ru.utf-8", + "case" : "lower", + "stopwords" : [ ], + "accent" : false, + "stemming" : true }, - "features" : [ - "frequency", - "norm", - "position" + "features" : [ + "frequency", + "norm", + "position" ] }, { - "name" : "text_sv", - "type" : "text", - "properties" : { - "locale" : "sv.utf-8", - "case" : "lower", - "stopwords" : [ ], - "accent" : false, - "stemming" : true + "name" : "text_sv", + "type" : "text", + "properties" : { + "locale" : "sv.utf-8", + "case" : "lower", + "stopwords" : [ ], + "accent" : false, + "stemming" : true }, - "features" : [ - "frequency", - "norm", - "position" + "features" : [ + "frequency", + "norm", + "position" ] }, { - "name" : "text_nl", - "type" : "text", - "properties" : { - "locale" : "nl.utf-8", - "case" : "lower", - "stopwords" : [ ], - "accent" : false, - "stemming" : true + "name" : "text_nl", + "type" : "text", + "properties" : { + "locale" : "nl.utf-8", + "case" : "lower", + "stopwords" : [ ], + "accent" : false, + "stemming" : true }, - "features" : [ - "frequency", - "norm", - "position" + "features" : [ + "frequency", + "norm", + "position" ] }, { - "name" : "text_it", - "type" : "text", - "properties" : { - "locale" : "it.utf-8", - "case" : "lower", - "stopwords" : [ ], - "accent" : false, - "stemming" : true + "name" : "text_no", + "type" : "text", + "properties" : { + "locale" : "no.utf-8", + "case" : "lower", + "stopwords" : [ ], + "accent" : false, + "stemming" : true }, - "features" : [ - "frequency", - "norm", - "position" + "features" : [ + "frequency", + "norm", + "position" ] }, { - "name" : "text_fr", - "type" : "text", - "properties" : { - "locale" : "fr.utf-8", - "case" : "lower", - "stopwords" : [ ], - "accent" : false, - "stemming" : true + "name" : "text_fr", + "type" : "text", + "properties" : { + "locale" : "fr.utf-8", + "case" : "lower", + "stopwords" : [ ], + "accent" : false, + "stemming" : true }, - "features" : [ - "frequency", - "norm", - "position" + "features" : [ + "frequency", + "norm", + "position" ] }, { - "name" : "text_pt", - "type" : "text", - "properties" : { - "locale" : "pt.utf-8", - "case" : "lower", - "stopwords" : [ ], - "accent" : false, - "stemming" : true + "name" : "text_pt", + "type" : "text", + "properties" : { + "locale" : "pt.utf-8", + "case" : "lower", + "stopwords" : [ ], + "accent" : false, + "stemming" : true }, - "features" : [ - "frequency", - "norm", - "position" + "features" : [ + "frequency", + "norm", + "position" ] }, { - "name" : "text_no", - "type" : "text", - "properties" : { - "locale" : "no.utf-8", - "case" : "lower", - "stopwords" : [ ], - "accent" : false, - "stemming" : true + "name" : "identity", + "type" : "identity", + "properties" : { }, - "features" : [ - "frequency", - "norm", - "position" + "features" : [ + "frequency", + "norm" ] }, { - "name" : "text_fi", - "type" : "text", - "properties" : { - "locale" : "fi.utf-8", - "case" : "lower", - "stopwords" : [ ], - "accent" : false, - "stemming" : true + "name" : "text_fi", + "type" : "text", + "properties" : { + "locale" : "fi.utf-8", + "case" : "lower", + "stopwords" : [ ], + "accent" : false, + "stemming" : true }, - "features" : [ - "frequency", - "norm", - "position" + "features" : [ + "frequency", + "norm", + "position" ] }, { - "name" : "text_es", - "type" : "text", - "properties" : { - "locale" : "es.utf-8", - "case" : "lower", - "stopwords" : [ ], - "accent" : false, - "stemming" : true + "name" : "text_zh", + "type" : "text", + "properties" : { + "locale" : "zh.utf-8", + "case" : "lower", + "stopwords" : [ ], + "accent" : false, + "stemming" : true }, - "features" : [ - "frequency", - "norm", - "position" + "features" : [ + "frequency", + "norm", + "position" ] }, { - "name" : "text_en", - "type" : "text", - "properties" : { - "locale" : "en.utf-8", - "case" : "lower", - "stopwords" : [ ], - "accent" : false, - "stemming" : true + "name" : "text_en", + "type" : "text", + "properties" : { + "locale" : "en.utf-8", + "case" : "lower", + "stopwords" : [ ], + "accent" : false, + "stemming" : true }, - "features" : [ - "frequency", - "norm", - "position" + "features" : [ + "frequency", + "norm", + "position" ] }, { - "name" : "text_ru", - "type" : "text", - "properties" : { - "locale" : "ru.utf-8", - "case" : "lower", - "stopwords" : [ ], - "accent" : false, - "stemming" : true + "name" : "text_es", + "type" : "text", + "properties" : { + "locale" : "es.utf-8", + "case" : "lower", + "stopwords" : [ ], + "accent" : false, + "stemming" : true }, - "features" : [ - "frequency", - "norm", - "position" + "features" : [ + "frequency", + "norm", + "position" ] }, { - "name" : "text_de", - "type" : "text", - "properties" : { - "locale" : "de.utf-8", - "case" : "lower", - "stopwords" : [ ], - "accent" : false, - "stemming" : true + "name" : "text_de", + "type" : "text", + "properties" : { + "locale" : "de.utf-8", + "case" : "lower", + "stopwords" : [ ], + "accent" : false, + "stemming" : true }, - "features" : [ - "frequency", - "norm", - "position" + "features" : [ + "frequency", + "norm", + "position" ] }, { - "name" : "identity", - "type" : "identity", - "properties" : { + "name" : "text_it", + "type" : "text", + "properties" : { + "locale" : "it.utf-8", + "case" : "lower", + "stopwords" : [ ], + "accent" : false, + "stemming" : true }, - "features" : [ - "frequency", - "norm" + "features" : [ + "frequency", + "norm", + "position" ] } ] diff --git a/3.9/generated/Examples/RestAqlfunctionCreate.generated b/3.9/generated/Examples/RestAqlfunctionCreate.generated index db6f3f10fb..a41f803d49 100644 --- a/3.9/generated/Examples/RestAqlfunctionCreate.generated +++ b/3.9/generated/Examples/RestAqlfunctionCreate.generated @@ -1,8 +1,8 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/aqlfunction <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/aqlfunction <<EOF { - "name" : "myfunctions::temperature::celsiustofahrenheit", - "code" : "function (celsius) { return celsius * 1.8 + 32; }", - "isDeterministic" : true + "name" : "myfunctions::temperature::celsiustofahrenheit", + "code" : "function (celsius) { return celsius * 1.8 + 32; }", + "isDeterministic" : true } EOF @@ -14,7 +14,7 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 201, - "isNewlyCreated" : true + "error" : false, + "code" : 201, + "isNewlyCreated" : true } diff --git a/3.9/generated/Examples/RestAqlfunctionDelete.generated b/3.9/generated/Examples/RestAqlfunctionDelete.generated index 8d8f8e78d4..e3e44f0550 100644 --- a/3.9/generated/Examples/RestAqlfunctionDelete.generated +++ b/3.9/generated/Examples/RestAqlfunctionDelete.generated @@ -1,4 +1,4 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/aqlfunction/square::x::y +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/aqlfunction/square::x::y HTTP/1.1 200 OK content-type: application/json @@ -8,7 +8,7 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "deletedCount" : 1 + "error" : false, + "code" : 200, + "deletedCount" : 1 } diff --git a/3.9/generated/Examples/RestAqlfunctionDeleteFails.generated b/3.9/generated/Examples/RestAqlfunctionDeleteFails.generated index a620252bc5..727b46e5d2 100644 --- a/3.9/generated/Examples/RestAqlfunctionDeleteFails.generated +++ b/3.9/generated/Examples/RestAqlfunctionDeleteFails.generated @@ -1,4 +1,4 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/aqlfunction/myfunction::x::y +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/aqlfunction/myfunction::x::y HTTP/1.1 404 Not Found content-type: application/json @@ -8,8 +8,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 404, - "error" : true, - "errorMessage" : "no AQL user function with name 'myfunction::x::y' found", - "errorNum" : 1582 + "code" : 404, + "error" : true, + "errorMessage" : "no AQL user function with name 'myfunction::x::y' found", + "errorNum" : 1582 } diff --git a/3.9/generated/Examples/RestAqlfunctionsGetAll.generated b/3.9/generated/Examples/RestAqlfunctionsGetAll.generated index 8fbf8cbdd3..e69a385252 100644 --- a/3.9/generated/Examples/RestAqlfunctionsGetAll.generated +++ b/3.9/generated/Examples/RestAqlfunctionsGetAll.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/aqlfunction/test +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/aqlfunction/test HTTP/1.1 200 OK content-type: application/json @@ -8,7 +8,7 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "result" : [ ] + "error" : false, + "code" : 200, + "result" : [ ] } diff --git a/3.9/generated/Examples/RestBackupCreateBackup_rocksdb.generated b/3.9/generated/Examples/RestBackupCreateBackup_rocksdb.generated index a5ed08c099..0dee989e26 100644 --- a/3.9/generated/Examples/RestBackupCreateBackup_rocksdb.generated +++ b/3.9/generated/Examples/RestBackupCreateBackup_rocksdb.generated @@ -1,6 +1,6 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_admin/backup/create <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_admin/backup/create <<EOF { - "label" : "foo" + "label" : "foo" } EOF @@ -12,14 +12,14 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 201, - "result" : { - "id" : "2021-05-25T10.22.55Z_foo", - "potentiallyInconsistent" : false, - "sizeInBytes" : 57951, - "datetime" : "2021-05-25T10:22:55Z", - "nrDBServers" : 1, - "nrFiles" : 23 + "error" : false, + "code" : 201, + "result" : { + "id" : "2021-08-04T14.07.25Z_foo", + "potentiallyInconsistent" : false, + "sizeInBytes" : 48128, + "datetime" : "2021-08-04T14:07:25Z", + "nrDBServers" : 1, + "nrFiles" : 23 } } diff --git a/3.9/generated/Examples/RestBackupDeleteBackup_rocksdb.generated b/3.9/generated/Examples/RestBackupDeleteBackup_rocksdb.generated index 236b4183b4..088eae6974 100644 --- a/3.9/generated/Examples/RestBackupDeleteBackup_rocksdb.generated +++ b/3.9/generated/Examples/RestBackupDeleteBackup_rocksdb.generated @@ -1,6 +1,6 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_admin/backup/delete <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_admin/backup/delete <<EOF { - "id" : "2021-05-25T10.22.55Z_ec9a5d32-1193-4e5c-bf55-c09bd4b2ae1d" + "id" : "2021-08-04T14.07.26Z_c026c265-3d51-4447-8518-2d24c492d9ac" } EOF @@ -12,8 +12,8 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "result" : { + "error" : false, + "code" : 200, + "result" : { } } diff --git a/3.9/generated/Examples/RestBackupDownloadBackupStarted_rocksdb.generated b/3.9/generated/Examples/RestBackupDownloadBackupStarted_rocksdb.generated index 53b86044d1..e79f9f1aea 100644 --- a/3.9/generated/Examples/RestBackupDownloadBackupStarted_rocksdb.generated +++ b/3.9/generated/Examples/RestBackupDownloadBackupStarted_rocksdb.generated @@ -1,27 +1,27 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_admin/backup/download <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_admin/backup/download <<EOF { - "downloadId" : "66177" + "downloadId" : "1692" } EOF HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 224 +content-length: 223 server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "result" : { - "Timestamp" : "2021-05-25T10:23:11Z", - "DownloadId" : "66177", - "Cancelled" : false, - "BackupId" : "2021-05-25T10.22.55Z_70d87fb2-72d7-4859-827a-384c88fd3bac", - "DBServers" : { - "SNGL" : { - "Status" : "STARTED" + "error" : false, + "code" : 200, + "result" : { + "Timestamp" : "2021-08-04T14:07:41Z", + "DownloadId" : "1692", + "Cancelled" : false, + "BackupId" : "2021-08-04T14.07.26Z_ca7b63dc-7255-4056-81d2-88d06e31b702", + "DBServers" : { + "SNGL" : { + "Status" : "STARTED" } } } diff --git a/3.9/generated/Examples/RestBackupDownloadBackup_rocksdb.generated b/3.9/generated/Examples/RestBackupDownloadBackup_rocksdb.generated index 7c6868fc88..a1056a640d 100644 --- a/3.9/generated/Examples/RestBackupDownloadBackup_rocksdb.generated +++ b/3.9/generated/Examples/RestBackupDownloadBackup_rocksdb.generated @@ -1,10 +1,10 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_admin/backup/download <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_admin/backup/download <<EOF { - "id" : "2021-05-25T10.23.11Z_ed0066f3-03c5-4fdc-83d6-3aaeb50b9dc3", - "remoteRepository" : "local://tmp/backups", - "config" : { - "local" : { - "type" : "local" + "id" : "2021-08-04T14.07.41Z_e6c9a2fb-f7be-44c6-b6c1-f28d8b62e7dd", + "remoteRepository" : "local://tmp/backups", + "config" : { + "local" : { + "type" : "local" } } } @@ -13,14 +13,14 @@ EOF HTTP/1.1 202 Accepted content-type: application/json connection: Keep-Alive -content-length: 58 +content-length: 57 server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 202, - "result" : { - "downloadId" : "66186" + "error" : false, + "code" : 202, + "result" : { + "downloadId" : "1707" } } diff --git a/3.9/generated/Examples/RestBackupListBackup_rocksdb.generated b/3.9/generated/Examples/RestBackupListBackup_rocksdb.generated index b015212c6e..dbe60fab6f 100644 --- a/3.9/generated/Examples/RestBackupListBackup_rocksdb.generated +++ b/3.9/generated/Examples/RestBackupListBackup_rocksdb.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_admin/backup/list <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_admin/backup/list <<EOF { } EOF @@ -11,46 +11,46 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "result" : { - "server" : "SNGL-63851dfe-2440-4cc3-86f3-fd0360027880", - "list" : { - "2021-05-25T10.23.26Z_233111cf-de30-4ee3-b8f3-8de8c58d5617" : { - "id" : "2021-05-25T10.23.26Z_233111cf-de30-4ee3-b8f3-8de8c58d5617", - "version" : "3.9.0-devel", - "datetime" : "2021-05-25T10:23:26Z", - "keys" : [ ], - "sizeInBytes" : 70636, - "nrFiles" : 23, - "nrDBServers" : 1, - "available" : true, - "nrPiecesPresent" : 1, - "potentiallyInconsistent" : false + "error" : false, + "code" : 200, + "result" : { + "server" : "SNGL-58ec52b2-7cfb-496f-9665-d6788579e713", + "list" : { + "2021-08-04T14.07.57Z_c6793770-a9f3-4168-bad2-416b719cba05" : { + "id" : "2021-08-04T14.07.57Z_c6793770-a9f3-4168-bad2-416b719cba05", + "version" : "3.9.0-devel", + "datetime" : "2021-08-04T14:07:57Z", + "keys" : [ ], + "sizeInBytes" : 62979, + "nrFiles" : 27, + "nrDBServers" : 1, + "available" : true, + "nrPiecesPresent" : 1, + "potentiallyInconsistent" : false }, - "2021-05-25T10.23.26Z_f5601620-b4df-414b-82ed-29e63abae9a0" : { - "id" : "2021-05-25T10.23.26Z_f5601620-b4df-414b-82ed-29e63abae9a0", - "version" : "3.9.0-devel", - "datetime" : "2021-05-25T10:23:26Z", - "keys" : [ ], - "sizeInBytes" : 73076, - "nrFiles" : 25, - "nrDBServers" : 1, - "available" : true, - "nrPiecesPresent" : 1, - "potentiallyInconsistent" : false + "2021-08-04T14.07.57Z_9ad3acac-e7be-4453-8397-81c622201db5" : { + "id" : "2021-08-04T14.07.57Z_9ad3acac-e7be-4453-8397-81c622201db5", + "version" : "3.9.0-devel", + "datetime" : "2021-08-04T14:07:57Z", + "keys" : [ ], + "sizeInBytes" : 61261, + "nrFiles" : 27, + "nrDBServers" : 1, + "available" : true, + "nrPiecesPresent" : 1, + "potentiallyInconsistent" : false }, - "2021-05-25T10.22.55Z_foo" : { - "id" : "2021-05-25T10.22.55Z_foo", - "version" : "3.9.0-devel", - "datetime" : "2021-05-25T10:22:55Z", - "keys" : [ ], - "sizeInBytes" : 57951, - "nrFiles" : 23, - "nrDBServers" : 1, - "available" : true, - "nrPiecesPresent" : 1, - "potentiallyInconsistent" : false + "2021-08-04T14.07.25Z_foo" : { + "id" : "2021-08-04T14.07.25Z_foo", + "version" : "3.9.0-devel", + "datetime" : "2021-08-04T14:07:25Z", + "keys" : [ ], + "sizeInBytes" : 48128, + "nrFiles" : 23, + "nrDBServers" : 1, + "available" : true, + "nrPiecesPresent" : 1, + "potentiallyInconsistent" : false } } } diff --git a/3.9/generated/Examples/RestBackupRestoreBackup_rocksdb.generated b/3.9/generated/Examples/RestBackupRestoreBackup_rocksdb.generated index b90319122d..c369515918 100644 --- a/3.9/generated/Examples/RestBackupRestoreBackup_rocksdb.generated +++ b/3.9/generated/Examples/RestBackupRestoreBackup_rocksdb.generated @@ -1,20 +1,20 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_admin/backup/restore <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_admin/backup/restore <<EOF { - "id" : "2021-05-25T10.23.26Z_02b9d7ec-c7aa-4eb4-b4be-ca5354082001" + "id" : "2021-08-04T14.07.57Z_244ef3a1-5838-46f6-9df2-8016158c69ca" } EOF HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 125 +content-length: 169 server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "result" : { - "previous" : "/tmp/arangosh_JbpaPj/rocksdb-clusterOrNot/data/backups/DIRECTORY_TO_DELETE" + "error" : false, + "code" : 200, + "result" : { + "previous" : "/var/folders/n5/67y4y1y94vl7t9382fkkls380000gn/T/arangosh_ZkqTKJ/rocksdb-clusterOrNot/data/backups/DIRECTORY_TO_DELETE" } } diff --git a/3.9/generated/Examples/RestBackupUploadBackupStarted_rocksdb.generated b/3.9/generated/Examples/RestBackupUploadBackupStarted_rocksdb.generated index 4aa3e06571..b930dd3905 100644 --- a/3.9/generated/Examples/RestBackupUploadBackupStarted_rocksdb.generated +++ b/3.9/generated/Examples/RestBackupUploadBackupStarted_rocksdb.generated @@ -1,27 +1,27 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_admin/backup/upload <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_admin/backup/upload <<EOF { - "uploadId" : "66210" + "uploadId" : "1731" } EOF HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 222 +content-length: 221 server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "result" : { - "Timestamp" : "2021-05-25T10:23:37Z", - "UploadId" : "66210", - "Cancelled" : false, - "BackupId" : "2021-05-25T10.23.37Z_100c3892-93d6-4671-8a31-d0304d557f30", - "DBServers" : { - "SNGL" : { - "Status" : "STARTED" + "error" : false, + "code" : 200, + "result" : { + "Timestamp" : "2021-08-04T14:08:07Z", + "UploadId" : "1731", + "Cancelled" : false, + "BackupId" : "2021-08-04T14.08.07Z_667e0e14-7748-4072-a4e1-d92b0cb4f6f2", + "DBServers" : { + "SNGL" : { + "Status" : "STARTED" } } } diff --git a/3.9/generated/Examples/RestBackupUploadBackup_rocksdb.generated b/3.9/generated/Examples/RestBackupUploadBackup_rocksdb.generated index 594fd8efd3..3b4b0fbe42 100644 --- a/3.9/generated/Examples/RestBackupUploadBackup_rocksdb.generated +++ b/3.9/generated/Examples/RestBackupUploadBackup_rocksdb.generated @@ -1,10 +1,10 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_admin/backup/upload <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_admin/backup/upload <<EOF { - "id" : "2021-05-25T10.23.37Z_63f7443b-2574-4aa5-8582-a6b1cf4a1f6e", - "remoteRepository" : "local://tmp/backups", - "config" : { - "local" : { - "type" : "local" + "id" : "2021-08-04T14.08.07Z_18ebabb3-c3ff-4c60-8ffa-ce22e39ad03b", + "remoteRepository" : "local://tmp/backups", + "config" : { + "local" : { + "type" : "local" } } } @@ -13,14 +13,14 @@ EOF HTTP/1.1 202 Accepted content-type: application/json connection: Keep-Alive -content-length: 56 +content-length: 55 server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 202, - "result" : { - "uploadId" : "66212" + "error" : false, + "code" : 202, + "result" : { + "uploadId" : "1733" } } diff --git a/3.9/generated/Examples/RestBatchImplicitBoundary.generated b/3.9/generated/Examples/RestBatchImplicitBoundary.generated index 1a21e628a8..cfd2db2c8c 100644 --- a/3.9/generated/Examples/RestBatchImplicitBoundary.generated +++ b/3.9/generated/Examples/RestBatchImplicitBoundary.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/batch <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/batch <<EOF --SomeBoundaryValue Content-Type: application/x-arango-batchpart @@ -30,10 +30,10 @@ Content-Type: application/json; charset=utf-8 Content-Length: 87 { - "code" : 404, - "error" : true, - "errorMessage" : "collection or view not found", - "errorNum" : 1203 + "code" : 404, + "error" : true, + "errorMessage" : "collection or view not found", + "errorNum" : 1203 }↩ --SomeBoundaryValue @@ -46,10 +46,10 @@ Content-Type: application/json; charset=utf-8 Content-Length: 101 { - "error" : true, - "code" : 404, - "errorNum" : 404, - "errorMessage" : "unknown path '_api/collection/notexisting2'" + "error" : true, + "code" : 404, + "errorNum" : 404, + "errorMessage" : "unknown path '_api/collection/notexisting2'" }↩ --SomeBoundaryValue-- diff --git a/3.9/generated/Examples/RestBatchMultipartHeader.generated b/3.9/generated/Examples/RestBatchMultipartHeader.generated index 9425b44cdc..20cd7cce06 100644 --- a/3.9/generated/Examples/RestBatchMultipartHeader.generated +++ b/3.9/generated/Examples/RestBatchMultipartHeader.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'Content-Type: multipart/form-data; boundary=SomeBoundaryValue' --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/batch <<EOF +shell> curl -X POST --header 'Content-Type: multipart/form-data; boundary=SomeBoundaryValue' --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/batch <<EOF --SomeBoundaryValue Content-Type: application/x-arango-batchpart Content-Id: myId1 @@ -37,7 +37,7 @@ EOF HTTP/1.1 200 OK content-type: multipart/form-data connection: Keep-Alive -content-length: 2310 +content-length: 2299 server: ArangoDB x-arango-errors: 1 x-content-type-options: nosniff @@ -53,9 +53,9 @@ Content-Type: application/json; charset=utf-8 Content-Length: 66 { - "server" : "arango", - "license" : "enterprise", - "version" : "3.9.0-devel" + "server" : "arango", + "license" : "enterprise", + "version" : "3.9.0-devel" }↩ --SomeBoundaryValue @@ -69,10 +69,10 @@ Content-Type: application/json; charset=utf-8 Content-Length: 87 { - "code" : 404, - "error" : true, - "errorMessage" : "collection or view not found", - "errorNum" : 1203 + "code" : 404, + "error" : true, + "errorMessage" : "collection or view not found", + "errorNum" : 1203 }↩ --SomeBoundaryValue @@ -83,33 +83,33 @@ HTTP/1.1 200 OK Server: Connection: Close Content-Type: application/json; charset=utf-8 -Content-Length: 445 +Content-Length: 440 { - "error" : false, - "code" : 200, - "waitForSync" : false, - "writeConcern" : 1, - "syncByRevision" : true, - "status" : 3, - "globallyUniqueId" : "hABE4B0CCCE32/66216", - "isSystem" : false, - "isDisjoint" : false, - "id" : "66216", - "name" : "products", - "isSmartChild" : false, - "minRevision" : "_Zz3k4-----", - "type" : 2, - "objectId" : "66215", - "usesRevisionsAsDocumentIds" : true, - "schema" : null, - "cacheEnabled" : false, - "keyOptions" : { - "allowUserKeys" : true, - "type" : "traditional", - "lastValue" : 0 + "error" : false, + "code" : 200, + "waitForSync" : false, + "type" : 2, + "syncByRevision" : true, + "usesRevisionsAsDocumentIds" : true, + "statusString" : "loaded", + "writeConcern" : 1, + "name" : "products", + "keyOptions" : { + "allowUserKeys" : true, + "type" : "traditional", + "lastValue" : 0 }, - "statusString" : "loaded" + "id" : "1737", + "isDisjoint" : false, + "schema" : null, + "isSmartChild" : false, + "isSystem" : false, + "internalValidatorType" : 0, + "status" : 3, + "objectId" : "1736", + "globallyUniqueId" : "h1F0FEB3590A8/1737", + "cacheEnabled" : false }↩ --SomeBoundaryValue @@ -121,44 +121,44 @@ Server: Location: /_api/collection/products/figures Connection: Close Content-Type: application/json; charset=utf-8 -Content-Length: 564 +Content-Length: 559 { - "error" : false, - "code" : 200, - "waitForSync" : false, - "writeConcern" : 1, - "syncByRevision" : true, - "status" : 3, - "count" : 0, - "minRevision" : "_Zz3k4-----", - "globallyUniqueId" : "hABE4B0CCCE32/66216", - "isSystem" : false, - "isDisjoint" : false, - "id" : "66216", - "name" : "products", - "isSmartChild" : false, - "statusString" : "loaded", - "cacheEnabled" : false, - "figures" : { - "indexes" : { - "count" : 1, - "size" : 0 - }, - "documentsSize" : 0, - "cacheInUse" : false, - "cacheSize" : 0, - "cacheUsage" : 0 + "error" : false, + "code" : 200, + "waitForSync" : false, + "type" : 2, + "syncByRevision" : true, + "usesRevisionsAsDocumentIds" : true, + "statusString" : "loaded", + "status" : 3, + "objectId" : "1736", + "keyOptions" : { + "allowUserKeys" : true, + "type" : "traditional", + "lastValue" : 0 }, - "keyOptions" : { - "allowUserKeys" : true, - "type" : "traditional", - "lastValue" : 0 + "schema" : null, + "id" : "1737", + "isDisjoint" : false, + "isSmartChild" : false, + "isSystem" : false, + "internalValidatorType" : 0, + "count" : 0, + "figures" : { + "indexes" : { + "count" : 1, + "size" : 0 + }, + "documentsSize" : 0, + "cacheInUse" : false, + "cacheSize" : 0, + "cacheUsage" : 0 }, - "type" : 2, - "objectId" : "66215", - "usesRevisionsAsDocumentIds" : true, - "schema" : null + "globallyUniqueId" : "h1F0FEB3590A8/1737", + "writeConcern" : 1, + "name" : "products", + "cacheEnabled" : false }↩ --SomeBoundaryValue @@ -169,12 +169,12 @@ HTTP/1.1 200 OK Server: Connection: Close Content-Type: application/json; charset=utf-8 -Content-Length: 39 +Content-Length: 38 { - "error" : false, - "code" : 200, - "id" : "66216" + "error" : false, + "code" : 200, + "id" : "1737" }↩ --SomeBoundaryValue-- diff --git a/3.9/generated/Examples/RestCollectionCreateCollection.generated b/3.9/generated/Examples/RestCollectionCreateCollection.generated index 1fcd0710da..b45ef075da 100644 --- a/3.9/generated/Examples/RestCollectionCreateCollection.generated +++ b/3.9/generated/Examples/RestCollectionCreateCollection.generated @@ -1,79 +1,79 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/collection <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/collection <<EOF { - "name" : "testCollectionBasics" + "name" : "testCollectionBasics" } EOF HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 457 +content-length: 452 server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "waitForSync" : false, - "writeConcern" : 1, - "syncByRevision" : true, - "status" : 3, - "globallyUniqueId" : "hABE4B0CCCE32/66224", - "isSystem" : false, - "isDisjoint" : false, - "id" : "66224", - "name" : "testCollectionBasics", - "isSmartChild" : false, - "minRevision" : "_Zz3k4-----", - "type" : 2, - "objectId" : "66223", - "usesRevisionsAsDocumentIds" : true, - "schema" : null, - "cacheEnabled" : false, - "keyOptions" : { - "allowUserKeys" : true, - "type" : "traditional", - "lastValue" : 0 + "error" : false, + "code" : 200, + "waitForSync" : false, + "type" : 2, + "syncByRevision" : true, + "usesRevisionsAsDocumentIds" : true, + "statusString" : "loaded", + "writeConcern" : 1, + "name" : "testCollectionBasics", + "keyOptions" : { + "allowUserKeys" : true, + "type" : "traditional", + "lastValue" : 0 }, - "statusString" : "loaded" + "id" : "1745", + "isDisjoint" : false, + "schema" : null, + "isSmartChild" : false, + "isSystem" : false, + "internalValidatorType" : 0, + "status" : 3, + "objectId" : "1744", + "globallyUniqueId" : "h1F0FEB3590A8/1745", + "cacheEnabled" : false } -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/collection <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/collection <<EOF { - "name" : "testCollectionEdges", - "type" : 3 + "name" : "testCollectionEdges", + "type" : 3 } EOF HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 456 +content-length: 451 server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "waitForSync" : false, - "writeConcern" : 1, - "syncByRevision" : true, - "status" : 3, - "globallyUniqueId" : "hABE4B0CCCE32/66229", - "isSystem" : false, - "isDisjoint" : false, - "id" : "66229", - "name" : "testCollectionEdges", - "isSmartChild" : false, - "minRevision" : "_Zz3k4-----", - "type" : 3, - "objectId" : "66228", - "usesRevisionsAsDocumentIds" : true, - "schema" : null, - "cacheEnabled" : false, - "keyOptions" : { - "allowUserKeys" : true, - "type" : "traditional", - "lastValue" : 0 + "error" : false, + "code" : 200, + "waitForSync" : false, + "type" : 3, + "syncByRevision" : true, + "usesRevisionsAsDocumentIds" : true, + "statusString" : "loaded", + "writeConcern" : 1, + "name" : "testCollectionEdges", + "keyOptions" : { + "allowUserKeys" : true, + "type" : "traditional", + "lastValue" : 0 }, - "statusString" : "loaded" + "id" : "1750", + "isDisjoint" : false, + "schema" : null, + "isSmartChild" : false, + "isSystem" : false, + "internalValidatorType" : 0, + "status" : 3, + "objectId" : "1749", + "globallyUniqueId" : "h1F0FEB3590A8/1750", + "cacheEnabled" : false } diff --git a/3.9/generated/Examples/RestCollectionCreateKeyopt.generated b/3.9/generated/Examples/RestCollectionCreateKeyopt.generated index 19f75df6c4..ad6ce48ce0 100644 --- a/3.9/generated/Examples/RestCollectionCreateKeyopt.generated +++ b/3.9/generated/Examples/RestCollectionCreateKeyopt.generated @@ -1,10 +1,10 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/collection <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/collection <<EOF { - "name" : "testCollectionUsers", - "keyOptions" : { - "type" : "autoincrement", - "increment" : 5, - "allowUserKeys" : true + "name" : "testCollectionUsers", + "keyOptions" : { + "type" : "autoincrement", + "increment" : 5, + "allowUserKeys" : true } } EOF @@ -12,35 +12,35 @@ EOF HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 483 +content-length: 478 server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "waitForSync" : false, - "writeConcern" : 1, - "syncByRevision" : true, - "status" : 3, - "globallyUniqueId" : "hABE4B0CCCE32/66239", - "isSystem" : false, - "isDisjoint" : false, - "id" : "66239", - "name" : "testCollectionUsers", - "isSmartChild" : false, - "minRevision" : "_Zz3k4-----", - "type" : 2, - "objectId" : "66238", - "usesRevisionsAsDocumentIds" : true, - "schema" : null, - "cacheEnabled" : false, - "keyOptions" : { - "allowUserKeys" : true, - "type" : "autoincrement", - "offset" : 0, - "increment" : 5, - "lastValue" : 0 + "error" : false, + "code" : 200, + "waitForSync" : false, + "type" : 2, + "syncByRevision" : true, + "usesRevisionsAsDocumentIds" : true, + "statusString" : "loaded", + "writeConcern" : 1, + "name" : "testCollectionUsers", + "keyOptions" : { + "allowUserKeys" : true, + "type" : "autoincrement", + "offset" : 0, + "increment" : 5, + "lastValue" : 0 }, - "statusString" : "loaded" + "id" : "1760", + "isDisjoint" : false, + "schema" : null, + "isSmartChild" : false, + "isSystem" : false, + "internalValidatorType" : 0, + "status" : 3, + "objectId" : "1759", + "globallyUniqueId" : "h1F0FEB3590A8/1760", + "cacheEnabled" : false } diff --git a/3.9/generated/Examples/RestCollectionDeleteCollectionIdentifier.generated b/3.9/generated/Examples/RestCollectionDeleteCollectionIdentifier.generated index 1650e64a4b..a4f37a7527 100644 --- a/3.9/generated/Examples/RestCollectionDeleteCollectionIdentifier.generated +++ b/3.9/generated/Examples/RestCollectionDeleteCollectionIdentifier.generated @@ -1,14 +1,14 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/66246 +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/1767 HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 39 +content-length: 38 server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "id" : "66246" + "error" : false, + "code" : 200, + "id" : "1767" } diff --git a/3.9/generated/Examples/RestCollectionDeleteCollectionName.generated b/3.9/generated/Examples/RestCollectionDeleteCollectionName.generated index 85d67284cd..0748ad7293 100644 --- a/3.9/generated/Examples/RestCollectionDeleteCollectionName.generated +++ b/3.9/generated/Examples/RestCollectionDeleteCollectionName.generated @@ -1,14 +1,14 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products1 +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products1 HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 39 +content-length: 38 server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "id" : "66253" + "error" : false, + "code" : 200, + "id" : "1774" } diff --git a/3.9/generated/Examples/RestCollectionDeleteCollectionSystem.generated b/3.9/generated/Examples/RestCollectionDeleteCollectionSystem.generated index d3a83ec0a1..3ff136bb70 100644 --- a/3.9/generated/Examples/RestCollectionDeleteCollectionSystem.generated +++ b/3.9/generated/Examples/RestCollectionDeleteCollectionSystem.generated @@ -1,14 +1,14 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/_example?isSystem=true +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/_example?isSystem=true HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 39 +content-length: 38 server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "id" : "66260" + "error" : false, + "code" : 200, + "id" : "1781" } diff --git a/3.9/generated/Examples/RestCollectionGetAllCollections.generated b/3.9/generated/Examples/RestCollectionGetAllCollections.generated index 73d4a94836..5a5a4fdcd4 100644 --- a/3.9/generated/Examples/RestCollectionGetAllCollections.generated +++ b/3.9/generated/Examples/RestCollectionGetAllCollections.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection HTTP/1.1 200 OK content-type: application/json @@ -8,120 +8,120 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "result" : [ + "error" : false, + "code" : 200, + "result" : [ { - "id" : "85", - "name" : "demo", - "status" : 3, - "type" : 2, - "isSystem" : false, - "globallyUniqueId" : "hABE4B0CCCE32/85" + "id" : "37", + "name" : "_frontend", + "status" : 3, + "type" : 2, + "isSystem" : true, + "globallyUniqueId" : "_frontend" }, { - "id" : "91", - "name" : "animals", - "status" : 3, - "type" : 2, - "isSystem" : false, - "globallyUniqueId" : "hABE4B0CCCE32/91" + "id" : "34", + "name" : "_appbundles", + "status" : 3, + "type" : 2, + "isSystem" : true, + "globallyUniqueId" : "_appbundles" }, { - "id" : "4", - "name" : "_users", - "status" : 3, - "type" : 2, - "isSystem" : true, - "globallyUniqueId" : "_users" + "id" : "31", + "name" : "_apps", + "status" : 3, + "type" : 2, + "isSystem" : true, + "globallyUniqueId" : "_apps" }, { - "id" : "7", - "name" : "_graphs", - "status" : 3, - "type" : 2, - "isSystem" : true, - "globallyUniqueId" : "_graphs" + "id" : "28", + "name" : "_jobs", + "status" : 3, + "type" : 2, + "isSystem" : true, + "globallyUniqueId" : "_jobs" }, { - "id" : "10", - "name" : "_statistics", - "status" : 3, - "type" : 2, - "isSystem" : true, - "globallyUniqueId" : "_statistics" + "id" : "25", + "name" : "_queues", + "status" : 3, + "type" : 2, + "isSystem" : true, + "globallyUniqueId" : "_queues" }, { - "id" : "13", - "name" : "_statistics15", - "status" : 3, - "type" : 2, - "isSystem" : true, - "globallyUniqueId" : "_statistics15" + "id" : "91", + "name" : "animals", + "status" : 3, + "type" : 2, + "isSystem" : false, + "globallyUniqueId" : "h1F0FEB3590A8/91" }, { - "id" : "16", - "name" : "_statisticsRaw", - "status" : 3, - "type" : 2, - "isSystem" : true, - "globallyUniqueId" : "_statisticsRaw" + "id" : "22", + "name" : "_aqlfunctions", + "status" : 3, + "type" : 2, + "isSystem" : true, + "globallyUniqueId" : "_aqlfunctions" }, { - "id" : "19", - "name" : "_analyzers", - "status" : 3, - "type" : 2, - "isSystem" : true, - "globallyUniqueId" : "_analyzers" + "id" : "19", + "name" : "_analyzers", + "status" : 3, + "type" : 2, + "isSystem" : true, + "globallyUniqueId" : "_analyzers" }, { - "id" : "22", - "name" : "_aqlfunctions", - "status" : 3, - "type" : 2, - "isSystem" : true, - "globallyUniqueId" : "_aqlfunctions" + "id" : "85", + "name" : "demo", + "status" : 3, + "type" : 2, + "isSystem" : false, + "globallyUniqueId" : "h1F0FEB3590A8/85" }, { - "id" : "25", - "name" : "_queues", - "status" : 3, - "type" : 2, - "isSystem" : true, - "globallyUniqueId" : "_queues" + "id" : "16", + "name" : "_statisticsRaw", + "status" : 3, + "type" : 2, + "isSystem" : true, + "globallyUniqueId" : "_statisticsRaw" }, { - "id" : "28", - "name" : "_jobs", - "status" : 3, - "type" : 2, - "isSystem" : true, - "globallyUniqueId" : "_jobs" + "id" : "13", + "name" : "_statistics15", + "status" : 3, + "type" : 2, + "isSystem" : true, + "globallyUniqueId" : "_statistics15" }, { - "id" : "31", - "name" : "_apps", - "status" : 3, - "type" : 2, - "isSystem" : true, - "globallyUniqueId" : "_apps" + "id" : "7", + "name" : "_graphs", + "status" : 3, + "type" : 2, + "isSystem" : true, + "globallyUniqueId" : "_graphs" }, { - "id" : "34", - "name" : "_appbundles", - "status" : 3, - "type" : 2, - "isSystem" : true, - "globallyUniqueId" : "_appbundles" + "id" : "4", + "name" : "_users", + "status" : 3, + "type" : 2, + "isSystem" : true, + "globallyUniqueId" : "_users" }, { - "id" : "37", - "name" : "_frontend", - "status" : 3, - "type" : 2, - "isSystem" : true, - "globallyUniqueId" : "_frontend" + "id" : "10", + "name" : "_statistics", + "status" : 3, + "type" : 2, + "isSystem" : true, + "globallyUniqueId" : "_statistics" } ] } diff --git a/3.9/generated/Examples/RestCollectionGetCollectionChecksum.generated b/3.9/generated/Examples/RestCollectionGetCollectionChecksum.generated index f65e8d85a0..d94eefde2f 100644 --- a/3.9/generated/Examples/RestCollectionGetCollectionChecksum.generated +++ b/3.9/generated/Examples/RestCollectionGetCollectionChecksum.generated @@ -1,22 +1,22 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/checksum +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/checksum HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 194 +content-length: 192 location: /_api/collection/products/checksum server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "globallyUniqueId" : "hABE4B0CCCE32/66267", - "isSystem" : false, - "type" : 2, - "status" : 3, - "name" : "products", - "id" : "66267", - "revision" : "_cYKLGSS--_", - "checksum" : "11507527057371401928" + "error" : false, + "code" : 200, + "globallyUniqueId" : "h1F0FEB3590A8/1788", + "isSystem" : false, + "type" : 2, + "name" : "products", + "checksum" : "15887503590665588994", + "revision" : "_cvD8J5G--_", + "status" : 3, + "id" : "1788" } diff --git a/3.9/generated/Examples/RestCollectionGetCollectionChecksumNoRev.generated b/3.9/generated/Examples/RestCollectionGetCollectionChecksumNoRev.generated index 6a6ee48eeb..3fd0ef2b6d 100644 --- a/3.9/generated/Examples/RestCollectionGetCollectionChecksumNoRev.generated +++ b/3.9/generated/Examples/RestCollectionGetCollectionChecksumNoRev.generated @@ -1,22 +1,22 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/checksum?withRevisions=false&withData=true +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/checksum?withRevisions=false&withData=true HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 194 +content-length: 191 location: /_api/collection/products/checksum server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "globallyUniqueId" : "hABE4B0CCCE32/66277", - "isSystem" : false, - "type" : 2, - "status" : 3, - "name" : "products", - "id" : "66277", - "revision" : "_cYKLGSq--_", - "checksum" : "16857911189002827939" + "error" : false, + "code" : 200, + "globallyUniqueId" : "h1F0FEB3590A8/1798", + "isSystem" : false, + "type" : 2, + "name" : "products", + "checksum" : "1524908583908951896", + "revision" : "_cvD8J5a---", + "status" : 3, + "id" : "1798" } diff --git a/3.9/generated/Examples/RestCollectionGetCollectionCount.generated b/3.9/generated/Examples/RestCollectionGetCollectionCount.generated index 8bac946ec4..d5cd367eed 100644 --- a/3.9/generated/Examples/RestCollectionGetCollectionCount.generated +++ b/3.9/generated/Examples/RestCollectionGetCollectionCount.generated @@ -1,37 +1,37 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/count +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/count HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 460 +content-length: 454 location: /_api/collection/products/count server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "waitForSync" : true, - "writeConcern" : 1, - "syncByRevision" : true, - "status" : 3, - "count" : 100, - "minRevision" : "_Zz3k4-----", - "globallyUniqueId" : "hABE4B0CCCE32/66287", - "isSystem" : false, - "isDisjoint" : false, - "id" : "66287", - "name" : "products", - "isSmartChild" : false, - "statusString" : "loaded", - "cacheEnabled" : false, - "keyOptions" : { - "allowUserKeys" : true, - "type" : "traditional", - "lastValue" : 66490 + "error" : false, + "code" : 200, + "waitForSync" : true, + "type" : 2, + "syncByRevision" : true, + "usesRevisionsAsDocumentIds" : true, + "statusString" : "loaded", + "writeConcern" : 1, + "name" : "products", + "keyOptions" : { + "allowUserKeys" : true, + "type" : "traditional", + "lastValue" : 2011 }, - "type" : 2, - "objectId" : "66286", - "usesRevisionsAsDocumentIds" : true, - "schema" : null + "schema" : null, + "id" : "1808", + "isDisjoint" : false, + "isSmartChild" : false, + "isSystem" : false, + "internalValidatorType" : 0, + "count" : 100, + "status" : 3, + "objectId" : "1807", + "globallyUniqueId" : "h1F0FEB3590A8/1808", + "cacheEnabled" : false } diff --git a/3.9/generated/Examples/RestCollectionGetCollectionFigures.generated b/3.9/generated/Examples/RestCollectionGetCollectionFigures.generated index 27994920fc..acb84bd7ea 100644 --- a/3.9/generated/Examples/RestCollectionGetCollectionFigures.generated +++ b/3.9/generated/Examples/RestCollectionGetCollectionFigures.generated @@ -1,47 +1,47 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/figures +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/figures HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 570 +content-length: 565 location: /_api/collection/products/figures server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "waitForSync" : false, - "writeConcern" : 1, - "syncByRevision" : true, - "status" : 3, - "count" : 1, - "minRevision" : "_Zz3k4-----", - "globallyUniqueId" : "hABE4B0CCCE32/66495", - "isSystem" : false, - "isDisjoint" : false, - "id" : "66495", - "name" : "products", - "isSmartChild" : false, - "statusString" : "loaded", - "cacheEnabled" : false, - "figures" : { - "indexes" : { - "count" : 1, - "size" : 31 - }, - "documentsSize" : 84, - "cacheInUse" : false, - "cacheSize" : 0, - "cacheUsage" : 0 + "error" : false, + "code" : 200, + "waitForSync" : false, + "type" : 2, + "syncByRevision" : true, + "usesRevisionsAsDocumentIds" : true, + "statusString" : "loaded", + "status" : 3, + "objectId" : "2015", + "keyOptions" : { + "allowUserKeys" : true, + "type" : "traditional", + "lastValue" : 2021 }, - "keyOptions" : { - "allowUserKeys" : true, - "type" : "traditional", - "lastValue" : 66500 + "schema" : null, + "id" : "2016", + "isDisjoint" : false, + "isSmartChild" : false, + "isSystem" : false, + "internalValidatorType" : 0, + "count" : 1, + "figures" : { + "indexes" : { + "count" : 1, + "size" : 450 + }, + "documentsSize" : 84, + "cacheInUse" : false, + "cacheSize" : 0, + "cacheUsage" : 0 }, - "type" : 2, - "objectId" : "66494", - "usesRevisionsAsDocumentIds" : true, - "schema" : null + "globallyUniqueId" : "h1F0FEB3590A8/2016", + "writeConcern" : 1, + "name" : "products", + "cacheEnabled" : false } diff --git a/3.9/generated/Examples/RestCollectionGetCollectionFiguresDetails.generated b/3.9/generated/Examples/RestCollectionGetCollectionFiguresDetails.generated index ce38add0cb..93a1bc52db 100644 --- a/3.9/generated/Examples/RestCollectionGetCollectionFiguresDetails.generated +++ b/3.9/generated/Examples/RestCollectionGetCollectionFiguresDetails.generated @@ -1,57 +1,57 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/figures?details=true +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/figures?details=true HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 643 +content-length: 637 location: /_api/collection/products/figures server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "waitForSync" : false, - "writeConcern" : 1, - "syncByRevision" : true, - "status" : 3, - "count" : 1, - "minRevision" : "_Zz3k4-----", - "globallyUniqueId" : "hABE4B0CCCE32/66505", - "isSystem" : false, - "isDisjoint" : false, - "id" : "66505", - "name" : "products", - "isSmartChild" : false, - "statusString" : "loaded", - "cacheEnabled" : false, - "figures" : { - "indexes" : { - "count" : 1, - "size" : 31 + "error" : false, + "code" : 200, + "waitForSync" : false, + "type" : 2, + "syncByRevision" : true, + "usesRevisionsAsDocumentIds" : true, + "statusString" : "loaded", + "status" : 3, + "objectId" : "2025", + "keyOptions" : { + "allowUserKeys" : true, + "type" : "traditional", + "lastValue" : 2031 + }, + "schema" : null, + "id" : "2026", + "isDisjoint" : false, + "isSmartChild" : false, + "isSystem" : false, + "internalValidatorType" : 0, + "count" : 1, + "figures" : { + "indexes" : { + "count" : 1, + "size" : 30 }, - "documentsSize" : 87, - "cacheInUse" : false, - "cacheSize" : 0, - "cacheUsage" : 0, - "engine" : { - "documents" : 1, - "indexes" : [ + "documentsSize" : 86, + "cacheInUse" : false, + "cacheSize" : 0, + "cacheUsage" : 0, + "engine" : { + "documents" : 1, + "indexes" : [ { - "type" : "primary", - "id" : 0, - "count" : 1 + "type" : "primary", + "id" : 0, + "count" : 1 } ] } }, - "keyOptions" : { - "allowUserKeys" : true, - "type" : "traditional", - "lastValue" : 66510 - }, - "type" : 2, - "objectId" : "66504", - "usesRevisionsAsDocumentIds" : true, - "schema" : null + "globallyUniqueId" : "h1F0FEB3590A8/2026", + "writeConcern" : 1, + "name" : "products", + "cacheEnabled" : false } diff --git a/3.9/generated/Examples/RestCollectionGetCollectionIdentifier.generated b/3.9/generated/Examples/RestCollectionGetCollectionIdentifier.generated index b730dac97b..591f137905 100644 --- a/3.9/generated/Examples/RestCollectionGetCollectionIdentifier.generated +++ b/3.9/generated/Examples/RestCollectionGetCollectionIdentifier.generated @@ -1,36 +1,36 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/66515/properties +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/2036/properties HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 444 -location: /_api/collection/66515/properties +content-length: 439 +location: /_api/collection/2036/properties server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "waitForSync" : true, - "writeConcern" : 1, - "syncByRevision" : true, - "status" : 3, - "globallyUniqueId" : "hABE4B0CCCE32/66515", - "isSystem" : false, - "isDisjoint" : false, - "id" : "66515", - "name" : "products", - "isSmartChild" : false, - "minRevision" : "_Zz3k4-----", - "type" : 2, - "objectId" : "66514", - "usesRevisionsAsDocumentIds" : true, - "schema" : null, - "cacheEnabled" : false, - "keyOptions" : { - "allowUserKeys" : true, - "type" : "traditional", - "lastValue" : 0 + "error" : false, + "code" : 200, + "waitForSync" : true, + "type" : 2, + "syncByRevision" : true, + "usesRevisionsAsDocumentIds" : true, + "statusString" : "loaded", + "writeConcern" : 1, + "name" : "products", + "keyOptions" : { + "allowUserKeys" : true, + "type" : "traditional", + "lastValue" : 0 }, - "statusString" : "loaded" + "id" : "2036", + "isDisjoint" : false, + "schema" : null, + "isSmartChild" : false, + "isSystem" : false, + "internalValidatorType" : 0, + "status" : 3, + "objectId" : "2035", + "globallyUniqueId" : "h1F0FEB3590A8/2036", + "cacheEnabled" : false } diff --git a/3.9/generated/Examples/RestCollectionGetCollectionName.generated b/3.9/generated/Examples/RestCollectionGetCollectionName.generated index 7300fac79f..e487e666c5 100644 --- a/3.9/generated/Examples/RestCollectionGetCollectionName.generated +++ b/3.9/generated/Examples/RestCollectionGetCollectionName.generated @@ -1,36 +1,36 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/properties +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/properties HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 444 +content-length: 439 location: /_api/collection/products/properties server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "waitForSync" : true, - "writeConcern" : 1, - "syncByRevision" : true, - "status" : 3, - "globallyUniqueId" : "hABE4B0CCCE32/66523", - "isSystem" : false, - "isDisjoint" : false, - "id" : "66523", - "name" : "products", - "isSmartChild" : false, - "minRevision" : "_Zz3k4-----", - "type" : 2, - "objectId" : "66522", - "usesRevisionsAsDocumentIds" : true, - "schema" : null, - "cacheEnabled" : false, - "keyOptions" : { - "allowUserKeys" : true, - "type" : "traditional", - "lastValue" : 0 + "error" : false, + "code" : 200, + "waitForSync" : true, + "type" : 2, + "syncByRevision" : true, + "usesRevisionsAsDocumentIds" : true, + "statusString" : "loaded", + "writeConcern" : 1, + "name" : "products", + "keyOptions" : { + "allowUserKeys" : true, + "type" : "traditional", + "lastValue" : 0 }, - "statusString" : "loaded" + "id" : "2044", + "isDisjoint" : false, + "schema" : null, + "isSmartChild" : false, + "isSystem" : false, + "internalValidatorType" : 0, + "status" : 3, + "objectId" : "2043", + "globallyUniqueId" : "h1F0FEB3590A8/2044", + "cacheEnabled" : false } diff --git a/3.9/generated/Examples/RestCollectionGetCollectionRevision.generated b/3.9/generated/Examples/RestCollectionGetCollectionRevision.generated index 9f572aff81..17058daed7 100644 --- a/3.9/generated/Examples/RestCollectionGetCollectionRevision.generated +++ b/3.9/generated/Examples/RestCollectionGetCollectionRevision.generated @@ -1,37 +1,37 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/revision +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/revision HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 461 +content-length: 456 location: /_api/collection/products/revision server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "waitForSync" : false, - "usesRevisionsAsDocumentIds" : true, - "schema" : null, - "writeConcern" : 1, - "syncByRevision" : true, - "revision" : "54", - "id" : "66531", - "name" : "products", - "isDisjoint" : false, - "status" : 3, - "globallyUniqueId" : "hABE4B0CCCE32/66531", - "isSystem" : false, - "isSmartChild" : false, - "statusString" : "loaded", - "cacheEnabled" : false, - "keyOptions" : { - "allowUserKeys" : true, - "type" : "traditional", - "lastValue" : 0 + "error" : false, + "code" : 200, + "waitForSync" : false, + "syncByRevision" : true, + "usesRevisionsAsDocumentIds" : true, + "statusString" : "loaded", + "keyOptions" : { + "allowUserKeys" : true, + "type" : "traditional", + "lastValue" : 0 }, - "minRevision" : "_Zz3k4-----", - "type" : 2, - "objectId" : "66530" + "schema" : null, + "id" : "2052", + "isDisjoint" : false, + "isSmartChild" : false, + "globallyUniqueId" : "h1F0FEB3590A8/2052", + "cacheEnabled" : false, + "writeConcern" : 1, + "name" : "products", + "revision" : "54", + "isSystem" : false, + "type" : 2, + "internalValidatorType" : 0, + "objectId" : "2051", + "status" : 3 } diff --git a/3.9/generated/Examples/RestCollectionIdentifierLoad.generated b/3.9/generated/Examples/RestCollectionIdentifierLoad.generated index 635c7f9838..84f1280f32 100644 --- a/3.9/generated/Examples/RestCollectionIdentifierLoad.generated +++ b/3.9/generated/Examples/RestCollectionIdentifierLoad.generated @@ -1,21 +1,21 @@ -shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/load +shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/load HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 145 +content-length: 143 location: /_api/collection/products/load server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "type" : 2, - "status" : 3, - "name" : "products", - "id" : "66539", - "isSystem" : false, - "globallyUniqueId" : "hABE4B0CCCE32/66539", - "count" : 0 + "error" : false, + "code" : 200, + "status" : 3, + "count" : 0, + "id" : "2060", + "name" : "products", + "globallyUniqueId" : "h1F0FEB3590A8/2060", + "type" : 2, + "isSystem" : false } diff --git a/3.9/generated/Examples/RestCollectionIdentifierLoadIndexesIntoMemory.generated b/3.9/generated/Examples/RestCollectionIdentifierLoadIndexesIntoMemory.generated index 53b9b03285..4b457c959d 100644 --- a/3.9/generated/Examples/RestCollectionIdentifierLoadIndexesIntoMemory.generated +++ b/3.9/generated/Examples/RestCollectionIdentifierLoadIndexesIntoMemory.generated @@ -1,4 +1,4 @@ -shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/loadIndexesIntoMemory +shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/loadIndexesIntoMemory HTTP/1.1 200 OK content-type: application/json @@ -9,7 +9,7 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "result" : true + "error" : false, + "code" : 200, + "result" : true } diff --git a/3.9/generated/Examples/RestCollectionIdentifierPropertiesSync.generated b/3.9/generated/Examples/RestCollectionIdentifierPropertiesSync.generated index 7fdfa36619..61f2ff7938 100644 --- a/3.9/generated/Examples/RestCollectionIdentifierPropertiesSync.generated +++ b/3.9/generated/Examples/RestCollectionIdentifierPropertiesSync.generated @@ -1,40 +1,40 @@ -shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/collection/products/properties <<EOF +shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/collection/products/properties <<EOF { - "waitForSync" : true + "waitForSync" : true } EOF HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 444 +content-length: 439 location: /_api/collection/products/properties server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "waitForSync" : true, - "writeConcern" : 1, - "syncByRevision" : true, - "status" : 3, - "globallyUniqueId" : "hABE4B0CCCE32/66556", - "isSystem" : false, - "isDisjoint" : false, - "id" : "66556", - "name" : "products", - "isSmartChild" : false, - "minRevision" : "_Zz3k4-----", - "type" : 2, - "objectId" : "66555", - "usesRevisionsAsDocumentIds" : true, - "schema" : null, - "cacheEnabled" : false, - "keyOptions" : { - "allowUserKeys" : true, - "type" : "traditional", - "lastValue" : 0 + "error" : false, + "code" : 200, + "waitForSync" : true, + "type" : 2, + "syncByRevision" : true, + "usesRevisionsAsDocumentIds" : true, + "statusString" : "loaded", + "writeConcern" : 1, + "name" : "products", + "keyOptions" : { + "allowUserKeys" : true, + "type" : "traditional", + "lastValue" : 0 }, - "statusString" : "loaded" + "id" : "2077", + "isDisjoint" : false, + "schema" : null, + "isSmartChild" : false, + "isSystem" : false, + "internalValidatorType" : 0, + "status" : 3, + "objectId" : "2076", + "globallyUniqueId" : "h1F0FEB3590A8/2077", + "cacheEnabled" : false } diff --git a/3.9/generated/Examples/RestCollectionIdentifierRename.generated b/3.9/generated/Examples/RestCollectionIdentifierRename.generated index e703cb8d3e..9cca2fafc9 100644 --- a/3.9/generated/Examples/RestCollectionIdentifierRename.generated +++ b/3.9/generated/Examples/RestCollectionIdentifierRename.generated @@ -1,24 +1,24 @@ -shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/collection/products1/rename <<EOF +shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/collection/products1/rename <<EOF { - "name" : "newname" + "name" : "newname" } EOF HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 134 +content-length: 132 location: /_api/collection/products1/rename server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "type" : 2, - "status" : 3, - "name" : "newname", - "id" : "66565", - "isSystem" : false, - "globallyUniqueId" : "hABE4B0CCCE32/66565" + "error" : false, + "code" : 200, + "type" : 2, + "isSystem" : false, + "status" : 3, + "id" : "2086", + "name" : "newname", + "globallyUniqueId" : "h1F0FEB3590A8/2086" } diff --git a/3.9/generated/Examples/RestCollectionIdentifierTruncate.generated b/3.9/generated/Examples/RestCollectionIdentifierTruncate.generated index dd8bd6f624..4d5c4777bc 100644 --- a/3.9/generated/Examples/RestCollectionIdentifierTruncate.generated +++ b/3.9/generated/Examples/RestCollectionIdentifierTruncate.generated @@ -1,20 +1,20 @@ -shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/truncate +shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/truncate HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 135 +content-length: 133 location: /_api/collection/products/truncate server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "type" : 2, - "status" : 3, - "name" : "products", - "id" : "66574", - "isSystem" : false, - "globallyUniqueId" : "hABE4B0CCCE32/66574" + "error" : false, + "code" : 200, + "type" : 2, + "isSystem" : false, + "status" : 3, + "id" : "2095", + "name" : "products", + "globallyUniqueId" : "h1F0FEB3590A8/2095" } diff --git a/3.9/generated/Examples/RestCollectionIdentifierUnload.generated b/3.9/generated/Examples/RestCollectionIdentifierUnload.generated index 65a893da0b..3246ce72a4 100644 --- a/3.9/generated/Examples/RestCollectionIdentifierUnload.generated +++ b/3.9/generated/Examples/RestCollectionIdentifierUnload.generated @@ -1,20 +1,20 @@ -shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/unload +shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/unload HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 135 +content-length: 133 location: /_api/collection/products/unload server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "type" : 2, - "status" : 2, - "name" : "products", - "id" : "66582", - "isSystem" : false, - "globallyUniqueId" : "hABE4B0CCCE32/66582" + "error" : false, + "code" : 200, + "type" : 2, + "isSystem" : false, + "status" : 2, + "id" : "2103", + "name" : "products", + "globallyUniqueId" : "h1F0FEB3590A8/2103" } diff --git a/3.9/generated/Examples/RestCreateUser.generated b/3.9/generated/Examples/RestCreateUser.generated index 922aa55909..6242769110 100644 --- a/3.9/generated/Examples/RestCreateUser.generated +++ b/3.9/generated/Examples/RestCreateUser.generated @@ -1,7 +1,7 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/user <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/user <<EOF { - "user" : "admin@example", - "passwd" : "secure" + "user" : "admin@example", + "passwd" : "secure" } EOF @@ -13,10 +13,10 @@ server: ArangoDB x-content-type-options: nosniff { - "user" : "admin@example", - "active" : true, - "extra" : { + "user" : "admin@example", + "active" : true, + "extra" : { }, - "error" : false, - "code" : 201 + "error" : false, + "code" : 201 } diff --git a/3.9/generated/Examples/RestCursorCreateCursorForLimitReturn.generated b/3.9/generated/Examples/RestCursorCreateCursorForLimitReturn.generated index 383074ff88..71c76f39d1 100644 --- a/3.9/generated/Examples/RestCursorCreateCursorForLimitReturn.generated +++ b/3.9/generated/Examples/RestCursorCreateCursorForLimitReturn.generated @@ -1,50 +1,50 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF { - "query" : "FOR p IN products LIMIT 5 RETURN p", - "count" : true, - "batchSize" : 2 + "query" : "FOR p IN products LIMIT 5 RETURN p", + "count" : true, + "batchSize" : 2 } EOF HTTP/1.1 201 Created content-type: application/json connection: Keep-Alive -content-length: 440 +content-length: 434 server: ArangoDB x-content-type-options: nosniff { - "result" : [ + "result" : [ { - "_key" : "66598", - "_id" : "products/66598", - "_rev" : "_cYKLGpm--_", - "hello1" : "world1" + "_key" : "2119", + "_id" : "products/2119", + "_rev" : "_cvD8K-q--_", + "hello1" : "world1" }, { - "_key" : "66600", - "_id" : "products/66600", - "_rev" : "_cYKLGpq---", - "hello2" : "world1" + "_key" : "2121", + "_id" : "products/2121", + "_rev" : "_cvD8K-q--A", + "hello2" : "world1" } ], - "hasMore" : true, - "id" : "66609", - "count" : 5, - "extra" : { - "warnings" : [ ], - "stats" : { - "writesExecuted" : 0, - "writesIgnored" : 0, - "scannedFull" : 5, - "scannedIndex" : 0, - "filtered" : 0, - "httpRequests" : 0, - "executionTime" : 0.00021878000006836373, - "peakMemoryUsage" : 0 + "hasMore" : true, + "id" : "2130", + "count" : 5, + "extra" : { + "warnings" : [ ], + "stats" : { + "writesExecuted" : 0, + "writesIgnored" : 0, + "scannedFull" : 5, + "scannedIndex" : 0, + "filtered" : 0, + "httpRequests" : 0, + "executionTime" : 0.0002903849817812443, + "peakMemoryUsage" : 0 } }, - "cached" : false, - "error" : false, - "code" : 201 + "cached" : false, + "error" : false, + "code" : 201 } diff --git a/3.9/generated/Examples/RestCursorCreateCursorForLimitReturnSingle.generated b/3.9/generated/Examples/RestCursorCreateCursorForLimitReturnSingle.generated index 068a5264e3..c5abaed456 100644 --- a/3.9/generated/Examples/RestCursorCreateCursorForLimitReturnSingle.generated +++ b/3.9/generated/Examples/RestCursorCreateCursorForLimitReturnSingle.generated @@ -1,49 +1,49 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF { - "query" : "FOR p IN products LIMIT 2 RETURN p", - "count" : true, - "batchSize" : 2 + "query" : "FOR p IN products LIMIT 2 RETURN p", + "count" : true, + "batchSize" : 2 } EOF HTTP/1.1 201 Created content-type: application/json connection: Keep-Alive -content-length: 427 +content-length: 422 server: ArangoDB x-content-type-options: nosniff { - "result" : [ + "result" : [ { - "_key" : "66618", - "_id" : "products/66618", - "_rev" : "_cYKLGqK---", - "hello1" : "world1" + "_key" : "2139", + "_id" : "products/2139", + "_rev" : "_cvD8K_---_", + "hello1" : "world1" }, { - "_key" : "66620", - "_id" : "products/66620", - "_rev" : "_cYKLGqK--_", - "hello2" : "world1" + "_key" : "2141", + "_id" : "products/2141", + "_rev" : "_cvD8K_---A", + "hello2" : "world1" } ], - "hasMore" : false, - "count" : 2, - "cached" : false, - "extra" : { - "warnings" : [ ], - "stats" : { - "writesExecuted" : 0, - "writesIgnored" : 0, - "scannedFull" : 2, - "scannedIndex" : 0, - "filtered" : 0, - "httpRequests" : 0, - "executionTime" : 0.0001831420004236861, - "peakMemoryUsage" : 0 + "hasMore" : false, + "count" : 2, + "cached" : false, + "extra" : { + "warnings" : [ ], + "stats" : { + "writesExecuted" : 0, + "writesIgnored" : 0, + "scannedFull" : 2, + "scannedIndex" : 0, + "filtered" : 0, + "httpRequests" : 0, + "executionTime" : 0.000271574012003839, + "peakMemoryUsage" : 0 } }, - "error" : false, - "code" : 201 + "error" : false, + "code" : 201 } diff --git a/3.9/generated/Examples/RestCursorCreateCursorMissingBody.generated b/3.9/generated/Examples/RestCursorCreateCursorMissingBody.generated index cc86d930e4..7b25d132e6 100644 --- a/3.9/generated/Examples/RestCursorCreateCursorMissingBody.generated +++ b/3.9/generated/Examples/RestCursorCreateCursorMissingBody.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --dump - http://localhost:8529/_api/cursor +shell> curl -X POST --header 'accept: application/json' --dump - http://localhost:8529/_api/cursor HTTP/1.1 400 Bad Request content-type: application/json @@ -8,8 +8,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 400, - "error" : true, - "errorMessage" : "query is empty", - "errorNum" : 1502 + "code" : 400, + "error" : true, + "errorMessage" : "query is empty", + "errorNum" : 1502 } diff --git a/3.9/generated/Examples/RestCursorCreateCursorOption.generated b/3.9/generated/Examples/RestCursorCreateCursorOption.generated index b1a15d530b..da04a8aacd 100644 --- a/3.9/generated/Examples/RestCursorCreateCursorOption.generated +++ b/3.9/generated/Examples/RestCursorCreateCursorOption.generated @@ -1,9 +1,9 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF { - "query" : "FOR i IN 1..1000 FILTER i > 500 LIMIT 10 RETURN i", - "count" : true, - "options" : { - "fullCount" : true + "query" : "FOR i IN 1..1000 FILTER i > 500 LIMIT 10 RETURN i", + "count" : true, + "options" : { + "fullCount" : true } } EOF @@ -16,7 +16,7 @@ server: ArangoDB x-content-type-options: nosniff { - "result" : [ + "result" : [ 501, 502, 503, @@ -28,23 +28,23 @@ x-content-type-options: nosniff 509, 510 ], - "hasMore" : false, - "count" : 10, - "cached" : false, - "extra" : { - "warnings" : [ ], - "stats" : { - "writesExecuted" : 0, - "writesIgnored" : 0, - "scannedFull" : 0, - "scannedIndex" : 0, - "filtered" : 500, - "httpRequests" : 0, - "fullCount" : 500, - "executionTime" : 0.00047628100037400145, - "peakMemoryUsage" : 32768 + "hasMore" : false, + "count" : 10, + "cached" : false, + "extra" : { + "warnings" : [ ], + "stats" : { + "writesExecuted" : 0, + "writesIgnored" : 0, + "scannedFull" : 0, + "scannedIndex" : 0, + "filtered" : 500, + "httpRequests" : 0, + "fullCount" : 500, + "executionTime" : 0.0010033069993369281, + "peakMemoryUsage" : 32768 } }, - "error" : false, - "code" : 201 + "error" : false, + "code" : 201 } diff --git a/3.9/generated/Examples/RestCursorCreateCursorUnknownCollection.generated b/3.9/generated/Examples/RestCursorCreateCursorUnknownCollection.generated index d94454aeb6..883320a25e 100644 --- a/3.9/generated/Examples/RestCursorCreateCursorUnknownCollection.generated +++ b/3.9/generated/Examples/RestCursorCreateCursorUnknownCollection.generated @@ -1,8 +1,8 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF { - "query" : "FOR u IN unknowncoll LIMIT 2 RETURN u", - "count" : true, - "batchSize" : 2 + "query" : "FOR u IN unknowncoll LIMIT 2 RETURN u", + "count" : true, + "batchSize" : 2 } EOF @@ -14,8 +14,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 404, - "error" : true, - "errorMessage" : "AQL: collection or view not found: unknowncoll (while parsing)", - "errorNum" : 1203 + "code" : 404, + "error" : true, + "errorMessage" : "AQL: collection or view not found: unknowncoll (while parsing)", + "errorNum" : 1203 } diff --git a/3.9/generated/Examples/RestCursorDelete.generated b/3.9/generated/Examples/RestCursorDelete.generated index 4dd9db77ef..30e416285f 100644 --- a/3.9/generated/Examples/RestCursorDelete.generated +++ b/3.9/generated/Examples/RestCursorDelete.generated @@ -1,52 +1,52 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF { - "query" : "FOR p IN products LIMIT 5 RETURN p", - "count" : true, - "batchSize" : 2 + "query" : "FOR p IN products LIMIT 5 RETURN p", + "count" : true, + "batchSize" : 2 } EOF HTTP/1.1 201 Created content-type: application/json connection: Keep-Alive -content-length: 440 +content-length: 435 server: ArangoDB x-content-type-options: nosniff { - "result" : [ + "result" : [ { - "_key" : "66638", - "_id" : "products/66638", - "_rev" : "_cYKLGrG--_", - "hello1" : "world1" + "_key" : "2159", + "_id" : "products/2159", + "_rev" : "_cvD8K_6---", + "hello1" : "world1" }, { - "_key" : "66640", - "_id" : "products/66640", - "_rev" : "_cYKLGrK---", - "hello2" : "world1" + "_key" : "2161", + "_id" : "products/2161", + "_rev" : "_cvD8K_6--_", + "hello2" : "world1" } ], - "hasMore" : true, - "id" : "66649", - "count" : 5, - "extra" : { - "warnings" : [ ], - "stats" : { - "writesExecuted" : 0, - "writesIgnored" : 0, - "scannedFull" : 5, - "scannedIndex" : 0, - "filtered" : 0, - "httpRequests" : 0, - "executionTime" : 0.00018850400010705926, - "peakMemoryUsage" : 0 + "hasMore" : true, + "id" : "2170", + "count" : 5, + "extra" : { + "warnings" : [ ], + "stats" : { + "writesExecuted" : 0, + "writesIgnored" : 0, + "scannedFull" : 5, + "scannedIndex" : 0, + "filtered" : 0, + "httpRequests" : 0, + "executionTime" : 0.00030855595832690597, + "peakMemoryUsage" : 0 } }, - "cached" : false, - "error" : false, - "code" : 201 + "cached" : false, + "error" : false, + "code" : 201 } -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/cursor/66649 +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/cursor/2170 diff --git a/3.9/generated/Examples/RestCursorDeleteIgnore.generated b/3.9/generated/Examples/RestCursorDeleteIgnore.generated index 7f54775b62..0a4a465c55 100644 --- a/3.9/generated/Examples/RestCursorDeleteIgnore.generated +++ b/3.9/generated/Examples/RestCursorDeleteIgnore.generated @@ -1,33 +1,33 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF { - "query" : "REMOVE 'bar' IN products OPTIONS { ignoreErrors: true }" + "query" : "REMOVE 'bar' IN products OPTIONS { ignoreErrors: true }" } EOF HTTP/1.1 201 Created content-type: application/json connection: Keep-Alive -content-length: 261 +content-length: 260 server: ArangoDB x-content-type-options: nosniff { - "result" : [ ], - "hasMore" : false, - "cached" : false, - "extra" : { - "warnings" : [ ], - "stats" : { - "writesExecuted" : 0, - "writesIgnored" : 1, - "scannedFull" : 0, - "scannedIndex" : 0, - "filtered" : 0, - "httpRequests" : 0, - "executionTime" : 0.00021284200010995846, - "peakMemoryUsage" : 0 + "result" : [ ], + "hasMore" : false, + "cached" : false, + "extra" : { + "warnings" : [ ], + "stats" : { + "writesExecuted" : 0, + "writesIgnored" : 1, + "scannedFull" : 0, + "scannedIndex" : 0, + "filtered" : 0, + "httpRequests" : 0, + "executionTime" : 0.0002747550024650991, + "peakMemoryUsage" : 0 } }, - "error" : false, - "code" : 201 + "error" : false, + "code" : 201 } diff --git a/3.9/generated/Examples/RestCursorDeleteQuery.generated b/3.9/generated/Examples/RestCursorDeleteQuery.generated index 4ba491f256..336e822b5c 100644 --- a/3.9/generated/Examples/RestCursorDeleteQuery.generated +++ b/3.9/generated/Examples/RestCursorDeleteQuery.generated @@ -1,33 +1,33 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF { - "query" : "FOR p IN products REMOVE p IN products" + "query" : "FOR p IN products REMOVE p IN products" } EOF HTTP/1.1 201 Created content-type: application/json connection: Keep-Alive -content-length: 261 +content-length: 260 server: ArangoDB x-content-type-options: nosniff { - "result" : [ ], - "hasMore" : false, - "cached" : false, - "extra" : { - "warnings" : [ ], - "stats" : { - "writesExecuted" : 2, - "writesIgnored" : 0, - "scannedFull" : 0, - "scannedIndex" : 2, - "filtered" : 0, - "httpRequests" : 0, - "executionTime" : 0.00033830599932116456, - "peakMemoryUsage" : 0 + "result" : [ ], + "hasMore" : false, + "cached" : false, + "extra" : { + "warnings" : [ ], + "stats" : { + "writesExecuted" : 2, + "writesIgnored" : 0, + "scannedFull" : 0, + "scannedIndex" : 2, + "filtered" : 0, + "httpRequests" : 0, + "executionTime" : 0.0004102770471945405, + "peakMemoryUsage" : 0 } }, - "error" : false, - "code" : 201 + "error" : false, + "code" : 201 } diff --git a/3.9/generated/Examples/RestCursorDeleteQueryFail.generated b/3.9/generated/Examples/RestCursorDeleteQueryFail.generated index 76f2d00c11..e2fe6a5ddb 100644 --- a/3.9/generated/Examples/RestCursorDeleteQueryFail.generated +++ b/3.9/generated/Examples/RestCursorDeleteQueryFail.generated @@ -1,6 +1,6 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF { - "query" : "REMOVE 'foo' IN products" + "query" : "REMOVE 'foo' IN products" } EOF @@ -12,8 +12,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 404, - "error" : true, - "errorMessage" : "AQL: document not found (while executing)", - "errorNum" : 1202 + "code" : 404, + "error" : true, + "errorMessage" : "AQL: document not found (while executing)", + "errorNum" : 1202 } diff --git a/3.9/generated/Examples/RestCursorForLimitReturnCont.generated b/3.9/generated/Examples/RestCursorForLimitReturnCont.generated index 2fac4e7db2..e9fc0156df 100644 --- a/3.9/generated/Examples/RestCursorForLimitReturnCont.generated +++ b/3.9/generated/Examples/RestCursorForLimitReturnCont.generated @@ -1,52 +1,52 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF { - "query" : "FOR p IN products LIMIT 5 RETURN p", - "count" : true, - "batchSize" : 2 + "query" : "FOR p IN products LIMIT 5 RETURN p", + "count" : true, + "batchSize" : 2 } EOF -shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/cursor/66702 +shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/cursor/2223 HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 440 +content-length: 435 server: ArangoDB x-content-type-options: nosniff { - "result" : [ + "result" : [ { - "_key" : "66695", - "_id" : "products/66695", - "_rev" : "_cYKLGs6---", - "hello3" : "world1" + "_key" : "2216", + "_id" : "products/2216", + "_rev" : "_cvD8KBC---", + "hello3" : "world1" }, { - "_key" : "66697", - "_id" : "products/66697", - "_rev" : "_cYKLGs6--_", - "hello4" : "world1" + "_key" : "2218", + "_id" : "products/2218", + "_rev" : "_cvD8KBC--_", + "hello4" : "world1" } ], - "hasMore" : true, - "id" : "66702", - "count" : 5, - "extra" : { - "warnings" : [ ], - "stats" : { - "writesExecuted" : 0, - "writesIgnored" : 0, - "scannedFull" : 5, - "scannedIndex" : 0, - "filtered" : 0, - "httpRequests" : 0, - "executionTime" : 0.00019918599991797237, - "peakMemoryUsage" : 0 + "hasMore" : true, + "id" : "2223", + "count" : 5, + "extra" : { + "warnings" : [ ], + "stats" : { + "writesExecuted" : 0, + "writesIgnored" : 0, + "scannedFull" : 5, + "scannedIndex" : 0, + "filtered" : 0, + "httpRequests" : 0, + "executionTime" : 0.00046674098121002316, + "peakMemoryUsage" : 0 } }, - "cached" : false, - "error" : false, - "code" : 200 + "cached" : false, + "error" : false, + "code" : 200 } diff --git a/3.9/generated/Examples/RestCursorInvalidCursorIdentifier.generated b/3.9/generated/Examples/RestCursorInvalidCursorIdentifier.generated index 5cf5d1f12a..e66fae498b 100644 --- a/3.9/generated/Examples/RestCursorInvalidCursorIdentifier.generated +++ b/3.9/generated/Examples/RestCursorInvalidCursorIdentifier.generated @@ -1,4 +1,4 @@ -shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/cursor/123123 +shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/cursor/123123 HTTP/1.1 404 Not Found content-type: application/json @@ -8,8 +8,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 404, - "error" : true, - "errorMessage" : "cursor not found", - "errorNum" : 1600 + "code" : 404, + "error" : true, + "errorMessage" : "cursor not found", + "errorNum" : 1600 } diff --git a/3.9/generated/Examples/RestCursorMissingCursorIdentifier.generated b/3.9/generated/Examples/RestCursorMissingCursorIdentifier.generated index deb14232ef..30bb23418f 100644 --- a/3.9/generated/Examples/RestCursorMissingCursorIdentifier.generated +++ b/3.9/generated/Examples/RestCursorMissingCursorIdentifier.generated @@ -1,4 +1,4 @@ -shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/cursor +shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/cursor HTTP/1.1 400 Bad Request content-type: application/json @@ -8,8 +8,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 400, - "error" : true, - "errorMessage" : "expecting POST /_api/cursor/<cursor-id>", - "errorNum" : 400 + "code" : 400, + "error" : true, + "errorMessage" : "expecting POST /_api/cursor/<cursor-id>", + "errorNum" : 400 } diff --git a/3.9/generated/Examples/RestCursorOptimizerRules.generated b/3.9/generated/Examples/RestCursorOptimizerRules.generated index e1f2b0f31c..8aa557e37d 100644 --- a/3.9/generated/Examples/RestCursorOptimizerRules.generated +++ b/3.9/generated/Examples/RestCursorOptimizerRules.generated @@ -1,13 +1,13 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF { - "query" : "FOR i IN 1..10 LET a = 1 LET b = 2 FILTER a + b == 3 RETURN i", - "count" : true, - "options" : { - "maxPlans" : 1, - "optimizer" : { - "rules" : [ - "-all", - "+remove-unnecessary-filters" + "query" : "FOR i IN 1..10 LET a = 1 LET b = 2 FILTER a + b == 3 RETURN i", + "count" : true, + "options" : { + "maxPlans" : 1, + "optimizer" : { + "rules" : [ + "-all", + "+remove-unnecessary-filters" ] } } @@ -22,7 +22,7 @@ server: ArangoDB x-content-type-options: nosniff { - "result" : [ + "result" : [ 1, 2, 3, @@ -34,22 +34,22 @@ x-content-type-options: nosniff 9, 10 ], - "hasMore" : false, - "count" : 10, - "cached" : false, - "extra" : { - "warnings" : [ ], - "stats" : { - "writesExecuted" : 0, - "writesIgnored" : 0, - "scannedFull" : 0, - "scannedIndex" : 0, - "filtered" : 0, - "httpRequests" : 0, - "executionTime" : 0.00018327099951420678, - "peakMemoryUsage" : 0 + "hasMore" : false, + "count" : 10, + "cached" : false, + "extra" : { + "warnings" : [ ], + "stats" : { + "writesExecuted" : 0, + "writesIgnored" : 0, + "scannedFull" : 0, + "scannedIndex" : 0, + "filtered" : 0, + "httpRequests" : 0, + "executionTime" : 0.00030999601585790515, + "peakMemoryUsage" : 0 } }, - "error" : false, - "code" : 201 + "error" : false, + "code" : 201 } diff --git a/3.9/generated/Examples/RestCursorPostForLimitReturnCont.generated b/3.9/generated/Examples/RestCursorPostForLimitReturnCont.generated index a015ee11cd..82db29a2bf 100644 --- a/3.9/generated/Examples/RestCursorPostForLimitReturnCont.generated +++ b/3.9/generated/Examples/RestCursorPostForLimitReturnCont.generated @@ -1,52 +1,52 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF { - "query" : "FOR p IN products LIMIT 5 RETURN p", - "count" : true, - "batchSize" : 2 + "query" : "FOR p IN products LIMIT 5 RETURN p", + "count" : true, + "batchSize" : 2 } EOF -shell> curl -X POST --header 'accept: application/json' --dump - http://localhost:8529/_api/cursor/66727 +shell> curl -X POST --header 'accept: application/json' --dump - http://localhost:8529/_api/cursor/2248 HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 438 +content-length: 434 server: ArangoDB x-content-type-options: nosniff { - "result" : [ + "result" : [ { - "_key" : "66720", - "_id" : "products/66720", - "_rev" : "_cYKLGt6--_", - "hello3" : "world1" + "_key" : "2241", + "_id" : "products/2241", + "_rev" : "_cvD8KC---A", + "hello3" : "world1" }, { - "_key" : "66722", - "_id" : "products/66722", - "_rev" : "_cYKLGu----", - "hello4" : "world1" + "_key" : "2243", + "_id" : "products/2243", + "_rev" : "_cvD8KC---B", + "hello4" : "world1" } ], - "hasMore" : true, - "id" : "66727", - "count" : 5, - "extra" : { - "warnings" : [ ], - "stats" : { - "writesExecuted" : 0, - "writesIgnored" : 0, - "scannedFull" : 5, - "scannedIndex" : 0, - "filtered" : 0, - "httpRequests" : 0, - "executionTime" : 0.000193004999346158, - "peakMemoryUsage" : 0 + "hasMore" : true, + "id" : "2248", + "count" : 5, + "extra" : { + "warnings" : [ ], + "stats" : { + "writesExecuted" : 0, + "writesIgnored" : 0, + "scannedFull" : 5, + "scannedIndex" : 0, + "filtered" : 0, + "httpRequests" : 0, + "executionTime" : 0.0003103489871136844, + "peakMemoryUsage" : 0 } }, - "cached" : false, - "error" : false, - "code" : 200 + "cached" : false, + "error" : false, + "code" : 200 } diff --git a/3.9/generated/Examples/RestCursorPostInvalidCursorIdentifier.generated b/3.9/generated/Examples/RestCursorPostInvalidCursorIdentifier.generated index c3d9509bcb..90c0352c68 100644 --- a/3.9/generated/Examples/RestCursorPostInvalidCursorIdentifier.generated +++ b/3.9/generated/Examples/RestCursorPostInvalidCursorIdentifier.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --dump - http://localhost:8529/_api/cursor/123123 +shell> curl -X POST --header 'accept: application/json' --dump - http://localhost:8529/_api/cursor/123123 HTTP/1.1 404 Not Found content-type: application/json @@ -8,8 +8,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 404, - "error" : true, - "errorMessage" : "cursor not found", - "errorNum" : 1600 + "code" : 404, + "error" : true, + "errorMessage" : "cursor not found", + "errorNum" : 1600 } diff --git a/3.9/generated/Examples/RestCursorPostMissingCursorIdentifier.generated b/3.9/generated/Examples/RestCursorPostMissingCursorIdentifier.generated index cc86d930e4..7b25d132e6 100644 --- a/3.9/generated/Examples/RestCursorPostMissingCursorIdentifier.generated +++ b/3.9/generated/Examples/RestCursorPostMissingCursorIdentifier.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --dump - http://localhost:8529/_api/cursor +shell> curl -X POST --header 'accept: application/json' --dump - http://localhost:8529/_api/cursor HTTP/1.1 400 Bad Request content-type: application/json @@ -8,8 +8,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 400, - "error" : true, - "errorMessage" : "query is empty", - "errorNum" : 1502 + "code" : 400, + "error" : true, + "errorMessage" : "query is empty", + "errorNum" : 1502 } diff --git a/3.9/generated/Examples/RestCursorProfileQuery.generated b/3.9/generated/Examples/RestCursorProfileQuery.generated index 41f0081eb3..71262c9244 100644 --- a/3.9/generated/Examples/RestCursorProfileQuery.generated +++ b/3.9/generated/Examples/RestCursorProfileQuery.generated @@ -1,9 +1,9 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF { - "query" : "LET s = SLEEP(0.25) LET t = SLEEP(0.5) RETURN 1", - "count" : true, - "options" : { - "profile" : 2 + "query" : "LET s = SLEEP(0.25) LET t = SLEEP(0.5) RETURN 1", + "count" : true, + "options" : { + "profile" : 2 } } EOF @@ -11,220 +11,220 @@ EOF HTTP/1.1 201 Created content-type: application/json connection: Keep-Alive -content-length: 2531 +content-length: 2535 server: ArangoDB x-content-type-options: nosniff { - "result" : [ + "result" : [ 1 ], - "hasMore" : false, - "count" : 1, - "cached" : false, - "extra" : { - "warnings" : [ ], - "stats" : { - "writesExecuted" : 0, - "writesIgnored" : 0, - "scannedFull" : 0, - "scannedIndex" : 0, - "filtered" : 0, - "httpRequests" : 0, - "executionTime" : 0.759612081999876, - "peakMemoryUsage" : 0, - "nodes" : [ + "hasMore" : false, + "count" : 1, + "cached" : false, + "extra" : { + "warnings" : [ ], + "stats" : { + "writesExecuted" : 0, + "writesIgnored" : 0, + "scannedFull" : 0, + "scannedIndex" : 0, + "filtered" : 0, + "httpRequests" : 0, + "executionTime" : 0.7625498989946209, + "peakMemoryUsage" : 0, + "nodes" : [ { - "id" : 1, - "calls" : 1, - "items" : 1, - "runtime" : 0.000004721000550489407 + "id" : 1, + "calls" : 1, + "items" : 1, + "runtime" : 0.000021465006284415722 }, { - "id" : 2, - "calls" : 1, - "items" : 1, - "runtime" : 0.252990891999616 + "id" : 2, + "calls" : 1, + "items" : 1, + "runtime" : 0.2543703129631467 }, { - "id" : 3, - "calls" : 1, - "items" : 1, - "runtime" : 0.7593427829997381 + "id" : 3, + "calls" : 1, + "items" : 1, + "runtime" : 0.7621839129715227 }, { - "id" : 4, - "calls" : 1, - "items" : 1, - "runtime" : 0.000006963000487303361 + "id" : 4, + "calls" : 1, + "items" : 1, + "runtime" : 0.0000404100283049047 }, { - "id" : 5, - "calls" : 1, - "items" : 1, - "runtime" : 0.7593579260001206 + "id" : 5, + "calls" : 1, + "items" : 1, + "runtime" : 0.7622333120089024 } ] }, - "plan" : { - "nodes" : [ + "plan" : { + "nodes" : [ { - "type" : "SingletonNode", - "dependencies" : [ ], - "id" : 1, - "estimatedCost" : 1, - "estimatedNrItems" : 1 + "type" : "SingletonNode", + "dependencies" : [ ], + "id" : 1, + "estimatedCost" : 1, + "estimatedNrItems" : 1 }, { - "type" : "CalculationNode", - "dependencies" : [ + "type" : "CalculationNode", + "dependencies" : [ 1 ], - "id" : 4, - "estimatedCost" : 2, - "estimatedNrItems" : 1, - "expression" : { - "type" : "value", - "typeID" : 40, - "value" : 1, - "vType" : "int", - "vTypeID" : 2 + "id" : 4, + "estimatedCost" : 2, + "estimatedNrItems" : 1, + "expression" : { + "type" : "value", + "typeID" : 40, + "value" : 1, + "vType" : "int", + "vTypeID" : 2 }, - "outVariable" : { - "id" : 3, - "name" : "2", - "isDataFromCollection" : false, - "constantValue" : 1 + "outVariable" : { + "id" : 3, + "name" : "2", + "isDataFromCollection" : false, + "constantValue" : 1 }, - "canThrow" : false, - "expressionType" : "json" + "canThrow" : false, + "expressionType" : "json" }, { - "type" : "CalculationNode", - "dependencies" : [ + "type" : "CalculationNode", + "dependencies" : [ 4 ], - "id" : 2, - "estimatedCost" : 3, - "estimatedNrItems" : 1, - "expression" : { - "type" : "function call", - "typeID" : 47, - "name" : "SLEEP", - "subNodes" : [ + "id" : 2, + "estimatedCost" : 3, + "estimatedNrItems" : 1, + "expression" : { + "type" : "function call", + "typeID" : 47, + "name" : "SLEEP", + "subNodes" : [ { - "type" : "array", - "typeID" : 41, - "subNodes" : [ + "type" : "array", + "typeID" : 41, + "subNodes" : [ { - "type" : "value", - "typeID" : 40, - "value" : 0.25, - "vType" : "double", - "vTypeID" : 3 + "type" : "value", + "typeID" : 40, + "value" : 0.25, + "vType" : "double", + "vTypeID" : 3 } ] } ] }, - "outVariable" : { - "id" : 0, - "name" : "s", - "isDataFromCollection" : false + "outVariable" : { + "id" : 0, + "name" : "s", + "isDataFromCollection" : false }, - "canThrow" : false, - "expressionType" : "simple" + "canThrow" : false, + "expressionType" : "simple" }, { - "type" : "CalculationNode", - "dependencies" : [ + "type" : "CalculationNode", + "dependencies" : [ 2 ], - "id" : 3, - "estimatedCost" : 4, - "estimatedNrItems" : 1, - "expression" : { - "type" : "function call", - "typeID" : 47, - "name" : "SLEEP", - "subNodes" : [ + "id" : 3, + "estimatedCost" : 4, + "estimatedNrItems" : 1, + "expression" : { + "type" : "function call", + "typeID" : 47, + "name" : "SLEEP", + "subNodes" : [ { - "type" : "array", - "typeID" : 41, - "subNodes" : [ + "type" : "array", + "typeID" : 41, + "subNodes" : [ { - "type" : "value", - "typeID" : 40, - "value" : 0.5, - "vType" : "double", - "vTypeID" : 3 + "type" : "value", + "typeID" : 40, + "value" : 0.5, + "vType" : "double", + "vTypeID" : 3 } ] } ] }, - "outVariable" : { - "id" : 1, - "name" : "t", - "isDataFromCollection" : false + "outVariable" : { + "id" : 1, + "name" : "t", + "isDataFromCollection" : false }, - "canThrow" : false, - "expressionType" : "simple" + "canThrow" : false, + "expressionType" : "simple" }, { - "type" : "ReturnNode", - "dependencies" : [ + "type" : "ReturnNode", + "dependencies" : [ 3 ], - "id" : 5, - "estimatedCost" : 5, - "estimatedNrItems" : 1, - "inVariable" : { - "id" : 3, - "name" : "2", - "isDataFromCollection" : false, - "constantValue" : 1 + "id" : 5, + "estimatedCost" : 5, + "estimatedNrItems" : 1, + "inVariable" : { + "id" : 3, + "name" : "2", + "isDataFromCollection" : false, + "constantValue" : 1 }, - "count" : true + "count" : true } ], - "rules" : [ - "move-calculations-up" + "rules" : [ + "move-calculations-up" ], - "collections" : [ ], - "variables" : [ + "collections" : [ ], + "variables" : [ { - "id" : 3, - "name" : "2", - "isDataFromCollection" : false, - "constantValue" : 1 + "id" : 3, + "name" : "2", + "isDataFromCollection" : false, + "constantValue" : 1 }, { - "id" : 1, - "name" : "t", - "isDataFromCollection" : false + "id" : 1, + "name" : "t", + "isDataFromCollection" : false }, { - "id" : 0, - "name" : "s", - "isDataFromCollection" : false + "id" : 0, + "name" : "s", + "isDataFromCollection" : false } ], - "estimatedCost" : 5, - "estimatedNrItems" : 1, - "isModificationQuery" : false + "estimatedCost" : 5, + "estimatedNrItems" : 1, + "isModificationQuery" : false }, - "profile" : { - "initializing" : 0.000003268000000389293, - "parsing" : 0.00006929699975444237, - "optimizing ast" : 0.000004878000254393555, - "loading collections" : 0.000004677999640989583, - "instantiating plan" : 0.00001777200031938264, - "optimizing plan" : 0.00011536700003489386, - "executing" : 0.7593716759993185, - "finalizing" : 0.00004911500036541838 + "profile" : { + "initializing" : 0.000004494970198720694, + "parsing" : 0.00004972703754901886, + "optimizing ast" : 0.0000058639561757445335, + "loading collections" : 0.000005412031896412373, + "instantiating plan" : 0.000016306003089994192, + "optimizing plan" : 0.00017665699124336243, + "executing" : 0.7622538629802875, + "finalizing" : 0.00005228404188528657 } }, - "error" : false, - "code" : 201 + "error" : false, + "code" : 201 } diff --git a/3.9/generated/Examples/RestDatabaseCreate.generated b/3.9/generated/Examples/RestDatabaseCreate.generated index b9bb5ead71..afe761739e 100644 --- a/3.9/generated/Examples/RestDatabaseCreate.generated +++ b/3.9/generated/Examples/RestDatabaseCreate.generated @@ -1,9 +1,9 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/database <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/database <<EOF { - "name" : "example", - "options" : { - "sharding" : "flexible", - "replicationFactor" : 3 + "name" : "example", + "options" : { + "sharding" : "flexible", + "replicationFactor" : 3 } } EOF @@ -16,7 +16,7 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 201, - "result" : true + "error" : false, + "code" : 201, + "result" : true } diff --git a/3.9/generated/Examples/RestDatabaseCreateUsers.generated b/3.9/generated/Examples/RestDatabaseCreateUsers.generated index 082a0227b1..9c8ee517ff 100644 --- a/3.9/generated/Examples/RestDatabaseCreateUsers.generated +++ b/3.9/generated/Examples/RestDatabaseCreateUsers.generated @@ -1,16 +1,16 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/database <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/database <<EOF { - "name" : "mydb", - "users" : [ + "name" : "mydb", + "users" : [ { - "username" : "admin", - "passwd" : "secret", - "active" : true + "username" : "admin", + "passwd" : "secret", + "active" : true }, { - "username" : "tester", - "passwd" : "test001", - "active" : false + "username" : "tester", + "passwd" : "test001", + "active" : false } ] } @@ -24,7 +24,7 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 201, - "result" : true + "error" : false, + "code" : 201, + "result" : true } diff --git a/3.9/generated/Examples/RestDatabaseDrop.generated b/3.9/generated/Examples/RestDatabaseDrop.generated index 9f70c659f0..2fdf384eed 100644 --- a/3.9/generated/Examples/RestDatabaseDrop.generated +++ b/3.9/generated/Examples/RestDatabaseDrop.generated @@ -1,4 +1,4 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/database/example +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/database/example HTTP/1.1 200 OK content-type: application/json @@ -8,7 +8,7 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "result" : true + "error" : false, + "code" : 200, + "result" : true } diff --git a/3.9/generated/Examples/RestDatabaseGet.generated b/3.9/generated/Examples/RestDatabaseGet.generated index 7e1dc4c228..3d2acd30f4 100644 --- a/3.9/generated/Examples/RestDatabaseGet.generated +++ b/3.9/generated/Examples/RestDatabaseGet.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/database +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/database HTTP/1.1 200 OK content-type: application/json @@ -8,9 +8,9 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "result" : [ - "_system" + "error" : false, + "code" : 200, + "result" : [ + "_system" ] } diff --git a/3.9/generated/Examples/RestDatabaseGetInfo.generated b/3.9/generated/Examples/RestDatabaseGetInfo.generated index 28c0cf11d8..cacb3c1613 100644 --- a/3.9/generated/Examples/RestDatabaseGetInfo.generated +++ b/3.9/generated/Examples/RestDatabaseGetInfo.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/database/current +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/database/current HTTP/1.1 200 OK content-type: application/json @@ -8,12 +8,12 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "result" : { - "id" : "1", - "name" : "_system", - "isSystem" : true, - "path" : "none" + "error" : false, + "code" : 200, + "result" : { + "id" : "1", + "name" : "_system", + "isSystem" : true, + "path" : "none" } } diff --git a/3.9/generated/Examples/RestDatabaseGetUser.generated b/3.9/generated/Examples/RestDatabaseGetUser.generated index 70953b47f6..2d538a458b 100644 --- a/3.9/generated/Examples/RestDatabaseGetUser.generated +++ b/3.9/generated/Examples/RestDatabaseGetUser.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/database/user +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/database/user HTTP/1.1 200 OK content-type: application/json @@ -8,9 +8,9 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "result" : [ - "_system" + "error" : false, + "code" : 200, + "result" : [ + "_system" ] } diff --git a/3.9/generated/Examples/RestDeleteUser.generated b/3.9/generated/Examples/RestDeleteUser.generated index 932289e38a..aa8f124ad5 100644 --- a/3.9/generated/Examples/RestDeleteUser.generated +++ b/3.9/generated/Examples/RestDeleteUser.generated @@ -1,4 +1,4 @@ -shell> curl -X DELETE --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/user/userToDelete@myapp <<EOF +shell> curl -X DELETE --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/user/userToDelete@myapp <<EOF { } EOF @@ -11,6 +11,6 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 202 + "error" : false, + "code" : 202 } diff --git a/3.9/generated/Examples/RestDocumentHandlerDeleteDocument.generated b/3.9/generated/Examples/RestDocumentHandlerDeleteDocument.generated index c31dc11a4b..32005d3a17 100644 --- a/3.9/generated/Examples/RestDocumentHandlerDeleteDocument.generated +++ b/3.9/generated/Examples/RestDocumentHandlerDeleteDocument.generated @@ -1,16 +1,16 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/66874 +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/2396 HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 60 -etag: "_cYKLHji---" -location: /_db/_system/_api/document/products/66874 +content-length: 58 +etag: "_cvD8K6W---" +location: /_db/_system/_api/document/products/2396 server: ArangoDB x-content-type-options: nosniff { - "_id" : "products/66874", - "_key" : "66874", - "_rev" : "_cYKLHji---" + "_id" : "products/2396", + "_key" : "2396", + "_rev" : "_cvD8K6W---" } diff --git a/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentIdentifierMulti.generated b/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentIdentifierMulti.generated index ed067b46a9..c987141b95 100644 --- a/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentIdentifierMulti.generated +++ b/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentIdentifierMulti.generated @@ -1,7 +1,7 @@ -shell> curl -X DELETE --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products <<EOF +shell> curl -X DELETE --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products <<EOF [ - "products/1", - "products/2" + "products/1", + "products/2" ] EOF @@ -14,13 +14,13 @@ x-content-type-options: nosniff [ { - "_id" : "products/1", - "_key" : "1", - "_rev" : "_cYKLHkW--_" + "_id" : "products/1", + "_key" : "1", + "_rev" : "_cvD8K6u---" }, { - "_id" : "products/2", - "_key" : "2", - "_rev" : "_cYKLHkW--A" + "_id" : "products/2", + "_key" : "2", + "_rev" : "_cvD8K6u--_" } ] diff --git a/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentIfMatchOther.generated b/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentIfMatchOther.generated index 8143e27582..172ab05e1c 100644 --- a/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentIfMatchOther.generated +++ b/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentIfMatchOther.generated @@ -1,19 +1,19 @@ -shell> curl -X DELETE --header 'If-Match: "_cYKLHlK---"' --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/66893 +shell> curl -X DELETE --header 'If-Match: "_cvD8K66--A"' --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/2415 HTTP/1.1 412 Precondition Failed content-type: application/json connection: Keep-Alive -content-length: 152 -etag: "_cYKLHlG---" +content-length: 150 +etag: "_cvD8K66--_" server: ArangoDB x-content-type-options: nosniff { - "error" : true, - "code" : 412, - "errorNum" : 1200, - "errorMessage" : "conflict, _rev values do not match", - "_id" : "products/66893", - "_key" : "66893", - "_rev" : "_cYKLHlG---" + "error" : true, + "code" : 412, + "errorNum" : 1200, + "errorMessage" : "conflict, _rev values do not match", + "_id" : "products/2415", + "_key" : "2415", + "_rev" : "_cvD8K66--_" } diff --git a/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentKeyMulti.generated b/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentKeyMulti.generated index 6c0e1cfc0c..00e6e0a509 100644 --- a/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentKeyMulti.generated +++ b/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentKeyMulti.generated @@ -1,7 +1,7 @@ -shell> curl -X DELETE --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products <<EOF +shell> curl -X DELETE --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products <<EOF [ - "1", - "2" + "1", + "2" ] EOF @@ -14,13 +14,13 @@ x-content-type-options: nosniff [ { - "_id" : "products/1", - "_key" : "1", - "_rev" : "_cYKLHle---" + "_id" : "products/1", + "_key" : "1", + "_rev" : "_cvD8K7G--_" }, { - "_id" : "products/2", - "_key" : "2", - "_rev" : "_cYKLHle--_" + "_id" : "products/2", + "_key" : "2", + "_rev" : "_cvD8K7G--A" } ] diff --git a/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentObjectMulti.generated b/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentObjectMulti.generated index 4d686becfa..603d83dfa3 100644 --- a/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentObjectMulti.generated +++ b/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentObjectMulti.generated @@ -1,10 +1,10 @@ -shell> curl -X DELETE --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products <<EOF +shell> curl -X DELETE --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products <<EOF [ { - "_key" : "1" + "_key" : "1" }, { - "_key" : "2" + "_key" : "2" } ] EOF @@ -18,13 +18,13 @@ x-content-type-options: nosniff [ { - "_id" : "products/1", - "_key" : "1", - "_rev" : "_cYKLHmG---" + "_id" : "products/1", + "_key" : "1", + "_rev" : "_cvD8K7W---" }, { - "_id" : "products/2", - "_key" : "2", - "_rev" : "_cYKLHmG--_" + "_id" : "products/2", + "_key" : "2", + "_rev" : "_cvD8K7W--_" } ] diff --git a/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentRevConflictMulti.generated b/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentRevConflictMulti.generated index cd4b038d95..b31f36fbe3 100644 --- a/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentRevConflictMulti.generated +++ b/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentRevConflictMulti.generated @@ -1,12 +1,12 @@ -shell> curl -X DELETE --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products?ignoreRevs=false <<EOF +shell> curl -X DELETE --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products?ignoreRevs=false <<EOF [ { - "_key" : "1", - "_rev" : "non-matching revision" + "_key" : "1", + "_rev" : "non-matching revision" }, { - "_key" : "2", - "_rev" : "non-matching revision" + "_key" : "2", + "_rev" : "non-matching revision" } ] EOF @@ -16,18 +16,18 @@ content-type: application/json connection: Keep-Alive content-length: 167 server: ArangoDB -x-arango-error-codes: {"1200":2} +x-arango-error-codes: {"1200":2} x-content-type-options: nosniff [ { - "error" : true, - "errorNum" : 1200, - "errorMessage" : "conflict, _rev values do not match" + "error" : true, + "errorNum" : 1200, + "errorMessage" : "conflict, _rev values do not match" }, { - "error" : true, - "errorNum" : 1200, - "errorMessage" : "conflict, _rev values do not match" + "error" : true, + "errorNum" : 1200, + "errorMessage" : "conflict, _rev values do not match" } ] diff --git a/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentRevMulti.generated b/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentRevMulti.generated index b1801ffeea..04b7c97698 100644 --- a/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentRevMulti.generated +++ b/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentRevMulti.generated @@ -1,12 +1,12 @@ -shell> curl -X DELETE --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products?ignoreRevs=false <<EOF +shell> curl -X DELETE --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products?ignoreRevs=false <<EOF [ { - "_key" : "1", - "_rev" : "_cYKLHnO---" + "_key" : "1", + "_rev" : "_cvD8K7y---" }, { - "_key" : "2", - "_rev" : "_cYKLHnO--_" + "_key" : "2", + "_rev" : "_cvD8K7y--_" } ] EOF @@ -20,13 +20,13 @@ x-content-type-options: nosniff [ { - "_id" : "products/1", - "_key" : "1", - "_rev" : "_cYKLHnO---" + "_id" : "products/1", + "_key" : "1", + "_rev" : "_cvD8K7y---" }, { - "_id" : "products/2", - "_key" : "2", - "_rev" : "_cYKLHnO--_" + "_id" : "products/2", + "_key" : "2", + "_rev" : "_cvD8K7y--_" } ] diff --git a/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentUnknownHandle.generated b/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentUnknownHandle.generated index 2da55c918a..31ef2591fd 100644 --- a/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentUnknownHandle.generated +++ b/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentUnknownHandle.generated @@ -1,4 +1,4 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/66942 +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/2464 HTTP/1.1 404 Not Found content-type: application/json @@ -8,8 +8,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 404, - "error" : true, - "errorMessage" : "document not found", - "errorNum" : 1202 + "code" : 404, + "error" : true, + "errorMessage" : "document not found", + "errorNum" : 1202 } diff --git a/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentUnknownMulti.generated b/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentUnknownMulti.generated index 81c4f43a60..a66aba3eb4 100644 --- a/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentUnknownMulti.generated +++ b/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentUnknownMulti.generated @@ -1,7 +1,7 @@ -shell> curl -X DELETE --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products <<EOF +shell> curl -X DELETE --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products <<EOF [ - "1", - "other/2" + "1", + "other/2" ] EOF @@ -10,18 +10,18 @@ content-type: application/json connection: Keep-Alive content-length: 135 server: ArangoDB -x-arango-error-codes: {"1202":2} +x-arango-error-codes: {"1202":2} x-content-type-options: nosniff [ { - "error" : true, - "errorNum" : 1202, - "errorMessage" : "document not found" + "error" : true, + "errorNum" : 1202, + "errorMessage" : "document not found" }, { - "error" : true, - "errorNum" : 1202, - "errorMessage" : "document not found" + "error" : true, + "errorNum" : 1202, + "errorMessage" : "document not found" } ] diff --git a/3.9/generated/Examples/RestDocumentHandlerPatchDocument.generated b/3.9/generated/Examples/RestDocumentHandlerPatchDocument.generated index b3b5a8b868..e98a621521 100644 --- a/3.9/generated/Examples/RestDocumentHandlerPatchDocument.generated +++ b/3.9/generated/Examples/RestDocumentHandlerPatchDocument.generated @@ -1,31 +1,31 @@ -shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/66970 <<EOF +shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/2492 <<EOF { - "hello" : "world" + "hello" : "world" } EOF HTTP/1.1 202 Accepted content-type: application/json connection: Keep-Alive -content-length: 84 -etag: "_cYKLHpe---" -location: /_db/_system/_api/document/products/66970 +content-length: 82 +etag: "_cvD8K8y--_" +location: /_db/_system/_api/document/products/2492 server: ArangoDB x-content-type-options: nosniff { - "_id" : "products/66970", - "_key" : "66970", - "_rev" : "_cYKLHpe---", - "_oldRev" : "_cYKLHpa--_" + "_id" : "products/2492", + "_key" : "2492", + "_rev" : "_cvD8K8y--_", + "_oldRev" : "_cvD8K8y---" } -shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/66970 <<EOF +shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/2492 <<EOF { - "numbers" : { - "one" : 1, - "two" : 2, - "three" : 3, - "empty" : null + "numbers" : { + "one" : 1, + "two" : 2, + "three" : 3, + "empty" : null } } EOF @@ -33,46 +33,46 @@ EOF HTTP/1.1 202 Accepted content-type: application/json connection: Keep-Alive -content-length: 84 -etag: "_cYKLHpm---" -location: /_db/_system/_api/document/products/66970 +content-length: 82 +etag: "_cvD8K86---" +location: /_db/_system/_api/document/products/2492 server: ArangoDB x-content-type-options: nosniff { - "_id" : "products/66970", - "_key" : "66970", - "_rev" : "_cYKLHpm---", - "_oldRev" : "_cYKLHpe---" + "_id" : "products/2492", + "_key" : "2492", + "_rev" : "_cvD8K86---", + "_oldRev" : "_cvD8K8y--_" } -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/66970 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/2492 HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 141 -etag: "_cYKLHpm---" +content-length: 139 +etag: "_cvD8K86---" server: ArangoDB x-content-type-options: nosniff { - "_key" : "66970", - "_id" : "products/66970", - "_rev" : "_cYKLHpm---", - "one" : "world", - "hello" : "world", - "numbers" : { - "one" : 1, - "two" : 2, - "three" : 3, - "empty" : null + "_key" : "2492", + "_id" : "products/2492", + "_rev" : "_cvD8K86---", + "one" : "world", + "hello" : "world", + "numbers" : { + "one" : 1, + "two" : 2, + "three" : 3, + "empty" : null } } -shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/66970?keepNull=false <<EOF +shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/2492?keepNull=false <<EOF { - "hello" : null, - "numbers" : { - "four" : 4 + "hello" : null, + "numbers" : { + "four" : 4 } } EOF @@ -80,38 +80,38 @@ EOF HTTP/1.1 202 Accepted content-type: application/json connection: Keep-Alive -content-length: 84 -etag: "_cYKLHpy---" -location: /_db/_system/_api/document/products/66970 +content-length: 82 +etag: "_cvD8K9C---" +location: /_db/_system/_api/document/products/2492 server: ArangoDB x-content-type-options: nosniff { - "_id" : "products/66970", - "_key" : "66970", - "_rev" : "_cYKLHpy---", - "_oldRev" : "_cYKLHpm---" + "_id" : "products/2492", + "_key" : "2492", + "_rev" : "_cvD8K9C---", + "_oldRev" : "_cvD8K86---" } -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/66970 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/2492 HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 134 -etag: "_cYKLHpy---" +content-length: 132 +etag: "_cvD8K9C---" server: ArangoDB x-content-type-options: nosniff { - "_key" : "66970", - "_id" : "products/66970", - "_rev" : "_cYKLHpy---", - "one" : "world", - "numbers" : { - "empty" : null, - "one" : 1, - "three" : 3, - "two" : 2, - "four" : 4 + "_key" : "2492", + "_id" : "products/2492", + "_rev" : "_cvD8K9C---", + "one" : "world", + "numbers" : { + "empty" : null, + "one" : 1, + "three" : 3, + "two" : 2, + "four" : 4 } } diff --git a/3.9/generated/Examples/RestDocumentHandlerPatchDocumentMerge.generated b/3.9/generated/Examples/RestDocumentHandlerPatchDocumentMerge.generated index 61e21e123e..ac53f070a0 100644 --- a/3.9/generated/Examples/RestDocumentHandlerPatchDocumentMerge.generated +++ b/3.9/generated/Examples/RestDocumentHandlerPatchDocumentMerge.generated @@ -1,58 +1,58 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/66984 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/2506 HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 130 -etag: "_cYKLHqO---" +content-length: 128 +etag: "_cvD8K9W---" server: ArangoDB x-content-type-options: nosniff { - "_key" : "66984", - "_id" : "products/66984", - "_rev" : "_cYKLHqO---", - "inhabitants" : { - "china" : 1366980000, - "india" : 1263590000, - "usa" : 319220000 + "_key" : "2506", + "_id" : "products/2506", + "_rev" : "_cvD8K9W---", + "inhabitants" : { + "china" : 1366980000, + "india" : 1263590000, + "usa" : 319220000 } } -shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/66984?mergeObjects=true <<EOF +shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/2506?mergeObjects=true <<EOF { - "inhabitants" : { - "indonesia" : 252164800, - "brazil" : 203553000 + "inhabitants" : { + "indonesia" : 252164800, + "brazil" : 203553000 } } EOF -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/66984 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/2506 HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 171 -etag: "_cYKLHqW---" +content-length: 169 +etag: "_cvD8K9a---" server: ArangoDB x-content-type-options: nosniff { - "_key" : "66984", - "_id" : "products/66984", - "_rev" : "_cYKLHqW---", - "inhabitants" : { - "china" : 1366980000, - "india" : 1263590000, - "usa" : 319220000, - "indonesia" : 252164800, - "brazil" : 203553000 + "_key" : "2506", + "_id" : "products/2506", + "_rev" : "_cvD8K9a---", + "inhabitants" : { + "china" : 1366980000, + "india" : 1263590000, + "usa" : 319220000, + "indonesia" : 252164800, + "brazil" : 203553000 } } -shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/66984?mergeObjects=false <<EOF +shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/2506?mergeObjects=false <<EOF { - "inhabitants" : { - "pakistan" : 188346000 + "inhabitants" : { + "pakistan" : 188346000 } } EOF @@ -60,33 +60,33 @@ EOF HTTP/1.1 202 Accepted content-type: application/json connection: Keep-Alive -content-length: 84 -etag: "_cYKLHqe---" -location: /_db/_system/_api/document/products/66984 +content-length: 82 +etag: "_cvD8K9i---" +location: /_db/_system/_api/document/products/2506 server: ArangoDB x-content-type-options: nosniff { - "_id" : "products/66984", - "_key" : "66984", - "_rev" : "_cYKLHqe---", - "_oldRev" : "_cYKLHqW---" + "_id" : "products/2506", + "_key" : "2506", + "_rev" : "_cvD8K9i---", + "_oldRev" : "_cvD8K9a---" } -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/66984 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/2506 HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 97 -etag: "_cYKLHqe---" +content-length: 95 +etag: "_cvD8K9i---" server: ArangoDB x-content-type-options: nosniff { - "_key" : "66984", - "_id" : "products/66984", - "_rev" : "_cYKLHqe---", - "inhabitants" : { - "pakistan" : 188346000 + "_key" : "2506", + "_id" : "products/2506", + "_rev" : "_cvD8K9i---", + "inhabitants" : { + "pakistan" : 188346000 } } diff --git a/3.9/generated/Examples/RestDocumentHandlerPostAccept1.generated b/3.9/generated/Examples/RestDocumentHandlerPostAccept1.generated index 246b25ad52..8e547accb8 100644 --- a/3.9/generated/Examples/RestDocumentHandlerPostAccept1.generated +++ b/3.9/generated/Examples/RestDocumentHandlerPostAccept1.generated @@ -1,18 +1,18 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products <<EOF { "Hello": "World" } EOF HTTP/1.1 202 Accepted content-type: application/json connection: Keep-Alive -content-length: 60 -etag: "_cYKLHq2---" -location: /_db/_system/_api/document/products/66998 +content-length: 58 +etag: "_cvD8K9u--_" +location: /_db/_system/_api/document/products/2520 server: ArangoDB x-content-type-options: nosniff { - "_id" : "products/66998", - "_key" : "66998", - "_rev" : "_cYKLHq2---" + "_id" : "products/2520", + "_key" : "2520", + "_rev" : "_cvD8K9u--_" } diff --git a/3.9/generated/Examples/RestDocumentHandlerPostBadJson1.generated b/3.9/generated/Examples/RestDocumentHandlerPostBadJson1.generated index a1bb4f152f..8632619ab8 100644 --- a/3.9/generated/Examples/RestDocumentHandlerPostBadJson1.generated +++ b/3.9/generated/Examples/RestDocumentHandlerPostBadJson1.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products <<EOF { 1: "World" } EOF @@ -10,8 +10,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 400, - "error" : true, - "errorMessage" : "VPackError error: Expecting '\"' or '}'", - "errorNum" : 600 + "code" : 400, + "error" : true, + "errorMessage" : "VPackError error: Expecting '\"' or '}'", + "errorNum" : 600 } diff --git a/3.9/generated/Examples/RestDocumentHandlerPostBadJsonMulti.generated b/3.9/generated/Examples/RestDocumentHandlerPostBadJsonMulti.generated index e41ff59ed5..cbb22e1ac5 100644 --- a/3.9/generated/Examples/RestDocumentHandlerPostBadJsonMulti.generated +++ b/3.9/generated/Examples/RestDocumentHandlerPostBadJsonMulti.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products <<EOF [{ "_key": 111 }, {"_key":"abc"}] EOF @@ -7,18 +7,18 @@ content-type: application/json connection: Keep-Alive content-length: 127 server: ArangoDB -x-arango-error-codes: {"1221":1} +x-arango-error-codes: {"1221":1} x-content-type-options: nosniff [ { - "error" : true, - "errorNum" : 1221, - "errorMessage" : "illegal document key" + "error" : true, + "errorNum" : 1221, + "errorMessage" : "illegal document key" }, { - "_id" : "products/abc", - "_key" : "abc", - "_rev" : "_cYKLHra--_" + "_id" : "products/abc", + "_key" : "abc", + "_rev" : "_cvD8L-K--_" } ] diff --git a/3.9/generated/Examples/RestDocumentHandlerPostCreate1.generated b/3.9/generated/Examples/RestDocumentHandlerPostCreate1.generated index 3f5b19d938..d98fef1a99 100644 --- a/3.9/generated/Examples/RestDocumentHandlerPostCreate1.generated +++ b/3.9/generated/Examples/RestDocumentHandlerPostCreate1.generated @@ -1,18 +1,18 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products <<EOF { "Hello": "World" } EOF HTTP/1.1 201 Created content-type: application/json connection: Keep-Alive -content-length: 60 -etag: "_cYKLHr2---" -location: /_db/_system/_api/document/products/67022 +content-length: 58 +etag: "_cvD8L-a--_" +location: /_db/_system/_api/document/products/2544 server: ArangoDB x-content-type-options: nosniff { - "_id" : "products/67022", - "_key" : "67022", - "_rev" : "_cYKLHr2---" + "_id" : "products/2544", + "_key" : "2544", + "_rev" : "_cvD8L-a--_" } diff --git a/3.9/generated/Examples/RestDocumentHandlerPostMulti1.generated b/3.9/generated/Examples/RestDocumentHandlerPostMulti1.generated index c97fdce8b9..7402648bb7 100644 --- a/3.9/generated/Examples/RestDocumentHandlerPostMulti1.generated +++ b/3.9/generated/Examples/RestDocumentHandlerPostMulti1.generated @@ -1,28 +1,28 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products <<EOF [{"Hello":"Earth"}, {"Hello":"Venus"}, {"Hello":"Mars"}] EOF HTTP/1.1 202 Accepted content-type: application/json connection: Keep-Alive -content-length: 184 +content-length: 178 server: ArangoDB x-content-type-options: nosniff [ { - "_id" : "products/67031", - "_key" : "67031", - "_rev" : "_cYKLHsa---" + "_id" : "products/2553", + "_key" : "2553", + "_rev" : "_cvD8L-m---" }, { - "_id" : "products/67032", - "_key" : "67032", - "_rev" : "_cYKLHsa--_" + "_id" : "products/2554", + "_key" : "2554", + "_rev" : "_cvD8L-m--_" }, { - "_id" : "products/67033", - "_key" : "67033", - "_rev" : "_cYKLHsa--A" + "_id" : "products/2555", + "_key" : "2555", + "_rev" : "_cvD8L-m--A" } ] diff --git a/3.9/generated/Examples/RestDocumentHandlerPostMulti2.generated b/3.9/generated/Examples/RestDocumentHandlerPostMulti2.generated index 9997e38945..8c9e215675 100644 --- a/3.9/generated/Examples/RestDocumentHandlerPostMulti2.generated +++ b/3.9/generated/Examples/RestDocumentHandlerPostMulti2.generated @@ -1,46 +1,46 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products?returnNew=true <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products?returnNew=true <<EOF [{"Hello":"Earth"}, {"Hello":"Venus"}, {"Hello":"Mars"}] EOF HTTP/1.1 202 Accepted content-type: application/json connection: Keep-Alive -content-length: 432 +content-length: 420 server: ArangoDB x-content-type-options: nosniff [ { - "_id" : "products/67042", - "_key" : "67042", - "_rev" : "_cYKLHs6---", - "new" : { - "_key" : "67042", - "_id" : "products/67042", - "_rev" : "_cYKLHs6---", - "Hello" : "Earth" + "_id" : "products/2564", + "_key" : "2564", + "_rev" : "_cvD8L-u--_", + "new" : { + "_key" : "2564", + "_id" : "products/2564", + "_rev" : "_cvD8L-u--_", + "Hello" : "Earth" } }, { - "_id" : "products/67043", - "_key" : "67043", - "_rev" : "_cYKLHs6--_", - "new" : { - "_key" : "67043", - "_id" : "products/67043", - "_rev" : "_cYKLHs6--_", - "Hello" : "Venus" + "_id" : "products/2565", + "_key" : "2565", + "_rev" : "_cvD8L-u--A", + "new" : { + "_key" : "2565", + "_id" : "products/2565", + "_rev" : "_cvD8L-u--A", + "Hello" : "Venus" } }, { - "_id" : "products/67044", - "_key" : "67044", - "_rev" : "_cYKLHs6--A", - "new" : { - "_key" : "67044", - "_id" : "products/67044", - "_rev" : "_cYKLHs6--A", - "Hello" : "Mars" + "_id" : "products/2566", + "_key" : "2566", + "_rev" : "_cvD8L-u--B", + "new" : { + "_key" : "2566", + "_id" : "products/2566", + "_rev" : "_cvD8L-u--B", + "Hello" : "Mars" } } ] diff --git a/3.9/generated/Examples/RestDocumentHandlerPostOverwrite.generated b/3.9/generated/Examples/RestDocumentHandlerPostOverwrite.generated index bc171fe511..b1a1c251c8 100644 --- a/3.9/generated/Examples/RestDocumentHandlerPostOverwrite.generated +++ b/3.9/generated/Examples/RestDocumentHandlerPostOverwrite.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products <<EOF { "Hello": "World", "_key" : "lock" } EOF @@ -6,17 +6,17 @@ HTTP/1.1 201 C content-type: application/json connection: Keep-Alive content-length: 58 -etag: "_cYKLHtS---" +etag: "_cvD8L_----" location: /_db/_system/_api/document/products/lock server: ArangoDB x-content-type-options: nosniff { - "_id" : "products/lock", - "_key" : "lock", - "_rev" : "_cYKLHtS---" + "_id" : "products/lock", + "_key" : "lock", + "_rev" : "_cvD8L_----" } -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products?overwrite=true <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products?overwrite=true <<EOF { "Hello": "Universe", "_key" : "lock" } EOF @@ -24,14 +24,14 @@ HTTP/1.1 201 C content-type: application/json connection: Keep-Alive content-length: 82 -etag: "_cYKLHtm---" +etag: "_cvD8L_C---" location: /_db/_system/_api/document/products/lock server: ArangoDB x-content-type-options: nosniff { - "_id" : "products/lock", - "_key" : "lock", - "_rev" : "_cYKLHtm---", - "_oldRev" : "_cYKLHtS---" + "_id" : "products/lock", + "_key" : "lock", + "_rev" : "_cvD8L_C---", + "_oldRev" : "_cvD8L_----" } diff --git a/3.9/generated/Examples/RestDocumentHandlerPostReturnNew.generated b/3.9/generated/Examples/RestDocumentHandlerPostReturnNew.generated index bbcc6d959d..038e431bdb 100644 --- a/3.9/generated/Examples/RestDocumentHandlerPostReturnNew.generated +++ b/3.9/generated/Examples/RestDocumentHandlerPostReturnNew.generated @@ -1,24 +1,24 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products?returnNew=true <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products?returnNew=true <<EOF {"Hello":"World"} EOF HTTP/1.1 202 Accepted content-type: application/json connection: Keep-Alive -content-length: 143 -etag: "_cYKLHuC--_" -location: /_db/_system/_api/document/products/67062 +content-length: 139 +etag: "_cvD8L_O---" +location: /_db/_system/_api/document/products/2584 server: ArangoDB x-content-type-options: nosniff { - "_id" : "products/67062", - "_key" : "67062", - "_rev" : "_cYKLHuC--_", - "new" : { - "_key" : "67062", - "_id" : "products/67062", - "_rev" : "_cYKLHuC--_", - "Hello" : "World" + "_id" : "products/2584", + "_key" : "2584", + "_rev" : "_cvD8L_O---", + "new" : { + "_key" : "2584", + "_id" : "products/2584", + "_rev" : "_cvD8L_O---", + "Hello" : "World" } } diff --git a/3.9/generated/Examples/RestDocumentHandlerPostUnknownCollection1.generated b/3.9/generated/Examples/RestDocumentHandlerPostUnknownCollection1.generated index ab2c290ac7..98aea21144 100644 --- a/3.9/generated/Examples/RestDocumentHandlerPostUnknownCollection1.generated +++ b/3.9/generated/Examples/RestDocumentHandlerPostUnknownCollection1.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products <<EOF { "Hello": "World" } EOF @@ -10,8 +10,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 404, - "error" : true, - "errorMessage" : "collection or view not found: products", - "errorNum" : 1203 + "code" : 404, + "error" : true, + "errorMessage" : "collection or view not found: products", + "errorNum" : 1203 } diff --git a/3.9/generated/Examples/RestDocumentHandlerPostWait1.generated b/3.9/generated/Examples/RestDocumentHandlerPostWait1.generated index b44c4f9e54..1dc4f17a2f 100644 --- a/3.9/generated/Examples/RestDocumentHandlerPostWait1.generated +++ b/3.9/generated/Examples/RestDocumentHandlerPostWait1.generated @@ -1,18 +1,18 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products?waitForSync=true <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products?waitForSync=true <<EOF { "Hello": "World" } EOF HTTP/1.1 201 Created content-type: application/json connection: Keep-Alive -content-length: 60 -etag: "_cYKLHui---" -location: /_db/_system/_api/document/products/67073 +content-length: 58 +etag: "_cvD8L_q---" +location: /_db/_system/_api/document/products/2595 server: ArangoDB x-content-type-options: nosniff { - "_id" : "products/67073", - "_key" : "67073", - "_rev" : "_cYKLHui---" + "_id" : "products/2595", + "_key" : "2595", + "_rev" : "_cvD8L_q---" } diff --git a/3.9/generated/Examples/RestDocumentHandlerReadDocument.generated b/3.9/generated/Examples/RestDocumentHandlerReadDocument.generated index 9c8d5a8c45..d4b096f6af 100644 --- a/3.9/generated/Examples/RestDocumentHandlerReadDocument.generated +++ b/3.9/generated/Examples/RestDocumentHandlerReadDocument.generated @@ -1,16 +1,16 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/67082 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/2604 HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 76 -etag: "_cYKLHv---_" +content-length: 74 +etag: "_cvD8LA---_" server: ArangoDB x-content-type-options: nosniff { - "_key" : "67082", - "_id" : "products/67082", - "_rev" : "_cYKLHv---_", - "hello" : "world" + "_key" : "2604", + "_id" : "products/2604", + "_rev" : "_cvD8LA---_", + "hello" : "world" } diff --git a/3.9/generated/Examples/RestDocumentHandlerReadDocumentHead.generated b/3.9/generated/Examples/RestDocumentHandlerReadDocumentHead.generated index 4669dd807e..0e5883fbbf 100644 --- a/3.9/generated/Examples/RestDocumentHandlerReadDocumentHead.generated +++ b/3.9/generated/Examples/RestDocumentHandlerReadDocumentHead.generated @@ -1,2 +1,2 @@ -shell> curl -X HEAD --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/67092 +shell> curl -X HEAD --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/2614 diff --git a/3.9/generated/Examples/RestDocumentHandlerReadDocumentIfNoneMatch.generated b/3.9/generated/Examples/RestDocumentHandlerReadDocumentIfNoneMatch.generated index 06334c45ab..2977b67730 100644 --- a/3.9/generated/Examples/RestDocumentHandlerReadDocumentIfNoneMatch.generated +++ b/3.9/generated/Examples/RestDocumentHandlerReadDocumentIfNoneMatch.generated @@ -1,2 +1,2 @@ -shell> curl --header 'If-None-Match: "_cYKLHvm---"' --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/67102 +shell> curl --header 'If-None-Match: "_cvD8LAa--_"' --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/2624 diff --git a/3.9/generated/Examples/RestDocumentHandlerReadDocumentUnknownHandle.generated b/3.9/generated/Examples/RestDocumentHandlerReadDocumentUnknownHandle.generated index c7abab427b..2e60d69eba 100644 --- a/3.9/generated/Examples/RestDocumentHandlerReadDocumentUnknownHandle.generated +++ b/3.9/generated/Examples/RestDocumentHandlerReadDocumentUnknownHandle.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/unknown-identifier +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/unknown-identifier HTTP/1.1 404 Not Found content-type: application/json @@ -8,8 +8,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 404, - "error" : true, - "errorMessage" : "collection or view not found: products", - "errorNum" : 1203 + "code" : 404, + "error" : true, + "errorMessage" : "collection or view not found: products", + "errorNum" : 1203 } diff --git a/3.9/generated/Examples/RestDocumentHandlerReadMultiDocument.generated b/3.9/generated/Examples/RestDocumentHandlerReadMultiDocument.generated index 015ac2a736..6f9fc4e311 100644 --- a/3.9/generated/Examples/RestDocumentHandlerReadMultiDocument.generated +++ b/3.9/generated/Examples/RestDocumentHandlerReadMultiDocument.generated @@ -1,4 +1,4 @@ -shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products?onlyget=true <<EOF +shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products?onlyget=true <<EOF ["doc1", {"_key":"doc2"}] EOF @@ -11,15 +11,15 @@ x-content-type-options: nosniff [ { - "_key" : "doc1", - "_id" : "products/doc1", - "_rev" : "_cYKLHwC---", - "hello" : "world" + "_key" : "doc1", + "_id" : "products/doc1", + "_rev" : "_cvD8LAq--_", + "hello" : "world" }, { - "_key" : "doc2", - "_id" : "products/doc2", - "_rev" : "_cYKLHwC--_", - "say" : "hi to mom" + "_key" : "doc2", + "_id" : "products/doc2", + "_rev" : "_cvD8LAu---", + "say" : "hi to mom" } ] diff --git a/3.9/generated/Examples/RestDocumentHandlerUpdateDocument.generated b/3.9/generated/Examples/RestDocumentHandlerUpdateDocument.generated index 188d709a72..5692086045 100644 --- a/3.9/generated/Examples/RestDocumentHandlerUpdateDocument.generated +++ b/3.9/generated/Examples/RestDocumentHandlerUpdateDocument.generated @@ -1,19 +1,19 @@ -shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/67124 <<EOF +shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/2646 <<EOF {"Hello": "you"} EOF HTTP/1.1 202 Accepted content-type: application/json connection: Keep-Alive -content-length: 84 -etag: "_cYKLHwW--_" -location: /_db/_system/_api/document/products/67124 +content-length: 82 +etag: "_cvD8LA6--A" +location: /_db/_system/_api/document/products/2646 server: ArangoDB x-content-type-options: nosniff { - "_id" : "products/67124", - "_key" : "67124", - "_rev" : "_cYKLHwW--_", - "_oldRev" : "_cYKLHwW---" + "_id" : "products/2646", + "_key" : "2646", + "_rev" : "_cvD8LA6--A", + "_oldRev" : "_cvD8LA6--_" } diff --git a/3.9/generated/Examples/RestDocumentHandlerUpdateDocumentIfMatchOther.generated b/3.9/generated/Examples/RestDocumentHandlerUpdateDocumentIfMatchOther.generated index d07ace315a..242380828d 100644 --- a/3.9/generated/Examples/RestDocumentHandlerUpdateDocumentIfMatchOther.generated +++ b/3.9/generated/Examples/RestDocumentHandlerUpdateDocumentIfMatchOther.generated @@ -1,21 +1,21 @@ -shell> curl -X PUT --header 'If-Match: "_cYKLHwq--_"' --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/67134 <<EOF +shell> curl -X PUT --header 'If-Match: "_cvD8LBG--A"' --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/2656 <<EOF {"other":"content"} EOF HTTP/1.1 412 Precondition Failed content-type: application/json connection: Keep-Alive -content-length: 152 -etag: "_cYKLHwq---" +content-length: 150 +etag: "_cvD8LBG--_" server: ArangoDB x-content-type-options: nosniff { - "error" : true, - "code" : 412, - "errorNum" : 1200, - "errorMessage" : "conflict, _rev values do not match", - "_id" : "products/67134", - "_key" : "67134", - "_rev" : "_cYKLHwq---" + "error" : true, + "code" : 412, + "errorNum" : 1200, + "errorMessage" : "conflict, _rev values do not match", + "_id" : "products/2656", + "_key" : "2656", + "_rev" : "_cvD8LBG--_" } diff --git a/3.9/generated/Examples/RestDocumentHandlerUpdateDocumentUnknownHandle.generated b/3.9/generated/Examples/RestDocumentHandlerUpdateDocumentUnknownHandle.generated index 7f48075685..1b0943da69 100644 --- a/3.9/generated/Examples/RestDocumentHandlerUpdateDocumentUnknownHandle.generated +++ b/3.9/generated/Examples/RestDocumentHandlerUpdateDocumentUnknownHandle.generated @@ -1,4 +1,4 @@ -shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/67147 <<EOF +shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/2669 <<EOF {} EOF @@ -10,8 +10,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 404, - "error" : true, - "errorMessage" : "document not found", - "errorNum" : 1202 + "code" : 404, + "error" : true, + "errorMessage" : "document not found", + "errorNum" : 1202 } diff --git a/3.9/generated/Examples/RestEdgesReadEdgesAny.generated b/3.9/generated/Examples/RestEdgesReadEdgesAny.generated index 4ff0665005..d47d00baa5 100644 --- a/3.9/generated/Examples/RestEdgesReadEdgesAny.generated +++ b/3.9/generated/Examples/RestEdgesReadEdgesAny.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/edges/edges?vertex=vertices/1 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/edges/edges?vertex=vertices/1 HTTP/1.1 200 OK content-type: application/json @@ -8,42 +8,42 @@ server: ArangoDB x-content-type-options: nosniff { - "edges" : [ + "edges" : [ { - "_key" : "5", - "_id" : "edges/5", - "_from" : "vertices/1", - "_to" : "vertices/3", - "_rev" : "_cYKLHxa--_", - "$label" : "v1 -> v3" + "_key" : "5", + "_id" : "edges/5", + "_from" : "vertices/1", + "_to" : "vertices/3", + "_rev" : "_cvD8LBm--A", + "$label" : "v1 -> v3" }, { - "_key" : "6", - "_id" : "edges/6", - "_from" : "vertices/2", - "_to" : "vertices/1", - "_rev" : "_cYKLHxa--A", - "$label" : "v2 -> v1" + "_key" : "6", + "_id" : "edges/6", + "_from" : "vertices/2", + "_to" : "vertices/1", + "_rev" : "_cvD8LBm--B", + "$label" : "v2 -> v1" }, { - "_key" : "7", - "_id" : "edges/7", - "_from" : "vertices/4", - "_to" : "vertices/1", - "_rev" : "_cYKLHxe---", - "$label" : "v4 -> v1" + "_key" : "7", + "_id" : "edges/7", + "_from" : "vertices/4", + "_to" : "vertices/1", + "_rev" : "_cvD8LBm--C", + "$label" : "v4 -> v1" } ], - "error" : false, - "code" : 200, - "stats" : { - "writesExecuted" : 0, - "writesIgnored" : 0, - "scannedFull" : 0, - "scannedIndex" : 3, - "filtered" : 0, - "httpRequests" : 0, - "executionTime" : 0.0003663160005089594, - "peakMemoryUsage" : 32768 + "error" : false, + "code" : 200, + "stats" : { + "writesExecuted" : 0, + "writesIgnored" : 0, + "scannedFull" : 0, + "scannedIndex" : 3, + "filtered" : 0, + "httpRequests" : 0, + "executionTime" : 0.0004129770095460117, + "peakMemoryUsage" : 32768 } } diff --git a/3.9/generated/Examples/RestEdgesReadEdgesIn.generated b/3.9/generated/Examples/RestEdgesReadEdgesIn.generated index 2622bbc9c4..700a2cf119 100644 --- a/3.9/generated/Examples/RestEdgesReadEdgesIn.generated +++ b/3.9/generated/Examples/RestEdgesReadEdgesIn.generated @@ -1,41 +1,41 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/edges/edges?vertex=vertices/1&direction=in +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/edges/edges?vertex=vertices/1&direction=in HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 424 +content-length: 422 server: ArangoDB x-content-type-options: nosniff { - "edges" : [ + "edges" : [ { - "_key" : "6", - "_id" : "edges/6", - "_from" : "vertices/2", - "_to" : "vertices/1", - "_rev" : "_cYKLHyG--_", - "$label" : "v2 -> v1" + "_key" : "6", + "_id" : "edges/6", + "_from" : "vertices/2", + "_to" : "vertices/1", + "_rev" : "_cvD8LC---C", + "$label" : "v2 -> v1" }, { - "_key" : "7", - "_id" : "edges/7", - "_from" : "vertices/4", - "_to" : "vertices/1", - "_rev" : "_cYKLHyK---", - "$label" : "v4 -> v1" + "_key" : "7", + "_id" : "edges/7", + "_from" : "vertices/4", + "_to" : "vertices/1", + "_rev" : "_cvD8LCC---", + "$label" : "v4 -> v1" } ], - "error" : false, - "code" : 200, - "stats" : { - "writesExecuted" : 0, - "writesIgnored" : 0, - "scannedFull" : 0, - "scannedIndex" : 2, - "filtered" : 0, - "httpRequests" : 0, - "executionTime" : 0.00026894899929175153, - "peakMemoryUsage" : 0 + "error" : false, + "code" : 200, + "stats" : { + "writesExecuted" : 0, + "writesIgnored" : 0, + "scannedFull" : 0, + "scannedIndex" : 2, + "filtered" : 0, + "httpRequests" : 0, + "executionTime" : 0.000343533989507705, + "peakMemoryUsage" : 0 } } diff --git a/3.9/generated/Examples/RestEdgesReadEdgesOut.generated b/3.9/generated/Examples/RestEdgesReadEdgesOut.generated index 2a02c1a0c6..2eb2436441 100644 --- a/3.9/generated/Examples/RestEdgesReadEdgesOut.generated +++ b/3.9/generated/Examples/RestEdgesReadEdgesOut.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/edges/edges?vertex=vertices/1&direction=out +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/edges/edges?vertex=vertices/1&direction=out HTTP/1.1 200 OK content-type: application/json @@ -8,26 +8,26 @@ server: ArangoDB x-content-type-options: nosniff { - "edges" : [ + "edges" : [ { - "_key" : "5", - "_id" : "edges/5", - "_from" : "vertices/1", - "_to" : "vertices/3", - "_rev" : "_cYKLHyy--_", - "$label" : "v1 -> v3" + "_key" : "5", + "_id" : "edges/5", + "_from" : "vertices/1", + "_to" : "vertices/3", + "_rev" : "_cvD8LCe---", + "$label" : "v1 -> v3" } ], - "error" : false, - "code" : 200, - "stats" : { - "writesExecuted" : 0, - "writesIgnored" : 0, - "scannedFull" : 0, - "scannedIndex" : 1, - "filtered" : 0, - "httpRequests" : 0, - "executionTime" : 0.0002968680000776658, - "peakMemoryUsage" : 0 + "error" : false, + "code" : 200, + "stats" : { + "writesExecuted" : 0, + "writesIgnored" : 0, + "scannedFull" : 0, + "scannedIndex" : 1, + "filtered" : 0, + "httpRequests" : 0, + "executionTime" : 0.0005834340117871761, + "peakMemoryUsage" : 0 } } diff --git a/3.9/generated/Examples/RestEndpointGet.generated b/3.9/generated/Examples/RestEndpointGet.generated index b0d3aa4d4c..3572b7bde7 100644 --- a/3.9/generated/Examples/RestEndpointGet.generated +++ b/3.9/generated/Examples/RestEndpointGet.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/endpoint +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/endpoint HTTP/1.1 200 OK content-type: application/json @@ -9,6 +9,6 @@ x-content-type-options: nosniff [ { - "endpoint" : "http://127.0.0.1:26454" + "endpoint" : "http://127.0.0.1:10443" } ] diff --git a/3.9/generated/Examples/RestEngine_rocksdb.generated b/3.9/generated/Examples/RestEngine_rocksdb.generated index cf19ba1fbd..34bb409218 100644 --- a/3.9/generated/Examples/RestEngine_rocksdb.generated +++ b/3.9/generated/Examples/RestEngine_rocksdb.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/engine +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/engine HTTP/1.1 200 OK content-type: application/json @@ -8,23 +8,23 @@ server: ArangoDB x-content-type-options: nosniff { - "name" : "rocksdb", - "supports" : { - "dfdb" : false, - "indexes" : [ - "primary", - "edge", - "hash", - "skiplist", - "ttl", - "persistent", - "geo", - "fulltext" + "name" : "rocksdb", + "supports" : { + "dfdb" : false, + "indexes" : [ + "primary", + "edge", + "hash", + "skiplist", + "ttl", + "persistent", + "geo", + "fulltext" ], - "aliases" : { - "indexes" : { - "skiplist" : "persistent", - "hash" : "persistent" + "aliases" : { + "indexes" : { + "skiplist" : "persistent", + "hash" : "persistent" } } } diff --git a/3.9/generated/Examples/RestExplainAllPlans.generated b/3.9/generated/Examples/RestExplainAllPlans.generated index 489cd3e15a..07529eea55 100644 --- a/3.9/generated/Examples/RestExplainAllPlans.generated +++ b/3.9/generated/Examples/RestExplainAllPlans.generated @@ -1,8 +1,8 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/explain <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/explain <<EOF { - "query" : "FOR p IN products FILTER p.id == 25 RETURN p", - "options" : { - "allPlans" : true + "query" : "FOR p IN products FILTER p.id == 25 RETURN p", + "options" : { + "allPlans" : true } } EOF @@ -10,91 +10,91 @@ EOF HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 1668 +content-length: 1667 server: ArangoDB x-content-type-options: nosniff { - "plans" : [ + "plans" : [ { - "nodes" : [ + "nodes" : [ { - "type" : "SingletonNode", - "dependencies" : [ ], - "id" : 1, - "estimatedCost" : 1, - "estimatedNrItems" : 1 + "type" : "SingletonNode", + "dependencies" : [ ], + "id" : 1, + "estimatedCost" : 1, + "estimatedNrItems" : 1 }, { - "type" : "IndexNode", - "dependencies" : [ + "type" : "IndexNode", + "dependencies" : [ 1 ], - "id" : 6, - "estimatedCost" : 1, - "estimatedNrItems" : 0, - "outVariable" : { - "id" : 0, - "name" : "p", - "isDataFromCollection" : true + "id" : 6, + "estimatedCost" : 1, + "estimatedNrItems" : 0, + "outVariable" : { + "id" : 0, + "name" : "p", + "isDataFromCollection" : true }, - "projections" : [ ], - "count" : false, - "producesResult" : true, - "database" : "_system", - "collection" : "products", - "satellite" : false, - "isSatellite" : false, - "isSatelliteOf" : null, - "needsGatherNodeSort" : false, - "indexCoversProjections" : false, - "indexes" : [ + "projections" : [ ], + "count" : false, + "producesResult" : true, + "database" : "_system", + "collection" : "products", + "satellite" : false, + "isSatellite" : false, + "isSatelliteOf" : null, + "needsGatherNodeSort" : false, + "indexCoversProjections" : false, + "indexes" : [ { - "id" : "67232", - "type" : "hash", - "name" : "idx_1700725489760468993", - "fields" : [ - "id" + "id" : "2754", + "type" : "hash", + "name" : "idx_1707171998636965889", + "fields" : [ + "id" ], - "selectivityEstimate" : 1, - "unique" : false, - "sparse" : false, - "deduplicate" : true, - "estimates" : true + "selectivityEstimate" : 1, + "unique" : false, + "sparse" : false, + "deduplicate" : true, + "estimates" : true } ], - "condition" : { - "type" : "n-ary or", - "typeID" : 63, - "subNodes" : [ + "condition" : { + "type" : "n-ary or", + "typeID" : 63, + "subNodes" : [ { - "type" : "n-ary and", - "typeID" : 62, - "subNodes" : [ + "type" : "n-ary and", + "typeID" : 62, + "subNodes" : [ { - "type" : "compare ==", - "typeID" : 25, - "excludesNull" : false, - "subNodes" : [ + "type" : "compare ==", + "typeID" : 25, + "excludesNull" : false, + "subNodes" : [ { - "type" : "attribute access", - "typeID" : 35, - "name" : "id", - "subNodes" : [ + "type" : "attribute access", + "typeID" : 35, + "name" : "id", + "subNodes" : [ { - "type" : "reference", - "typeID" : 45, - "name" : "p", - "id" : 0 + "type" : "reference", + "typeID" : 45, + "name" : "p", + "id" : 0 } ] }, { - "type" : "value", - "typeID" : 40, - "value" : 25, - "vType" : "int", - "vTypeID" : 2 + "type" : "value", + "typeID" : 40, + "value" : 25, + "vType" : "int", + "vTypeID" : 2 } ] } @@ -102,62 +102,62 @@ x-content-type-options: nosniff } ] }, - "sorted" : true, - "ascending" : true, - "reverse" : false, - "evalFCalls" : true, - "limit" : 0 + "sorted" : true, + "ascending" : true, + "reverse" : false, + "evalFCalls" : true, + "limit" : 0 }, { - "type" : "ReturnNode", - "dependencies" : [ + "type" : "ReturnNode", + "dependencies" : [ 6 ], - "id" : 5, - "estimatedCost" : 1, - "estimatedNrItems" : 0, - "inVariable" : { - "id" : 0, - "name" : "p", - "isDataFromCollection" : true + "id" : 5, + "estimatedCost" : 1, + "estimatedNrItems" : 0, + "inVariable" : { + "id" : 0, + "name" : "p", + "isDataFromCollection" : true }, - "count" : true + "count" : true } ], - "rules" : [ - "use-indexes", - "remove-filter-covered-by-index", - "remove-unnecessary-calculations-2" + "rules" : [ + "use-indexes", + "remove-filter-covered-by-index", + "remove-unnecessary-calculations-2" ], - "collections" : [ + "collections" : [ { - "name" : "products", - "type" : "read" + "name" : "products", + "type" : "read" } ], - "variables" : [ + "variables" : [ { - "id" : 2, - "name" : "1", - "isDataFromCollection" : false + "id" : 2, + "name" : "1", + "isDataFromCollection" : false }, { - "id" : 0, - "name" : "p", - "isDataFromCollection" : true + "id" : 0, + "name" : "p", + "isDataFromCollection" : true } ], - "estimatedCost" : 1, - "estimatedNrItems" : 0, - "isModificationQuery" : false + "estimatedCost" : 1, + "estimatedNrItems" : 0, + "isModificationQuery" : false } ], - "warnings" : [ ], - "stats" : { - "rulesExecuted" : 41, - "rulesSkipped" : 0, - "plansCreated" : 1 + "warnings" : [ ], + "stats" : { + "rulesExecuted" : 41, + "rulesSkipped" : 0, + "plansCreated" : 1 }, - "error" : false, - "code" : 200 + "error" : false, + "code" : 200 } diff --git a/3.9/generated/Examples/RestExplainEmpty.generated b/3.9/generated/Examples/RestExplainEmpty.generated index 9697fe0979..97275f0d7d 100644 --- a/3.9/generated/Examples/RestExplainEmpty.generated +++ b/3.9/generated/Examples/RestExplainEmpty.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/explain <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/explain <<EOF { "query" : "FOR i IN [ 1, 2, 3 ] FILTER 1 == 2 RETURN i" } EOF @@ -10,142 +10,142 @@ server: ArangoDB x-content-type-options: nosniff { - "plan" : { - "nodes" : [ + "plan" : { + "nodes" : [ { - "type" : "SingletonNode", - "dependencies" : [ ], - "id" : 1, - "estimatedCost" : 1, - "estimatedNrItems" : 1 + "type" : "SingletonNode", + "dependencies" : [ ], + "id" : 1, + "estimatedCost" : 1, + "estimatedNrItems" : 1 }, { - "type" : "CalculationNode", - "dependencies" : [ + "type" : "CalculationNode", + "dependencies" : [ 1 ], - "id" : 2, - "estimatedCost" : 2, - "estimatedNrItems" : 1, - "expression" : { - "type" : "array", - "typeID" : 41, - "subNodes" : [ + "id" : 2, + "estimatedCost" : 2, + "estimatedNrItems" : 1, + "expression" : { + "type" : "array", + "typeID" : 41, + "subNodes" : [ { - "type" : "value", - "typeID" : 40, - "value" : 1, - "vType" : "int", - "vTypeID" : 2 + "type" : "value", + "typeID" : 40, + "value" : 1, + "vType" : "int", + "vTypeID" : 2 }, { - "type" : "value", - "typeID" : 40, - "value" : 2, - "vType" : "int", - "vTypeID" : 2 + "type" : "value", + "typeID" : 40, + "value" : 2, + "vType" : "int", + "vTypeID" : 2 }, { - "type" : "value", - "typeID" : 40, - "value" : 3, - "vType" : "int", - "vTypeID" : 2 + "type" : "value", + "typeID" : 40, + "value" : 3, + "vType" : "int", + "vTypeID" : 2 } ] }, - "outVariable" : { - "id" : 2, - "name" : "1", - "isDataFromCollection" : false, - "constantValue" : [ + "outVariable" : { + "id" : 2, + "name" : "1", + "isDataFromCollection" : false, + "constantValue" : [ 1, 2, 3 ] }, - "canThrow" : false, - "expressionType" : "json" + "canThrow" : false, + "expressionType" : "json" }, { - "type" : "EnumerateListNode", - "dependencies" : [ + "type" : "EnumerateListNode", + "dependencies" : [ 2 ], - "id" : 3, - "estimatedCost" : 5, - "estimatedNrItems" : 3, - "inVariable" : { - "id" : 2, - "name" : "1", - "isDataFromCollection" : false, - "constantValue" : [ + "id" : 3, + "estimatedCost" : 5, + "estimatedNrItems" : 3, + "inVariable" : { + "id" : 2, + "name" : "1", + "isDataFromCollection" : false, + "constantValue" : [ 1, 2, 3 ] }, - "outVariable" : { - "id" : 0, - "name" : "i", - "isDataFromCollection" : false + "outVariable" : { + "id" : 0, + "name" : "i", + "isDataFromCollection" : false } }, { - "type" : "NoResultsNode", - "dependencies" : [ + "type" : "NoResultsNode", + "dependencies" : [ 3 ], - "id" : 4, - "estimatedCost" : 0.5, - "estimatedNrItems" : 0 + "id" : 4, + "estimatedCost" : 0.5, + "estimatedNrItems" : 0 }, { - "type" : "ReturnNode", - "dependencies" : [ + "type" : "ReturnNode", + "dependencies" : [ 4 ], - "id" : 5, - "estimatedCost" : 0.5, - "estimatedNrItems" : 0, - "inVariable" : { - "id" : 0, - "name" : "i", - "isDataFromCollection" : false + "id" : 5, + "estimatedCost" : 0.5, + "estimatedNrItems" : 0, + "inVariable" : { + "id" : 0, + "name" : "i", + "isDataFromCollection" : false }, - "count" : true + "count" : true } ], - "rules" : [ ], - "collections" : [ ], - "variables" : [ + "rules" : [ ], + "collections" : [ ], + "variables" : [ { - "id" : 2, - "name" : "1", - "isDataFromCollection" : false, - "constantValue" : [ + "id" : 2, + "name" : "1", + "isDataFromCollection" : false, + "constantValue" : [ 1, 2, 3 ] }, { - "id" : 0, - "name" : "i", - "isDataFromCollection" : false + "id" : 0, + "name" : "i", + "isDataFromCollection" : false } ], - "estimatedCost" : 0.5, - "estimatedNrItems" : 0, - "isModificationQuery" : false + "estimatedCost" : 0.5, + "estimatedNrItems" : 0, + "isModificationQuery" : false }, - "cacheable" : true, - "warnings" : [ ], - "stats" : { - "rulesExecuted" : 41, - "rulesSkipped" : 0, - "plansCreated" : 1 + "cacheable" : true, + "warnings" : [ ], + "stats" : { + "rulesExecuted" : 41, + "rulesSkipped" : 0, + "plansCreated" : 1 }, - "error" : false, - "code" : 200 + "error" : false, + "code" : 200 } diff --git a/3.9/generated/Examples/RestExplainInvalid.generated b/3.9/generated/Examples/RestExplainInvalid.generated index fd0b1fa952..2e9460ca33 100644 --- a/3.9/generated/Examples/RestExplainInvalid.generated +++ b/3.9/generated/Examples/RestExplainInvalid.generated @@ -1,6 +1,6 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/explain <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/explain <<EOF { - "query" : "FOR p IN products FILTER p.id == @id LIMIT 2 RETURN p.n" + "query" : "FOR p IN products FILTER p.id == @id LIMIT 2 RETURN p.n" } EOF @@ -12,8 +12,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 400, - "error" : true, - "errorMessage" : "no value specified for declared bind parameter 'id' (while parsing)", - "errorNum" : 1551 + "code" : 400, + "error" : true, + "errorMessage" : "no value specified for declared bind parameter 'id' (while parsing)", + "errorNum" : 1551 } diff --git a/3.9/generated/Examples/RestExplainOptimizerRules.generated b/3.9/generated/Examples/RestExplainOptimizerRules.generated index d4146c7e59..989d897a9f 100644 --- a/3.9/generated/Examples/RestExplainOptimizerRules.generated +++ b/3.9/generated/Examples/RestExplainOptimizerRules.generated @@ -1,98 +1,98 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/explain <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/explain <<EOF { - "query" : "FOR p IN products LET a = p.id FILTER a == 4 LET name = p.name SORT p.id LIMIT 1 RETURN name" + "query" : "FOR p IN products LET a = p.id FILTER a == 4 LET name = p.name SORT p.id LIMIT 1 RETURN name" } EOF HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 2586 +content-length: 2585 server: ArangoDB x-content-type-options: nosniff { - "plan" : { - "nodes" : [ + "plan" : { + "nodes" : [ { - "type" : "SingletonNode", - "dependencies" : [ ], - "id" : 1, - "estimatedCost" : 1, - "estimatedNrItems" : 1 + "type" : "SingletonNode", + "dependencies" : [ ], + "id" : 1, + "estimatedCost" : 1, + "estimatedNrItems" : 1 }, { - "type" : "IndexNode", - "dependencies" : [ + "type" : "IndexNode", + "dependencies" : [ 1 ], - "id" : 11, - "estimatedCost" : 4.3719280948873624, - "estimatedNrItems" : 1, - "outVariable" : { - "id" : 0, - "name" : "p", - "isDataFromCollection" : true + "id" : 11, + "estimatedCost" : 4.3719280948873624, + "estimatedNrItems" : 1, + "outVariable" : { + "id" : 0, + "name" : "p", + "isDataFromCollection" : true }, - "projections" : [ - "name" + "projections" : [ + "name" ], - "count" : false, - "producesResult" : true, - "database" : "_system", - "collection" : "products", - "satellite" : false, - "isSatellite" : false, - "isSatelliteOf" : null, - "needsGatherNodeSort" : true, - "indexCoversProjections" : false, - "indexes" : [ + "count" : false, + "producesResult" : true, + "database" : "_system", + "collection" : "products", + "satellite" : false, + "isSatellite" : false, + "isSatelliteOf" : null, + "needsGatherNodeSort" : true, + "indexCoversProjections" : false, + "indexes" : [ { - "id" : "67263", - "type" : "skiplist", - "name" : "idx_1700725489786683392", - "fields" : [ - "id" + "id" : "2785", + "type" : "skiplist", + "name" : "idx_1707171998651645953", + "fields" : [ + "id" ], - "selectivityEstimate" : 1, - "unique" : false, - "sparse" : false, - "deduplicate" : true, - "estimates" : true + "selectivityEstimate" : 1, + "unique" : false, + "sparse" : false, + "deduplicate" : true, + "estimates" : true } ], - "condition" : { - "type" : "n-ary or", - "typeID" : 63, - "subNodes" : [ + "condition" : { + "type" : "n-ary or", + "typeID" : 63, + "subNodes" : [ { - "type" : "n-ary and", - "typeID" : 62, - "subNodes" : [ + "type" : "n-ary and", + "typeID" : 62, + "subNodes" : [ { - "type" : "compare ==", - "typeID" : 25, - "excludesNull" : false, - "subNodes" : [ + "type" : "compare ==", + "typeID" : 25, + "excludesNull" : false, + "subNodes" : [ { - "type" : "attribute access", - "typeID" : 35, - "name" : "id", - "subNodes" : [ + "type" : "attribute access", + "typeID" : 35, + "name" : "id", + "subNodes" : [ { - "type" : "reference", - "typeID" : 45, - "name" : "p", - "id" : 0 + "type" : "reference", + "typeID" : 45, + "name" : "p", + "id" : 0 } ] }, { - "type" : "value", - "typeID" : 40, - "value" : 4, - "vType" : "int", - "vTypeID" : 2 + "type" : "value", + "typeID" : 40, + "value" : 4, + "vType" : "int", + "vTypeID" : 2 } ] } @@ -100,125 +100,125 @@ x-content-type-options: nosniff } ] }, - "sorted" : true, - "ascending" : true, - "reverse" : false, - "evalFCalls" : true, - "limit" : 0 + "sorted" : true, + "ascending" : true, + "reverse" : false, + "evalFCalls" : true, + "limit" : 0 }, { - "type" : "LimitNode", - "dependencies" : [ + "type" : "LimitNode", + "dependencies" : [ 11 ], - "id" : 9, - "estimatedCost" : 5.3719280948873624, - "estimatedNrItems" : 1, - "offset" : 0, - "limit" : 1, - "fullCount" : false + "id" : 9, + "estimatedCost" : 5.3719280948873624, + "estimatedNrItems" : 1, + "offset" : 0, + "limit" : 1, + "fullCount" : false }, { - "type" : "CalculationNode", - "dependencies" : [ + "type" : "CalculationNode", + "dependencies" : [ 9 ], - "id" : 6, - "estimatedCost" : 6.3719280948873624, - "estimatedNrItems" : 1, - "expression" : { - "type" : "attribute access", - "typeID" : 35, - "name" : "name", - "subNodes" : [ + "id" : 6, + "estimatedCost" : 6.3719280948873624, + "estimatedNrItems" : 1, + "expression" : { + "type" : "attribute access", + "typeID" : 35, + "name" : "name", + "subNodes" : [ { - "type" : "reference", - "typeID" : 45, - "name" : "p", - "id" : 0 + "type" : "reference", + "typeID" : 45, + "name" : "p", + "id" : 0 } ] }, - "outVariable" : { - "id" : 2, - "name" : "name", - "isDataFromCollection" : false + "outVariable" : { + "id" : 2, + "name" : "name", + "isDataFromCollection" : false }, - "canThrow" : false, - "expressionType" : "attribute" + "canThrow" : false, + "expressionType" : "attribute" }, { - "type" : "ReturnNode", - "dependencies" : [ + "type" : "ReturnNode", + "dependencies" : [ 6 ], - "id" : 10, - "estimatedCost" : 7.3719280948873624, - "estimatedNrItems" : 1, - "inVariable" : { - "id" : 2, - "name" : "name", - "isDataFromCollection" : false + "id" : 10, + "estimatedCost" : 7.3719280948873624, + "estimatedNrItems" : 1, + "inVariable" : { + "id" : 2, + "name" : "name", + "isDataFromCollection" : false }, - "count" : true + "count" : true } ], - "rules" : [ - "move-calculations-up", - "remove-redundant-calculations", - "remove-unnecessary-calculations", - "move-calculations-up-2", - "use-indexes", - "remove-filter-covered-by-index", - "use-index-for-sort", - "remove-unnecessary-calculations-2", - "move-calculations-down", - "reduce-extraction-to-projection" + "rules" : [ + "move-calculations-up", + "remove-redundant-calculations", + "remove-unnecessary-calculations", + "move-calculations-up-2", + "use-indexes", + "remove-filter-covered-by-index", + "use-index-for-sort", + "remove-unnecessary-calculations-2", + "move-calculations-down", + "reduce-extraction-to-projection" ], - "collections" : [ + "collections" : [ { - "name" : "products", - "type" : "read" + "name" : "products", + "type" : "read" } ], - "variables" : [ + "variables" : [ { - "id" : 6, - "name" : "5", - "isDataFromCollection" : false + "id" : 6, + "name" : "5", + "isDataFromCollection" : false }, { - "id" : 4, - "name" : "3", - "isDataFromCollection" : false + "id" : 4, + "name" : "3", + "isDataFromCollection" : false }, { - "id" : 2, - "name" : "name", - "isDataFromCollection" : false + "id" : 2, + "name" : "name", + "isDataFromCollection" : false }, { - "id" : 1, - "name" : "a", - "isDataFromCollection" : false + "id" : 1, + "name" : "a", + "isDataFromCollection" : false }, { - "id" : 0, - "name" : "p", - "isDataFromCollection" : true + "id" : 0, + "name" : "p", + "isDataFromCollection" : true } ], - "estimatedCost" : 7.3719280948873624, - "estimatedNrItems" : 1, - "isModificationQuery" : false + "estimatedCost" : 7.3719280948873624, + "estimatedNrItems" : 1, + "isModificationQuery" : false }, - "cacheable" : true, - "warnings" : [ ], - "stats" : { - "rulesExecuted" : 43, - "rulesSkipped" : 0, - "plansCreated" : 1 + "cacheable" : true, + "warnings" : [ ], + "stats" : { + "rulesExecuted" : 43, + "rulesSkipped" : 0, + "plansCreated" : 1 }, - "error" : false, - "code" : 200 + "error" : false, + "code" : 200 } diff --git a/3.9/generated/Examples/RestExplainOptions.generated b/3.9/generated/Examples/RestExplainOptions.generated index d1d2246a1b..fe2936d957 100644 --- a/3.9/generated/Examples/RestExplainOptions.generated +++ b/3.9/generated/Examples/RestExplainOptions.generated @@ -1,14 +1,14 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/explain <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/explain <<EOF { - "query" : "FOR p IN products LET a = p.id FILTER a == 4 LET name = p.name SORT p.id LIMIT 1 RETURN name", - "options" : { - "maxNumberOfPlans" : 2, - "allPlans" : true, - "optimizer" : { - "rules" : [ - "-all", - "+use-index-for-sort", - "+use-index-range" + "query" : "FOR p IN products LET a = p.id FILTER a == 4 LET name = p.name SORT p.id LIMIT 1 RETURN name", + "options" : { + "maxNumberOfPlans" : 2, + "allPlans" : true, + "optimizer" : { + "rules" : [ + "-all", + "+use-index-for-sort", + "+use-index-range" ] } } @@ -18,279 +18,279 @@ EOF HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 3107 +content-length: 3106 server: ArangoDB x-content-type-options: nosniff { - "plans" : [ + "plans" : [ { - "nodes" : [ + "nodes" : [ { - "type" : "SingletonNode", - "dependencies" : [ ], - "id" : 1, - "estimatedCost" : 1, - "estimatedNrItems" : 1 + "type" : "SingletonNode", + "dependencies" : [ ], + "id" : 1, + "estimatedCost" : 1, + "estimatedNrItems" : 1 }, { - "type" : "IndexNode", - "dependencies" : [ + "type" : "IndexNode", + "dependencies" : [ 1 ], - "id" : 11, - "estimatedCost" : 11, - "estimatedNrItems" : 10, - "outVariable" : { - "id" : 0, - "name" : "p", - "isDataFromCollection" : true + "id" : 11, + "estimatedCost" : 11, + "estimatedNrItems" : 10, + "outVariable" : { + "id" : 0, + "name" : "p", + "isDataFromCollection" : true }, - "projections" : [ ], - "count" : false, - "producesResult" : true, - "database" : "_system", - "collection" : "products", - "satellite" : false, - "isSatellite" : false, - "isSatelliteOf" : null, - "needsGatherNodeSort" : true, - "indexCoversProjections" : false, - "indexes" : [ + "projections" : [ ], + "count" : false, + "producesResult" : true, + "database" : "_system", + "collection" : "products", + "satellite" : false, + "isSatellite" : false, + "isSatelliteOf" : null, + "needsGatherNodeSort" : true, + "indexCoversProjections" : false, + "indexes" : [ { - "id" : "67296", - "type" : "skiplist", - "name" : "idx_1700725489802412032", - "fields" : [ - "id" + "id" : "2818", + "type" : "skiplist", + "name" : "idx_1707171998661083136", + "fields" : [ + "id" ], - "selectivityEstimate" : 1, - "unique" : false, - "sparse" : false, - "deduplicate" : true, - "estimates" : true + "selectivityEstimate" : 1, + "unique" : false, + "sparse" : false, + "deduplicate" : true, + "estimates" : true } ], - "condition" : { + "condition" : { }, - "sorted" : true, - "ascending" : true, - "reverse" : false, - "evalFCalls" : true, - "limit" : 0 + "sorted" : true, + "ascending" : true, + "reverse" : false, + "evalFCalls" : true, + "limit" : 0 }, { - "type" : "CalculationNode", - "dependencies" : [ + "type" : "CalculationNode", + "dependencies" : [ 11 ], - "id" : 3, - "estimatedCost" : 21, - "estimatedNrItems" : 10, - "expression" : { - "type" : "attribute access", - "typeID" : 35, - "name" : "id", - "subNodes" : [ + "id" : 3, + "estimatedCost" : 21, + "estimatedNrItems" : 10, + "expression" : { + "type" : "attribute access", + "typeID" : 35, + "name" : "id", + "subNodes" : [ { - "type" : "reference", - "typeID" : 45, - "name" : "p", - "id" : 0 + "type" : "reference", + "typeID" : 45, + "name" : "p", + "id" : 0 } ] }, - "outVariable" : { - "id" : 1, - "name" : "a", - "isDataFromCollection" : false + "outVariable" : { + "id" : 1, + "name" : "a", + "isDataFromCollection" : false }, - "canThrow" : false, - "expressionType" : "attribute" + "canThrow" : false, + "expressionType" : "attribute" }, { - "type" : "CalculationNode", - "dependencies" : [ + "type" : "CalculationNode", + "dependencies" : [ 3 ], - "id" : 4, - "estimatedCost" : 31, - "estimatedNrItems" : 10, - "expression" : { - "type" : "compare ==", - "typeID" : 25, - "excludesNull" : false, - "subNodes" : [ + "id" : 4, + "estimatedCost" : 31, + "estimatedNrItems" : 10, + "expression" : { + "type" : "compare ==", + "typeID" : 25, + "excludesNull" : false, + "subNodes" : [ { - "type" : "reference", - "typeID" : 45, - "name" : "a", - "id" : 1 + "type" : "reference", + "typeID" : 45, + "name" : "a", + "id" : 1 }, { - "type" : "value", - "typeID" : 40, - "value" : 4, - "vType" : "int", - "vTypeID" : 2 + "type" : "value", + "typeID" : 40, + "value" : 4, + "vType" : "int", + "vTypeID" : 2 } ] }, - "outVariable" : { - "id" : 4, - "name" : "3", - "isDataFromCollection" : false + "outVariable" : { + "id" : 4, + "name" : "3", + "isDataFromCollection" : false }, - "canThrow" : false, - "expressionType" : "simple" + "canThrow" : false, + "expressionType" : "simple" }, { - "type" : "FilterNode", - "dependencies" : [ + "type" : "FilterNode", + "dependencies" : [ 4 ], - "id" : 5, - "estimatedCost" : 41, - "estimatedNrItems" : 10, - "inVariable" : { - "id" : 4, - "name" : "3", - "isDataFromCollection" : false + "id" : 5, + "estimatedCost" : 41, + "estimatedNrItems" : 10, + "inVariable" : { + "id" : 4, + "name" : "3", + "isDataFromCollection" : false } }, { - "type" : "CalculationNode", - "dependencies" : [ + "type" : "CalculationNode", + "dependencies" : [ 5 ], - "id" : 6, - "estimatedCost" : 51, - "estimatedNrItems" : 10, - "expression" : { - "type" : "attribute access", - "typeID" : 35, - "name" : "name", - "subNodes" : [ + "id" : 6, + "estimatedCost" : 51, + "estimatedNrItems" : 10, + "expression" : { + "type" : "attribute access", + "typeID" : 35, + "name" : "name", + "subNodes" : [ { - "type" : "reference", - "typeID" : 45, - "name" : "p", - "id" : 0 + "type" : "reference", + "typeID" : 45, + "name" : "p", + "id" : 0 } ] }, - "outVariable" : { - "id" : 2, - "name" : "name", - "isDataFromCollection" : false + "outVariable" : { + "id" : 2, + "name" : "name", + "isDataFromCollection" : false }, - "canThrow" : false, - "expressionType" : "attribute" + "canThrow" : false, + "expressionType" : "attribute" }, { - "type" : "CalculationNode", - "dependencies" : [ + "type" : "CalculationNode", + "dependencies" : [ 6 ], - "id" : 7, - "estimatedCost" : 61, - "estimatedNrItems" : 10, - "expression" : { - "type" : "attribute access", - "typeID" : 35, - "name" : "id", - "subNodes" : [ + "id" : 7, + "estimatedCost" : 61, + "estimatedNrItems" : 10, + "expression" : { + "type" : "attribute access", + "typeID" : 35, + "name" : "id", + "subNodes" : [ { - "type" : "reference", - "typeID" : 45, - "name" : "p", - "id" : 0 + "type" : "reference", + "typeID" : 45, + "name" : "p", + "id" : 0 } ] }, - "outVariable" : { - "id" : 6, - "name" : "5", - "isDataFromCollection" : false + "outVariable" : { + "id" : 6, + "name" : "5", + "isDataFromCollection" : false }, - "canThrow" : false, - "expressionType" : "attribute" + "canThrow" : false, + "expressionType" : "attribute" }, { - "type" : "LimitNode", - "dependencies" : [ + "type" : "LimitNode", + "dependencies" : [ 7 ], - "id" : 9, - "estimatedCost" : 62, - "estimatedNrItems" : 1, - "offset" : 0, - "limit" : 1, - "fullCount" : false + "id" : 9, + "estimatedCost" : 62, + "estimatedNrItems" : 1, + "offset" : 0, + "limit" : 1, + "fullCount" : false }, { - "type" : "ReturnNode", - "dependencies" : [ + "type" : "ReturnNode", + "dependencies" : [ 9 ], - "id" : 10, - "estimatedCost" : 63, - "estimatedNrItems" : 1, - "inVariable" : { - "id" : 2, - "name" : "name", - "isDataFromCollection" : false + "id" : 10, + "estimatedCost" : 63, + "estimatedNrItems" : 1, + "inVariable" : { + "id" : 2, + "name" : "name", + "isDataFromCollection" : false }, - "count" : true + "count" : true } ], - "rules" : [ - "use-index-for-sort" + "rules" : [ + "use-index-for-sort" ], - "collections" : [ + "collections" : [ { - "name" : "products", - "type" : "read" + "name" : "products", + "type" : "read" } ], - "variables" : [ + "variables" : [ { - "id" : 6, - "name" : "5", - "isDataFromCollection" : false + "id" : 6, + "name" : "5", + "isDataFromCollection" : false }, { - "id" : 4, - "name" : "3", - "isDataFromCollection" : false + "id" : 4, + "name" : "3", + "isDataFromCollection" : false }, { - "id" : 2, - "name" : "name", - "isDataFromCollection" : false + "id" : 2, + "name" : "name", + "isDataFromCollection" : false }, { - "id" : 1, - "name" : "a", - "isDataFromCollection" : false + "id" : 1, + "name" : "a", + "isDataFromCollection" : false }, { - "id" : 0, - "name" : "p", - "isDataFromCollection" : true + "id" : 0, + "name" : "p", + "isDataFromCollection" : true } ], - "estimatedCost" : 63, - "estimatedNrItems" : 1, - "isModificationQuery" : false + "estimatedCost" : 63, + "estimatedNrItems" : 1, + "isModificationQuery" : false } ], - "warnings" : [ ], - "stats" : { - "rulesExecuted" : 4, - "rulesSkipped" : 37, - "plansCreated" : 1 + "warnings" : [ ], + "stats" : { + "rulesExecuted" : 4, + "rulesSkipped" : 37, + "plansCreated" : 1 }, - "error" : false, - "code" : 200 + "error" : false, + "code" : 200 } diff --git a/3.9/generated/Examples/RestExplainValid.generated b/3.9/generated/Examples/RestExplainValid.generated index 9b7e0531d5..1747d0142d 100644 --- a/3.9/generated/Examples/RestExplainValid.generated +++ b/3.9/generated/Examples/RestExplainValid.generated @@ -1,6 +1,6 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/explain <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/explain <<EOF { - "query" : "FOR p IN products RETURN p" + "query" : "FOR p IN products RETURN p" } EOF @@ -12,83 +12,83 @@ server: ArangoDB x-content-type-options: nosniff { - "plan" : { - "nodes" : [ + "plan" : { + "nodes" : [ { - "type" : "SingletonNode", - "dependencies" : [ ], - "id" : 1, - "estimatedCost" : 1, - "estimatedNrItems" : 1 + "type" : "SingletonNode", + "dependencies" : [ ], + "id" : 1, + "estimatedCost" : 1, + "estimatedNrItems" : 1 }, { - "type" : "EnumerateCollectionNode", - "dependencies" : [ + "type" : "EnumerateCollectionNode", + "dependencies" : [ 1 ], - "id" : 2, - "estimatedCost" : 12, - "estimatedNrItems" : 10, - "random" : false, - "indexHint" : { - "forced" : false, - "type" : "none" + "id" : 2, + "estimatedCost" : 12, + "estimatedNrItems" : 10, + "random" : false, + "indexHint" : { + "forced" : false, + "type" : "none" }, - "outVariable" : { - "id" : 0, - "name" : "p", - "isDataFromCollection" : true + "outVariable" : { + "id" : 0, + "name" : "p", + "isDataFromCollection" : true }, - "projections" : [ ], - "count" : false, - "producesResult" : true, - "database" : "_system", - "collection" : "products", - "satellite" : false, - "isSatellite" : false, - "isSatelliteOf" : null + "projections" : [ ], + "count" : false, + "producesResult" : true, + "database" : "_system", + "collection" : "products", + "satellite" : false, + "isSatellite" : false, + "isSatelliteOf" : null }, { - "type" : "ReturnNode", - "dependencies" : [ + "type" : "ReturnNode", + "dependencies" : [ 2 ], - "id" : 3, - "estimatedCost" : 22, - "estimatedNrItems" : 10, - "inVariable" : { - "id" : 0, - "name" : "p", - "isDataFromCollection" : true + "id" : 3, + "estimatedCost" : 22, + "estimatedNrItems" : 10, + "inVariable" : { + "id" : 0, + "name" : "p", + "isDataFromCollection" : true }, - "count" : true + "count" : true } ], - "rules" : [ ], - "collections" : [ + "rules" : [ ], + "collections" : [ { - "name" : "products", - "type" : "read" + "name" : "products", + "type" : "read" } ], - "variables" : [ + "variables" : [ { - "id" : 0, - "name" : "p", - "isDataFromCollection" : true + "id" : 0, + "name" : "p", + "isDataFromCollection" : true } ], - "estimatedCost" : 22, - "estimatedNrItems" : 10, - "isModificationQuery" : false + "estimatedCost" : 22, + "estimatedNrItems" : 10, + "isModificationQuery" : false }, - "cacheable" : true, - "warnings" : [ ], - "stats" : { - "rulesExecuted" : 41, - "rulesSkipped" : 0, - "plansCreated" : 1 + "cacheable" : true, + "warnings" : [ ], + "stats" : { + "rulesExecuted" : 41, + "rulesSkipped" : 0, + "plansCreated" : 1 }, - "error" : false, - "code" : 200 + "error" : false, + "code" : 200 } diff --git a/3.9/generated/Examples/RestExplainWarning.generated b/3.9/generated/Examples/RestExplainWarning.generated index 8b237a4e7e..26ef77496f 100644 --- a/3.9/generated/Examples/RestExplainWarning.generated +++ b/3.9/generated/Examples/RestExplainWarning.generated @@ -1,6 +1,6 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/explain <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/explain <<EOF { - "query" : "FOR i IN 1..10 RETURN 1 / 0" + "query" : "FOR i IN 1..10 RETURN 1 / 0" } EOF @@ -12,150 +12,150 @@ server: ArangoDB x-content-type-options: nosniff { - "plan" : { - "nodes" : [ + "plan" : { + "nodes" : [ { - "type" : "SingletonNode", - "dependencies" : [ ], - "id" : 1, - "estimatedCost" : 1, - "estimatedNrItems" : 1 + "type" : "SingletonNode", + "dependencies" : [ ], + "id" : 1, + "estimatedCost" : 1, + "estimatedNrItems" : 1 }, { - "type" : "CalculationNode", - "dependencies" : [ + "type" : "CalculationNode", + "dependencies" : [ 1 ], - "id" : 2, - "estimatedCost" : 2, - "estimatedNrItems" : 1, - "expression" : { - "type" : "range", - "typeID" : 49, - "subNodes" : [ + "id" : 2, + "estimatedCost" : 2, + "estimatedNrItems" : 1, + "expression" : { + "type" : "range", + "typeID" : 49, + "subNodes" : [ { - "type" : "value", - "typeID" : 40, - "value" : 1, - "vType" : "int", - "vTypeID" : 2 + "type" : "value", + "typeID" : 40, + "value" : 1, + "vType" : "int", + "vTypeID" : 2 }, { - "type" : "value", - "typeID" : 40, - "value" : 10, - "vType" : "int", - "vTypeID" : 2 + "type" : "value", + "typeID" : 40, + "value" : 10, + "vType" : "int", + "vTypeID" : 2 } ] }, - "outVariable" : { - "id" : 2, - "name" : "1", - "isDataFromCollection" : false + "outVariable" : { + "id" : 2, + "name" : "1", + "isDataFromCollection" : false }, - "canThrow" : false, - "expressionType" : "simple" + "canThrow" : false, + "expressionType" : "simple" }, { - "type" : "CalculationNode", - "dependencies" : [ + "type" : "CalculationNode", + "dependencies" : [ 2 ], - "id" : 4, - "estimatedCost" : 3, - "estimatedNrItems" : 1, - "expression" : { - "type" : "value", - "typeID" : 40, - "value" : null, - "vType" : "null", - "vTypeID" : 0 + "id" : 4, + "estimatedCost" : 3, + "estimatedNrItems" : 1, + "expression" : { + "type" : "value", + "typeID" : 40, + "value" : null, + "vType" : "null", + "vTypeID" : 0 }, - "outVariable" : { - "id" : 4, - "name" : "3", - "isDataFromCollection" : false, - "constantValue" : null + "outVariable" : { + "id" : 4, + "name" : "3", + "isDataFromCollection" : false, + "constantValue" : null }, - "canThrow" : false, - "expressionType" : "json" + "canThrow" : false, + "expressionType" : "json" }, { - "type" : "EnumerateListNode", - "dependencies" : [ + "type" : "EnumerateListNode", + "dependencies" : [ 4 ], - "id" : 3, - "estimatedCost" : 13, - "estimatedNrItems" : 10, - "inVariable" : { - "id" : 2, - "name" : "1", - "isDataFromCollection" : false + "id" : 3, + "estimatedCost" : 13, + "estimatedNrItems" : 10, + "inVariable" : { + "id" : 2, + "name" : "1", + "isDataFromCollection" : false }, - "outVariable" : { - "id" : 0, - "name" : "i", - "isDataFromCollection" : false + "outVariable" : { + "id" : 0, + "name" : "i", + "isDataFromCollection" : false } }, { - "type" : "ReturnNode", - "dependencies" : [ + "type" : "ReturnNode", + "dependencies" : [ 3 ], - "id" : 5, - "estimatedCost" : 23, - "estimatedNrItems" : 10, - "inVariable" : { - "id" : 4, - "name" : "3", - "isDataFromCollection" : false, - "constantValue" : null + "id" : 5, + "estimatedCost" : 23, + "estimatedNrItems" : 10, + "inVariable" : { + "id" : 4, + "name" : "3", + "isDataFromCollection" : false, + "constantValue" : null }, - "count" : true + "count" : true } ], - "rules" : [ - "move-calculations-up", - "move-calculations-up-2" + "rules" : [ + "move-calculations-up", + "move-calculations-up-2" ], - "collections" : [ ], - "variables" : [ + "collections" : [ ], + "variables" : [ { - "id" : 4, - "name" : "3", - "isDataFromCollection" : false, - "constantValue" : null + "id" : 4, + "name" : "3", + "isDataFromCollection" : false, + "constantValue" : null }, { - "id" : 2, - "name" : "1", - "isDataFromCollection" : false + "id" : 2, + "name" : "1", + "isDataFromCollection" : false }, { - "id" : 0, - "name" : "i", - "isDataFromCollection" : false + "id" : 0, + "name" : "i", + "isDataFromCollection" : false } ], - "estimatedCost" : 23, - "estimatedNrItems" : 10, - "isModificationQuery" : false + "estimatedCost" : 23, + "estimatedNrItems" : 10, + "isModificationQuery" : false }, - "cacheable" : false, - "warnings" : [ + "cacheable" : false, + "warnings" : [ { - "code" : 1562, - "message" : "division by zero" + "code" : 1562, + "message" : "division by zero" } ], - "stats" : { - "rulesExecuted" : 41, - "rulesSkipped" : 0, - "plansCreated" : 1 + "stats" : { + "rulesExecuted" : 41, + "rulesSkipped" : 0, + "plansCreated" : 1 }, - "error" : false, - "code" : 200 + "error" : false, + "code" : 200 } diff --git a/3.9/generated/Examples/RestFetchAllUser.generated b/3.9/generated/Examples/RestFetchAllUser.generated index a3da11cc52..15c2f9d050 100644 --- a/3.9/generated/Examples/RestFetchAllUser.generated +++ b/3.9/generated/Examples/RestFetchAllUser.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/user +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/user HTTP/1.1 200 OK content-type: application/json @@ -8,25 +8,25 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "result" : [ + "error" : false, + "code" : 200, + "result" : [ { - "user" : "tester", - "active" : false, - "extra" : { + "user" : "admin", + "active" : true, + "extra" : { } }, { - "user" : "admin", - "active" : true, - "extra" : { + "user" : "tester", + "active" : false, + "extra" : { } }, { - "user" : "root", - "active" : true, - "extra" : { + "user" : "root", + "active" : true, + "extra" : { } } ] diff --git a/3.9/generated/Examples/RestFetchUser.generated b/3.9/generated/Examples/RestFetchUser.generated index 7314ad8fa8..3dc6b0b602 100644 --- a/3.9/generated/Examples/RestFetchUser.generated +++ b/3.9/generated/Examples/RestFetchUser.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/user/admin@myapp +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/user/admin@myapp HTTP/1.1 200 OK content-type: application/json @@ -8,10 +8,10 @@ server: ArangoDB x-content-type-options: nosniff { - "user" : "admin@myapp", - "active" : true, - "extra" : { + "user" : "admin@myapp", + "active" : true, + "extra" : { }, - "error" : false, - "code" : 200 + "error" : false, + "code" : 200 } diff --git a/3.9/generated/Examples/RestFetchUserCollectionPermission.generated b/3.9/generated/Examples/RestFetchUserCollectionPermission.generated index 17ee0c4e95..c0727d0bdc 100644 --- a/3.9/generated/Examples/RestFetchUserCollectionPermission.generated +++ b/3.9/generated/Examples/RestFetchUserCollectionPermission.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/user/anotherAdmin@secapp/database/_system/_users +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/user/anotherAdmin@secapp/database/_system/_users HTTP/1.1 200 OK content-type: application/json @@ -8,7 +8,7 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "result" : "none" + "error" : false, + "code" : 200, + "result" : "none" } diff --git a/3.9/generated/Examples/RestFetchUserDatabaseList.generated b/3.9/generated/Examples/RestFetchUserDatabaseList.generated index b5df938dea..8e99698d99 100644 --- a/3.9/generated/Examples/RestFetchUserDatabaseList.generated +++ b/3.9/generated/Examples/RestFetchUserDatabaseList.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/user/anotherAdmin@secapp/database/ +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/user/anotherAdmin@secapp/database/ HTTP/1.1 200 OK content-type: application/json @@ -8,9 +8,9 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "result" : { - "_system" : "rw" + "error" : false, + "code" : 200, + "result" : { + "_system" : "rw" } } diff --git a/3.9/generated/Examples/RestFetchUserDatabaseListFull.generated b/3.9/generated/Examples/RestFetchUserDatabaseListFull.generated index 8494ff90f0..793e130b9e 100644 --- a/3.9/generated/Examples/RestFetchUserDatabaseListFull.generated +++ b/3.9/generated/Examples/RestFetchUserDatabaseListFull.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/user/anotherAdmin@secapp/database?full=true +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/user/anotherAdmin@secapp/database?full=true HTTP/1.1 200 OK content-type: application/json @@ -8,31 +8,31 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "result" : { - "_system" : { - "permission" : "rw", - "collections" : { - "demo" : "undefined", - "animals" : "undefined", - "_users" : "undefined", - "_graphs" : "undefined", - "_statistics" : "undefined", - "_statistics15" : "undefined", - "_statisticsRaw" : "undefined", - "_analyzers" : "undefined", - "_aqlfunctions" : "undefined", - "_queues" : "undefined", - "_jobs" : "undefined", - "_apps" : "undefined", - "_appbundles" : "undefined", - "_frontend" : "undefined", - "*" : "undefined" + "error" : false, + "code" : 200, + "result" : { + "_system" : { + "permission" : "rw", + "collections" : { + "_frontend" : "undefined", + "_appbundles" : "undefined", + "_apps" : "undefined", + "_jobs" : "undefined", + "_queues" : "undefined", + "animals" : "undefined", + "_aqlfunctions" : "undefined", + "_analyzers" : "undefined", + "demo" : "undefined", + "_statisticsRaw" : "undefined", + "_statistics15" : "undefined", + "_graphs" : "undefined", + "_users" : "undefined", + "_statistics" : "undefined", + "*" : "undefined" } }, - "*" : { - "permission" : "none" + "*" : { + "permission" : "none" } } } diff --git a/3.9/generated/Examples/RestFetchUserDatabasePermission.generated b/3.9/generated/Examples/RestFetchUserDatabasePermission.generated index 9a29a05b58..54a3035807 100644 --- a/3.9/generated/Examples/RestFetchUserDatabasePermission.generated +++ b/3.9/generated/Examples/RestFetchUserDatabasePermission.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/user/anotherAdmin@secapp/database/_system +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/user/anotherAdmin@secapp/database/_system HTTP/1.1 200 OK content-type: application/json @@ -8,7 +8,7 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "result" : "rw" + "error" : false, + "code" : 200, + "result" : "rw" } diff --git a/3.9/generated/Examples/RestGetResponsibleShardExample_cluster.generated b/3.9/generated/Examples/RestGetResponsibleShardExample_cluster.generated index bec05d6a54..3d9c74bcee 100644 --- a/3.9/generated/Examples/RestGetResponsibleShardExample_cluster.generated +++ b/3.9/generated/Examples/RestGetResponsibleShardExample_cluster.generated @@ -1,4 +1,4 @@ -shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/collection/testCollection/responsibleShard <<EOF +shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/collection/testCollection/responsibleShard <<EOF {"_key":"testkey","value":23} EOF @@ -11,7 +11,7 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "shardId" : "s10044" + "error" : false, + "code" : 200, + "shardId" : "s10048" } diff --git a/3.9/generated/Examples/RestGetShardsWithDetails_cluster.generated b/3.9/generated/Examples/RestGetShardsWithDetails_cluster.generated index bbc5cac7a8..2251804496 100644 --- a/3.9/generated/Examples/RestGetShardsWithDetails_cluster.generated +++ b/3.9/generated/Examples/RestGetShardsWithDetails_cluster.generated @@ -1,11 +1,11 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/testCollection/shards?details=true +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/testCollection/shards?details=true HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 843 +content-length: 841 location: /_api/collection/testCollection/shards server: ArangoDB x-content-type-options: nosniff -"{\"error\":false,\"code\":200,\"waitForSync\":false,\"shards\":{\"s10046\":[\"PRMR-4d8adaf4-2013-4880-a728-dda30484cdcb\",\"PRMR-53725bb7-efe6-4712-9a45-1419a21d7931\"],\"s10047\":[\"PRMR-53725bb7-efe6-4712-9a45-1419a21d7931\",\"PRMR-4d8adaf4-2013-4880-a728-dda30484cdcb\"],\"s10048\":[\"PRMR-4d8adaf4-2013-4880-a728-dda30484cdcb\",\"PRMR-53725bb7-efe6-4712-9a45-1419a21d7931\"]},\"shardingStrategy\":\"hash\",\"shardKeys\":[\"_key\"],\"usesRevisionsAsDocumentIds\":true,\"schema\":null,\"writeConcern\":1,\"syncByRevision\":true,\"replicationFactor\":2,\"numberOfShards\":3,\"id\":\"10045\",\"name\":\"testCollection\",\"isDisjoint\":false,\"minReplicationFactor\":1,\"status\":3,\"type\":2,\"globallyUniqueId\":\"c10045/\",\"isSmart\":false,\"isSystem\":false,\"isSmartChild\":false,\"statusString\":\"loaded\",\"cacheEnabled\":false,\"keyOptions\":{\"allowUserKeys\":true,\"type\":\"traditional\"},\"minRevision\":\"_Zz3k4-----\"}" +"{\"error\":false,\"code\":200,\"shards\":{\"s10050\":[\"PRMR-fa4fa176-dfb0-41aa-9a1c-52c238355ab4\",\"PRMR-a4d4125b-83d4-425b-a7af-1c3ac36a7370\"],\"s10051\":[\"PRMR-a4d4125b-83d4-425b-a7af-1c3ac36a7370\",\"PRMR-fa4fa176-dfb0-41aa-9a1c-52c238355ab4\"],\"s10052\":[\"PRMR-fa4fa176-dfb0-41aa-9a1c-52c238355ab4\",\"PRMR-a4d4125b-83d4-425b-a7af-1c3ac36a7370\"]},\"id\":\"10049\",\"waitForSync\":false,\"syncByRevision\":true,\"replicationFactor\":2,\"usesRevisionsAsDocumentIds\":true,\"statusString\":\"loaded\",\"numberOfShards\":3,\"shardingStrategy\":\"hash\",\"internalValidatorType\":0,\"minReplicationFactor\":1,\"keyOptions\":{\"allowUserKeys\":true,\"type\":\"traditional\"},\"schema\":null,\"isDisjoint\":false,\"name\":\"testCollection\",\"isSmartChild\":false,\"isSmart\":false,\"globallyUniqueId\":\"c10049/\",\"cacheEnabled\":false,\"writeConcern\":1,\"isSystem\":false,\"type\":2,\"shardKeys\":[\"_key\"],\"status\":3}" diff --git a/3.9/generated/Examples/RestGetShards_cluster.generated b/3.9/generated/Examples/RestGetShards_cluster.generated index ffbcf41795..0c88a47f57 100644 --- a/3.9/generated/Examples/RestGetShards_cluster.generated +++ b/3.9/generated/Examples/RestGetShards_cluster.generated @@ -1,11 +1,11 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/testCollection/shards +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/testCollection/shards HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 573 +content-length: 571 location: /_api/collection/testCollection/shards server: ArangoDB x-content-type-options: nosniff -"{\"error\":false,\"code\":200,\"waitForSync\":false,\"shards\":[\"s10050\",\"s10051\",\"s10052\"],\"shardingStrategy\":\"hash\",\"shardKeys\":[\"_key\"],\"usesRevisionsAsDocumentIds\":true,\"schema\":null,\"writeConcern\":1,\"syncByRevision\":true,\"replicationFactor\":2,\"numberOfShards\":3,\"id\":\"10049\",\"name\":\"testCollection\",\"isDisjoint\":false,\"minReplicationFactor\":1,\"status\":3,\"type\":2,\"globallyUniqueId\":\"c10049/\",\"isSmart\":false,\"isSystem\":false,\"isSmartChild\":false,\"statusString\":\"loaded\",\"cacheEnabled\":false,\"keyOptions\":{\"allowUserKeys\":true,\"type\":\"traditional\"},\"minRevision\":\"_Zz3k4-----\"}" +"{\"error\":false,\"code\":200,\"shards\":[\"s10054\",\"s10055\",\"s10056\"],\"id\":\"10053\",\"waitForSync\":false,\"syncByRevision\":true,\"replicationFactor\":2,\"usesRevisionsAsDocumentIds\":true,\"statusString\":\"loaded\",\"numberOfShards\":3,\"shardingStrategy\":\"hash\",\"internalValidatorType\":0,\"minReplicationFactor\":1,\"keyOptions\":{\"allowUserKeys\":true,\"type\":\"traditional\"},\"schema\":null,\"isDisjoint\":false,\"name\":\"testCollection\",\"isSmartChild\":false,\"isSmart\":false,\"globallyUniqueId\":\"c10053/\",\"cacheEnabled\":false,\"writeConcern\":1,\"isSystem\":false,\"type\":2,\"shardKeys\":[\"_key\"],\"status\":3}" diff --git a/3.9/generated/Examples/RestGrantCollection.generated b/3.9/generated/Examples/RestGrantCollection.generated index d92b623c64..084460d7bb 100644 --- a/3.9/generated/Examples/RestGrantCollection.generated +++ b/3.9/generated/Examples/RestGrantCollection.generated @@ -1,6 +1,6 @@ -shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/user/admin@myapp/database/_system/reports <<EOF +shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/user/admin@myapp/database/_system/reports <<EOF { - "grant" : "rw" + "grant" : "rw" } EOF @@ -12,7 +12,7 @@ server: ArangoDB x-content-type-options: nosniff { - "_system/reports" : "rw", - "error" : false, - "code" : 200 + "_system/reports" : "rw", + "error" : false, + "code" : 200 } diff --git a/3.9/generated/Examples/RestGrantDatabase.generated b/3.9/generated/Examples/RestGrantDatabase.generated index bfe2bc7cef..f64bd2188b 100644 --- a/3.9/generated/Examples/RestGrantDatabase.generated +++ b/3.9/generated/Examples/RestGrantDatabase.generated @@ -1,6 +1,6 @@ -shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/user/admin@myapp/database/_system <<EOF +shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/user/admin@myapp/database/_system <<EOF { - "grant" : "rw" + "grant" : "rw" } EOF @@ -12,7 +12,7 @@ server: ArangoDB x-content-type-options: nosniff { - "_system" : "rw", - "error" : false, - "code" : 200 + "_system" : "rw", + "error" : false, + "code" : 200 } diff --git a/3.9/generated/Examples/RestImportCsvEdge.generated b/3.9/generated/Examples/RestImportCsvEdge.generated index b92ed2af42..8df95600fe 100644 --- a/3.9/generated/Examples/RestImportCsvEdge.generated +++ b/3.9/generated/Examples/RestImportCsvEdge.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=links <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=links <<EOF [ "_from", "_to", "name" ] [ "products/123","products/234", "some name" ] [ "products/332", "products/abc", "other name" ] @@ -12,10 +12,10 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "created" : 2, - "errors" : 0, - "empty" : 0, - "updated" : 0, - "ignored" : 0 + "error" : false, + "created" : 2, + "errors" : 0, + "empty" : 0, + "updated" : 0, + "ignored" : 0 } diff --git a/3.9/generated/Examples/RestImportCsvEdgeInvalid.generated b/3.9/generated/Examples/RestImportCsvEdgeInvalid.generated index 25458adc54..ff6e6192d1 100644 --- a/3.9/generated/Examples/RestImportCsvEdgeInvalid.generated +++ b/3.9/generated/Examples/RestImportCsvEdgeInvalid.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=links&details=true <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=links&details=true <<EOF [ "name" ] [ "some name" ] [ "other name" ] @@ -12,14 +12,14 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "created" : 0, - "errors" : 2, - "empty" : 0, - "updated" : 0, - "ignored" : 0, - "details" : [ - "at position 1: missing '_from' or '_to' attribute, offending document: {\"name\":\"some name\"}", - "at position 2: missing '_from' or '_to' attribute, offending document: {\"name\":\"other name\"}" + "error" : false, + "created" : 0, + "errors" : 2, + "empty" : 0, + "updated" : 0, + "ignored" : 0, + "details" : [ + "at position 1: missing '_from' or '_to' attribute, offending document: {\"name\":\"some name\"}", + "at position 2: missing '_from' or '_to' attribute, offending document: {\"name\":\"other name\"}" ] } diff --git a/3.9/generated/Examples/RestImportCsvExample.generated b/3.9/generated/Examples/RestImportCsvExample.generated index 357e96871a..c7551fc8ce 100644 --- a/3.9/generated/Examples/RestImportCsvExample.generated +++ b/3.9/generated/Examples/RestImportCsvExample.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products <<EOF [ "_key", "value1", "value2" ] [ "abc", 25, "test" ] @@ -13,10 +13,10 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "created" : 2, - "errors" : 0, - "empty" : 1, - "updated" : 0, - "ignored" : 0 + "error" : false, + "created" : 2, + "errors" : 0, + "empty" : 1, + "updated" : 0, + "ignored" : 0 } diff --git a/3.9/generated/Examples/RestImportCsvInvalidBody.generated b/3.9/generated/Examples/RestImportCsvInvalidBody.generated index 4677a9c54b..220bc9fcb0 100644 --- a/3.9/generated/Examples/RestImportCsvInvalidBody.generated +++ b/3.9/generated/Examples/RestImportCsvInvalidBody.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products <<EOF { "_key": "foo", "value1": "bar" } EOF @@ -10,8 +10,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 400, - "error" : true, - "errorMessage" : "no JSON array found in second line", - "errorNum" : 400 + "code" : 400, + "error" : true, + "errorMessage" : "no JSON array found in second line", + "errorNum" : 400 } diff --git a/3.9/generated/Examples/RestImportCsvInvalidCollection.generated b/3.9/generated/Examples/RestImportCsvInvalidCollection.generated index ac358b41bb..0fa393a916 100644 --- a/3.9/generated/Examples/RestImportCsvInvalidCollection.generated +++ b/3.9/generated/Examples/RestImportCsvInvalidCollection.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products <<EOF [ "_key", "value1", "value2" ] [ "abc", 25, "test" ] ["foo", "bar", "baz" ] @@ -12,8 +12,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 404, - "error" : true, - "errorMessage" : "collection or view not found: products", - "errorNum" : 1203 + "code" : 404, + "error" : true, + "errorMessage" : "collection or view not found: products", + "errorNum" : 1203 } diff --git a/3.9/generated/Examples/RestImportCsvUniqueContinue.generated b/3.9/generated/Examples/RestImportCsvUniqueContinue.generated index 1b756ad253..e2d15f175b 100644 --- a/3.9/generated/Examples/RestImportCsvUniqueContinue.generated +++ b/3.9/generated/Examples/RestImportCsvUniqueContinue.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products&details=true <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products&details=true <<EOF [ "_key", "value1", "value2" ] [ "abc", 25, "test" ] ["abc", "bar", "baz" ] @@ -12,13 +12,13 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "created" : 1, - "errors" : 1, - "empty" : 0, - "updated" : 0, - "ignored" : 0, - "details" : [ - "at position 1: creating document failed with error 'unique constraint violated', offending document: {\"_key\":\"abc\",\"value1\":\"bar\",\"value2\":\"baz\"}" + "error" : false, + "created" : 1, + "errors" : 1, + "empty" : 0, + "updated" : 0, + "ignored" : 0, + "details" : [ + "at position 1: creating document failed with error 'unique constraint violated', offending document: {\"_key\":\"abc\",\"value1\":\"bar\",\"value2\":\"baz\"}" ] } diff --git a/3.9/generated/Examples/RestImportCsvUniqueFail.generated b/3.9/generated/Examples/RestImportCsvUniqueFail.generated index 0fb0fd883f..133899d820 100644 --- a/3.9/generated/Examples/RestImportCsvUniqueFail.generated +++ b/3.9/generated/Examples/RestImportCsvUniqueFail.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products&complete=true <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products&complete=true <<EOF [ "_key", "value1", "value2" ] [ "abc", 25, "test" ] ["abc", "bar", "baz" ] @@ -12,8 +12,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 409, - "error" : true, - "errorMessage" : "unique constraint violated", - "errorNum" : 1210 + "code" : 409, + "error" : true, + "errorMessage" : "unique constraint violated", + "errorNum" : 1210 } diff --git a/3.9/generated/Examples/RestImportJsonEdge.generated b/3.9/generated/Examples/RestImportJsonEdge.generated index 2a3fd74c35..b24789bc6d 100644 --- a/3.9/generated/Examples/RestImportJsonEdge.generated +++ b/3.9/generated/Examples/RestImportJsonEdge.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=links&type=documents <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=links&type=documents <<EOF { "_from": "products/123", "_to": "products/234" } {"_from": "products/332", "_to": "products/abc", "name": "other name" } EOF @@ -11,10 +11,10 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "created" : 2, - "errors" : 0, - "empty" : 0, - "updated" : 0, - "ignored" : 0 + "error" : false, + "created" : 2, + "errors" : 0, + "empty" : 0, + "updated" : 0, + "ignored" : 0 } diff --git a/3.9/generated/Examples/RestImportJsonEdgeInvalid.generated b/3.9/generated/Examples/RestImportJsonEdgeInvalid.generated index 7adba9368e..0585cd52cc 100644 --- a/3.9/generated/Examples/RestImportJsonEdgeInvalid.generated +++ b/3.9/generated/Examples/RestImportJsonEdgeInvalid.generated @@ -1,7 +1,7 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=links&type=list&details=true <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=links&type=list&details=true <<EOF [ { - "name" : "some name" + "name" : "some name" } ] EOF @@ -14,13 +14,13 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "created" : 0, - "errors" : 1, - "empty" : 0, - "updated" : 0, - "ignored" : 0, - "details" : [ - "at position 1: missing '_from' or '_to' attribute, offending document: {\"name\":\"some name\"}" + "error" : false, + "created" : 0, + "errors" : 1, + "empty" : 0, + "updated" : 0, + "ignored" : 0, + "details" : [ + "at position 1: missing '_from' or '_to' attribute, offending document: {\"name\":\"some name\"}" ] } diff --git a/3.9/generated/Examples/RestImportJsonInvalidBody.generated b/3.9/generated/Examples/RestImportJsonInvalidBody.generated index 45a50bd772..d5adbf7ee5 100644 --- a/3.9/generated/Examples/RestImportJsonInvalidBody.generated +++ b/3.9/generated/Examples/RestImportJsonInvalidBody.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products&type=list <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products&type=list <<EOF { } EOF @@ -10,8 +10,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 400, - "error" : true, - "errorMessage" : "expecting a JSON array in the request", - "errorNum" : 400 + "code" : 400, + "error" : true, + "errorMessage" : "expecting a JSON array in the request", + "errorNum" : 400 } diff --git a/3.9/generated/Examples/RestImportJsonInvalidCollection.generated b/3.9/generated/Examples/RestImportJsonInvalidCollection.generated index a8d0555242..b8cf6d8726 100644 --- a/3.9/generated/Examples/RestImportJsonInvalidCollection.generated +++ b/3.9/generated/Examples/RestImportJsonInvalidCollection.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products&type=documents <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products&type=documents <<EOF { "name": "test" } EOF @@ -10,8 +10,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 404, - "error" : true, - "errorMessage" : "collection or view not found: products", - "errorNum" : 1203 + "code" : 404, + "error" : true, + "errorMessage" : "collection or view not found: products", + "errorNum" : 1203 } diff --git a/3.9/generated/Examples/RestImportJsonLines.generated b/3.9/generated/Examples/RestImportJsonLines.generated index 955c42ec7b..d07356cfb3 100644 --- a/3.9/generated/Examples/RestImportJsonLines.generated +++ b/3.9/generated/Examples/RestImportJsonLines.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products&type=documents <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products&type=documents <<EOF { "_key": "abc", "value1": 25, "value2": "test","allowed": true } { "_key": "foo", "name": "baz" } @@ -14,10 +14,10 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "created" : 3, - "errors" : 0, - "empty" : 1, - "updated" : 0, - "ignored" : 0 + "error" : false, + "created" : 3, + "errors" : 0, + "empty" : 1, + "updated" : 0, + "ignored" : 0 } diff --git a/3.9/generated/Examples/RestImportJsonList.generated b/3.9/generated/Examples/RestImportJsonList.generated index 29ba70ab85..d2e81cbcdf 100644 --- a/3.9/generated/Examples/RestImportJsonList.generated +++ b/3.9/generated/Examples/RestImportJsonList.generated @@ -1,19 +1,19 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products&type=list <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products&type=list <<EOF [ { - "_key" : "abc", - "value1" : 25, - "value2" : "test", - "allowed" : true + "_key" : "abc", + "value1" : 25, + "value2" : "test", + "allowed" : true }, { - "_key" : "foo", - "name" : "baz" + "_key" : "foo", + "name" : "baz" }, { - "name" : { - "detailed" : "detailed name", - "short" : "short name" + "name" : { + "detailed" : "detailed name", + "short" : "short name" } } ] @@ -27,10 +27,10 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "created" : 3, - "errors" : 0, - "empty" : 0, - "updated" : 0, - "ignored" : 0 + "error" : false, + "created" : 3, + "errors" : 0, + "empty" : 0, + "updated" : 0, + "ignored" : 0 } diff --git a/3.9/generated/Examples/RestImportJsonType.generated b/3.9/generated/Examples/RestImportJsonType.generated index 2793820a30..150a96c0df 100644 --- a/3.9/generated/Examples/RestImportJsonType.generated +++ b/3.9/generated/Examples/RestImportJsonType.generated @@ -1,19 +1,19 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products&type=auto <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products&type=auto <<EOF [ { - "_key" : "abc", - "value1" : 25, - "value2" : "test", - "allowed" : true + "_key" : "abc", + "value1" : 25, + "value2" : "test", + "allowed" : true }, { - "_key" : "foo", - "name" : "baz" + "_key" : "foo", + "name" : "baz" }, { - "name" : { - "detailed" : "detailed name", - "short" : "short name" + "name" : { + "detailed" : "detailed name", + "short" : "short name" } } ] @@ -27,10 +27,10 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "created" : 3, - "errors" : 0, - "empty" : 0, - "updated" : 0, - "ignored" : 0 + "error" : false, + "created" : 3, + "errors" : 0, + "empty" : 0, + "updated" : 0, + "ignored" : 0 } diff --git a/3.9/generated/Examples/RestImportJsonUniqueContinue.generated b/3.9/generated/Examples/RestImportJsonUniqueContinue.generated index ec2b9862e4..ff573c05e5 100644 --- a/3.9/generated/Examples/RestImportJsonUniqueContinue.generated +++ b/3.9/generated/Examples/RestImportJsonUniqueContinue.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products&type=documents&details=true <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products&type=documents&details=true <<EOF { "_key": "abc", "value1": 25, "value2": "test" } { "_key": "abc", "value1": "bar", "value2": "baz" } EOF @@ -11,13 +11,13 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "created" : 1, - "errors" : 1, - "empty" : 0, - "updated" : 0, - "ignored" : 0, - "details" : [ - "at position 1: creating document failed with error 'unique constraint violated', offending document: {\"_key\":\"abc\",\"value1\":\"bar\",\"value2\":\"baz\"}" + "error" : false, + "created" : 1, + "errors" : 1, + "empty" : 0, + "updated" : 0, + "ignored" : 0, + "details" : [ + "at position 1: creating document failed with error 'unique constraint violated', offending document: {\"_key\":\"abc\",\"value1\":\"bar\",\"value2\":\"baz\"}" ] } diff --git a/3.9/generated/Examples/RestImportJsonUniqueFail.generated b/3.9/generated/Examples/RestImportJsonUniqueFail.generated index 9308bfe6cf..b6eb800eb8 100644 --- a/3.9/generated/Examples/RestImportJsonUniqueFail.generated +++ b/3.9/generated/Examples/RestImportJsonUniqueFail.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products&type=documents&complete=true <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products&type=documents&complete=true <<EOF { "_key": "abc", "value1": 25, "value2": "test" } { "_key": "abc", "value1": "bar", "value2": "baz" } EOF @@ -11,8 +11,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 409, - "error" : true, - "errorMessage" : "unique constraint violated", - "errorNum" : 1210 + "code" : 409, + "error" : true, + "errorMessage" : "unique constraint violated", + "errorNum" : 1210 } diff --git a/3.9/generated/Examples/RestIndexAllIndexes.generated b/3.9/generated/Examples/RestIndexAllIndexes.generated index 4cd19016d2..beb9a53ce3 100644 --- a/3.9/generated/Examples/RestIndexAllIndexes.generated +++ b/3.9/generated/Examples/RestIndexAllIndexes.generated @@ -1,91 +1,91 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/index?collection=products +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/index?collection=products HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 1075 +content-length: 1069 server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "indexes" : [ + "error" : false, + "code" : 200, + "indexes" : [ { - "fields" : [ - "_key" + "fields" : [ + "_key" ], - "id" : "products/0", - "name" : "primary", - "selectivityEstimate" : 1, - "sparse" : false, - "type" : "primary", - "unique" : true + "id" : "products/0", + "name" : "primary", + "selectivityEstimate" : 1, + "sparse" : false, + "type" : "primary", + "unique" : true }, { - "deduplicate" : true, - "estimates" : true, - "fields" : [ - "name" + "deduplicate" : true, + "estimates" : true, + "fields" : [ + "name" ], - "id" : "products/67547", - "name" : "idx_1700725489956552704", - "selectivityEstimate" : 1, - "sparse" : false, - "type" : "hash", - "unique" : false + "id" : "products/3069", + "name" : "idx_1707171998762795008", + "selectivityEstimate" : 1, + "sparse" : false, + "type" : "hash", + "unique" : false }, { - "deduplicate" : true, - "estimates" : true, - "fields" : [ - "price" + "deduplicate" : true, + "estimates" : true, + "fields" : [ + "price" ], - "id" : "products/67551", - "name" : "idx_1700725489956552705", - "selectivityEstimate" : 1, - "sparse" : true, - "type" : "skiplist", - "unique" : false + "id" : "products/3073", + "name" : "idx_1707171998762795009", + "selectivityEstimate" : 1, + "sparse" : true, + "type" : "skiplist", + "unique" : false } ], - "identifiers" : { - "products/0" : { - "fields" : [ - "_key" + "identifiers" : { + "products/0" : { + "fields" : [ + "_key" ], - "id" : "products/0", - "name" : "primary", - "selectivityEstimate" : 1, - "sparse" : false, - "type" : "primary", - "unique" : true + "id" : "products/0", + "name" : "primary", + "selectivityEstimate" : 1, + "sparse" : false, + "type" : "primary", + "unique" : true }, - "products/67547" : { - "deduplicate" : true, - "estimates" : true, - "fields" : [ - "name" + "products/3069" : { + "deduplicate" : true, + "estimates" : true, + "fields" : [ + "name" ], - "id" : "products/67547", - "name" : "idx_1700725489956552704", - "selectivityEstimate" : 1, - "sparse" : false, - "type" : "hash", - "unique" : false + "id" : "products/3069", + "name" : "idx_1707171998762795008", + "selectivityEstimate" : 1, + "sparse" : false, + "type" : "hash", + "unique" : false }, - "products/67551" : { - "deduplicate" : true, - "estimates" : true, - "fields" : [ - "price" + "products/3073" : { + "deduplicate" : true, + "estimates" : true, + "fields" : [ + "price" ], - "id" : "products/67551", - "name" : "idx_1700725489956552705", - "selectivityEstimate" : 1, - "sparse" : true, - "type" : "skiplist", - "unique" : false + "id" : "products/3073", + "name" : "idx_1707171998762795009", + "selectivityEstimate" : 1, + "sparse" : true, + "type" : "skiplist", + "unique" : false } } } diff --git a/3.9/generated/Examples/RestIndexCreateGeoLatitudeLongitude.generated b/3.9/generated/Examples/RestIndexCreateGeoLatitudeLongitude.generated index 0ddce1f305..2144a28e5d 100644 --- a/3.9/generated/Examples/RestIndexCreateGeoLatitudeLongitude.generated +++ b/3.9/generated/Examples/RestIndexCreateGeoLatitudeLongitude.generated @@ -1,9 +1,9 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/index?collection=products <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/index?collection=products <<EOF { - "type" : "geo", - "fields" : [ - "e", - "f" + "type" : "geo", + "fields" : [ + "e", + "f" ] } EOF @@ -11,25 +11,25 @@ EOF HTTP/1.1 201 Created content-type: application/json connection: Keep-Alive -content-length: 245 +content-length: 244 server: ArangoDB x-content-type-options: nosniff { - "bestIndexedLevel" : 17, - "fields" : [ - "e", - "f" + "bestIndexedLevel" : 17, + "fields" : [ + "e", + "f" ], - "geoJson" : false, - "id" : "products/67563", - "isNewlyCreated" : true, - "maxNumCoverCells" : 8, - "name" : "idx_1700725489962844161", - "sparse" : true, - "type" : "geo", - "unique" : false, - "worstIndexedLevel" : 4, - "error" : false, - "code" : 201 + "geoJson" : false, + "id" : "products/3085", + "isNewlyCreated" : true, + "maxNumCoverCells" : 8, + "name" : "idx_1707171998766989313", + "sparse" : true, + "type" : "geo", + "unique" : false, + "worstIndexedLevel" : 4, + "error" : false, + "code" : 201 } diff --git a/3.9/generated/Examples/RestIndexCreateGeoLocation.generated b/3.9/generated/Examples/RestIndexCreateGeoLocation.generated index e7681c514d..d0ba6c4d39 100644 --- a/3.9/generated/Examples/RestIndexCreateGeoLocation.generated +++ b/3.9/generated/Examples/RestIndexCreateGeoLocation.generated @@ -1,8 +1,8 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/index?collection=products <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/index?collection=products <<EOF { - "type" : "geo", - "fields" : [ - "b" + "type" : "geo", + "fields" : [ + "b" ] } EOF @@ -10,24 +10,24 @@ EOF HTTP/1.1 201 Created content-type: application/json connection: Keep-Alive -content-length: 241 +content-length: 240 server: ArangoDB x-content-type-options: nosniff { - "bestIndexedLevel" : 17, - "fields" : [ - "b" + "bestIndexedLevel" : 17, + "fields" : [ + "b" ], - "geoJson" : false, - "id" : "products/67574", - "isNewlyCreated" : true, - "maxNumCoverCells" : 8, - "name" : "idx_1700725489968087041", - "sparse" : true, - "type" : "geo", - "unique" : false, - "worstIndexedLevel" : 4, - "error" : false, - "code" : 201 + "geoJson" : false, + "id" : "products/3096", + "isNewlyCreated" : true, + "maxNumCoverCells" : 8, + "name" : "idx_1707171998769086465", + "sparse" : true, + "type" : "geo", + "unique" : false, + "worstIndexedLevel" : 4, + "error" : false, + "code" : 201 } diff --git a/3.9/generated/Examples/RestIndexCreateNewFulltext.generated b/3.9/generated/Examples/RestIndexCreateNewFulltext.generated index 7ad1f7db80..4b247efcad 100644 --- a/3.9/generated/Examples/RestIndexCreateNewFulltext.generated +++ b/3.9/generated/Examples/RestIndexCreateNewFulltext.generated @@ -1,8 +1,8 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/index?collection=products <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/index?collection=products <<EOF { - "type" : "fulltext", - "fields" : [ - "text" + "type" : "fulltext", + "fields" : [ + "text" ] } EOF @@ -10,21 +10,21 @@ EOF HTTP/1.1 201 Created content-type: application/json connection: Keep-Alive -content-length: 182 +content-length: 181 server: ArangoDB x-content-type-options: nosniff { - "fields" : [ - "text" + "fields" : [ + "text" ], - "id" : "products/67585", - "isNewlyCreated" : true, - "minLength" : 2, - "name" : "idx_1700725489972281345", - "sparse" : true, - "type" : "fulltext", - "unique" : false, - "error" : false, - "code" : 201 + "id" : "products/3107", + "isNewlyCreated" : true, + "minLength" : 2, + "name" : "idx_1707171998772232193", + "sparse" : true, + "type" : "fulltext", + "unique" : false, + "error" : false, + "code" : 201 } diff --git a/3.9/generated/Examples/RestIndexCreateNewHashIndex.generated b/3.9/generated/Examples/RestIndexCreateNewHashIndex.generated index 205fb42a66..95b5677292 100644 --- a/3.9/generated/Examples/RestIndexCreateNewHashIndex.generated +++ b/3.9/generated/Examples/RestIndexCreateNewHashIndex.generated @@ -1,10 +1,10 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/index?collection=products <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/index?collection=products <<EOF { - "type" : "hash", - "unique" : false, - "fields" : [ - "a", - "b" + "type" : "hash", + "unique" : false, + "fields" : [ + "a", + "b" ] } EOF @@ -12,24 +12,24 @@ EOF HTTP/1.1 201 Created content-type: application/json connection: Keep-Alive -content-length: 226 +content-length: 225 server: ArangoDB x-content-type-options: nosniff { - "deduplicate" : true, - "estimates" : true, - "fields" : [ - "a", - "b" + "deduplicate" : true, + "estimates" : true, + "fields" : [ + "a", + "b" ], - "id" : "products/67596", - "isNewlyCreated" : true, - "name" : "idx_1700725489977524224", - "selectivityEstimate" : 1, - "sparse" : false, - "type" : "hash", - "unique" : false, - "error" : false, - "code" : 201 + "id" : "products/3118", + "isNewlyCreated" : true, + "name" : "idx_1707171998775377920", + "selectivityEstimate" : 1, + "sparse" : false, + "type" : "hash", + "unique" : false, + "error" : false, + "code" : 201 } diff --git a/3.9/generated/Examples/RestIndexCreateNewPersistent.generated b/3.9/generated/Examples/RestIndexCreateNewPersistent.generated index 94675d62de..c52f0fd3f3 100644 --- a/3.9/generated/Examples/RestIndexCreateNewPersistent.generated +++ b/3.9/generated/Examples/RestIndexCreateNewPersistent.generated @@ -1,10 +1,10 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/index?collection=products <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/index?collection=products <<EOF { - "type" : "persistent", - "unique" : false, - "fields" : [ - "a", - "b" + "type" : "persistent", + "unique" : false, + "fields" : [ + "a", + "b" ] } EOF @@ -12,24 +12,24 @@ EOF HTTP/1.1 201 Created content-type: application/json connection: Keep-Alive -content-length: 232 +content-length: 231 server: ArangoDB x-content-type-options: nosniff { - "deduplicate" : true, - "estimates" : true, - "fields" : [ - "a", - "b" + "deduplicate" : true, + "estimates" : true, + "fields" : [ + "a", + "b" ], - "id" : "products/67607", - "isNewlyCreated" : true, - "name" : "idx_1700725489981718529", - "selectivityEstimate" : 1, - "sparse" : false, - "type" : "persistent", - "unique" : false, - "error" : false, - "code" : 201 + "id" : "products/3129", + "isNewlyCreated" : true, + "name" : "idx_1707171998778523648", + "selectivityEstimate" : 1, + "sparse" : false, + "type" : "persistent", + "unique" : false, + "error" : false, + "code" : 201 } diff --git a/3.9/generated/Examples/RestIndexCreateNewSkiplist.generated b/3.9/generated/Examples/RestIndexCreateNewSkiplist.generated index 63f13521bd..ac8820d21b 100644 --- a/3.9/generated/Examples/RestIndexCreateNewSkiplist.generated +++ b/3.9/generated/Examples/RestIndexCreateNewSkiplist.generated @@ -1,10 +1,10 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/index?collection=products <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/index?collection=products <<EOF { - "type" : "skiplist", - "unique" : false, - "fields" : [ - "a", - "b" + "type" : "skiplist", + "unique" : false, + "fields" : [ + "a", + "b" ] } EOF @@ -12,24 +12,24 @@ EOF HTTP/1.1 201 Created content-type: application/json connection: Keep-Alive -content-length: 230 +content-length: 229 server: ArangoDB x-content-type-options: nosniff { - "deduplicate" : true, - "estimates" : true, - "fields" : [ - "a", - "b" + "deduplicate" : true, + "estimates" : true, + "fields" : [ + "a", + "b" ], - "id" : "products/67618", - "isNewlyCreated" : true, - "name" : "idx_1700725489988009985", - "selectivityEstimate" : 1, - "sparse" : false, - "type" : "skiplist", - "unique" : false, - "error" : false, - "code" : 201 + "id" : "products/3140", + "isNewlyCreated" : true, + "name" : "idx_1707171998781669377", + "selectivityEstimate" : 1, + "sparse" : false, + "type" : "skiplist", + "unique" : false, + "error" : false, + "code" : 201 } diff --git a/3.9/generated/Examples/RestIndexCreateNewTtlIndex.generated b/3.9/generated/Examples/RestIndexCreateNewTtlIndex.generated index 1323116a4d..5660520939 100644 --- a/3.9/generated/Examples/RestIndexCreateNewTtlIndex.generated +++ b/3.9/generated/Examples/RestIndexCreateNewTtlIndex.generated @@ -1,9 +1,9 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/index?collection=sessions <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/index?collection=sessions <<EOF { - "type" : "ttl", - "expireAfter" : 3600, - "fields" : [ - "createdAt" + "type" : "ttl", + "expireAfter" : 3600, + "fields" : [ + "createdAt" ] } EOF @@ -11,21 +11,21 @@ EOF HTTP/1.1 201 Created content-type: application/json connection: Keep-Alive -content-length: 187 +content-length: 186 server: ArangoDB x-content-type-options: nosniff { - "expireAfter" : 3600, - "fields" : [ - "createdAt" + "expireAfter" : 3600, + "fields" : [ + "createdAt" ], - "id" : "sessions/67629", - "isNewlyCreated" : true, - "name" : "idx_1700725489996398592", - "sparse" : true, - "type" : "ttl", - "unique" : false, - "error" : false, - "code" : 201 + "id" : "sessions/3151", + "isNewlyCreated" : true, + "name" : "idx_1707171998786912256", + "sparse" : true, + "type" : "ttl", + "unique" : false, + "error" : false, + "code" : 201 } diff --git a/3.9/generated/Examples/RestIndexCreateNewUniqueConstraint.generated b/3.9/generated/Examples/RestIndexCreateNewUniqueConstraint.generated index a6ef8cc71c..b6e73d7e1a 100644 --- a/3.9/generated/Examples/RestIndexCreateNewUniqueConstraint.generated +++ b/3.9/generated/Examples/RestIndexCreateNewUniqueConstraint.generated @@ -1,10 +1,10 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/index?collection=products <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/index?collection=products <<EOF { - "type" : "hash", - "unique" : true, - "fields" : [ - "a", - "b" + "type" : "hash", + "unique" : true, + "fields" : [ + "a", + "b" ] } EOF @@ -12,24 +12,24 @@ EOF HTTP/1.1 201 Created content-type: application/json connection: Keep-Alive -content-length: 225 +content-length: 224 server: ArangoDB x-content-type-options: nosniff { - "deduplicate" : true, - "estimates" : true, - "fields" : [ - "a", - "b" + "deduplicate" : true, + "estimates" : true, + "fields" : [ + "a", + "b" ], - "id" : "products/67640", - "isNewlyCreated" : true, - "name" : "idx_1700725490001641472", - "selectivityEstimate" : 1, - "sparse" : false, - "type" : "hash", - "unique" : true, - "error" : false, - "code" : 201 + "id" : "products/3162", + "isNewlyCreated" : true, + "name" : "idx_1707171998791106561", + "selectivityEstimate" : 1, + "sparse" : false, + "type" : "hash", + "unique" : true, + "error" : false, + "code" : 201 } diff --git a/3.9/generated/Examples/RestIndexCreateSparseHashIndex.generated b/3.9/generated/Examples/RestIndexCreateSparseHashIndex.generated index 56366efb6c..aeebbc44fa 100644 --- a/3.9/generated/Examples/RestIndexCreateSparseHashIndex.generated +++ b/3.9/generated/Examples/RestIndexCreateSparseHashIndex.generated @@ -1,10 +1,10 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/index?collection=products <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/index?collection=products <<EOF { - "type" : "hash", - "unique" : false, - "sparse" : true, - "fields" : [ - "a" + "type" : "hash", + "unique" : false, + "sparse" : true, + "fields" : [ + "a" ] } EOF @@ -12,23 +12,23 @@ EOF HTTP/1.1 201 Created content-type: application/json connection: Keep-Alive -content-length: 221 +content-length: 220 server: ArangoDB x-content-type-options: nosniff { - "deduplicate" : true, - "estimates" : true, - "fields" : [ - "a" + "deduplicate" : true, + "estimates" : true, + "fields" : [ + "a" ], - "id" : "products/67651", - "isNewlyCreated" : true, - "name" : "idx_1700725490006884352", - "selectivityEstimate" : 1, - "sparse" : true, - "type" : "hash", - "unique" : false, - "error" : false, - "code" : 201 + "id" : "products/3173", + "isNewlyCreated" : true, + "name" : "idx_1707171998795300865", + "selectivityEstimate" : 1, + "sparse" : true, + "type" : "hash", + "unique" : false, + "error" : false, + "code" : 201 } diff --git a/3.9/generated/Examples/RestIndexCreateSparsePersistent.generated b/3.9/generated/Examples/RestIndexCreateSparsePersistent.generated index 0b53a0696c..019e812e32 100644 --- a/3.9/generated/Examples/RestIndexCreateSparsePersistent.generated +++ b/3.9/generated/Examples/RestIndexCreateSparsePersistent.generated @@ -1,10 +1,10 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/index?collection=products <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/index?collection=products <<EOF { - "type" : "persistent", - "unique" : false, - "sparse" : true, - "fields" : [ - "a" + "type" : "persistent", + "unique" : false, + "sparse" : true, + "fields" : [ + "a" ] } EOF @@ -12,23 +12,23 @@ EOF HTTP/1.1 201 Created content-type: application/json connection: Keep-Alive -content-length: 227 +content-length: 226 server: ArangoDB x-content-type-options: nosniff { - "deduplicate" : true, - "estimates" : true, - "fields" : [ - "a" + "deduplicate" : true, + "estimates" : true, + "fields" : [ + "a" ], - "id" : "products/67662", - "isNewlyCreated" : true, - "name" : "idx_1700725490013175808", - "selectivityEstimate" : 1, - "sparse" : true, - "type" : "persistent", - "unique" : false, - "error" : false, - "code" : 201 + "id" : "products/3184", + "isNewlyCreated" : true, + "name" : "idx_1707171998799495168", + "selectivityEstimate" : 1, + "sparse" : true, + "type" : "persistent", + "unique" : false, + "error" : false, + "code" : 201 } diff --git a/3.9/generated/Examples/RestIndexCreateSparseSkiplist.generated b/3.9/generated/Examples/RestIndexCreateSparseSkiplist.generated index 9b1dd9c304..93dfed8d95 100644 --- a/3.9/generated/Examples/RestIndexCreateSparseSkiplist.generated +++ b/3.9/generated/Examples/RestIndexCreateSparseSkiplist.generated @@ -1,10 +1,10 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/index?collection=products <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/index?collection=products <<EOF { - "type" : "skiplist", - "unique" : false, - "sparse" : true, - "fields" : [ - "a" + "type" : "skiplist", + "unique" : false, + "sparse" : true, + "fields" : [ + "a" ] } EOF @@ -12,23 +12,23 @@ EOF HTTP/1.1 201 Created content-type: application/json connection: Keep-Alive -content-length: 225 +content-length: 224 server: ArangoDB x-content-type-options: nosniff { - "deduplicate" : true, - "estimates" : true, - "fields" : [ - "a" + "deduplicate" : true, + "estimates" : true, + "fields" : [ + "a" ], - "id" : "products/67673", - "isNewlyCreated" : true, - "name" : "idx_1700725490018418688", - "selectivityEstimate" : 1, - "sparse" : true, - "type" : "skiplist", - "unique" : false, - "error" : false, - "code" : 201 + "id" : "products/3195", + "isNewlyCreated" : true, + "name" : "idx_1707171998802640896", + "selectivityEstimate" : 1, + "sparse" : true, + "type" : "skiplist", + "unique" : false, + "error" : false, + "code" : 201 } diff --git a/3.9/generated/Examples/RestIndexDeleteUniqueSkiplist.generated b/3.9/generated/Examples/RestIndexDeleteUniqueSkiplist.generated index 434b03878d..9950730fad 100644 --- a/3.9/generated/Examples/RestIndexDeleteUniqueSkiplist.generated +++ b/3.9/generated/Examples/RestIndexDeleteUniqueSkiplist.generated @@ -1,14 +1,14 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/index/products/67684 +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/index/products/3206 HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 48 +content-length: 47 server: ArangoDB x-content-type-options: nosniff { - "id" : "products/67684", - "error" : false, - "code" : 200 + "id" : "products/3206", + "error" : false, + "code" : 200 } diff --git a/3.9/generated/Examples/RestIndexPrimaryIndex.generated b/3.9/generated/Examples/RestIndexPrimaryIndex.generated index 02797d04fe..8f6de466a0 100644 --- a/3.9/generated/Examples/RestIndexPrimaryIndex.generated +++ b/3.9/generated/Examples/RestIndexPrimaryIndex.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/index/products/0 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/index/products/0 HTTP/1.1 200 OK content-type: application/json @@ -8,14 +8,14 @@ server: ArangoDB x-content-type-options: nosniff { - "fields" : [ - "_key" + "fields" : [ + "_key" ], - "id" : "products/0", - "name" : "primary", - "sparse" : false, - "type" : "primary", - "unique" : true, - "error" : false, - "code" : 200 + "id" : "products/0", + "name" : "primary", + "sparse" : false, + "type" : "primary", + "unique" : true, + "error" : false, + "code" : 200 } diff --git a/3.9/generated/Examples/RestPregelCancelConnectedComponents.generated b/3.9/generated/Examples/RestPregelCancelConnectedComponents.generated index 4fa1c63f47..899237a884 100644 --- a/3.9/generated/Examples/RestPregelCancelConnectedComponents.generated +++ b/3.9/generated/Examples/RestPregelCancelConnectedComponents.generated @@ -1,4 +1,4 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/control_pregel/67826 +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/control_pregel/3348 HTTP/1.1 200 OK content-type: application/json @@ -7,4 +7,4 @@ content-length: 2 server: ArangoDB x-content-type-options: nosniff -"" +"" diff --git a/3.9/generated/Examples/RestPregelStartConnectedComponents.generated b/3.9/generated/Examples/RestPregelStartConnectedComponents.generated index d64fc377f2..4cf254ca71 100644 --- a/3.9/generated/Examples/RestPregelStartConnectedComponents.generated +++ b/3.9/generated/Examples/RestPregelStartConnectedComponents.generated @@ -1,10 +1,10 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/control_pregel <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/control_pregel <<EOF { - "algorithm" : "wcc", - "graphName" : "connectedComponentsGraph", - "params" : { - "maxGSS" : 36, - "resultField" : "component" + "algorithm" : "wcc", + "graphName" : "connectedComponentsGraph", + "params" : { + "maxGSS" : 36, + "resultField" : "component" } } EOF @@ -12,8 +12,8 @@ EOF HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 7 +content-length: 6 server: ArangoDB x-content-type-options: nosniff -"67972" +"3494" diff --git a/3.9/generated/Examples/RestPregelStatusConnectedComponents.generated b/3.9/generated/Examples/RestPregelStatusConnectedComponents.generated index e2a24fc0d2..ad35d61b83 100644 --- a/3.9/generated/Examples/RestPregelStatusConnectedComponents.generated +++ b/3.9/generated/Examples/RestPregelStatusConnectedComponents.generated @@ -1,25 +1,30 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/control_pregel/68119 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/control_pregel/3641 HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 315 +content-length: 394 server: ArangoDB x-content-type-options: nosniff { - "state" : "done", - "gss" : 36, - "totalRuntime" : 0.0024285316467285156, - "startupTime" : 0.0004892349243164062, - "computationTime" : 0.001180410385131836, - "storageTime" : 0.0007607936859130859, - "aggregators" : { + "id" : "3641", + "database" : "_system", + "algorithm" : "WCC", + "created" : "2021-08-04T14:08:09Z", + "expires" : "2021-08-04T14:18:09Z", + "ttl" : 600, + "state" : "done", + "gss" : 11, + "totalRuntime" : 0.0021059513092041016, + "startupTime" : 0.0003509521484375, + "computationTime" : 0.0010118484497070312, + "storageTime" : 0.0007450580596923828, + "aggregators" : { }, - "sendCount" : 487, - "receivedCount" : 483, - "reports" : [ ], - "vertexCount" : 36, - "edgeCount" : 36, - "parallelism" : "(non-representable type none)" + "sendCount" : 370, + "receivedCount" : 370, + "reports" : [ ], + "vertexCount" : 36, + "edgeCount" : 36 } diff --git a/3.9/generated/Examples/RestQueryInvalid.generated b/3.9/generated/Examples/RestQueryInvalid.generated index 3777ddb947..f3a109910e 100644 --- a/3.9/generated/Examples/RestQueryInvalid.generated +++ b/3.9/generated/Examples/RestQueryInvalid.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/query <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/query <<EOF { "query" : "FOR i IN 1..100 FILTER i = 1 LIMIT 2 RETURN i * 3" } EOF @@ -10,8 +10,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 400, - "error" : true, - "errorMessage" : "syntax error, unexpected assignment near '= 1 LIMIT 2 RETURN i * 3' at position 1:26", - "errorNum" : 1501 + "code" : 400, + "error" : true, + "errorMessage" : "syntax error, unexpected assignment near '= 1 LIMIT 2 RETURN i * 3' at position 1:26", + "errorNum" : 1501 } diff --git a/3.9/generated/Examples/RestQueryValid.generated b/3.9/generated/Examples/RestQueryValid.generated index 21dce8966f..07ed3c5576 100644 --- a/3.9/generated/Examples/RestQueryValid.generated +++ b/3.9/generated/Examples/RestQueryValid.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/query <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/query <<EOF { "query" : "FOR i IN 1..100 FILTER i > 10 LIMIT 2 RETURN i * 3" } EOF @@ -10,87 +10,87 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "parsed" : true, - "collections" : [ ], - "bindVars" : [ ], - "ast" : [ + "error" : false, + "code" : 200, + "parsed" : true, + "collections" : [ ], + "bindVars" : [ ], + "ast" : [ { - "type" : "root", - "subNodes" : [ + "type" : "root", + "subNodes" : [ { - "type" : "for", - "subNodes" : [ + "type" : "for", + "subNodes" : [ { - "type" : "variable", - "name" : "i", - "id" : 0 + "type" : "variable", + "name" : "i", + "id" : 0 }, { - "type" : "range", - "subNodes" : [ + "type" : "range", + "subNodes" : [ { - "type" : "value", - "value" : 1 + "type" : "value", + "value" : 1 }, { - "type" : "value", - "value" : 100 + "type" : "value", + "value" : 100 } ] }, { - "type" : "no-op" + "type" : "no-op" } ] }, { - "type" : "filter", - "subNodes" : [ + "type" : "filter", + "subNodes" : [ { - "type" : "compare >", - "subNodes" : [ + "type" : "compare >", + "subNodes" : [ { - "type" : "reference", - "name" : "i", - "id" : 0 + "type" : "reference", + "name" : "i", + "id" : 0 }, { - "type" : "value", - "value" : 10 + "type" : "value", + "value" : 10 } ] } ] }, { - "type" : "limit", - "subNodes" : [ + "type" : "limit", + "subNodes" : [ { - "type" : "value", - "value" : 0 + "type" : "value", + "value" : 0 }, { - "type" : "value", - "value" : 2 + "type" : "value", + "value" : 2 } ] }, { - "type" : "return", - "subNodes" : [ + "type" : "return", + "subNodes" : [ { - "type" : "times", - "subNodes" : [ + "type" : "times", + "subNodes" : [ { - "type" : "reference", - "name" : "i", - "id" : 0 + "type" : "reference", + "name" : "i", + "id" : 0 }, { - "type" : "value", - "value" : 3 + "type" : "value", + "value" : 3 } ] } diff --git a/3.9/generated/Examples/RestReplaceUser.generated b/3.9/generated/Examples/RestReplaceUser.generated index e08f4e1d4f..6173374ca8 100644 --- a/3.9/generated/Examples/RestReplaceUser.generated +++ b/3.9/generated/Examples/RestReplaceUser.generated @@ -1,6 +1,6 @@ -shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/user/admin@myapp <<EOF +shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/user/admin@myapp <<EOF { - "passwd" : "secure" + "passwd" : "secure" } EOF @@ -12,10 +12,10 @@ server: ArangoDB x-content-type-options: nosniff { - "user" : "admin@myapp", - "active" : true, - "extra" : { + "user" : "admin@myapp", + "active" : true, + "extra" : { }, - "error" : false, - "code" : 200 + "error" : false, + "code" : 200 } diff --git a/3.9/generated/Examples/RestReplicationApplierGetConfig.generated b/3.9/generated/Examples/RestReplicationApplierGetConfig.generated index c4236f37b5..5947121879 100644 --- a/3.9/generated/Examples/RestReplicationApplierGetConfig.generated +++ b/3.9/generated/Examples/RestReplicationApplierGetConfig.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/applier-config +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/applier-config HTTP/1.1 200 OK content-type: application/json @@ -8,28 +8,28 @@ server: ArangoDB x-content-type-options: nosniff { - "requestTimeout" : 600, - "connectTimeout" : 10, - "ignoreErrors" : 0, - "maxConnectRetries" : 100, - "lockTimeoutRetries" : 0, - "sslProtocol" : 0, - "chunkSize" : 0, - "skipCreateDrop" : false, - "autoStart" : false, - "adaptivePolling" : true, - "autoResync" : false, - "autoResyncRetries" : 2, - "maxPacketSize" : 536870912, - "includeSystem" : true, - "includeFoxxQueues" : false, - "requireFromPresent" : true, - "verbose" : false, - "incremental" : false, - "restrictType" : "", - "restrictCollections" : [ ], - "connectionRetryWaitTime" : 15, - "initialSyncMaxWaitTime" : 300, - "idleMinWaitTime" : 1, - "idleMaxWaitTime" : 2.5 + "requestTimeout" : 600, + "connectTimeout" : 10, + "ignoreErrors" : 0, + "maxConnectRetries" : 100, + "lockTimeoutRetries" : 0, + "sslProtocol" : 0, + "chunkSize" : 0, + "skipCreateDrop" : false, + "autoStart" : false, + "adaptivePolling" : true, + "autoResync" : false, + "autoResyncRetries" : 2, + "maxPacketSize" : 536870912, + "includeSystem" : true, + "includeFoxxQueues" : false, + "requireFromPresent" : true, + "verbose" : false, + "incremental" : false, + "restrictType" : "", + "restrictCollections" : [ ], + "connectionRetryWaitTime" : 15, + "initialSyncMaxWaitTime" : 300, + "idleMinWaitTime" : 1, + "idleMaxWaitTime" : 2.5 } diff --git a/3.9/generated/Examples/RestReplicationApplierSetConfig.generated b/3.9/generated/Examples/RestReplicationApplierSetConfig.generated index 67231ad9e0..974c4a8153 100644 --- a/3.9/generated/Examples/RestReplicationApplierSetConfig.generated +++ b/3.9/generated/Examples/RestReplicationApplierSetConfig.generated @@ -1,11 +1,11 @@ -shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/replication/applier-config <<EOF +shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/replication/applier-config <<EOF { - "endpoint" : "tcp://127.0.0.1:8529", - "username" : "replicationApplier", - "password" : "applier1234@foxx", - "chunkSize" : 4194304, - "autoStart" : false, - "adaptivePolling" : true + "endpoint" : "tcp://127.0.0.1:8529", + "username" : "replicationApplier", + "password" : "applier1234@foxx", + "chunkSize" : 4194304, + "autoStart" : false, + "adaptivePolling" : true } EOF @@ -17,31 +17,31 @@ server: ArangoDB x-content-type-options: nosniff { - "endpoint" : "tcp://127.0.0.1:8529", - "database" : "_system", - "username" : "replicationApplier", - "requestTimeout" : 600, - "connectTimeout" : 10, - "ignoreErrors" : 0, - "maxConnectRetries" : 100, - "lockTimeoutRetries" : 0, - "sslProtocol" : 0, - "chunkSize" : 4194304, - "skipCreateDrop" : false, - "autoStart" : false, - "adaptivePolling" : true, - "autoResync" : false, - "autoResyncRetries" : 2, - "maxPacketSize" : 536870912, - "includeSystem" : true, - "includeFoxxQueues" : false, - "requireFromPresent" : true, - "verbose" : false, - "incremental" : false, - "restrictType" : "", - "restrictCollections" : [ ], - "connectionRetryWaitTime" : 15, - "initialSyncMaxWaitTime" : 300, - "idleMinWaitTime" : 1, - "idleMaxWaitTime" : 2.5 + "endpoint" : "tcp://127.0.0.1:8529", + "database" : "_system", + "username" : "replicationApplier", + "requestTimeout" : 600, + "connectTimeout" : 10, + "ignoreErrors" : 0, + "maxConnectRetries" : 100, + "lockTimeoutRetries" : 0, + "sslProtocol" : 0, + "chunkSize" : 4194304, + "skipCreateDrop" : false, + "autoStart" : false, + "adaptivePolling" : true, + "autoResync" : false, + "autoResyncRetries" : 2, + "maxPacketSize" : 536870912, + "includeSystem" : true, + "includeFoxxQueues" : false, + "requireFromPresent" : true, + "verbose" : false, + "incremental" : false, + "restrictType" : "", + "restrictCollections" : [ ], + "connectionRetryWaitTime" : 15, + "initialSyncMaxWaitTime" : 300, + "idleMinWaitTime" : 1, + "idleMaxWaitTime" : 2.5 } diff --git a/3.9/generated/Examples/RestReplicationApplierStart.generated b/3.9/generated/Examples/RestReplicationApplierStart.generated index 0a07473a41..62362ec6fe 100644 --- a/3.9/generated/Examples/RestReplicationApplierStart.generated +++ b/3.9/generated/Examples/RestReplicationApplierStart.generated @@ -1,47 +1,47 @@ -shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/applier-start +shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/applier-start HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 717 +content-length: 716 server: ArangoDB x-content-type-options: nosniff { - "state" : { - "started" : "", - "running" : true, - "phase" : "running", - "lastAppliedContinuousTick" : null, - "lastProcessedContinuousTick" : null, - "lastAvailableContinuousTick" : null, - "safeResumeTick" : null, - "ticksBehind" : 0, - "progress" : { - "time" : "2021-05-25T10:23:29Z", - "message" : "applier initially created for database '_system'", - "failedConnects" : 0 + "state" : { + "started" : "", + "running" : true, + "phase" : "running", + "lastAppliedContinuousTick" : null, + "lastProcessedContinuousTick" : null, + "lastAvailableContinuousTick" : null, + "safeResumeTick" : null, + "ticksBehind" : 0, + "progress" : { + "time" : "2021-08-04T14:07:59Z", + "message" : "applier initially created for database '_system'", + "failedConnects" : 0 }, - "totalRequests" : 0, - "totalFailedConnects" : 0, - "totalEvents" : 0, - "totalDocuments" : 0, - "totalRemovals" : 0, - "totalResyncs" : 0, - "totalOperationsExcluded" : 0, - "totalApplyTime" : 0, - "averageApplyTime" : 0, - "totalFetchTime" : 0, - "averageFetchTime" : 0, - "lastError" : { - "errorNum" : 0 + "totalRequests" : 0, + "totalFailedConnects" : 0, + "totalEvents" : 0, + "totalDocuments" : 0, + "totalRemovals" : 0, + "totalResyncs" : 0, + "totalOperationsExcluded" : 0, + "totalApplyTime" : 0, + "averageApplyTime" : 0, + "totalFetchTime" : 0, + "averageFetchTime" : 0, + "lastError" : { + "errorNum" : 0 }, - "time" : "2021-05-25T10:23:40Z" + "time" : "2021-08-04T14:08:10Z" }, - "server" : { - "version" : "3.9.0-devel", - "serverId" : "188998707105330" + "server" : { + "version" : "3.9.0-devel", + "serverId" : "34153231126696" }, - "endpoint" : "tcp://127.0.0.1:8529", - "database" : "_system" + "endpoint" : "tcp://127.0.0.1:8529", + "database" : "_system" } diff --git a/3.9/generated/Examples/RestReplicationApplierStateNotRunning.generated b/3.9/generated/Examples/RestReplicationApplierStateNotRunning.generated index e971bec226..b8c77d10f9 100644 --- a/3.9/generated/Examples/RestReplicationApplierStateNotRunning.generated +++ b/3.9/generated/Examples/RestReplicationApplierStateNotRunning.generated @@ -1,46 +1,46 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/applier-state +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/applier-state HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 692 +content-length: 691 server: ArangoDB x-content-type-options: nosniff { - "state" : { - "started" : "2021-05-25T10:23:40Z", - "running" : false, - "phase" : "inactive", - "lastAppliedContinuousTick" : null, - "lastProcessedContinuousTick" : null, - "lastAvailableContinuousTick" : null, - "safeResumeTick" : null, - "progress" : { - "time" : "2021-05-25T10:23:40Z", - "message" : "applier shut down", - "failedConnects" : 1 + "state" : { + "started" : "2021-08-04T14:08:10Z", + "running" : false, + "phase" : "inactive", + "lastAppliedContinuousTick" : null, + "lastProcessedContinuousTick" : null, + "lastAvailableContinuousTick" : null, + "safeResumeTick" : null, + "progress" : { + "time" : "2021-08-04T14:08:10Z", + "message" : "applier shut down", + "failedConnects" : 0 }, - "totalRequests" : 2, - "totalFailedConnects" : 1, - "totalEvents" : 0, - "totalDocuments" : 0, - "totalRemovals" : 0, - "totalResyncs" : 0, - "totalOperationsExcluded" : 0, - "totalApplyTime" : 0, - "averageApplyTime" : 0, - "totalFetchTime" : 0, - "averageFetchTime" : 0, - "lastError" : { - "errorNum" : 0 + "totalRequests" : 1, + "totalFailedConnects" : 0, + "totalEvents" : 0, + "totalDocuments" : 0, + "totalRemovals" : 0, + "totalResyncs" : 0, + "totalOperationsExcluded" : 0, + "totalApplyTime" : 0, + "averageApplyTime" : 0, + "totalFetchTime" : 0, + "averageFetchTime" : 0, + "lastError" : { + "errorNum" : 0 }, - "time" : "2021-05-25T10:23:40Z" + "time" : "2021-08-04T14:08:10Z" }, - "server" : { - "version" : "3.9.0-devel", - "serverId" : "188998707105330" + "server" : { + "version" : "3.9.0-devel", + "serverId" : "34153231126696" }, - "endpoint" : "tcp://127.0.0.1:8529", - "database" : "_system" + "endpoint" : "tcp://127.0.0.1:8529", + "database" : "_system" } diff --git a/3.9/generated/Examples/RestReplicationApplierStateRunning.generated b/3.9/generated/Examples/RestReplicationApplierStateRunning.generated index c1e6ad79e3..70b6b82973 100644 --- a/3.9/generated/Examples/RestReplicationApplierStateRunning.generated +++ b/3.9/generated/Examples/RestReplicationApplierStateRunning.generated @@ -1,47 +1,47 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/applier-state +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/applier-state HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 722 +content-length: 721 server: ArangoDB x-content-type-options: nosniff { - "state" : { - "started" : "2021-05-25T10:23:40Z", - "running" : true, - "phase" : "running", - "lastAppliedContinuousTick" : null, - "lastProcessedContinuousTick" : null, - "lastAvailableContinuousTick" : null, - "safeResumeTick" : null, - "ticksBehind" : 0, - "progress" : { - "time" : "2021-05-25T10:23:40Z", - "message" : "fetching leader state information", - "failedConnects" : 0 + "state" : { + "started" : "2021-08-04T14:08:10Z", + "running" : true, + "phase" : "running", + "lastAppliedContinuousTick" : null, + "lastProcessedContinuousTick" : null, + "lastAvailableContinuousTick" : null, + "safeResumeTick" : null, + "ticksBehind" : 0, + "progress" : { + "time" : "2021-08-04T14:08:10Z", + "message" : "fetching leader state information", + "failedConnects" : 0 }, - "totalRequests" : 2, - "totalFailedConnects" : 1, - "totalEvents" : 0, - "totalDocuments" : 0, - "totalRemovals" : 0, - "totalResyncs" : 0, - "totalOperationsExcluded" : 0, - "totalApplyTime" : 0, - "averageApplyTime" : 0, - "totalFetchTime" : 0, - "averageFetchTime" : 0, - "lastError" : { - "errorNum" : 0 + "totalRequests" : 1, + "totalFailedConnects" : 0, + "totalEvents" : 0, + "totalDocuments" : 0, + "totalRemovals" : 0, + "totalResyncs" : 0, + "totalOperationsExcluded" : 0, + "totalApplyTime" : 0, + "averageApplyTime" : 0, + "totalFetchTime" : 0, + "averageFetchTime" : 0, + "lastError" : { + "errorNum" : 0 }, - "time" : "2021-05-25T10:23:40Z" + "time" : "2021-08-04T14:08:10Z" }, - "server" : { - "version" : "3.9.0-devel", - "serverId" : "188998707105330" + "server" : { + "version" : "3.9.0-devel", + "serverId" : "34153231126696" }, - "endpoint" : "tcp://127.0.0.1:8529", - "database" : "_system" + "endpoint" : "tcp://127.0.0.1:8529", + "database" : "_system" } diff --git a/3.9/generated/Examples/RestReplicationApplierStop.generated b/3.9/generated/Examples/RestReplicationApplierStop.generated index be0df27837..7203913525 100644 --- a/3.9/generated/Examples/RestReplicationApplierStop.generated +++ b/3.9/generated/Examples/RestReplicationApplierStop.generated @@ -1,46 +1,46 @@ -shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/applier-stop +shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/applier-stop HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 692 +content-length: 691 server: ArangoDB x-content-type-options: nosniff { - "state" : { - "started" : "2021-05-25T10:23:40Z", - "running" : false, - "phase" : "inactive", - "lastAppliedContinuousTick" : null, - "lastProcessedContinuousTick" : null, - "lastAvailableContinuousTick" : null, - "safeResumeTick" : null, - "progress" : { - "time" : "2021-05-25T10:23:41Z", - "message" : "applier shut down", - "failedConnects" : 0 + "state" : { + "started" : "2021-08-04T14:08:10Z", + "running" : false, + "phase" : "inactive", + "lastAppliedContinuousTick" : null, + "lastProcessedContinuousTick" : null, + "lastAvailableContinuousTick" : null, + "safeResumeTick" : null, + "progress" : { + "time" : "2021-08-04T14:08:10Z", + "message" : "applier shut down", + "failedConnects" : 0 }, - "totalRequests" : 6, - "totalFailedConnects" : 3, - "totalEvents" : 0, - "totalDocuments" : 0, - "totalRemovals" : 0, - "totalResyncs" : 0, - "totalOperationsExcluded" : 0, - "totalApplyTime" : 0, - "averageApplyTime" : 0, - "totalFetchTime" : 0, - "averageFetchTime" : 0, - "lastError" : { - "errorNum" : 0 + "totalRequests" : 3, + "totalFailedConnects" : 0, + "totalEvents" : 0, + "totalDocuments" : 0, + "totalRemovals" : 0, + "totalResyncs" : 0, + "totalOperationsExcluded" : 0, + "totalApplyTime" : 0, + "averageApplyTime" : 0, + "totalFetchTime" : 0, + "averageFetchTime" : 0, + "lastError" : { + "errorNum" : 0 }, - "time" : "2021-05-25T10:23:41Z" + "time" : "2021-08-04T14:08:10Z" }, - "server" : { - "version" : "3.9.0-devel", - "serverId" : "188998707105330" + "server" : { + "version" : "3.9.0-devel", + "serverId" : "34153231126696" }, - "endpoint" : "tcp://127.0.0.1:8529", - "database" : "_system" + "endpoint" : "tcp://127.0.0.1:8529", + "database" : "_system" } diff --git a/3.9/generated/Examples/RestReplicationLoggerFirstTick.generated b/3.9/generated/Examples/RestReplicationLoggerFirstTick.generated index 47c217d66b..0ccccac6d0 100644 --- a/3.9/generated/Examples/RestReplicationLoggerFirstTick.generated +++ b/3.9/generated/Examples/RestReplicationLoggerFirstTick.generated @@ -1,12 +1,12 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/logger-first-tick +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/logger-first-tick HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 22 +content-length: 20 server: ArangoDB x-content-type-options: nosniff { - "firstTick" : "174322" + "firstTick" : "2769" } diff --git a/3.9/generated/Examples/RestReplicationLoggerFollowBufferLimit.generated b/3.9/generated/Examples/RestReplicationLoggerFollowBufferLimit.generated index 017f47516e..e668400c86 100644 --- a/3.9/generated/Examples/RestReplicationLoggerFollowBufferLimit.generated +++ b/3.9/generated/Examples/RestReplicationLoggerFollowBufferLimit.generated @@ -1,88 +1,88 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/logger-follow?from=178949&chunkSize=400 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/logger-follow?from=7392&chunkSize=400 HTTP/1.1 200 OK content-type: application/x-arango-dump connection: Keep-Alive -content-length: 773 +content-length: 771 server: ArangoDB x-arango-replication-active: true x-arango-replication-checkmore: true x-arango-replication-frompresent: true -x-arango-replication-lastincluded: 178954 -x-arango-replication-lastscanned: 178951 -x-arango-replication-lasttick: 178975 +x-arango-replication-lastincluded: 7397 +x-arango-replication-lastscanned: 7394 +x-arango-replication-lasttick: 7418 x-content-type-options: nosniff { - "tick" : "178952", - "type" : 2300, - "database" : "1", - "tid" : "0", - "cid" : "4", - "cname" : "_users", - "data" : { - "_key" : "83", - "_id" : "_users/83", - "_rev" : "_cYKLK2a---", - "user" : "root", - "source" : "LOCAL", - "authData" : { - "active" : true, - "simple" : { - "hash" : "e5928e28e200c17e4899c2100f44e0d06ea185c6b7cd90286567a527e85d81c3", - "salt" : "883aa003", - "method" : "sha256" + "tick" : "7395", + "type" : 2300, + "database" : "1", + "tid" : "0", + "cid" : "4", + "cname" : "_users", + "data" : { + "_key" : "83", + "_id" : "_users/83", + "_rev" : "_cvD8Mdi---", + "user" : "root", + "source" : "LOCAL", + "authData" : { + "active" : true, + "simple" : { + "hash" : "53e263c31cd24d729ab74b308cf3e1f6b6a3a06a8df48b4c71d1fe23c7ea35ad", + "salt" : "5c92fa8b", + "method" : "sha256" } }, - "databases" : { - "*" : { - "permissions" : { - "read" : true, - "write" : true + "databases" : { + "_system" : { + "permissions" : { + "read" : true, + "write" : true }, - "collections" : { - "*" : { - "permissions" : { - "read" : true, - "write" : true - } - } - } - }, - "_system" : { - "permissions" : { - "read" : true, - "write" : true - }, - "collections" : { - "products" : { - "permissions" : { - "read" : true, - "write" : true + "collections" : { + "products" : { + "permissions" : { + "read" : true, + "write" : true } }, - "products1" : { - "permissions" : { - "read" : true, - "write" : true + "demo" : { + "permissions" : { + "read" : true, + "write" : true } }, - "animals" : { - "permissions" : { - "read" : true, - "write" : true + "animals" : { + "permissions" : { + "read" : true, + "write" : true } }, - "*" : { - "permissions" : { - "read" : true, - "write" : true + "*" : { + "permissions" : { + "read" : true, + "write" : true } }, - "demo" : { - "permissions" : { - "read" : true, - "write" : true + "products1" : { + "permissions" : { + "read" : true, + "write" : true + } + } + } + }, + "*" : { + "permissions" : { + "read" : true, + "write" : true + }, + "collections" : { + "*" : { + "permissions" : { + "read" : true, + "write" : true } } } diff --git a/3.9/generated/Examples/RestReplicationLoggerFollowEmpty.generated b/3.9/generated/Examples/RestReplicationLoggerFollowEmpty.generated index 7cf7a49e15..a93b45fdf0 100644 --- a/3.9/generated/Examples/RestReplicationLoggerFollowEmpty.generated +++ b/3.9/generated/Examples/RestReplicationLoggerFollowEmpty.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/logger-follow?from=178975 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/logger-follow?from=7418 HTTP/1.1 204 No Content content-type: application/x-arango-dump @@ -9,7 +9,7 @@ x-arango-replication-active: true x-arango-replication-checkmore: false x-arango-replication-frompresent: true x-arango-replication-lastincluded: 0 -x-arango-replication-lastscanned: 178972 -x-arango-replication-lasttick: 178975 +x-arango-replication-lastscanned: 7415 +x-arango-replication-lasttick: 7418 x-content-type-options: nosniff diff --git a/3.9/generated/Examples/RestReplicationLoggerFollowSome.generated b/3.9/generated/Examples/RestReplicationLoggerFollowSome.generated index 6850ccc338..8c7e911f90 100644 --- a/3.9/generated/Examples/RestReplicationLoggerFollowSome.generated +++ b/3.9/generated/Examples/RestReplicationLoggerFollowSome.generated @@ -1,88 +1,88 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/logger-follow?from=178975 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/logger-follow?from=7418 HTTP/1.1 200 OK content-type: application/x-arango-dump connection: Keep-Alive -content-length: 1612 +content-length: 1603 server: ArangoDB x-arango-replication-active: true x-arango-replication-checkmore: false x-arango-replication-frompresent: true -x-arango-replication-lastincluded: 179001 -x-arango-replication-lastscanned: 178998 -x-arango-replication-lasttick: 179001 +x-arango-replication-lastincluded: 7449 +x-arango-replication-lastscanned: 7449 +x-arango-replication-lasttick: 7449 x-content-type-options: nosniff { - "tick" : "178978", - "type" : 2300, - "database" : "1", - "tid" : "0", - "cid" : "4", - "cname" : "_users", - "data" : { - "_key" : "83", - "_id" : "_users/83", - "_rev" : "_cYKLL22---", - "user" : "root", - "source" : "LOCAL", - "authData" : { - "active" : true, - "simple" : { - "hash" : "e5928e28e200c17e4899c2100f44e0d06ea185c6b7cd90286567a527e85d81c3", - "salt" : "883aa003", - "method" : "sha256" + "tick" : "7421", + "type" : 2300, + "database" : "1", + "tid" : "0", + "cid" : "4", + "cname" : "_users", + "data" : { + "_key" : "83", + "_id" : "_users/83", + "_rev" : "_cvD8Ndq---", + "user" : "root", + "source" : "LOCAL", + "authData" : { + "active" : true, + "simple" : { + "hash" : "53e263c31cd24d729ab74b308cf3e1f6b6a3a06a8df48b4c71d1fe23c7ea35ad", + "salt" : "5c92fa8b", + "method" : "sha256" } }, - "databases" : { - "*" : { - "permissions" : { - "read" : true, - "write" : true + "databases" : { + "_system" : { + "permissions" : { + "read" : true, + "write" : true }, - "collections" : { - "*" : { - "permissions" : { - "read" : true, - "write" : true - } - } - } - }, - "_system" : { - "permissions" : { - "read" : true, - "write" : true - }, - "collections" : { - "products" : { - "permissions" : { - "read" : true, - "write" : true + "collections" : { + "products" : { + "permissions" : { + "read" : true, + "write" : true } }, - "products1" : { - "permissions" : { - "read" : true, - "write" : true + "demo" : { + "permissions" : { + "read" : true, + "write" : true } }, - "animals" : { - "permissions" : { - "read" : true, - "write" : true + "animals" : { + "permissions" : { + "read" : true, + "write" : true } }, - "*" : { - "permissions" : { - "read" : true, - "write" : true + "*" : { + "permissions" : { + "read" : true, + "write" : true } }, - "demo" : { - "permissions" : { - "read" : true, - "write" : true + "products1" : { + "permissions" : { + "read" : true, + "write" : true + } + } + } + }, + "*" : { + "permissions" : { + "read" : true, + "write" : true + }, + "collections" : { + "*" : { + "permissions" : { + "read" : true, + "write" : true } } } @@ -91,80 +91,80 @@ x-content-type-options: nosniff } }↩ { - "tick" : "178991", - "type" : 2001, - "database" : "1", - "cuid" : "hABE4B0CCCE32/68171", - "cid" : "68171", - "data" : { - "id" : "68171", - "name" : "" + "tick" : "7434", + "type" : 2001, + "database" : "1", + "cuid" : "h1F0FEB3590A8/3693", + "cid" : "3693", + "data" : { + "id" : "3693", + "name" : "" } }↩ { - "tick" : "178999", - "type" : 2300, - "database" : "1", - "tid" : "0", - "cid" : "4", - "cname" : "_users", - "data" : { - "_key" : "83", - "_id" : "_users/83", - "_rev" : "_cYKLL3C---", - "user" : "root", - "source" : "LOCAL", - "authData" : { - "active" : true, - "simple" : { - "hash" : "e5928e28e200c17e4899c2100f44e0d06ea185c6b7cd90286567a527e85d81c3", - "salt" : "883aa003", - "method" : "sha256" + "tick" : "7442", + "type" : 2300, + "database" : "1", + "tid" : "0", + "cid" : "4", + "cname" : "_users", + "data" : { + "_key" : "83", + "_id" : "_users/83", + "_rev" : "_cvD8Ndy--_", + "user" : "root", + "source" : "LOCAL", + "authData" : { + "active" : true, + "simple" : { + "hash" : "53e263c31cd24d729ab74b308cf3e1f6b6a3a06a8df48b4c71d1fe23c7ea35ad", + "salt" : "5c92fa8b", + "method" : "sha256" } }, - "databases" : { - "_system" : { - "permissions" : { - "read" : true, - "write" : true + "databases" : { + "_system" : { + "permissions" : { + "read" : true, + "write" : true }, - "collections" : { - "demo" : { - "permissions" : { - "read" : true, - "write" : true + "collections" : { + "demo" : { + "permissions" : { + "read" : true, + "write" : true } }, - "*" : { - "permissions" : { - "read" : true, - "write" : true + "animals" : { + "permissions" : { + "read" : true, + "write" : true } }, - "animals" : { - "permissions" : { - "read" : true, - "write" : true + "*" : { + "permissions" : { + "read" : true, + "write" : true } }, - "products1" : { - "permissions" : { - "read" : true, - "write" : true + "products1" : { + "permissions" : { + "read" : true, + "write" : true } } } }, - "*" : { - "permissions" : { - "read" : true, - "write" : true + "*" : { + "permissions" : { + "read" : true, + "write" : true }, - "collections" : { - "*" : { - "permissions" : { - "read" : true, - "write" : true + "collections" : { + "*" : { + "permissions" : { + "read" : true, + "write" : true } } } diff --git a/3.9/generated/Examples/RestReplicationLoggerStateActive.generated b/3.9/generated/Examples/RestReplicationLoggerStateActive.generated index cc1eed221b..d9e37b0c62 100644 --- a/3.9/generated/Examples/RestReplicationLoggerStateActive.generated +++ b/3.9/generated/Examples/RestReplicationLoggerStateActive.generated @@ -1,24 +1,24 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/logger-state +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/logger-state HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 230 +content-length: 223 server: ArangoDB x-content-type-options: nosniff { - "state" : { - "running" : true, - "lastLogTick" : "179001", - "lastUncommittedLogTick" : "179001", - "totalEvents" : 179001, - "time" : "2021-05-25T10:23:44Z" + "state" : { + "running" : true, + "lastLogTick" : "7449", + "lastUncommittedLogTick" : "7449", + "totalEvents" : 7449, + "time" : "2021-08-04T14:08:12Z" }, - "server" : { - "version" : "3.9.0-devel", - "serverId" : "188998707105330", - "engine" : "rocksdb" + "server" : { + "version" : "3.9.0-devel", + "serverId" : "34153231126696", + "engine" : "rocksdb" }, - "clients" : [ ] + "clients" : [ ] } diff --git a/3.9/generated/Examples/RestReplicationLoggerTickRanges.generated b/3.9/generated/Examples/RestReplicationLoggerTickRanges.generated index ab2604bb83..26c5e60751 100644 --- a/3.9/generated/Examples/RestReplicationLoggerTickRanges.generated +++ b/3.9/generated/Examples/RestReplicationLoggerTickRanges.generated @@ -1,29 +1,29 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/logger-tick-ranges +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/logger-tick-ranges HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 270 +content-length: 258 server: ArangoDB x-content-type-options: nosniff [ { - "datafile" : "/archive/000076.log", - "status" : "collected", - "tickMin" : "174322", - "tickMax" : "174365" + "datafile" : "/archive/000075.log", + "status" : "collected", + "tickMin" : "2769", + "tickMax" : "2812" }, { - "datafile" : "/archive/000096.log", - "status" : "collected", - "tickMin" : "174365", - "tickMax" : "174394" + "datafile" : "/archive/000095.log", + "status" : "collected", + "tickMin" : "2812", + "tickMax" : "2841" }, { - "datafile" : "/000103.log", - "status" : "open", - "tickMin" : "174394", - "tickMax" : "179001" + "datafile" : "/000102.log", + "status" : "open", + "tickMin" : "2841", + "tickMax" : "7449" } ] diff --git a/3.9/generated/Examples/RestReplicationServerId.generated b/3.9/generated/Examples/RestReplicationServerId.generated index acf67c2b4d..9e3fa956c1 100644 --- a/3.9/generated/Examples/RestReplicationServerId.generated +++ b/3.9/generated/Examples/RestReplicationServerId.generated @@ -1,12 +1,12 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/server-id +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/server-id HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 30 +content-length: 29 server: ArangoDB x-content-type-options: nosniff { - "serverId" : "188998707105330" + "serverId" : "34153231126696" } diff --git a/3.9/generated/Examples/RestRevokeCollection.generated b/3.9/generated/Examples/RestRevokeCollection.generated index ced344127f..5cbf4c4a1f 100644 --- a/3.9/generated/Examples/RestRevokeCollection.generated +++ b/3.9/generated/Examples/RestRevokeCollection.generated @@ -1,4 +1,4 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/user/admin@myapp/database/_system/reports +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/user/admin@myapp/database/_system/reports HTTP/1.1 202 Accepted content-type: application/json @@ -8,6 +8,6 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 202 + "error" : false, + "code" : 202 } diff --git a/3.9/generated/Examples/RestRevokeDatabase.generated b/3.9/generated/Examples/RestRevokeDatabase.generated index cdad49ee50..4148a0a3f5 100644 --- a/3.9/generated/Examples/RestRevokeDatabase.generated +++ b/3.9/generated/Examples/RestRevokeDatabase.generated @@ -1,4 +1,4 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/user/admin@myapp/database/_system +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/user/admin@myapp/database/_system HTTP/1.1 202 Accepted content-type: application/json @@ -8,6 +8,6 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 202 + "error" : false, + "code" : 202 } diff --git a/3.9/generated/Examples/RestTasksCreate.generated b/3.9/generated/Examples/RestTasksCreate.generated index b050631e55..f9f6dba83b 100644 --- a/3.9/generated/Examples/RestTasksCreate.generated +++ b/3.9/generated/Examples/RestTasksCreate.generated @@ -1,31 +1,31 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/tasks/ <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/tasks/ <<EOF { - "name" : "SampleTask", - "command" : "(function(params) { require('@arangodb').print(params); })(params)", - "params" : { - "foo" : "bar", - "bar" : "foo" + "name" : "SampleTask", + "command" : "(function(params) { require('@arangodb').print(params); })(params)", + "params" : { + "foo" : "bar", + "bar" : "foo" }, - "period" : 2 + "period" : 2 } EOF HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 240 +content-length: 234 server: ArangoDB x-content-type-options: nosniff { - "id" : "68202", - "name" : "SampleTask", - "created" : 1621938224.0407248, - "type" : "periodic", - "period" : 2, - "offset" : 0, - "command" : "(function (params) { (function(params) { require('@arangodb').print(params); })(params) } )(params);", - "database" : "_system" + "id" : "3724", + "name" : "SampleTask", + "created" : 1628086092.30673, + "type" : "periodic", + "period" : 2, + "offset" : 0, + "command" : "(function (params) { (function(params) { require('@arangodb').print(params); })(params) } )(params);", + "database" : "_system" } -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/tasks/68202 +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/tasks/3724 diff --git a/3.9/generated/Examples/RestTasksDelete.generated b/3.9/generated/Examples/RestTasksDelete.generated index 448d8e9b08..2538e63cd8 100644 --- a/3.9/generated/Examples/RestTasksDelete.generated +++ b/3.9/generated/Examples/RestTasksDelete.generated @@ -1,4 +1,4 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/tasks/SampleTask +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/tasks/SampleTask HTTP/1.1 200 OK content-type: application/json @@ -8,6 +8,6 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200 + "error" : false, + "code" : 200 } diff --git a/3.9/generated/Examples/RestTasksDeleteFail.generated b/3.9/generated/Examples/RestTasksDeleteFail.generated index a453848627..54449b3147 100644 --- a/3.9/generated/Examples/RestTasksDeleteFail.generated +++ b/3.9/generated/Examples/RestTasksDeleteFail.generated @@ -1,4 +1,4 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/tasks/NoTaskWithThatName +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/tasks/NoTaskWithThatName HTTP/1.1 404 Not Found content-type: application/json @@ -8,8 +8,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 404, - "error" : true, - "errorMessage" : "task not found", - "errorNum" : 1852 + "code" : 404, + "error" : true, + "errorMessage" : "task not found", + "errorNum" : 1852 } diff --git a/3.9/generated/Examples/RestTasksListAll.generated b/3.9/generated/Examples/RestTasksListAll.generated index 14aaf2773e..2f6db9b78e 100644 --- a/3.9/generated/Examples/RestTasksListAll.generated +++ b/3.9/generated/Examples/RestTasksListAll.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/tasks +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/tasks HTTP/1.1 200 OK content-type: application/json diff --git a/3.9/generated/Examples/RestTasksListNonExisting.generated b/3.9/generated/Examples/RestTasksListNonExisting.generated index 332070f9c2..8fb5d7b0c1 100644 --- a/3.9/generated/Examples/RestTasksListNonExisting.generated +++ b/3.9/generated/Examples/RestTasksListNonExisting.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/tasks/non-existing-task +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/tasks/non-existing-task HTTP/1.1 404 Not Found content-type: application/json @@ -8,8 +8,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 404, - "error" : true, - "errorMessage" : "task not found", - "errorNum" : 1852 + "code" : 404, + "error" : true, + "errorMessage" : "task not found", + "errorNum" : 1852 } diff --git a/3.9/generated/Examples/RestTasksListOne.generated b/3.9/generated/Examples/RestTasksListOne.generated index 29d291fcec..60737bc6dd 100644 --- a/3.9/generated/Examples/RestTasksListOne.generated +++ b/3.9/generated/Examples/RestTasksListOne.generated @@ -1,22 +1,22 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/tasks <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/tasks <<EOF {"id":"testTask","command":"console.log('Hello from task!');","offset":10000} EOF -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/tasks/testTask +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/tasks/testTask HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 206 +content-length: 202 server: ArangoDB x-content-type-options: nosniff { - "id" : "testTask", - "name" : "user-defined task", - "created" : 1621938224.0581188, - "type" : "timed", - "offset" : 10000, - "command" : "(function (params) { console.log('Hello from task!'); } )(params);", - "database" : "_system" + "id" : "testTask", + "name" : "user-defined task", + "created" : 1628086092.318082, + "type" : "timed", + "offset" : 10000, + "command" : "(function (params) { console.log('Hello from task!'); } )(params);", + "database" : "_system" } diff --git a/3.9/generated/Examples/RestTasksPutWithId.generated b/3.9/generated/Examples/RestTasksPutWithId.generated index 0e967ca8df..76aecad60f 100644 --- a/3.9/generated/Examples/RestTasksPutWithId.generated +++ b/3.9/generated/Examples/RestTasksPutWithId.generated @@ -1,30 +1,30 @@ -shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/tasks/sampleTask <<EOF +shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/tasks/sampleTask <<EOF { - "id" : "SampleTask", - "name" : "SampleTask", - "command" : "(function(params) { require('@arangodb').print(params); })(params)", - "params" : { - "foo" : "bar", - "bar" : "foo" + "id" : "SampleTask", + "name" : "SampleTask", + "command" : "(function(params) { require('@arangodb').print(params); })(params)", + "params" : { + "foo" : "bar", + "bar" : "foo" }, - "period" : 2 + "period" : 2 } EOF HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 245 +content-length: 240 server: ArangoDB x-content-type-options: nosniff { - "id" : "sampleTask", - "name" : "SampleTask", - "created" : 1621938224.0630865, - "type" : "periodic", - "period" : 2, - "offset" : 0, - "command" : "(function (params) { (function(params) { require('@arangodb').print(params); })(params) } )(params);", - "database" : "_system" + "id" : "sampleTask", + "name" : "SampleTask", + "created" : 1628086092.32105, + "type" : "periodic", + "period" : 2, + "offset" : 0, + "command" : "(function (params) { (function(params) { require('@arangodb').print(params); })(params) } )(params);", + "database" : "_system" } diff --git a/3.9/generated/Examples/RestTransactionAbort.generated b/3.9/generated/Examples/RestTransactionAbort.generated index 7214cd1a10..99e2395f68 100644 --- a/3.9/generated/Examples/RestTransactionAbort.generated +++ b/3.9/generated/Examples/RestTransactionAbort.generated @@ -1,9 +1,9 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/transaction <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/transaction <<EOF { - "collections" : { - "read" : "products" + "collections" : { + "read" : "products" }, - "action" : "function () { throw 'doh!'; }" + "action" : "function () { throw 'doh!'; }" } EOF @@ -15,8 +15,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 500, - "error" : true, - "errorMessage" : "doh!", - "errorNum" : 1650 + "code" : 500, + "error" : true, + "errorMessage" : "doh!", + "errorNum" : 1650 } diff --git a/3.9/generated/Examples/RestTransactionAbortInternal.generated b/3.9/generated/Examples/RestTransactionAbortInternal.generated index 7b399e5ca9..d9708feff7 100644 --- a/3.9/generated/Examples/RestTransactionAbortInternal.generated +++ b/3.9/generated/Examples/RestTransactionAbortInternal.generated @@ -1,9 +1,9 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/transaction <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/transaction <<EOF { - "collections" : { - "write" : "products" + "collections" : { + "write" : "products" }, - "action" : "function () {var db = require('@arangodb').db;db.products.save({ _key: 'abc'});db.products.save({ _key: 'abc'});}" + "action" : "function () {var db = require('@arangodb').db;db.products.save({ _key: 'abc'});db.products.save({ _key: 'abc'});}" } EOF @@ -15,8 +15,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 409, - "error" : true, - "errorMessage" : "unique constraint violated - in index primary of type primary over '_key'; conflicting key: abc", - "errorNum" : 1210 + "code" : 409, + "error" : true, + "errorMessage" : "unique constraint violated - in index primary of type primary over '_key'; conflicting key: abc", + "errorNum" : 1210 } diff --git a/3.9/generated/Examples/RestTransactionBeginAbort.generated b/3.9/generated/Examples/RestTransactionBeginAbort.generated index 9e79c7e14e..0b6d5f397f 100644 --- a/3.9/generated/Examples/RestTransactionBeginAbort.generated +++ b/3.9/generated/Examples/RestTransactionBeginAbort.generated @@ -1,17 +1,17 @@ -shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/transaction/68234 +shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/transaction/3756 HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 71 +content-length: 70 server: ArangoDB x-content-type-options: nosniff { - "code" : 200, - "error" : false, - "result" : { - "id" : "68234", - "status" : "committed" + "code" : 200, + "error" : false, + "result" : { + "id" : "3756", + "status" : "committed" } } diff --git a/3.9/generated/Examples/RestTransactionBeginCommit.generated b/3.9/generated/Examples/RestTransactionBeginCommit.generated index f4bd718c18..cb1fc5a549 100644 --- a/3.9/generated/Examples/RestTransactionBeginCommit.generated +++ b/3.9/generated/Examples/RestTransactionBeginCommit.generated @@ -1,17 +1,17 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/transaction/68242 +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/transaction/3764 HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 69 +content-length: 68 server: ArangoDB x-content-type-options: nosniff { - "code" : 200, - "error" : false, - "result" : { - "id" : "68242", - "status" : "aborted" + "code" : 200, + "error" : false, + "result" : { + "id" : "3764", + "status" : "aborted" } } diff --git a/3.9/generated/Examples/RestTransactionBeginNonExisting.generated b/3.9/generated/Examples/RestTransactionBeginNonExisting.generated index 3717f3bcc6..3b1992c92a 100644 --- a/3.9/generated/Examples/RestTransactionBeginNonExisting.generated +++ b/3.9/generated/Examples/RestTransactionBeginNonExisting.generated @@ -1,7 +1,7 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/transaction/begin <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/transaction/begin <<EOF { - "collections" : { - "read" : "products" + "collections" : { + "read" : "products" } } EOF @@ -14,8 +14,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 404, - "error" : true, - "errorMessage" : "collection or view not found: products", - "errorNum" : 1203 + "code" : 404, + "error" : true, + "errorMessage" : "collection or view not found: products", + "errorNum" : 1203 } diff --git a/3.9/generated/Examples/RestTransactionBeginSingle.generated b/3.9/generated/Examples/RestTransactionBeginSingle.generated index 460b9168bd..dea4fc1c89 100644 --- a/3.9/generated/Examples/RestTransactionBeginSingle.generated +++ b/3.9/generated/Examples/RestTransactionBeginSingle.generated @@ -1,7 +1,7 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/transaction/begin <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/transaction/begin <<EOF { - "collections" : { - "write" : "products" + "collections" : { + "write" : "products" } } EOF @@ -9,15 +9,15 @@ EOF HTTP/1.1 201 Created content-type: application/json connection: Keep-Alive -content-length: 69 +content-length: 68 server: ArangoDB x-content-type-options: nosniff { - "code" : 201, - "error" : false, - "result" : { - "id" : "68252", - "status" : "running" + "code" : 201, + "error" : false, + "result" : { + "id" : "3774", + "status" : "running" } } diff --git a/3.9/generated/Examples/RestTransactionGet.generated b/3.9/generated/Examples/RestTransactionGet.generated index ab75e9a706..70bc78f631 100644 --- a/3.9/generated/Examples/RestTransactionGet.generated +++ b/3.9/generated/Examples/RestTransactionGet.generated @@ -1,17 +1,17 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/transaction/68260 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/transaction/3782 HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 69 +content-length: 68 server: ArangoDB x-content-type-options: nosniff { - "code" : 200, - "error" : false, - "result" : { - "id" : "68260", - "status" : "running" + "code" : 200, + "error" : false, + "result" : { + "id" : "3782", + "status" : "running" } } diff --git a/3.9/generated/Examples/RestTransactionMulti.generated b/3.9/generated/Examples/RestTransactionMulti.generated index f368408f8f..f3e62e8413 100644 --- a/3.9/generated/Examples/RestTransactionMulti.generated +++ b/3.9/generated/Examples/RestTransactionMulti.generated @@ -1,12 +1,12 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/transaction <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/transaction <<EOF { - "collections" : { - "write" : [ - "products", - "materials" + "collections" : { + "write" : [ + "products", + "materials" ] }, - "action" : "function () {var db = require('@arangodb').db;db.products.save({});db.materials.save({});return 'worked!';}" + "action" : "function () {var db = require('@arangodb').db;db.products.save({});db.materials.save({});return 'worked!';}" } EOF @@ -18,7 +18,7 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "result" : "worked!" + "error" : false, + "code" : 200, + "result" : "worked!" } diff --git a/3.9/generated/Examples/RestTransactionNonExisting.generated b/3.9/generated/Examples/RestTransactionNonExisting.generated index 001df6258d..bd7c246a19 100644 --- a/3.9/generated/Examples/RestTransactionNonExisting.generated +++ b/3.9/generated/Examples/RestTransactionNonExisting.generated @@ -1,9 +1,9 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/transaction <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/transaction <<EOF { - "collections" : { - "read" : "products" + "collections" : { + "read" : "products" }, - "action" : "function () { return true; }" + "action" : "function () { return true; }" } EOF @@ -15,8 +15,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 404, - "error" : true, - "errorMessage" : "collection or view not found: products", - "errorNum" : 1203 + "code" : 404, + "error" : true, + "errorMessage" : "collection or view not found: products", + "errorNum" : 1203 } diff --git a/3.9/generated/Examples/RestTransactionSingle.generated b/3.9/generated/Examples/RestTransactionSingle.generated index 90d25cfab0..67f2a6305a 100644 --- a/3.9/generated/Examples/RestTransactionSingle.generated +++ b/3.9/generated/Examples/RestTransactionSingle.generated @@ -1,9 +1,9 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/transaction <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/transaction <<EOF { - "collections" : { - "write" : "products" + "collections" : { + "write" : "products" }, - "action" : "function () { var db = require('@arangodb').db; db.products.save({}); return db.products.count(); }" + "action" : "function () { var db = require('@arangodb').db; db.products.save({}); return db.products.count(); }" } EOF @@ -15,7 +15,7 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "result" : 1 + "error" : false, + "code" : 200, + "result" : 1 } diff --git a/3.9/generated/Examples/RestTransactionsGet.generated b/3.9/generated/Examples/RestTransactionsGet.generated index 62acaff3bc..b10687e7df 100644 --- a/3.9/generated/Examples/RestTransactionsGet.generated +++ b/3.9/generated/Examples/RestTransactionsGet.generated @@ -1,17 +1,17 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/transaction +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/transaction HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 51 +content-length: 50 server: ArangoDB x-content-type-options: nosniff { - "transactions" : [ + "transactions" : [ { - "id" : "68299", - "state" : "running" + "id" : "3821", + "state" : "running" } ] } diff --git a/3.9/generated/Examples/RestUpdateUser.generated b/3.9/generated/Examples/RestUpdateUser.generated index 815db475ba..7804d4b087 100644 --- a/3.9/generated/Examples/RestUpdateUser.generated +++ b/3.9/generated/Examples/RestUpdateUser.generated @@ -1,6 +1,6 @@ -shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/user/admin@myapp <<EOF +shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/user/admin@myapp <<EOF { - "passwd" : "secure" + "passwd" : "secure" } EOF @@ -12,10 +12,10 @@ server: ArangoDB x-content-type-options: nosniff { - "user" : "admin@myapp", - "active" : true, - "extra" : { + "user" : "admin@myapp", + "active" : true, + "extra" : { }, - "error" : false, - "code" : 200 + "error" : false, + "code" : 200 } diff --git a/3.9/generated/Examples/RestVersion.generated b/3.9/generated/Examples/RestVersion.generated index 02bdfd94e7..56e1bed610 100644 --- a/3.9/generated/Examples/RestVersion.generated +++ b/3.9/generated/Examples/RestVersion.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/version +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/version HTTP/1.1 200 OK content-type: application/json @@ -8,7 +8,7 @@ server: ArangoDB x-content-type-options: nosniff { - "server" : "arango", - "license" : "enterprise", - "version" : "3.9.0-devel" + "server" : "arango", + "license" : "enterprise", + "version" : "3.9.0-devel" } diff --git a/3.9/generated/Examples/RestVersionDetails.generated b/3.9/generated/Examples/RestVersionDetails.generated index 35bc3c8322..b25d97907d 100644 --- a/3.9/generated/Examples/RestVersionDetails.generated +++ b/3.9/generated/Examples/RestVersionDetails.generated @@ -1,67 +1,67 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/version?details=true +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/version?details=true HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 1813 +content-length: 1836 server: ArangoDB x-content-type-options: nosniff { - "server" : "arango", - "license" : "enterprise", - "version" : "3.9.0-devel", - "details" : { - "architecture" : "64bit", - "arm" : "false", - "asan" : "false", - "asm-crc32" : "true", - "assertions" : "false", - "avx" : "true", - "avx2" : "false", - "boost-version" : "1.71.0", - "build-date" : "2021-05-25 10:10:13", - "build-repository" : "heads/documentation-3.9/remove-old-docs-0-g76090cab8e", - "compiler" : "gcc [10.2.1 20201203]", - "cplusplus" : "201703", - "curl-version" : "none", - "debug" : "false", - "endianness" : "little", - "enterprise-build-repository" : "heads/documentation-3.9/remove-old-docs-0-g76090cab8e", - "enterprise-version" : "enterprise", - "failure-tests" : "false", - "fd-client-event-handler" : "poll", - "fd-setsize" : "1024", - "full-version-string" : "ArangoDB 3.9.0-devel enterprise [linux] 64bit, using jemalloc, build heads/documentation-3.9/remove-old-docs-0-g76090cab8e, VPack 0.1.35, RocksDB 6.8.0, ICU 64.2, V8 7.9.317, OpenSSL 1.1.1k 25 Mar 2021", - "icu-version" : "64.2", - "ipo" : "false", - "iresearch-version" : "1.0.0.0", - "jemalloc" : "true", - "libunwind" : "true", - "license" : "enterprise", - "maintainer-mode" : "false", - "memory-profiler" : "false", - "ndebug" : "true", - "openssl-version-compile-time" : "OpenSSL 1.1.1k 25 Mar 2021", - "openssl-version-run-time" : "OpenSSL 1.1.1k 25 Mar 2021", - "optimization-flags" : "-march=sandybridge -msse2 -msse3 -mssse3 -msse4.1 -msse4.2 -mavx -mno-sse4a -mno-fma -mno-bmi2 -mno-avx2 -mno-xop -mno-fma4 -mno-avx512f -mno-avx512vl -mno-avx512pf -mno-avx512er -mno-avx512cd -mno-avx512dq -mno-avx512bw -mno-avx512ifma -mno-avx512vbmi", - "pic" : "2", - "pie" : "2", - "platform" : "linux", - "reactor-type" : "epoll", - "rocksdb-version" : "6.8.0", - "server-version" : "3.9.0-devel", - "sizeof int" : "4", - "sizeof long" : "8", - "sizeof void*" : "8", - "sse42" : "true", - "tsan" : "false", - "unaligned-access" : "true", - "v8-version" : "7.9.317", - "vpack-version" : "0.1.35", - "zlib-version" : "1.2.11", - "mode" : "server", - "role" : "SINGLE", - "host" : "gce-04ghcq" + "server" : "arango", + "license" : "enterprise", + "version" : "3.9.0-devel", + "details" : { + "architecture" : "64bit", + "arm" : "false", + "asan" : "false", + "asm-crc32" : "true", + "assertions" : "true", + "avx" : "true", + "avx2" : "true", + "boost-version" : "1.71.0", + "build-date" : "2021-07-26 10:12:03", + "build-repository" : "heads/feature/hybrid-smart-graph-0-g724809bd95", + "compiler" : "clang [Apple LLVM 12.0.5 (clang-1205.0.22.11)]", + "cplusplus" : "201703", + "curl-version" : "none", + "debug" : "false", + "endianness" : "little", + "enterprise-build-repository" : "heads/feature/hybrid-smart-graph-0-g724809bd95", + "enterprise-version" : "enterprise", + "failure-tests" : "true", + "fd-client-event-handler" : "poll", + "fd-setsize" : "1024", + "full-version-string" : "ArangoDB 3.9.0-devel enterprise [darwin] 64bit maintainer mode, using build heads/feature/hybrid-smart-graph-0-g724809bd95, VPack 0.1.35, RocksDB 6.8.0, ICU 64.2, V8 7.9.317, OpenSSL 1.1.1k 25 Mar 2021", + "icu-version" : "64.2", + "ipo" : "false", + "iresearch-version" : "1.0.0.0", + "jemalloc" : "false", + "libunwind" : "false", + "license" : "enterprise", + "maintainer-mode" : "true", + "memory-profiler" : "false", + "ndebug" : "true", + "openssl-version-compile-time" : "OpenSSL 1.1.1k 25 Mar 2021", + "openssl-version-run-time" : "OpenSSL 1.1.1k 25 Mar 2021", + "optimization-flags" : "-march=skylake -msse2 -msse3 -mssse3 -msse4.1 -msse4.2 -mavx -mfma -mbmi2 -mavx2 -mno-sse4a -mno-xop -mno-fma4 -mno-avx512f -mno-avx512vl -mno-avx512pf -mno-avx512er -mno-avx512cd -mno-avx512dq -mno-avx512bw -mno-avx512ifma -mno-avx512vbmi", + "pic" : "2", + "pie" : "none", + "platform" : "darwin", + "reactor-type" : "kqueue", + "rocksdb-version" : "6.8.0", + "server-version" : "3.9.0-devel", + "sizeof int" : "4", + "sizeof long" : "8", + "sizeof void*" : "8", + "sse42" : "true", + "tsan" : "false", + "unaligned-access" : "true", + "v8-version" : "7.9.317", + "vpack-version" : "0.1.35", + "zlib-version" : "1.2.11", + "mode" : "server", + "role" : "SINGLE", + "host" : "881abbbb973856bd8121db712a8a523b" } } diff --git a/3.9/generated/Examples/RestViewDeleteViewIdentifierArangoSearch.generated b/3.9/generated/Examples/RestViewDeleteViewIdentifierArangoSearch.generated index 9b3b1472a7..2eb43395bc 100644 --- a/3.9/generated/Examples/RestViewDeleteViewIdentifierArangoSearch.generated +++ b/3.9/generated/Examples/RestViewDeleteViewIdentifierArangoSearch.generated @@ -1,4 +1,4 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/view/68309 +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/view/3831 HTTP/1.1 200 OK content-type: application/json @@ -8,7 +8,7 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "result" : true + "error" : false, + "code" : 200, + "result" : true } diff --git a/3.9/generated/Examples/RestViewDeleteViewNameArangoSearch.generated b/3.9/generated/Examples/RestViewDeleteViewNameArangoSearch.generated index c1771c9790..25ac8f4db7 100644 --- a/3.9/generated/Examples/RestViewDeleteViewNameArangoSearch.generated +++ b/3.9/generated/Examples/RestViewDeleteViewNameArangoSearch.generated @@ -1,4 +1,4 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/view/testView +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/view/testView HTTP/1.1 200 OK content-type: application/json @@ -8,7 +8,7 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "result" : true + "error" : false, + "code" : 200, + "result" : true } diff --git a/3.9/generated/Examples/RestViewGetAllViews.generated b/3.9/generated/Examples/RestViewGetAllViews.generated index b5b3eca6c4..cc8cadcfbd 100644 --- a/3.9/generated/Examples/RestViewGetAllViews.generated +++ b/3.9/generated/Examples/RestViewGetAllViews.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/view +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/view HTTP/1.1 200 OK content-type: application/json @@ -8,14 +8,14 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "result" : [ + "error" : false, + "code" : 200, + "result" : [ { - "globallyUniqueId" : "hABE4B0CCCE32/95", - "id" : "95", - "name" : "demoView", - "type" : "arangosearch" + "globallyUniqueId" : "h1F0FEB3590A8/95", + "id" : "95", + "name" : "demoView", + "type" : "arangosearch" } ] } diff --git a/3.9/generated/Examples/RestViewGetViewIdentifierArangoSearch.generated b/3.9/generated/Examples/RestViewGetViewIdentifierArangoSearch.generated index c42bfb1fcb..0821235a2e 100644 --- a/3.9/generated/Examples/RestViewGetViewIdentifierArangoSearch.generated +++ b/3.9/generated/Examples/RestViewGetViewIdentifierArangoSearch.generated @@ -1,17 +1,17 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/view/68319 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/view/3841 HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 120 +content-length: 118 server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "type" : "arangosearch", - "name" : "testView", - "id" : "68319", - "globallyUniqueId" : "hABE4B0CCCE32/68319" + "error" : false, + "code" : 200, + "type" : "arangosearch", + "id" : "3841", + "name" : "testView", + "globallyUniqueId" : "h1F0FEB3590A8/3841" } diff --git a/3.9/generated/Examples/RestViewGetViewNameArangoSearch.generated b/3.9/generated/Examples/RestViewGetViewNameArangoSearch.generated index e9e49c6135..0a3decf1cf 100644 --- a/3.9/generated/Examples/RestViewGetViewNameArangoSearch.generated +++ b/3.9/generated/Examples/RestViewGetViewNameArangoSearch.generated @@ -1,17 +1,17 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/view/testView +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/view/testView HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 120 +content-length: 118 server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "type" : "arangosearch", - "name" : "testView", - "id" : "68324", - "globallyUniqueId" : "hABE4B0CCCE32/68324" + "error" : false, + "code" : 200, + "type" : "arangosearch", + "id" : "3846", + "name" : "testView", + "globallyUniqueId" : "h1F0FEB3590A8/3846" } diff --git a/3.9/generated/Examples/RestViewGetViewPropertiesIdentifierArangoSearch.generated b/3.9/generated/Examples/RestViewGetViewPropertiesIdentifierArangoSearch.generated index 218e8d22d6..321c3deac7 100644 --- a/3.9/generated/Examples/RestViewGetViewPropertiesIdentifierArangoSearch.generated +++ b/3.9/generated/Examples/RestViewGetViewPropertiesIdentifierArangoSearch.generated @@ -1,36 +1,36 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/view/68329/properties +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/view/3851/properties HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 496 +content-length: 494 server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "writebufferSizeMax" : 33554432, - "writebufferIdle" : 64, - "cleanupIntervalStep" : 2, - "commitIntervalMsec" : 1000, - "consolidationIntervalMsec" : 1000, - "consolidationPolicy" : { - "type" : "tier", - "segmentsBytesFloor" : 2097152, - "segmentsBytesMax" : 5368709120, - "segmentsMax" : 10, - "segmentsMin" : 1, - "minScore" : 0 + "error" : false, + "code" : 200, + "writebufferSizeMax" : 33554432, + "type" : "arangosearch", + "primarySort" : [ ], + "name" : "products", + "writebufferIdle" : 64, + "writebufferActive" : 0, + "links" : { }, - "primarySortCompression" : "lz4", - "writebufferActive" : 0, - "links" : { + "consolidationIntervalMsec" : 1000, + "primarySortCompression" : "lz4", + "globallyUniqueId" : "h1F0FEB3590A8/3851", + "storedValues" : [ ], + "consolidationPolicy" : { + "type" : "tier", + "segmentsBytesFloor" : 2097152, + "segmentsBytesMax" : 5368709120, + "segmentsMax" : 10, + "segmentsMin" : 1, + "minScore" : 0 }, - "globallyUniqueId" : "hABE4B0CCCE32/68329", - "name" : "products", - "id" : "68329", - "storedValues" : [ ], - "primarySort" : [ ], - "type" : "arangosearch" + "id" : "3851", + "commitIntervalMsec" : 1000, + "cleanupIntervalStep" : 2 } diff --git a/3.9/generated/Examples/RestViewGetViewPropertiesNameArangoSearch.generated b/3.9/generated/Examples/RestViewGetViewPropertiesNameArangoSearch.generated index 97be53058d..fcb3c48f48 100644 --- a/3.9/generated/Examples/RestViewGetViewPropertiesNameArangoSearch.generated +++ b/3.9/generated/Examples/RestViewGetViewPropertiesNameArangoSearch.generated @@ -1,36 +1,36 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/view/products/properties +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/view/products/properties HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 496 +content-length: 494 server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "writebufferSizeMax" : 33554432, - "writebufferIdle" : 64, - "cleanupIntervalStep" : 2, - "commitIntervalMsec" : 1000, - "consolidationIntervalMsec" : 1000, - "consolidationPolicy" : { - "type" : "tier", - "segmentsBytesFloor" : 2097152, - "segmentsBytesMax" : 5368709120, - "segmentsMax" : 10, - "segmentsMin" : 1, - "minScore" : 0 + "error" : false, + "code" : 200, + "writebufferSizeMax" : 33554432, + "type" : "arangosearch", + "primarySort" : [ ], + "name" : "products", + "writebufferIdle" : 64, + "writebufferActive" : 0, + "links" : { }, - "primarySortCompression" : "lz4", - "writebufferActive" : 0, - "links" : { + "consolidationIntervalMsec" : 1000, + "primarySortCompression" : "lz4", + "globallyUniqueId" : "h1F0FEB3590A8/3857", + "storedValues" : [ ], + "consolidationPolicy" : { + "type" : "tier", + "segmentsBytesFloor" : 2097152, + "segmentsBytesMax" : 5368709120, + "segmentsMax" : 10, + "segmentsMin" : 1, + "minScore" : 0 }, - "globallyUniqueId" : "hABE4B0CCCE32/68335", - "name" : "products", - "id" : "68335", - "storedValues" : [ ], - "primarySort" : [ ], - "type" : "arangosearch" + "id" : "3857", + "commitIntervalMsec" : 1000, + "cleanupIntervalStep" : 2 } diff --git a/3.9/generated/Examples/RestViewPatchPropertiesArangoSearch.generated b/3.9/generated/Examples/RestViewPatchPropertiesArangoSearch.generated index b39790b0b5..5b714ed26f 100644 --- a/3.9/generated/Examples/RestViewPatchPropertiesArangoSearch.generated +++ b/3.9/generated/Examples/RestViewPatchPropertiesArangoSearch.generated @@ -1,38 +1,38 @@ -shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/view/products/properties <<EOF +shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/view/products/properties <<EOF { - "locale" : "en" + "locale" : "en" } EOF HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 471 +content-length: 469 server: ArangoDB x-content-type-options: nosniff { - "globallyUniqueId" : "hABE4B0CCCE32/68341", - "id" : "68341", - "name" : "products", - "type" : "arangosearch", - "cleanupIntervalStep" : 2, - "commitIntervalMsec" : 1000, - "consolidationIntervalMsec" : 1000, - "consolidationPolicy" : { - "type" : "tier", - "segmentsBytesFloor" : 2097152, - "segmentsBytesMax" : 5368709120, - "segmentsMax" : 10, - "segmentsMin" : 1, - "minScore" : 0 + "globallyUniqueId" : "h1F0FEB3590A8/3863", + "id" : "3863", + "name" : "products", + "type" : "arangosearch", + "cleanupIntervalStep" : 2, + "commitIntervalMsec" : 1000, + "consolidationIntervalMsec" : 1000, + "consolidationPolicy" : { + "type" : "tier", + "segmentsBytesFloor" : 2097152, + "segmentsBytesMax" : 5368709120, + "segmentsMax" : 10, + "segmentsMin" : 1, + "minScore" : 0 }, - "primarySort" : [ ], - "primarySortCompression" : "lz4", - "storedValues" : [ ], - "writebufferActive" : 0, - "writebufferIdle" : 64, - "writebufferSizeMax" : 33554432, - "links" : { + "primarySort" : [ ], + "primarySortCompression" : "lz4", + "storedValues" : [ ], + "writebufferActive" : 0, + "writebufferIdle" : 64, + "writebufferSizeMax" : 33554432, + "links" : { } } diff --git a/3.9/generated/Examples/RestViewPostViewArangoSearch.generated b/3.9/generated/Examples/RestViewPostViewArangoSearch.generated index 25e777dde1..f9e85e383a 100644 --- a/3.9/generated/Examples/RestViewPostViewArangoSearch.generated +++ b/3.9/generated/Examples/RestViewPostViewArangoSearch.generated @@ -1,39 +1,39 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/view <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/view <<EOF { - "name" : "testViewBasics", - "type" : "arangosearch" + "name" : "testViewBasics", + "type" : "arangosearch" } EOF HTTP/1.1 201 Created content-type: application/json connection: Keep-Alive -content-length: 477 +content-length: 475 server: ArangoDB x-content-type-options: nosniff { - "globallyUniqueId" : "hABE4B0CCCE32/68347", - "id" : "68347", - "name" : "testViewBasics", - "type" : "arangosearch", - "cleanupIntervalStep" : 2, - "commitIntervalMsec" : 1000, - "consolidationIntervalMsec" : 1000, - "consolidationPolicy" : { - "type" : "tier", - "segmentsBytesFloor" : 2097152, - "segmentsBytesMax" : 5368709120, - "segmentsMax" : 10, - "segmentsMin" : 1, - "minScore" : 0 + "globallyUniqueId" : "h1F0FEB3590A8/3869", + "id" : "3869", + "name" : "testViewBasics", + "type" : "arangosearch", + "cleanupIntervalStep" : 2, + "commitIntervalMsec" : 1000, + "consolidationIntervalMsec" : 1000, + "consolidationPolicy" : { + "type" : "tier", + "segmentsBytesFloor" : 2097152, + "segmentsBytesMax" : 5368709120, + "segmentsMax" : 10, + "segmentsMin" : 1, + "minScore" : 0 }, - "primarySort" : [ ], - "primarySortCompression" : "lz4", - "storedValues" : [ ], - "writebufferActive" : 0, - "writebufferIdle" : 64, - "writebufferSizeMax" : 33554432, - "links" : { + "primarySort" : [ ], + "primarySortCompression" : "lz4", + "storedValues" : [ ], + "writebufferActive" : 0, + "writebufferIdle" : 64, + "writebufferSizeMax" : 33554432, + "links" : { } } diff --git a/3.9/generated/Examples/RestViewPutPropertiesArangoSearch.generated b/3.9/generated/Examples/RestViewPutPropertiesArangoSearch.generated index e8c2a29814..b436f76c19 100644 --- a/3.9/generated/Examples/RestViewPutPropertiesArangoSearch.generated +++ b/3.9/generated/Examples/RestViewPutPropertiesArangoSearch.generated @@ -1,38 +1,38 @@ -shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/view/products/properties <<EOF +shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/view/products/properties <<EOF { - "locale" : "en" + "locale" : "en" } EOF HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 471 +content-length: 469 server: ArangoDB x-content-type-options: nosniff { - "globallyUniqueId" : "hABE4B0CCCE32/68352", - "id" : "68352", - "name" : "products", - "type" : "arangosearch", - "cleanupIntervalStep" : 2, - "commitIntervalMsec" : 1000, - "consolidationIntervalMsec" : 1000, - "consolidationPolicy" : { - "type" : "tier", - "segmentsBytesFloor" : 2097152, - "segmentsBytesMax" : 5368709120, - "segmentsMax" : 10, - "segmentsMin" : 1, - "minScore" : 0 + "globallyUniqueId" : "h1F0FEB3590A8/3874", + "id" : "3874", + "name" : "products", + "type" : "arangosearch", + "cleanupIntervalStep" : 2, + "commitIntervalMsec" : 1000, + "consolidationIntervalMsec" : 1000, + "consolidationPolicy" : { + "type" : "tier", + "segmentsBytesFloor" : 2097152, + "segmentsBytesMax" : 5368709120, + "segmentsMax" : 10, + "segmentsMin" : 1, + "minScore" : 0 }, - "primarySort" : [ ], - "primarySortCompression" : "lz4", - "storedValues" : [ ], - "writebufferActive" : 0, - "writebufferIdle" : 64, - "writebufferSizeMax" : 33554432, - "links" : { + "primarySort" : [ ], + "primarySortCompression" : "lz4", + "storedValues" : [ ], + "writebufferActive" : 0, + "writebufferIdle" : 64, + "writebufferSizeMax" : 33554432, + "links" : { } } diff --git a/3.9/generated/Examples/RestViewPutRename.generated b/3.9/generated/Examples/RestViewPutRename.generated index f4c97363f5..b7336fc43b 100644 --- a/3.9/generated/Examples/RestViewPutRename.generated +++ b/3.9/generated/Examples/RestViewPutRename.generated @@ -1,21 +1,21 @@ -shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/view/products1/rename <<EOF +shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/view/products1/rename <<EOF { - "name" : "viewNewName" + "name" : "viewNewName" } EOF HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 123 +content-length: 121 server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "type" : "arangosearch", - "name" : "viewNewName", - "id" : "68359", - "globallyUniqueId" : "hABE4B0CCCE32/68359" + "error" : false, + "code" : 200, + "type" : "arangosearch", + "id" : "3881", + "name" : "viewNewName", + "globallyUniqueId" : "h1F0FEB3590A8/3881" } diff --git a/3.9/generated/Examples/RestWalAccessFirstTick.generated b/3.9/generated/Examples/RestWalAccessFirstTick.generated index 2078d2e6c8..15e1457906 100644 --- a/3.9/generated/Examples/RestWalAccessFirstTick.generated +++ b/3.9/generated/Examples/RestWalAccessFirstTick.generated @@ -1,17 +1,17 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/wal/lastTick +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/wal/lastTick HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 111 +content-length: 108 server: ArangoDB x-content-type-options: nosniff { - "time" : "2021-05-25T10:23:44Z", - "tick" : "179250", - "server" : { - "version" : "3.9.0-devel", - "serverId" : "188998707105330" + "time" : "2021-08-04T14:08:12Z", + "tick" : "7695", + "server" : { + "version" : "3.9.0-devel", + "serverId" : "34153231126696" } } diff --git a/3.9/generated/Examples/RestWalAccessTailingBufferLimit.generated b/3.9/generated/Examples/RestWalAccessTailingBufferLimit.generated index 317f9a8c80..f17345f754 100644 --- a/3.9/generated/Examples/RestWalAccessTailingBufferLimit.generated +++ b/3.9/generated/Examples/RestWalAccessTailingBufferLimit.generated @@ -1,20 +1,20 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/wal/tail?from=179250&chunkSize=400 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/wal/tail?from=7695&chunkSize=400 HTTP/1.1 200 OK content-type: application/x-arango-dump connection: Keep-Alive -content-length: 74 +content-length: 71 server: ArangoDB x-arango-replication-checkmore: true x-arango-replication-frompresent: true -x-arango-replication-lastincluded: 179266 -x-arango-replication-lastscanned: 179276 -x-arango-replication-lasttick: 179276 +x-arango-replication-lastincluded: 7711 +x-arango-replication-lastscanned: 7721 +x-arango-replication-lasttick: 7721 x-content-type-options: nosniff { - "tick" : "179266", - "type" : 2001, - "db" : "_system", - "cuid" : "hABE4B0CCCE32/68368" + "tick" : "7711", + "type" : 2001, + "db" : "_system", + "cuid" : "h1F0FEB3590A8/3890" } diff --git a/3.9/generated/Examples/RestWalAccessTailingEmpty.generated b/3.9/generated/Examples/RestWalAccessTailingEmpty.generated index 174cef8d5b..1a07898a1c 100644 --- a/3.9/generated/Examples/RestWalAccessTailingEmpty.generated +++ b/3.9/generated/Examples/RestWalAccessTailingEmpty.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/wal/tail?from=179276 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/wal/tail?from=7721 HTTP/1.1 204 No Content content-type: application/x-arango-dump @@ -8,7 +8,7 @@ server: ArangoDB x-arango-replication-checkmore: false x-arango-replication-frompresent: true x-arango-replication-lastincluded: 0 -x-arango-replication-lastscanned: 179273 -x-arango-replication-lasttick: 179276 +x-arango-replication-lastscanned: 7718 +x-arango-replication-lasttick: 7721 x-content-type-options: nosniff diff --git a/3.9/generated/Examples/RestWalAccessTailingSome.generated b/3.9/generated/Examples/RestWalAccessTailingSome.generated index 1a394fc95d..21d52e59e2 100644 --- a/3.9/generated/Examples/RestWalAccessTailingSome.generated +++ b/3.9/generated/Examples/RestWalAccessTailingSome.generated @@ -1,20 +1,20 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/wal/tail?from=179276 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/wal/tail?from=7721 HTTP/1.1 200 OK content-type: application/x-arango-dump connection: Keep-Alive -content-length: 74 +content-length: 71 server: ArangoDB x-arango-replication-checkmore: true x-arango-replication-frompresent: true -x-arango-replication-lastincluded: 179292 -x-arango-replication-lastscanned: 179302 -x-arango-replication-lasttick: 179302 +x-arango-replication-lastincluded: 7737 +x-arango-replication-lastscanned: 7750 +x-arango-replication-lasttick: 7750 x-content-type-options: nosniff { - "tick" : "179292", - "type" : 2001, - "db" : "_system", - "cuid" : "hABE4B0CCCE32/68380" + "tick" : "7737", + "type" : 2001, + "db" : "_system", + "cuid" : "h1F0FEB3590A8/3902" }↩ diff --git a/3.9/generated/Examples/RestWalAccessTickRange.generated b/3.9/generated/Examples/RestWalAccessTickRange.generated index c8490e820c..3c8eca882b 100644 --- a/3.9/generated/Examples/RestWalAccessTickRange.generated +++ b/3.9/generated/Examples/RestWalAccessTickRange.generated @@ -1,18 +1,18 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/wal/range +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/wal/range HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 133 +content-length: 128 server: ArangoDB x-content-type-options: nosniff { - "time" : "2021-05-25T10:23:46Z", - "tickMin" : "174322", - "tickMax" : "179302", - "server" : { - "version" : "3.9.0-devel", - "serverId" : "188998707105330" + "time" : "2021-08-04T14:08:14Z", + "tickMin" : "2769", + "tickMax" : "7750", + "server" : { + "version" : "3.9.0-devel", + "serverId" : "34153231126696" } } diff --git a/3.9/generated/Examples/arangobackup.json b/3.9/generated/Examples/arangobackup.json new file mode 100644 index 0000000000..9a13168eeb --- /dev/null +++ b/3.9/generated/Examples/arangobackup.json @@ -0,0 +1,1116 @@ +{ + "abort" : { + "category" : "command", + "deprecatedIn" : null, + "description" : "abort transfer with given status-id (upload/download operation)", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "allow-inconsistent" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "whether to attempt to continue in face of errors; may result in inconsistent backup state (create operation)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "check-configuration" : { + "category" : "command", + "deprecatedIn" : null, + "description" : "check the configuration and exit", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "config" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "the configuration file or 'none'", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "configuration" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "the configuration file or 'none'", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "define" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "define key=value for a @key@ entry in config file", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string..." + }, + "dump-dependencies" : { + "category" : "command", + "deprecatedIn" : null, + "description" : "dump dependency graph", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "dump-options" : { + "category" : "command", + "deprecatedIn" : null, + "description" : "dump configuration options in JSON format", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "force" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "abort transactions if needed to ensure a consistent snapshot. This option can destroy the atomicity of your transactions in the presence of intermediate commits! Use it with great care and only if you really need a consistent backup at all costs (create operation)", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "identifier" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "a unique identifier for a backup (restore/upload/download operation)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "ignore-version" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "ignore stored version of a backup. Restore may not work if versions mismatch (restore operation)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "label" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "an additional label to add to the backup identifier (create operation)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "log" : { + "category" : "option", + "default" : [ + "info" + ], + "deprecatedIn" : [ + "v3.5.0" + ], + "description" : "the global or topic-specific log level", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string..." + }, + "log.color" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "use colors for TTY logging", + "dynamic" : true, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.escape" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "escape characters when logging", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.file" : { + "category" : "option", + "default" : "-", + "deprecatedIn" : null, + "description" : "shortcut for '--log.output file://'", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.file-group" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "group to use for new log file, user must be a member of this group", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.4.5" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.file-mode" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "mode to use for new log file, umask will be applied as well", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.4.5" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.force-direct" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "do not start a seperate thread for logging", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.foreground-tty" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "also log to tty if backgrounded", + "dynamic" : true, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.hostname" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "hostname to use in log message (empty for none, use 'auto' to automatically figure out hostname)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.ids" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "log unique message ids", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.level" : { + "category" : "option", + "default" : [ + "info" + ], + "deprecatedIn" : null, + "description" : "the global or topic-specific log level", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string..." + }, + "log.line-number" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "include the function name, file name and line number of the source code that issues the log message. Format: `[func@FileName.cpp:123]`", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.max-entry-length" : { + "category" : "option", + "default" : 134217728, + "deprecatedIn" : null, + "description" : "maximum length of a log entry (in bytes)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.7.9" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "uint32" + }, + "log.output" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "log destination(s), e.g. file:///path/to/file (any '$PID' will be replaced with the process id)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string..." + }, + "log.performance" : { + "category" : "option", + "default" : false, + "deprecatedIn" : [ + "v3.5.0" + ], + "description" : "shortcut for '--log.level performance=trace'", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.prefix" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "prefix log message with this string", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.process" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "show process identifier (pid) in log message", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.request-parameters" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "include full URLs and HTTP request parameters in trace logs", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.role" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "log server role", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.shorten-filenames" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "shorten filenames in log output (use with --log.line-number)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.thread" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "show thread identifier in log message", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.thread-name" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "show thread name in log message", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.time-format" : { + "category" : "option", + "default" : "utc-datestring", + "deprecatedIn" : null, + "description" : "time format to use in logs", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string", + "values" : "Possible values: \"local-datestring\", \"timestamp\", \"timestamp-micros\", \"timestamp-millis\", \"uptime\", \"uptime-micros\", \"uptime-millis\", \"utc-datestring\", \"utc-datestring-millis\"" + }, + "log.use-json-format" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "use json output format", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.use-local-time" : { + "category" : "option", + "default" : false, + "deprecatedIn" : [ + "v3.5.0" + ], + "description" : "use local timezone instead of UTC", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.use-microtime" : { + "category" : "option", + "default" : false, + "deprecatedIn" : [ + "v3.5.0" + ], + "description" : "use microtime instead", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "max-wait-for-lock" : { + "category" : "option", + "default" : 60, + "deprecatedIn" : null, + "description" : "maximum time to wait in seconds to acquire a lock on all necessary resources (create operation)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "double" + }, + "max-wait-for-restart" : { + "category" : "option", + "default" : 0, + "deprecatedIn" : null, + "description" : "maximum time to wait in seconds for the server to restart after a restore operation before reporting an error; if zero, arangobackup will not wait to check that the server restarts and will simply return the result of the restore request (restore operation)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "double" + }, + "operation" : { + "category" : "option", + "default" : "list", + "deprecatedIn" : null, + "description" : "operation to perform (may be specified as positional argument without '--operation')", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string", + "values" : "Possible values: \"create\", \"delete\", \"download\", \"list\", \"restore\", \"upload\"" + }, + "random.generator" : { + "category" : "option", + "default" : 1, + "deprecatedIn" : null, + "description" : "random number generator to use (1 = MERSENNE, 2 = RANDOM, 3 = URANDOM, 4 = COMBINED (not for Windows), 5 = WinCrypt (Windows only)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "random", + "type" : "uint32", + "values" : "Possible values: 1, 2, 3, 4" + }, + "rclone-config-file" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "filename of the Rclone configuration file used forfile transfer (upload/download operation)", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "remote-path" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "remote Rclone path of directory used to store or receive backups (upload/download operation)", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "server.authentication" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "require authentication credentials when connecting (does not affect the server-side authentication settings)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "server", + "type" : "boolean" + }, + "server.connection-timeout" : { + "category" : "option", + "default" : 5, + "deprecatedIn" : null, + "description" : "connection timeout in seconds", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "double" + }, + "server.database" : { + "category" : "option", + "default" : "_system", + "deprecatedIn" : null, + "description" : "database name to use when connecting", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "string" + }, + "server.endpoint" : { + "category" : "option", + "default" : "http+tcp://127.0.0.1:8529", + "deprecatedIn" : null, + "description" : "endpoint to connect to. Use 'none' to start without a server. Use http+ssl:// or vst+ssl:// as schema to connect to an SSL-secured server endpoint, otherwise http+tcp://, vst+tcp:// or unix://", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "string" + }, + "server.force-json" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "force to not use VelocyPack for easier debugging", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.6.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "server", + "type" : "boolean" + }, + "server.max-packet-size" : { + "category" : "option", + "default" : 1073741824, + "deprecatedIn" : null, + "description" : "maximum packet size (in bytes) for client/server communication", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "uint64" + }, + "server.password" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "password to use when connecting. If not specified and authentication is required, the user will be prompted for a password", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "string" + }, + "server.request-timeout" : { + "category" : "option", + "default" : 1200, + "deprecatedIn" : null, + "description" : "request timeout in seconds", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "double" + }, + "server.username" : { + "category" : "option", + "default" : "root", + "deprecatedIn" : null, + "description" : "username to use when connecting", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "string" + }, + "ssl.protocol" : { + "category" : "option", + "default" : 5, + "deprecatedIn" : null, + "description" : "ssl protocol (1 = SSLv2 (unsupported), 2 = SSLv2 or SSLv3 (negotiated), 3 = SSLv3, 4 = TLSv1, 5 = TLSv1.2, 6 = TLSv1.3, 9 = generic TLS)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ssl", + "type" : "uint64", + "values" : "Possible values: 1, 2, 3, 4, 5, 6, 9" + }, + "status-id" : { + "category" : "command", + "deprecatedIn" : null, + "description" : "returns the status of a transfer process (upload/download operation)", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "version" : { + "category" : "command", + "deprecatedIn" : null, + "description" : "reports the version and exits", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "version-json" : { + "category" : "command", + "deprecatedIn" : null, + "description" : "reports the version as JSON and exits", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.9.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + } +} diff --git a/3.9/generated/Examples/arangobench.json b/3.9/generated/Examples/arangobench.json new file mode 100644 index 0000000000..fa7b24f8d0 --- /dev/null +++ b/3.9/generated/Examples/arangobench.json @@ -0,0 +1,1395 @@ +{ + "async" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "send asynchronous requests", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "batch-size" : { + "category" : "option", + "default" : 0, + "deprecatedIn" : null, + "description" : "number of operations in one batch (0 disables batching)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "uint64" + }, + "check-configuration" : { + "category" : "command", + "deprecatedIn" : null, + "description" : "check the configuration and exit", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "collection" : { + "category" : "option", + "default" : "ArangoBenchmark", + "deprecatedIn" : null, + "description" : "collection name to use in tests (if they involve collections)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "complexity" : { + "category" : "option", + "default" : 1, + "deprecatedIn" : null, + "description" : "complexity parameter for the test (meaning depends on test case)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "uint64" + }, + "concurrency" : { + "category" : "option", + "default" : 1, + "deprecatedIn" : null, + "description" : "number of parallel threads and connections", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "uint64" + }, + "config" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "the configuration file or 'none'", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "configuration" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "the configuration file or 'none'", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "create-database" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "whether we should create the database specified via the server connection", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "custom-query" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "the query to be used in the 'custom-query' testcase", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "custom-query-file" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "path to a file with the query to be used in the 'custom-query' testcase. If --custom-query is specified as well, it has higher priority.", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "define" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "define key=value for a @key@ entry in config file", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string..." + }, + "delay" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "use a startup delay (necessary only when run in series)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "dump-dependencies" : { + "category" : "command", + "deprecatedIn" : null, + "description" : "dump dependency graph", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "dump-options" : { + "category" : "command", + "deprecatedIn" : null, + "description" : "dump configuration options in JSON format", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "duration" : { + "category" : "option", + "default" : 0, + "deprecatedIn" : null, + "description" : "test for duration seconds instead of a fixed test count", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "uint64" + }, + "histogram.interval-size" : { + "category" : "option", + "default" : 0, + "deprecatedIn" : null, + "description" : "bucket width, dynamically calculated by default: (first measured time * 20) / num-intervals", + "dynamic" : true, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "histogram", + "type" : "double" + }, + "histogram.num-intervals" : { + "category" : "option", + "default" : 1000, + "deprecatedIn" : null, + "description" : "number of buckets (resolution)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "histogram", + "type" : "uint64" + }, + "histogram.percentiles" : { + "category" : "option", + "default" : [ + 50, + 80, + 85, + 90, + 95, + 99 + ], + "deprecatedIn" : null, + "description" : "which percentiles to calculate", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "histogram", + "type" : "double..." + }, + "json-report-file" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "filename to write a report in JSON format to", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "junit-report-file" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "filename to write junit style report to", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "keep-alive" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "use HTTP keep-alive", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "log" : { + "category" : "option", + "default" : [ + "info" + ], + "deprecatedIn" : [ + "v3.5.0" + ], + "description" : "the global or topic-specific log level", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string..." + }, + "log.color" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "use colors for TTY logging", + "dynamic" : true, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.escape" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "escape characters when logging", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.file" : { + "category" : "option", + "default" : "-", + "deprecatedIn" : null, + "description" : "shortcut for '--log.output file://'", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.file-group" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "group to use for new log file, user must be a member of this group", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.4.5" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.file-mode" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "mode to use for new log file, umask will be applied as well", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.4.5" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.force-direct" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "do not start a seperate thread for logging", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.foreground-tty" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "also log to tty if backgrounded", + "dynamic" : true, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.hostname" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "hostname to use in log message (empty for none, use 'auto' to automatically figure out hostname)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.ids" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "log unique message ids", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.level" : { + "category" : "option", + "default" : [ + "info" + ], + "deprecatedIn" : null, + "description" : "the global or topic-specific log level", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string..." + }, + "log.line-number" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "include the function name, file name and line number of the source code that issues the log message. Format: `[func@FileName.cpp:123]`", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.max-entry-length" : { + "category" : "option", + "default" : 134217728, + "deprecatedIn" : null, + "description" : "maximum length of a log entry (in bytes)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.7.9" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "uint32" + }, + "log.output" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "log destination(s), e.g. file:///path/to/file (any '$PID' will be replaced with the process id)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string..." + }, + "log.performance" : { + "category" : "option", + "default" : false, + "deprecatedIn" : [ + "v3.5.0" + ], + "description" : "shortcut for '--log.level performance=trace'", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.prefix" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "prefix log message with this string", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.process" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "show process identifier (pid) in log message", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.request-parameters" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "include full URLs and HTTP request parameters in trace logs", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.role" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "log server role", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.shorten-filenames" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "shorten filenames in log output (use with --log.line-number)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.thread" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "show thread identifier in log message", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.thread-name" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "show thread name in log message", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.time-format" : { + "category" : "option", + "default" : "utc-datestring", + "deprecatedIn" : null, + "description" : "time format to use in logs", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string", + "values" : "Possible values: \"local-datestring\", \"timestamp\", \"timestamp-micros\", \"timestamp-millis\", \"uptime\", \"uptime-micros\", \"uptime-millis\", \"utc-datestring\", \"utc-datestring-millis\"" + }, + "log.use-json-format" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "use json output format", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.use-local-time" : { + "category" : "option", + "default" : false, + "deprecatedIn" : [ + "v3.5.0" + ], + "description" : "use local timezone instead of UTC", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.use-microtime" : { + "category" : "option", + "default" : false, + "deprecatedIn" : [ + "v3.5.0" + ], + "description" : "use microtime instead", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "number-of-shards" : { + "category" : "option", + "default" : 1, + "deprecatedIn" : null, + "description" : "number of shards of created collections (cluster only)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "uint64" + }, + "progress" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "log intermediate progress", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "quiet" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "suppress status messages", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "random.generator" : { + "category" : "option", + "default" : 1, + "deprecatedIn" : null, + "description" : "random number generator to use (1 = MERSENNE, 2 = RANDOM, 3 = URANDOM, 4 = COMBINED (not for Windows), 5 = WinCrypt (Windows only)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "random", + "type" : "uint32", + "values" : "Possible values: 1, 2, 3, 4" + }, + "replication-factor" : { + "category" : "option", + "default" : 1, + "deprecatedIn" : null, + "description" : "replication factor of created collections (cluster only)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "uint64" + }, + "requests" : { + "category" : "option", + "default" : 1000, + "deprecatedIn" : null, + "description" : "total number of operations", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "uint64" + }, + "runs" : { + "category" : "option", + "default" : 1, + "deprecatedIn" : null, + "description" : "run test n times (and calculate statistics based on median)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "uint64" + }, + "server.authentication" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "require authentication credentials when connecting (does not affect the server-side authentication settings)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "server", + "type" : "boolean" + }, + "server.connection-timeout" : { + "category" : "option", + "default" : 5, + "deprecatedIn" : null, + "description" : "connection timeout in seconds", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "double" + }, + "server.database" : { + "category" : "option", + "default" : "_system", + "deprecatedIn" : null, + "description" : "database name to use when connecting", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "string" + }, + "server.endpoint" : { + "category" : "option", + "default" : "http+tcp://127.0.0.1:8529", + "deprecatedIn" : null, + "description" : "endpoint to connect to. Use 'none' to start without a server. Use http+ssl:// or vst+ssl:// as schema to connect to an SSL-secured server endpoint, otherwise http+tcp://, vst+tcp:// or unix://", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "string" + }, + "server.force-json" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "force to not use VelocyPack for easier debugging", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.6.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "server", + "type" : "boolean" + }, + "server.max-packet-size" : { + "category" : "option", + "default" : 1073741824, + "deprecatedIn" : null, + "description" : "maximum packet size (in bytes) for client/server communication", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "uint64" + }, + "server.password" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "password to use when connecting. If not specified and authentication is required, the user will be prompted for a password", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "string" + }, + "server.request-timeout" : { + "category" : "option", + "default" : 1200, + "deprecatedIn" : null, + "description" : "request timeout in seconds", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "double" + }, + "server.username" : { + "category" : "option", + "default" : "root", + "deprecatedIn" : null, + "description" : "username to use when connecting", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "string" + }, + "ssl.protocol" : { + "category" : "option", + "default" : 5, + "deprecatedIn" : null, + "description" : "ssl protocol (1 = SSLv2 (unsupported), 2 = SSLv2 or SSLv3 (negotiated), 3 = SSLv3, 4 = TLSv1, 5 = TLSv1.2, 6 = TLSv1.3, 9 = generic TLS)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ssl", + "type" : "uint64", + "values" : "Possible values: 1, 2, 3, 4, 5, 6, 9" + }, + "temp.path" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "path for temporary files", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "temp", + "type" : "string" + }, + "test-case" : { + "category" : "option", + "default" : "version", + "deprecatedIn" : null, + "description" : "test case to use", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string", + "values" : "Possible values: \"aqlinsert\", \"aqltrx\", \"aqlv8\", \"collection\", \"counttrx\", \"crud\", \"crud-append\", \"crud-write-read\", \"custom-query\", \"deadlocktrx\", \"document\", \"edge\", \"hash\", \"import-document\", \"multi-collection\", \"multitrx\", \"random-shapes\", \"shapes\", \"shapes-append\", \"skiplist\", \"stream-cursor\", \"version\"" + }, + "verbose" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "print out replies if the HTTP header indicates DB errors", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "version" : { + "category" : "command", + "deprecatedIn" : null, + "description" : "reports the version and exits", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "version-json" : { + "category" : "command", + "deprecatedIn" : null, + "description" : "reports the version as JSON and exits", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.9.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "wait-for-sync" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "use waitForSync for created collections", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + } +} diff --git a/3.9/generated/Examples/arangod.json b/3.9/generated/Examples/arangod.json new file mode 100644 index 0000000000..7b51f657a4 --- /dev/null +++ b/3.9/generated/Examples/arangod.json @@ -0,0 +1,9867 @@ +{ + "agency.activate" : { + "category" : "option", + "component" : [ + "agent" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "Activate agency", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "agency", + "type" : "boolean" + }, + "agency.compaction-keep-size" : { + "category" : "option", + "component" : [ + "agent" + ], + "default" : 50000, + "deprecatedIn" : null, + "description" : "keep as many indices before compaction point", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "agency", + "type" : "uint64" + }, + "agency.compaction-step-size" : { + "category" : "option", + "component" : [ + "agent" + ], + "default" : 1000, + "deprecatedIn" : null, + "description" : "step size between state machine compactions", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "agency", + "type" : "uint64" + }, + "agency.disaster-recovery-id" : { + "category" : "option", + "component" : [ + "agent" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "allows for specification of the id for this agent; dangerous option for disaster recover only!", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "agency", + "type" : "string" + }, + "agency.election-timeout-max" : { + "category" : "option", + "component" : [ + "agent" + ], + "default" : 5, + "deprecatedIn" : null, + "description" : "maximum timeout before an agent calls for new election (in seconds)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "agency", + "type" : "double" + }, + "agency.election-timeout-min" : { + "category" : "option", + "component" : [ + "agent" + ], + "default" : 1, + "deprecatedIn" : null, + "description" : "minimum timeout before an agent calls for new election (in seconds)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "agency", + "type" : "double" + }, + "agency.endpoint" : { + "category" : "option", + "component" : [ + "agent" + ], + "default" : [ + ], + "deprecatedIn" : null, + "description" : "agency endpoints", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "agency", + "type" : "string..." + }, + "agency.max-append-size" : { + "category" : "option", + "component" : [ + "agent" + ], + "default" : 250, + "deprecatedIn" : null, + "description" : "maximum size of appendEntries document (# log entries)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "agency", + "type" : "uint64" + }, + "agency.my-address" : { + "category" : "option", + "component" : [ + "agent" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "which address to advertise to the outside", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "agency", + "type" : "string" + }, + "agency.pool-size" : { + "category" : "option", + "component" : [ + "agent" + ], + "default" : 1, + "deprecatedIn" : null, + "description" : "number of agent pool", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "agency", + "type" : "uint64" + }, + "agency.size" : { + "category" : "option", + "component" : [ + "agent" + ], + "default" : 1, + "deprecatedIn" : null, + "description" : "number of agents", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "agency", + "type" : "uint64" + }, + "agency.supervision" : { + "category" : "option", + "component" : [ + "agent" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "perform arangodb cluster supervision", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "agency", + "type" : "boolean" + }, + "agency.supervision-frequency" : { + "category" : "option", + "component" : [ + "agent" + ], + "default" : 1, + "deprecatedIn" : null, + "description" : "arangodb cluster supervision frequency (in seconds)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "agency", + "type" : "double" + }, + "agency.supervision-grace-period" : { + "category" : "option", + "component" : [ + "agent" + ], + "default" : 10, + "deprecatedIn" : null, + "description" : "supervision time, after which a server is considered to have failed (in seconds)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "agency", + "type" : "double" + }, + "agency.supervision-ok-threshold" : { + "category" : "option", + "component" : [ + "agent" + ], + "default" : 5, + "deprecatedIn" : null, + "description" : "supervision time, after which a server is considered to be bad [s]", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "agency", + "type" : "double" + }, + "agency.wait-for-sync" : { + "category" : "option", + "component" : [ + "agent" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "wait for hard disk syncs on every persistence call (required in production)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "agency", + "type" : "boolean" + }, + "arangosearch.commit-threads" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 0, + "deprecatedIn" : null, + "description" : "upper limit to the allowed number of commit threads (0 == autodetect)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.7.5" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "arangosearch", + "type" : "uint32" + }, + "arangosearch.commit-threads-idle" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 0, + "deprecatedIn" : null, + "description" : "upper limit to the allowed number of idle threads to use for commit tasks (0 == autodetect)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.7.5" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "arangosearch", + "type" : "uint32" + }, + "arangosearch.consolidation-threads" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 0, + "deprecatedIn" : null, + "description" : "upper limit to the allowed number of consolidation threads (0 == autodetect)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.7.5" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "arangosearch", + "type" : "uint32" + }, + "arangosearch.consolidation-threads-idle" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 0, + "deprecatedIn" : null, + "description" : "upper limit to the allowed number of idle threads to use for consolidation tasks (0 == autodetect)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.7.5" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "arangosearch", + "type" : "uint32" + }, + "arangosearch.threads" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 0, + "deprecatedIn" : [ + "v3.7.5" + ], + "description" : "the exact number of threads to use for asynchronous tasks (0 == autodetect)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "arangosearch", + "type" : "uint32" + }, + "arangosearch.threads-limit" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 0, + "deprecatedIn" : [ + "v3.7.5" + ], + "description" : "upper limit to the autodetected number of threads to use for asynchronous tasks (0 == use default)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "arangosearch", + "type" : "uint32" + }, + "audit.hostname" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "hostname to use", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "audit", + "type" : "string" + }, + "audit.max-entry-length" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 134217728, + "deprecatedIn" : null, + "description" : "maximum length of a log entry (in bytes)", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : [ + "v3.8.0", + "v3.7.9" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "audit", + "type" : "uint32" + }, + "audit.output" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : [ + ], + "deprecatedIn" : null, + "description" : "audit destination(s)", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "audit", + "type" : "string..." + }, + "audit.queue" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "queue audit log message before writing them out (can reduce latency)", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "audit", + "type" : "boolean" + }, + "backup.api-enabled" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "true", + "deprecatedIn" : null, + "description" : "whether the backup api is enabled (true) or not (false), or only enabled for superuser JWT (jwt)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "backup", + "type" : "string" + }, + "backup.local-path-prefix" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "/", + "deprecatedIn" : null, + "description" : "this option restricts any backup target to a given path prefix", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "backup", + "type" : "string" + }, + "cache.rebalancing-interval" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 2000000, + "deprecatedIn" : null, + "description" : "microseconds between rebalancing attempts", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "cache", + "type" : "uint64" + }, + "cache.size" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 8053063680, + "deprecatedIn" : null, + "description" : "size of cache in bytes", + "dynamic" : true, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "cache", + "type" : "uint64" + }, + "check-configuration" : { + "category" : "command", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "deprecatedIn" : null, + "description" : "check the configuration and exit", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "cluster.agency-endpoint" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver" + ], + "default" : [ + ], + "deprecatedIn" : null, + "description" : "agency endpoint to connect to", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "cluster", + "type" : "string..." + }, + "cluster.api-jwt-policy" : { + "category" : "option", + "component" : [ + "coordinator" + ], + "default" : "jwt-compat", + "deprecatedIn" : null, + "description" : "access permissions required for accessing /_admin/cluster REST APIs (jwt-all = JWT required to access all operations, jwt-write = JWT required for post/put/delete operations, jwt-compat = 3.7 compatibility mode)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "cluster", + "type" : "string", + "values" : "Possible values: \"jwt-all\", \"jwt-compat\", \"jwt-write\"" + }, + "cluster.create-waits-for-sync-replication" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "active coordinator will wait for all replicas to create collection", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "cluster", + "type" : "boolean" + }, + "cluster.default-replication-factor" : { + "category" : "option", + "component" : [ + "coordinator" + ], + "default" : 0, + "deprecatedIn" : null, + "description" : "default replication factor for non-system collections", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.6.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "cluster", + "type" : "uint32" + }, + "cluster.force-one-shard" : { + "category" : "option", + "component" : [ + "coordinator" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "force one-shard mode for all new collections", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.6.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "cluster", + "type" : "boolean" + }, + "cluster.index-create-timeout" : { + "category" : "option", + "component" : [ + "coordinator" + ], + "default" : 3600, + "deprecatedIn" : null, + "description" : "amount of time (in seconds) the coordinator will wait for an index to be created before giving up", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "cluster", + "type" : "double" + }, + "cluster.max-number-of-shards" : { + "category" : "option", + "component" : [ + "coordinator" + ], + "default" : 1000, + "deprecatedIn" : null, + "description" : "maximum number of shards when creating new collections (0 = unrestricted)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.1" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "cluster", + "type" : "uint32" + }, + "cluster.max-replication-factor" : { + "category" : "option", + "component" : [ + "coordinator" + ], + "default" : 10, + "deprecatedIn" : null, + "description" : "maximum replication factor for new collections (0 = unrestricted)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.6.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "cluster", + "type" : "uint32" + }, + "cluster.min-replication-factor" : { + "category" : "option", + "component" : [ + "coordinator" + ], + "default" : 1, + "deprecatedIn" : null, + "description" : "minimum replication factor for new collections", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.6.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "cluster", + "type" : "uint32" + }, + "cluster.my-address" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "this server's endpoint (cluster internal)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "cluster", + "type" : "string" + }, + "cluster.my-advertised-endpoint" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "this server's advertised endpoint (e.g. external IP address or load balancer, optional)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "cluster", + "type" : "string" + }, + "cluster.my-role" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "this server's role", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "cluster", + "type" : "string" + }, + "cluster.require-persisted-id" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "if set to true, then the instance will only start if a UUID file is found in the database on startup. Setting this option will make sure the instance is started using an already existing database directory and not a new one. For the first start, the UUID file must either be created manually or the option must be set to false for the initial startup", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "cluster", + "type" : "boolean" + }, + "cluster.resign-leadership-on-shutdown" : { + "category" : "option", + "component" : [ + "dbserver" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "create resign leader ship job for this dbsever on shutdown", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "cluster", + "type" : "boolean" + }, + "cluster.synchronous-replication-timeout-factor" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 1, + "deprecatedIn" : null, + "description" : "all synchronous replication timeouts are multiplied by this factor", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "cluster", + "type" : "double" + }, + "cluster.synchronous-replication-timeout-maximum" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 3600, + "deprecatedIn" : null, + "description" : "all synchronous replication timeouts will be at most this value (in seconds)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "cluster", + "type" : "double" + }, + "cluster.synchronous-replication-timeout-minimum" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 900, + "deprecatedIn" : null, + "description" : "all synchronous replication timeouts will be at least this value (in seconds)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "cluster", + "type" : "double" + }, + "cluster.synchronous-replication-timeout-per-4k" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 0.1, + "deprecatedIn" : null, + "description" : "all synchronous replication timeouts are increased by this amount per 4096 bytes (in seconds)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "cluster", + "type" : "double" + }, + "cluster.system-replication-factor" : { + "category" : "option", + "component" : [ + "coordinator" + ], + "default" : 2, + "deprecatedIn" : null, + "description" : "default replication factor for system collections", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "cluster", + "type" : "uint32" + }, + "cluster.upgrade" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "auto", + "deprecatedIn" : null, + "description" : "perform a cluster upgrade if necessary (auto = perform upgrade and shut down only if `--database.auto-upgrade true` is set, disable = never perform upgrade, force = always perform an upgrade and shut down, online = always perform an upgrade but don't shut down)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "cluster", + "type" : "string", + "values" : "Possible values: \"auto\", \"disable\", \"force\", \"online\"" + }, + "cluster.write-concern" : { + "category" : "option", + "component" : [ + "coordinator" + ], + "default" : 1, + "deprecatedIn" : null, + "description" : "write concern used for writes to new collections", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.6.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "cluster", + "type" : "uint32" + }, + "config" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "the configuration file or 'none'", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "configuration" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "the configuration file or 'none'", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "console" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "start a JavaScript emergency console", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "daemon" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "background the server, running it as daemon", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "database.auto-upgrade" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "perform a database upgrade if necessary", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "database", + "type" : "boolean" + }, + "database.check-version" : { + "category" : "command", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "deprecatedIn" : null, + "description" : "checks the versions of the database and exit", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "database", + "type" : "boolean" + }, + "database.directory" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "path to the database directory", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "database", + "type" : "string" + }, + "database.force-sync-properties" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "force syncing of collection properties to disk, will use waitForSync value of collection when turned off", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "database", + "type" : "boolean" + }, + "database.ignore-datafile-errors" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "load collections even if datafiles may contain errors", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "database", + "type" : "boolean" + }, + "database.init-database" : { + "category" : "command", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "deprecatedIn" : null, + "description" : "initializes an empty database", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "database", + "type" : "boolean" + }, + "database.password" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "initial password of root user", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "database", + "type" : "string" + }, + "database.required-directory-state" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "any", + "deprecatedIn" : null, + "description" : "required state of database directory at startup (non-existing: database directory must not exist, existing: database directory must exist, empty: database directory must exist but be empty, populated: database directory must exist and contain specific files already, any: any state allowed)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "database", + "type" : "string", + "values" : "Possible values: \"any\", \"empty\", \"existing\", \"non-existing\", \"populated\"" + }, + "database.restore-admin" : { + "category" : "command", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "deprecatedIn" : null, + "description" : "resets the admin users and sets a new password", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "database", + "type" : "boolean" + }, + "database.upgrade-check" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "skip a database upgrade", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "database", + "type" : "boolean" + }, + "database.wait-for-sync" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "default wait-for-sync behavior, can be overwritten when creating a collection", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "database", + "type" : "boolean" + }, + "default-language" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "ISO-639 language code", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "default-language-check" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "check if default language matches stored language", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "define" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : [ + ], + "deprecatedIn" : null, + "description" : "define key=value for a @key@ entry in config file", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string..." + }, + "dump-dependencies" : { + "category" : "command", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "deprecatedIn" : null, + "description" : "dump dependency graph", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "dump-options" : { + "category" : "command", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "deprecatedIn" : null, + "description" : "dump configuration options in JSON format", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "fortune" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "show fortune cookie on startup", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "foxx.api" : { + "category" : "option", + "component" : [ + "coordinator", + "single" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "enables Foxx management REST APIs", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "foxx", + "type" : "boolean" + }, + "foxx.force-update-on-startup" : { + "category" : "option", + "component" : [ + "coordinator", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "ensure all Foxx services are synchronized before completeing the boot sequence", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.7.5" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "foxx", + "type" : "boolean" + }, + "foxx.queues" : { + "category" : "option", + "component" : [ + "coordinator", + "single" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "enable Foxx queues", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "foxx", + "type" : "boolean" + }, + "foxx.queues-poll-interval" : { + "category" : "option", + "component" : [ + "coordinator", + "single" + ], + "default" : 1, + "deprecatedIn" : null, + "description" : "poll interval (in seconds) for Foxx queue manager", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "foxx", + "type" : "double" + }, + "foxx.store" : { + "category" : "option", + "component" : [ + "coordinator", + "single" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "enables Foxx store in web interface", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "foxx", + "type" : "boolean" + }, + "frontend.proxy-request-check" : { + "category" : "option", + "component" : [ + "coordinator", + "single" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "enable proxy request checking", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "frontend", + "type" : "boolean" + }, + "frontend.trusted-proxy" : { + "category" : "option", + "component" : [ + "coordinator", + "single" + ], + "default" : [ + ], + "deprecatedIn" : null, + "description" : "list of proxies to trust (may be IP or network). Make sure --frontend.proxy-request-check is enabled", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "frontend", + "type" : "string..." + }, + "frontend.version-check" : { + "category" : "option", + "component" : [ + "coordinator", + "single" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "alert the user if new versions are available", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "frontend", + "type" : "boolean" + }, + "gid" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "switch to group-id after reading config files", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "http.allow-method-override" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : [ + "v3.8.0" + ], + "description" : "allow HTTP method override using special headers", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "http", + "type" : "boolean" + }, + "http.hide-product-header" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : [ + "v3.8.0" + ], + "description" : "do not expose \"Server: ArangoDB\" header in HTTP responses", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "http", + "type" : "boolean" + }, + "http.keep-alive-timeout" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 300, + "deprecatedIn" : null, + "description" : "keep-alive timeout in seconds", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "http", + "type" : "double" + }, + "http.permanently-redirect-root" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "if true, use a permanent redirect. If false, use a temporary", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.7.12" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "http", + "type" : "boolean" + }, + "http.redirect-root-to" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "/_admin/aardvark/index.html", + "deprecatedIn" : null, + "description" : "redirect of root URL", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.7.12" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "http", + "type" : "string" + }, + "http.trusted-origin" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : [ + ], + "deprecatedIn" : null, + "description" : "trusted origin URLs for CORS requests with credentials", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "http", + "type" : "string..." + }, + "hund" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "make ArangoDB bark on startup", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "javascript.allow-admin-execute" : { + "category" : "option", + "component" : [ + "coordinator", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "for testing purposes allow '_admin/execute', NEVER enable on production", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "javascript", + "type" : "boolean" + }, + "javascript.allow-external-process-control" : { + "category" : "option", + "component" : [ + "coordinator", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "allow execution and control of external processes from within JavaScript actions", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "javascript", + "type" : "boolean" + }, + "javascript.allow-port-testing" : { + "category" : "option", + "component" : [ + "coordinator", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "allow testing of ports from within JavaScript actions", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "javascript", + "type" : "boolean" + }, + "javascript.app-path" : { + "category" : "option", + "component" : [ + "coordinator", + "single" + ], + "default" : "./js/apps", + "deprecatedIn" : null, + "description" : "directory for Foxx applications", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string" + }, + "javascript.copy-installation" : { + "category" : "option", + "component" : [ + "coordinator", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "copy contents of 'javascript.startup-directory' on first start", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "javascript", + "type" : "boolean" + }, + "javascript.enabled" : { + "category" : "option", + "component" : [ + "coordinator", + "single" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "enable the V8 JavaScript engine", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "javascript", + "type" : "boolean" + }, + "javascript.endpoints-allowlist" : { + "category" : "option", + "component" : [ + "coordinator", + "single" + ], + "default" : [ + ], + "deprecatedIn" : null, + "description" : "endpoints that can be connected to via @arangodb/request module in JavaScript actions", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string..." + }, + "javascript.endpoints-denylist" : { + "category" : "option", + "component" : [ + "coordinator", + "single" + ], + "default" : [ + ], + "deprecatedIn" : null, + "description" : "endpoints that cannot be connected to via @arangodb/request module in JavaScript actions (if not in allowlist)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string..." + }, + "javascript.environment-variables-allowlist" : { + "category" : "option", + "component" : [ + "coordinator", + "single" + ], + "default" : [ + ], + "deprecatedIn" : null, + "description" : "environment variables that will be accessible in JavaScript", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string..." + }, + "javascript.environment-variables-denylist" : { + "category" : "option", + "component" : [ + "coordinator", + "single" + ], + "default" : [ + ], + "deprecatedIn" : null, + "description" : "environment variables that will be inaccessible in JavaScript (if not in allowlist)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string..." + }, + "javascript.files-allowlist" : { + "category" : "option", + "component" : [ + "coordinator", + "single" + ], + "default" : [ + ], + "deprecatedIn" : null, + "description" : "filesystem paths that will be accessible from within JavaScript actions", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string..." + }, + "javascript.gc-frequency" : { + "category" : "option", + "component" : [ + "coordinator", + "single" + ], + "default" : 60, + "deprecatedIn" : null, + "description" : "JavaScript time-based garbage collection frequency (each x seconds)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "double" + }, + "javascript.gc-interval" : { + "category" : "option", + "component" : [ + "coordinator", + "single" + ], + "default" : 2000, + "deprecatedIn" : null, + "description" : "JavaScript request-based garbage collection interval (each x requests)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "uint64" + }, + "javascript.harden" : { + "category" : "option", + "component" : [ + "coordinator", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "disables access to JavaScript functions in the internal module: getPid() and logLevel()", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "javascript", + "type" : "boolean" + }, + "javascript.module-directory" : { + "category" : "option", + "component" : [ + "coordinator", + "single" + ], + "default" : [ + "./enterprise/js" + ], + "deprecatedIn" : null, + "description" : "additional paths containing JavaScript modules", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string..." + }, + "javascript.script" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : [ + ], + "deprecatedIn" : null, + "description" : "run scripts and exit", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string..." + }, + "javascript.script-parameter" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : [ + ], + "deprecatedIn" : null, + "description" : "script parameter", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string..." + }, + "javascript.startup-directory" : { + "category" : "option", + "component" : [ + "coordinator", + "single" + ], + "default" : "./js", + "deprecatedIn" : null, + "description" : "path to the directory containing JavaScript startup scripts", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string" + }, + "javascript.startup-options-allowlist" : { + "category" : "option", + "component" : [ + "coordinator", + "single" + ], + "default" : [ + ], + "deprecatedIn" : null, + "description" : "startup options whose names match this regular expression will be allowed and exposed to JavaScript", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string..." + }, + "javascript.startup-options-denylist" : { + "category" : "option", + "component" : [ + "coordinator", + "single" + ], + "default" : [ + ], + "deprecatedIn" : null, + "description" : "startup options whose names match this regular expression will not be exposed (if not in allowlist) to JavaScript actions", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string..." + }, + "javascript.tasks" : { + "category" : "option", + "component" : [ + "coordinator", + "single" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "enable JavaScript tasks", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "javascript", + "type" : "boolean" + }, + "javascript.transactions" : { + "category" : "option", + "component" : [ + "coordinator", + "single" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "enable JavaScript transactions", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "javascript", + "type" : "boolean" + }, + "javascript.v8-contexts" : { + "category" : "option", + "component" : [ + "coordinator", + "single" + ], + "default" : 0, + "deprecatedIn" : null, + "description" : "maximum number of V8 contexts that are created for executing JavaScript actions", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "uint64" + }, + "javascript.v8-contexts-max-age" : { + "category" : "option", + "component" : [ + "coordinator", + "single" + ], + "default" : 60, + "deprecatedIn" : null, + "description" : "maximum age for each V8 context (in seconds) before it is disposed", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "double" + }, + "javascript.v8-contexts-max-invocations" : { + "category" : "option", + "component" : [ + "coordinator", + "single" + ], + "default" : 0, + "deprecatedIn" : null, + "description" : "maximum number of invocations for each V8 context before it is disposed", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "uint64" + }, + "javascript.v8-contexts-minimum" : { + "category" : "option", + "component" : [ + "coordinator", + "single" + ], + "default" : 0, + "deprecatedIn" : null, + "description" : "minimum number of V8 contexts that keep available for executing JavaScript actions", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "uint64" + }, + "javascript.v8-max-heap" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 3072, + "deprecatedIn" : null, + "description" : "maximal heap size (in MB)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "uint64" + }, + "javascript.v8-options" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : [ + ], + "deprecatedIn" : null, + "description" : "options to pass to v8", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string..." + }, + "ldap.allow-offline" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "If a refresh attempt fails to connect to the LDAP server, continue with the cached authentication data", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "ldap", + "type" : "boolean" + }, + "ldap.async-connect" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "Whether or not the connection to the LDAP library will be done asynchronously", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "ldap", + "type" : "boolean" + }, + "ldap.basedn" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "ldap basedn, eg. dc=example,dc=com", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap", + "type" : "string" + }, + "ldap.binddn" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "ldap binddn, eg. cn=admin,dc=example,dc=com", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap", + "type" : "string" + }, + "ldap.bindpasswd" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "ldap bindpassword, eg. admin", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap", + "type" : "string" + }, + "ldap.debug" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "Turn on internal OpenLDAP library output (warning: will print to stdout)", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "ldap", + "type" : "boolean" + }, + "ldap.enabled" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "enable LDAP", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "ldap", + "type" : "boolean" + }, + "ldap.network-timeout" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 0, + "deprecatedIn" : null, + "description" : "Timeout value (in seconds) after which network operations following the initial connection return in case of no activity (a value of 0 means default timeout)", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap", + "type" : "double" + }, + "ldap.port" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 389, + "deprecatedIn" : null, + "description" : "port to use", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap", + "type" : "uint16" + }, + "ldap.prefix" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "ldap prefix, eg. uid= xor dn= xor cn=", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap", + "type" : "string" + }, + "ldap.referrals" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "Whether or not the LDAP library should implicitly chase referrals", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "ldap", + "type" : "boolean" + }, + "ldap.refresh-rate" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 300, + "deprecatedIn" : null, + "description" : "Refresh user settings after this time (in seconds)", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap", + "type" : "double" + }, + "ldap.responsible-for" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "A file of usernames this provider is responsible for. If empty, it will be responsible for all users", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : [ + "v3.7.11" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap", + "type" : "string" + }, + "ldap.restart" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "Whether or not the LDAP library should implicitly restart connections", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "ldap", + "type" : "boolean" + }, + "ldap.retries" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 1, + "deprecatedIn" : null, + "description" : "Number of tries to attempt connecting to the LDAP server. Setting it to values greater than one will retry connecting in case the LDAP server is unavailable or denies the connection", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap", + "type" : "uint32" + }, + "ldap.roles-attribute-name" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "ldap attributename where the role are located.", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap", + "type" : "string" + }, + "ldap.roles-exclude" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "Regexp to exclude groups. Leave empty to exclude none.", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap", + "type" : "string" + }, + "ldap.roles-include" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "Regexp to include groups. Leave empty to include all.", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap", + "type" : "string" + }, + "ldap.roles-search" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "ldap search for roles; '{USER}' is replaced by the 'dn' of the user.", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap", + "type" : "string" + }, + "ldap.roles-transformation" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : [ + ], + "deprecatedIn" : null, + "description" : "Regexp to normalizer role name, e.g. '/^ *(.*[^ ]])*/$2/'", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap", + "type" : "string..." + }, + "ldap.search-attribute" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "uid", + "deprecatedIn" : null, + "description" : "ldap search attribute, eg. uid", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap", + "type" : "string" + }, + "ldap.search-filter" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "objectClass=*", + "deprecatedIn" : null, + "description" : "ldap search filter, eg. (objectClass=simpleSecurityObject)", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap", + "type" : "string" + }, + "ldap.search-scope" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "sub", + "deprecatedIn" : null, + "description" : "ldap search scope, one of base, one, sub", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap", + "type" : "string" + }, + "ldap.serialize-timeout" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 5, + "deprecatedIn" : null, + "description" : "Maximum amount of time (in seconds) that will be waited for the serialization mutex", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap", + "type" : "double" + }, + "ldap.serialized" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "Whether or not calls into the LDAP library should be serialized. This option can be used to work around thread-unsafe LDAP library functionality", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "ldap", + "type" : "boolean" + }, + "ldap.server" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "server to use", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap", + "type" : "string" + }, + "ldap.suffix" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "ldap suffix, eg. ,dc=example,dc=com", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap", + "type" : "string" + }, + "ldap.superuser-role" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "Role mapping to the super-users", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap", + "type" : "string" + }, + "ldap.timeout" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 0, + "deprecatedIn" : null, + "description" : "Timeout value (in seconds) for synchronous LDAP API calls (a value of 0 means default timeout)", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap", + "type" : "double" + }, + "ldap.tls" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "enable TLS", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "ldap", + "type" : "boolean" + }, + "ldap.tls-cacert-dir" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "ldap tls cacert dir", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap", + "type" : "string" + }, + "ldap.tls-cacert-file" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "ldap tls cacert file", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap", + "type" : "string" + }, + "ldap.tls-cert-check-strategy" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "hard", + "deprecatedIn" : null, + "description" : "ldap tls cert check strategy, one of never, hard, demand, allow, try", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap", + "type" : "string" + }, + "ldap.tls-version" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "1.2", + "deprecatedIn" : null, + "description" : "ldap tls version, one of 1.0, 1.1, 1.2", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap", + "type" : "string" + }, + "ldap.url" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "ldap url, eg. ldap://example.com:389/dc=example,dc=com?uid?sub", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap", + "type" : "string" + }, + "ldap2.allow-offline" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "If a refresh attempt fails to connect to the LDAP server, continue with the cached authentication data", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "ldap2", + "type" : "boolean" + }, + "ldap2.async-connect" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "Whether or not the connection to the LDAP library will be done asynchronously", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "ldap2", + "type" : "boolean" + }, + "ldap2.basedn" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "ldap basedn, eg. dc=example,dc=com", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap2", + "type" : "string" + }, + "ldap2.binddn" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "ldap binddn, eg. cn=admin,dc=example,dc=com", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap2", + "type" : "string" + }, + "ldap2.bindpasswd" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "ldap bindpassword, eg. admin", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap2", + "type" : "string" + }, + "ldap2.debug" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "Turn on internal OpenLDAP library output (warning: will print to stdout)", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "ldap2", + "type" : "boolean" + }, + "ldap2.enabled" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "enable LDAP", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "ldap2", + "type" : "boolean" + }, + "ldap2.network-timeout" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 0, + "deprecatedIn" : null, + "description" : "Timeout value (in seconds) after which network operations following the initial connection return in case of no activity (a value of 0 means default timeout)", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap2", + "type" : "double" + }, + "ldap2.port" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 389, + "deprecatedIn" : null, + "description" : "port to use", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap2", + "type" : "uint16" + }, + "ldap2.prefix" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "ldap prefix, eg. uid= xor dn= xor cn=", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap2", + "type" : "string" + }, + "ldap2.referrals" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "Whether or not the LDAP library should implicitly chase referrals", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "ldap2", + "type" : "boolean" + }, + "ldap2.refresh-rate" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 300, + "deprecatedIn" : null, + "description" : "Refresh user settings after this time (in seconds)", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap2", + "type" : "double" + }, + "ldap2.responsible-for" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "A file of usernames this provider is responsible for. If empty, it will be responsible for all users", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : [ + "v3.7.11" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap2", + "type" : "string" + }, + "ldap2.restart" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "Whether or not the LDAP library should implicitly restart connections", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "ldap2", + "type" : "boolean" + }, + "ldap2.retries" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 1, + "deprecatedIn" : null, + "description" : "Number of tries to attempt connecting to the LDAP server. Setting it to values greater than one will retry connecting in case the LDAP server is unavailable or denies the connection", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap2", + "type" : "uint32" + }, + "ldap2.roles-attribute-name" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "ldap attributename where the role are located.", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap2", + "type" : "string" + }, + "ldap2.roles-exclude" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "Regexp to exclude groups. Leave empty to exclude none.", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap2", + "type" : "string" + }, + "ldap2.roles-include" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "Regexp to include groups. Leave empty to include all.", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap2", + "type" : "string" + }, + "ldap2.roles-search" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "ldap search for roles; '{USER}' is replaced by the 'dn' of the user.", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap2", + "type" : "string" + }, + "ldap2.roles-transformation" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : [ + ], + "deprecatedIn" : null, + "description" : "Regexp to normalizer role name, e.g. '/^ *(.*[^ ]])*/$2/'", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap2", + "type" : "string..." + }, + "ldap2.search-attribute" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "uid", + "deprecatedIn" : null, + "description" : "ldap search attribute, eg. uid", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap2", + "type" : "string" + }, + "ldap2.search-filter" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "objectClass=*", + "deprecatedIn" : null, + "description" : "ldap search filter, eg. (objectClass=simpleSecurityObject)", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap2", + "type" : "string" + }, + "ldap2.search-scope" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "sub", + "deprecatedIn" : null, + "description" : "ldap search scope, one of base, one, sub", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap2", + "type" : "string" + }, + "ldap2.serialize-timeout" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 5, + "deprecatedIn" : null, + "description" : "Maximum amount of time (in seconds) that will be waited for the serialization mutex", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap2", + "type" : "double" + }, + "ldap2.serialized" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "Whether or not calls into the LDAP library should be serialized. This option can be used to work around thread-unsafe LDAP library functionality", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "ldap2", + "type" : "boolean" + }, + "ldap2.server" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "server to use", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap2", + "type" : "string" + }, + "ldap2.suffix" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "ldap suffix, eg. ,dc=example,dc=com", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap2", + "type" : "string" + }, + "ldap2.superuser-role" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "Role mapping to the super-users", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap2", + "type" : "string" + }, + "ldap2.timeout" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 0, + "deprecatedIn" : null, + "description" : "Timeout value (in seconds) for synchronous LDAP API calls (a value of 0 means default timeout)", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap2", + "type" : "double" + }, + "ldap2.tls" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "enable TLS", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "ldap2", + "type" : "boolean" + }, + "ldap2.tls-cacert-dir" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "ldap tls cacert dir", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap2", + "type" : "string" + }, + "ldap2.tls-cacert-file" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "ldap tls cacert file", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap2", + "type" : "string" + }, + "ldap2.tls-cert-check-strategy" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "hard", + "deprecatedIn" : null, + "description" : "ldap tls cert check strategy, one of never, hard, demand, allow, try", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap2", + "type" : "string" + }, + "ldap2.tls-version" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "1.2", + "deprecatedIn" : null, + "description" : "ldap tls version, one of 1.0, 1.1, 1.2", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap2", + "type" : "string" + }, + "ldap2.url" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "ldap url, eg. ldap://example.com:389/dc=example,dc=com?uid?sub", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ldap2", + "type" : "string" + }, + "log" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : [ + "info", + "info" + ], + "deprecatedIn" : [ + "v3.5.0" + ], + "description" : "the global or topic-specific log level", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string..." + }, + "log.api-enabled" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "true", + "deprecatedIn" : null, + "description" : "whether the log api is enabled (true) or not (false), or only enabled for superuser JWT (jwt)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.4.11", + "v3.5.6", + "v3.6.5" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.color" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "use colors for TTY logging", + "dynamic" : true, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.escape" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "escape characters when logging", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.file" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "shortcut for '--log.output file://'", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.file-group" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "group to use for new log file, user must be a member of this group", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.4.5" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.file-mode" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "mode to use for new log file, umask will be applied as well", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.4.5" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.force-direct" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "do not start a seperate thread for logging", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.foreground-tty" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "also log to tty if backgrounded", + "dynamic" : true, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.hostname" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "hostname to use in log message (empty for none, use 'auto' to automatically figure out hostname)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.ids" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "log unique message ids", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.in-memory" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "use in-memory log appender, which can be queried via API and web UI", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.in-memory-level" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "info", + "deprecatedIn" : null, + "description" : "use in-memory log appender only for this log level and higher", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.7.9" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string", + "values" : "Possible values: \"debug\", \"err\", \"error\", \"fatal\", \"info\", \"trace\", \"warn\", \"warning\"" + }, + "log.keep-logrotate" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "keep the old log file after receiving a sighup", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.level" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : [ + "info", + "info" + ], + "deprecatedIn" : null, + "description" : "the global or topic-specific log level", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string..." + }, + "log.line-number" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "include the function name, file name and line number of the source code that issues the log message. Format: `[func@FileName.cpp:123]`", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.max-entry-length" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 134217728, + "deprecatedIn" : null, + "description" : "maximum length of a log entry (in bytes)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.7.9" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "uint32" + }, + "log.output" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : [ + ], + "deprecatedIn" : null, + "description" : "log destination(s), e.g. file:///path/to/file (any '$PID' will be replaced with the process id)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string..." + }, + "log.performance" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : [ + "v3.5.0" + ], + "description" : "shortcut for '--log.level performance=trace'", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.prefix" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "prefix log message with this string", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.process" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "show process identifier (pid) in log message", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.request-parameters" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "include full URLs and HTTP request parameters in trace logs", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.role" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "log server role", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.shorten-filenames" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "shorten filenames in log output (use with --log.line-number)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.thread" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "show thread identifier in log message", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.thread-name" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "show thread name in log message", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.time-format" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "utc-datestring", + "deprecatedIn" : null, + "description" : "time format to use in logs", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string", + "values" : "Possible values: \"local-datestring\", \"timestamp\", \"timestamp-micros\", \"timestamp-millis\", \"uptime\", \"uptime-micros\", \"uptime-millis\", \"utc-datestring\", \"utc-datestring-millis\"" + }, + "log.use-json-format" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "use json output format", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.use-local-time" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : [ + "v3.5.0" + ], + "description" : "use local timezone instead of UTC", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.use-microtime" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : [ + "v3.5.0" + ], + "description" : "use microtime instead", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "network.idle-connection-ttl" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 120000, + "deprecatedIn" : null, + "description" : "default time-to-live of idle connections for cluster-internal communication (in milliseconds)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.6.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "network", + "type" : "uint64" + }, + "network.io-threads" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 2, + "deprecatedIn" : null, + "description" : "number of network IO threads for cluster-internal communication", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.6.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "network", + "type" : "uint32" + }, + "network.max-open-connections" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 1024, + "deprecatedIn" : null, + "description" : "max open TCP connections for cluster-internal communication per endpoint", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.6.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "network", + "type" : "uint64" + }, + "network.max-requests-in-flight" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 65536, + "deprecatedIn" : null, + "description" : "controls the number of internal requests that can be in flight at a given point in time", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "network", + "type" : "uint64" + }, + "network.protocol" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "network protocol to use for cluster-internal communication", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.7.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "network", + "type" : "string", + "values" : "Possible values: \"\", \"h2\", \"http\", \"http2\", \"vst\"" + }, + "network.verify-hosts" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "verify hosts when using TLS in cluster-internal communication", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.6.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "network", + "type" : "boolean" + }, + "pid-file" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "pid-file in daemon mode", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "query.allow-collections-in-expressions" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : [ + "v3.9.0" + ], + "description" : "allow full collections to be used in AQL expressions", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "query", + "type" : "boolean" + }, + "query.cache-entries" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 128, + "deprecatedIn" : null, + "description" : "maximum number of results in query result cache per database", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "query", + "type" : "uint64" + }, + "query.cache-entries-max-size" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 268435456, + "deprecatedIn" : null, + "description" : "maximum cumulated size of results in query result cache per database", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "query", + "type" : "uint64" + }, + "query.cache-entry-max-size" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 16777216, + "deprecatedIn" : null, + "description" : "maximum size of an invidiual result entry in query result cache", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "query", + "type" : "uint64" + }, + "query.cache-include-system-collections" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "whether or not to include system collection queries in the query result cache", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "query", + "type" : "boolean" + }, + "query.cache-mode" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "off", + "deprecatedIn" : null, + "description" : "mode for the AQL query result cache (on, off, demand)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "query", + "type" : "string" + }, + "query.fail-on-warning" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "whether AQL queries should fail with errors even for recoverable warnings", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "query", + "type" : "boolean" + }, + "query.global-memory-limit" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 27831388078, + "deprecatedIn" : null, + "description" : "memory threshold for all AQL queries combined (in bytes, 0 = no limit)", + "dynamic" : true, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "query", + "type" : "uint64" + }, + "query.max-nodes-per-callstack" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 200, + "deprecatedIn" : null, + "description" : "maximum number execution nodes on the callstack before splitting the remaining nodes into a separate thread", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.9.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "query", + "type" : "uint64" + }, + "query.max-parallelism" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 4, + "deprecatedIn" : null, + "description" : "maximum number of threads to use for a single query; actual query execution may use less depending on various factors", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : true, + "introducedIn" : [ + "v3.7.1" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "query", + "type" : "uint64" + }, + "query.max-runtime" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 0, + "deprecatedIn" : null, + "description" : "runtime threshold for AQL queries (in seconds, 0 = no limit)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.6.7", + "v3.7.3" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "query", + "type" : "double" + }, + "query.memory-limit" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 20615843021, + "deprecatedIn" : null, + "description" : "memory threshold per AQL query (in bytes, 0 = no limit)", + "dynamic" : true, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "query", + "type" : "uint64" + }, + "query.memory-limit-override" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "allow increasing per-query memory limits for individual queries", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "query", + "type" : "boolean" + }, + "query.optimizer-max-plans" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 128, + "deprecatedIn" : null, + "description" : "maximum number of query plans to create for a query", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "query", + "type" : "uint64" + }, + "query.optimizer-rules" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : [ + ], + "deprecatedIn" : null, + "description" : "enable or disable specific optimizer rules (use rule name prefixed with '-' for disabling, '+' for enabling)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.6.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "query", + "type" : "string..." + }, + "query.parallelize-gather-writes" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "enable write parallelization for gather nodes", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.6.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "query", + "type" : "boolean" + }, + "query.parallelize-traversals" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "enable traversal parallelization", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : true, + "introducedIn" : [ + "v3.7.1" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "query", + "type" : "boolean" + }, + "query.registry-ttl" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 0, + "deprecatedIn" : null, + "description" : "default time-to-live of cursors and query snippets (in seconds); if <= 0, value will default to 30 for single-server instances or 600 for coordinator instances", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "query", + "type" : "double" + }, + "query.require-with" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "whether AQL queries should require the `WITH collection-name` clause even on single servers (enable this to remove this behavior difference between single server and cluster)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "query", + "type" : "boolean" + }, + "query.slow-streaming-threshold" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 10, + "deprecatedIn" : null, + "description" : "threshold for slow streaming AQL queries (in seconds)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "query", + "type" : "double" + }, + "query.slow-threshold" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 10, + "deprecatedIn" : null, + "description" : "threshold for slow AQL queries (in seconds)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "query", + "type" : "double" + }, + "query.smart-joins" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "enable SmartJoins query optimization", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : true, + "introducedIn" : [ + "v3.4.5" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "query", + "type" : "boolean" + }, + "query.tracking" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "whether to track queries", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "query", + "type" : "boolean" + }, + "query.tracking-slow-queries" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "whether to track slow queries", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.7.4" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "query", + "type" : "boolean" + }, + "query.tracking-with-bindvars" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "whether to track bind vars with AQL queries", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "query", + "type" : "boolean" + }, + "query.tracking-with-datasources" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "whether to track data sources with AQL queries", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.7.4" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "query", + "type" : "boolean" + }, + "query.tracking-with-querystring" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "whether to track the query string", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.7.4" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "query", + "type" : "boolean" + }, + "random.generator" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 1, + "deprecatedIn" : null, + "description" : "random number generator to use (1 = MERSENNE, 2 = RANDOM, 3 = URANDOM, 4 = COMBINED (not for Windows), 5 = WinCrypt (Windows only)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "random", + "type" : "uint32", + "values" : "Possible values: 1, 2, 3, 4" + }, + "rclone.executable" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "rclone executable used for up and download of backups", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rclone", + "type" : "string" + }, + "replication.active-failover" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "Enable active-failover during asynchronous replication", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "replication", + "type" : "boolean" + }, + "replication.auto-start" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "switch to enable or disable the automatic start of replication appliers", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "replication", + "type" : "boolean" + }, + "replication.automatic-failover" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "Please use `--replication.active-failover` instead", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "replication", + "type" : "boolean" + }, + "replication.connect-timeout" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 10, + "deprecatedIn" : null, + "description" : "Default timeout value for replication connection attempts (in seconds)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.4.9", + "v3.5.4" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "replication", + "type" : "double" + }, + "replication.max-parallel-tailing-invocations" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 0, + "deprecatedIn" : null, + "description" : "Maximum number of concurrently allowed WAL tailing invocations (0 = unlimited)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "replication", + "type" : "uint64" + }, + "replication.quick-keys-limit" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 1000000, + "deprecatedIn" : null, + "description" : "Limit at which 'quick' calls to the replication keys API return only the document count for second run", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.7.9" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "replication", + "type" : "uint64" + }, + "replication.request-timeout" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 600, + "deprecatedIn" : null, + "description" : "Default timeout value for replication requests (in seconds)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.4.9", + "v3.5.4" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "replication", + "type" : "double" + }, + "replication.sync-by-revision" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "Whether to use the newer revision-based replication protocol", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.7.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "replication", + "type" : "boolean" + }, + "rocksdb.allow-fallocate" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "if true, allow RocksDB to use fallocate calls. if false, fallocate calls are bypassed", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.4.5" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "rocksdb", + "type" : "boolean" + }, + "rocksdb.block-align-data-blocks" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "if true, aligns data blocks on lesser of page size and block size", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "rocksdb", + "type" : "boolean" + }, + "rocksdb.block-cache-shard-bits" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : -1, + "deprecatedIn" : null, + "description" : "number of shard bits to use for block cache (use -1 for default value)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rocksdb", + "type" : "int64" + }, + "rocksdb.block-cache-size" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 9663676416, + "deprecatedIn" : null, + "description" : "size of block cache in bytes", + "dynamic" : true, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rocksdb", + "type" : "uint64" + }, + "rocksdb.cache-index-and-filter-blocks" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "if turned on, the RocksDB block cache quota will also include RocksDB memtable sizes", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.7.1" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "rocksdb", + "type" : "boolean" + }, + "rocksdb.cache-index-and-filter-blocks-with-high-priority" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "if true and `--rocksdb.cache-index-and-filter-blocks` is also true, cache index and filter blocks with high priority, making index and filter blocks be less likely to be evicted than data blocks", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.7.1" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "rocksdb", + "type" : "boolean" + }, + "rocksdb.compaction-read-ahead-size" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 2097152, + "deprecatedIn" : null, + "description" : "if non-zero, we perform bigger reads when doing compaction. If you're running RocksDB on spinning disks, you should set this to at least 2MB. that way RocksDB's compaction is doing sequential instead of random reads.", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rocksdb", + "type" : "uint64" + }, + "rocksdb.create-sha-files" : { + "category" : "option", + "component" : [ + "dbserver", + "single" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "enable generation of sha256 files for each .sst file", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "rocksdb", + "type" : "boolean" + }, + "rocksdb.debug-logging" : { + "category" : "option", + "component" : [ + "dbserver", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "true to enable rocksdb debug logging", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "rocksdb", + "type" : "boolean" + }, + "rocksdb.delayed-write-rate" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 0, + "deprecatedIn" : null, + "description" : "limited write rate to DB (in bytes per second) if we are writing to the last mem-table allowed and we allow more than 3 mem-tables, or if we have surpassed a certain number of level-0 files and need to slowdown writes", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rocksdb", + "type" : "uint64" + }, + "rocksdb.dynamic-level-bytes" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "if true, determine the number of bytes for each level dynamically to minimize space amplification", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "rocksdb", + "type" : "boolean" + }, + "rocksdb.edge-cache" : { + "category" : "option", + "component" : [ + "dbserver", + "single" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "use in-memory cache for edges", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.6.4" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "rocksdb", + "type" : "boolean" + }, + "rocksdb.enable-pipelined-write" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "if true, use a two stage write queue for WAL writes and memtable writes", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "rocksdb", + "type" : "boolean" + }, + "rocksdb.enable-statistics" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "whether or not RocksDB statistics should be turned on", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "rocksdb", + "type" : "boolean" + }, + "rocksdb.encryption-gen-internal-key" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "Generate internal encryption-at-rest key.", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : true, + "introducedIn" : [ + "v3.7.1" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "rocksdb", + "type" : "boolean" + }, + "rocksdb.encryption-hardware-acceleration" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "use Intel intrinsics-based encryption, requiring a CPU with the AES-NI instruction set. If turned off, then OpenSSL is used, which may use hardware-accelarated encryption too.", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "rocksdb", + "type" : "boolean" + }, + "rocksdb.encryption-key-generator" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "program providing the encryption key on stdout. If set, encryption will be enabled.", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rocksdb", + "type" : "string" + }, + "rocksdb.encryption-key-rotation" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "allow encryption key rotation", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : true, + "introducedIn" : [ + "v3.7.1" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "rocksdb", + "type" : "boolean" + }, + "rocksdb.encryption-keyfile" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "file containing encryption key. If set, encryption will be enabled.", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rocksdb", + "type" : "string" + }, + "rocksdb.encryption-keyfolder" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "Folder containing all possible user encryption keys. All keys will be used to decrypt the internal keystore.", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : [ + "v3.7.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rocksdb", + "type" : "string" + }, + "rocksdb.enforce-block-cache-size-limit" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "if true, strictly enforces the block cache size limit", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "rocksdb", + "type" : "boolean" + }, + "rocksdb.exclusive-writes" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : [ + "v3.8.0" + ], + "description" : "if true, writes are exclusive. This allows the RocksDB engine to mimic the collection locking behavior of the now-removed MMFiles storage engine, but will inhibit concurrent write operations", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.5.4" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "rocksdb", + "type" : "boolean" + }, + "rocksdb.intermediate-commit-count" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 1000000, + "deprecatedIn" : null, + "description" : "an intermediate commit will be performed automatically when this number of operations is reached in a transaction", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rocksdb", + "type" : "uint64" + }, + "rocksdb.intermediate-commit-size" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 536870912, + "deprecatedIn" : null, + "description" : "an intermediate commit will be performed automatically when a transaction has accumulated operations of this size (in bytes)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rocksdb", + "type" : "uint64" + }, + "rocksdb.level0-compaction-trigger" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 2, + "deprecatedIn" : null, + "description" : "number of level-0 files that triggers a compaction", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rocksdb", + "type" : "int64" + }, + "rocksdb.level0-slowdown-trigger" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 20, + "deprecatedIn" : null, + "description" : "number of level-0 files that triggers a write slowdown", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rocksdb", + "type" : "int64" + }, + "rocksdb.level0-stop-trigger" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 36, + "deprecatedIn" : null, + "description" : "number of level-0 files that triggers a full write stall", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rocksdb", + "type" : "int64" + }, + "rocksdb.limit-open-files-at-startup" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "limit the amount of .sst files RocksDB will inspect at startup, in order to reduce startup IO", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.4.5" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "rocksdb", + "type" : "boolean" + }, + "rocksdb.max-background-jobs" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 8, + "deprecatedIn" : null, + "description" : "Maximum number of concurrent background jobs (compactions and flushes)", + "dynamic" : true, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rocksdb", + "type" : "int32" + }, + "rocksdb.max-bytes-for-level-base" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 268435456, + "deprecatedIn" : null, + "description" : "if not using dynamic level sizes, this controls the maximum total data size for level-1", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rocksdb", + "type" : "uint64" + }, + "rocksdb.max-bytes-for-level-multiplier" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 10, + "deprecatedIn" : null, + "description" : "if not using dynamic level sizes, the maximum number of bytes for level L can be calculated as max-bytes-for-level-base * (max-bytes-for-level-multiplier ^ (L-1))", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rocksdb", + "type" : "double" + }, + "rocksdb.max-parallel-compactions" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 2, + "deprecatedIn" : null, + "description" : "maximum number of parallel compactions jobs", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.7.11" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rocksdb", + "type" : "uint64" + }, + "rocksdb.max-subcompactions" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 1, + "deprecatedIn" : null, + "description" : "maximum number of concurrent subjobs for a background compaction", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rocksdb", + "type" : "uint64" + }, + "rocksdb.max-total-wal-size" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 83886080, + "deprecatedIn" : null, + "description" : "maximum total size of WAL files that will force flush stale column families", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rocksdb", + "type" : "uint64" + }, + "rocksdb.max-transaction-size" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 18446744073709551615, + "deprecatedIn" : null, + "description" : "transaction size limit (in bytes)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rocksdb", + "type" : "uint64" + }, + "rocksdb.max-write-buffer-number" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 9, + "deprecatedIn" : null, + "description" : "maximum number of write buffers that build up in memory (default: number of column families + 2 = 9 write buffers). You can increase the amount only", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rocksdb", + "type" : "uint64" + }, + "rocksdb.max-write-buffer-number-definitions" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 0, + "deprecatedIn" : null, + "description" : "if non-zero, overrides the value of --rocksdb.max-write-buffer-number for the definitions column family", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rocksdb", + "type" : "uint64" + }, + "rocksdb.max-write-buffer-number-documents" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 0, + "deprecatedIn" : null, + "description" : "if non-zero, overrides the value of --rocksdb.max-write-buffer-number for the documents column family", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rocksdb", + "type" : "uint64" + }, + "rocksdb.max-write-buffer-number-edge" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 0, + "deprecatedIn" : null, + "description" : "if non-zero, overrides the value of --rocksdb.max-write-buffer-number for the edge column family", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rocksdb", + "type" : "uint64" + }, + "rocksdb.max-write-buffer-number-fulltext" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 0, + "deprecatedIn" : null, + "description" : "if non-zero, overrides the value of --rocksdb.max-write-buffer-number for the fulltext column family", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rocksdb", + "type" : "uint64" + }, + "rocksdb.max-write-buffer-number-geo" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 0, + "deprecatedIn" : null, + "description" : "if non-zero, overrides the value of --rocksdb.max-write-buffer-number for the geo column family", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rocksdb", + "type" : "uint64" + }, + "rocksdb.max-write-buffer-number-primary" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 0, + "deprecatedIn" : null, + "description" : "if non-zero, overrides the value of --rocksdb.max-write-buffer-number for the primary column family", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rocksdb", + "type" : "uint64" + }, + "rocksdb.max-write-buffer-number-vpack" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 0, + "deprecatedIn" : null, + "description" : "if non-zero, overrides the value of --rocksdb.max-write-buffer-number for the vpack column family", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rocksdb", + "type" : "uint64" + }, + "rocksdb.max-write-buffer-size-to-maintain" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 0, + "deprecatedIn" : null, + "description" : "maximum size of immutable write buffers that build up in memory per column family (larger values mean that more in-memory data can be used for transaction conflict checking (-1 = use automatic default value, 0 = do not keep immutable flushed write buffers, which is the default and usually correct))", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.7.3" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rocksdb", + "type" : "int64" + }, + "rocksdb.min-write-buffer-number-to-merge" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 1, + "deprecatedIn" : null, + "description" : "minimum number of write buffers that will be merged together before writing to storage", + "dynamic" : true, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rocksdb", + "type" : "uint64" + }, + "rocksdb.minimum-disk-free-bytes" : { + "category" : "option", + "component" : [ + "dbserver", + "single" + ], + "default" : 16777216, + "deprecatedIn" : null, + "description" : "minimum number of free disk bytes for considering the server healthy in health checks (set to 0 to disable the check)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rocksdb", + "type" : "uint64" + }, + "rocksdb.minimum-disk-free-percent" : { + "category" : "option", + "component" : [ + "dbserver", + "single" + ], + "default" : 0.01, + "deprecatedIn" : null, + "description" : "minimum percentage of free disk space for considering the server healthy in health checks (set to 0 to disable the check)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rocksdb", + "type" : "double" + }, + "rocksdb.num-levels" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 7, + "deprecatedIn" : null, + "description" : "number of levels for the database", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rocksdb", + "type" : "uint64" + }, + "rocksdb.num-threads-priority-high" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 0, + "deprecatedIn" : null, + "description" : "number of threads for high priority operations (e.g. flush)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rocksdb", + "type" : "uint32" + }, + "rocksdb.num-threads-priority-low" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 0, + "deprecatedIn" : null, + "description" : "number of threads for low priority operations (e.g. compaction)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rocksdb", + "type" : "uint32" + }, + "rocksdb.num-uncompressed-levels" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 2, + "deprecatedIn" : null, + "description" : "number of uncompressed levels for the database", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rocksdb", + "type" : "uint64" + }, + "rocksdb.optimize-filters-for-hits" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "this flag specifies that the implementation should optimize the filters mainly for cases where keys are found rather than also optimize for keys missed. This would be used in cases where the application knows that there are very few misses or the performance in the case of misses is not important", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "rocksdb", + "type" : "boolean" + }, + "rocksdb.pin-l0-filter-and-index-blocks-in-cache" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "if true and `--rocksdb.cache-index-and-filter-blocks` is also true, filter and index blocks are pinned and only evicted from cache when the table reader is freed", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.7.1" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "rocksdb", + "type" : "boolean" + }, + "rocksdb.pin-top-level-index-and-filter" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "If true and `--rocksdb.cache-index-and-filter-blocks` is also true, the top-level index of partitioned filter and index blocks are pinned and only evicted from cache when the table reader is freed", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.7.1" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "rocksdb", + "type" : "boolean" + }, + "rocksdb.recycle-log-file-num" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "if true, keep a pool of log files around for recycling", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "rocksdb", + "type" : "boolean" + }, + "rocksdb.sync-delay-threshold" : { + "category" : "option", + "component" : [ + "dbserver", + "single" + ], + "default" : 5000, + "deprecatedIn" : null, + "description" : "threshold value for self-observation of WAL disk syncs. any WAL disk sync longer ago than this threshold will trigger a warning (in milliseconds, use 0 for no warnings)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.6.8", + "v3.7.5" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rocksdb", + "type" : "uint64" + }, + "rocksdb.sync-interval" : { + "category" : "option", + "component" : [ + "dbserver", + "single" + ], + "default" : 100, + "deprecatedIn" : null, + "description" : "interval for automatic, non-requested disk syncs (in milliseconds, use 0 to turn automatic syncing off)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rocksdb", + "type" : "uint64" + }, + "rocksdb.table-block-size" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 16384, + "deprecatedIn" : null, + "description" : "approximate size (in bytes) of user data packed per block", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rocksdb", + "type" : "uint64" + }, + "rocksdb.target-file-size-base" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 67108864, + "deprecatedIn" : null, + "description" : "per-file target file size for compaction (in bytes). the actual target file size for each level is `--rocksdb.target-file-size-base` multiplied by `--rocksdb.target-file-size-multiplier` ^ (level - 1)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.7.1" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rocksdb", + "type" : "uint64" + }, + "rocksdb.target-file-size-multiplier" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 1, + "deprecatedIn" : null, + "description" : "multiplier for `--rocksdb.target-file-size`, a value of 1 means that files in different levels will have the same size", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.7.1" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rocksdb", + "type" : "uint64" + }, + "rocksdb.throttle" : { + "category" : "option", + "component" : [ + "dbserver", + "single" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "enable write-throttling", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "rocksdb", + "type" : "boolean" + }, + "rocksdb.total-write-buffer-size" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 12884901888, + "deprecatedIn" : null, + "description" : "maximum total size of in-memory write buffers (0 = unbounded)", + "dynamic" : true, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rocksdb", + "type" : "uint64" + }, + "rocksdb.transaction-lock-timeout" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 1000, + "deprecatedIn" : null, + "description" : "If positive, specifies the wait timeout in milliseconds when a transaction attempts to lock a document. A negative value is not recommended as it can lead to deadlocks (0 = no waiting, < 0 no timeout)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rocksdb", + "type" : "int64" + }, + "rocksdb.use-file-logging" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "use a file-base logger for RocksDB's own logs", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "rocksdb", + "type" : "boolean" + }, + "rocksdb.use-fsync" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "issue an fsync when writing to disk (set to true for issuing fdatasync only)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "rocksdb", + "type" : "boolean" + }, + "rocksdb.wal-archive-size-limit" : { + "category" : "option", + "component" : [ + "dbserver", + "single" + ], + "default" : 0, + "deprecatedIn" : null, + "description" : "maximum total size (in bytes) of archived WAL files (0 = unlimited)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rocksdb", + "type" : "uint64" + }, + "rocksdb.wal-directory" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "optional path to the RocksDB WAL directory. If not set, the WAL directory will be located inside the regular data directory", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rocksdb", + "type" : "string" + }, + "rocksdb.wal-file-timeout" : { + "category" : "option", + "component" : [ + "dbserver", + "single" + ], + "default" : 10, + "deprecatedIn" : null, + "description" : "timeout after which unused WAL files are deleted", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rocksdb", + "type" : "double" + }, + "rocksdb.wal-file-timeout-initial" : { + "category" : "option", + "component" : [ + "dbserver", + "single" + ], + "default" : 180, + "deprecatedIn" : null, + "description" : "initial timeout after which unused WAL files deletion kicks in after server start", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rocksdb", + "type" : "double" + }, + "rocksdb.wal-recovery-skip-corrupted" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "skip corrupted records in WAL recovery", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "rocksdb", + "type" : "boolean" + }, + "rocksdb.write-buffer-size" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 67108864, + "deprecatedIn" : null, + "description" : "amount of data to build up in memory before converting to a sorted on-disk file (0 = disabled)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "rocksdb", + "type" : "uint64" + }, + "server.allow-use-database" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "allow change of database in REST actions, only needed for unittests", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "server", + "type" : "boolean" + }, + "server.authentication" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "enable authentication for ALL client requests", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "server", + "type" : "boolean" + }, + "server.authentication-system-only" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "use HTTP authentication only for requests to /_api and /_admin", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "server", + "type" : "boolean" + }, + "server.authentication-timeout" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 0, + "deprecatedIn" : null, + "description" : "timeout for the authentication cache in seconds (0 = indefinitely)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "double" + }, + "server.authentication-unix-sockets" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "authentication for requests via UNIX domain sockets", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos" + ], + "requiresValue" : false, + "section" : "server", + "type" : "boolean" + }, + "server.descriptors-minimum" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 8192, + "deprecatedIn" : null, + "description" : "minimum number of file descriptors needed to start (0 = no minimum)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos" + ], + "requiresValue" : true, + "section" : "server", + "type" : "uint64" + }, + "server.endpoint" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : [ + "tcp://0.0.0.0:8529" + ], + "deprecatedIn" : null, + "description" : "endpoint for client requests (e.g. 'http+tcp://127.0.0.1:8529', or 'vst+ssl://192.168.1.1:8529')", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "string..." + }, + "server.export-metrics-api" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "turn metrics API on or off", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.6.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "server", + "type" : "boolean" + }, + "server.export-read-write-metrics" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "turn metrics for document read/write metrics on or off", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.7.7" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "server", + "type" : "boolean" + }, + "server.flush-interval" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 1000000, + "deprecatedIn" : null, + "description" : "interval (in microseconds) for flushing data", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "uint64" + }, + "server.gid" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "switch to group-id after reading config files", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "string" + }, + "server.harden" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "lock down REST APIs that reveal version information or server internals for non-admin users", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "server", + "type" : "boolean" + }, + "server.io-threads" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 4, + "deprecatedIn" : null, + "description" : "Number of threads used to handle IO", + "dynamic" : true, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "uint64" + }, + "server.jwt-secret" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : [ + "v3.3.22", + "v3.4.2" + ], + "description" : "secret to use when doing jwt authentication", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "string" + }, + "server.jwt-secret-folder" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "folder containing one or more jwt secret files to use for jwt authentication. Files are sorted alphabetically: First secret is used for signing + verifying JWT tokens. The latter secrets are only used for verifying.", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : [ + "v3.7.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "string" + }, + "server.jwt-secret-keyfile" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "file containing jwt secret to use when doing jwt authentication.", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "string" + }, + "server.local-authentication" : { + "category" : "option", + "component" : [ + "coordinator", + "single" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "enable authentication using the local user database", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "server", + "type" : "boolean" + }, + "server.maintenance-actions-block" : { + "category" : "option", + "component" : [ + "dbserver" + ], + "default" : 2, + "deprecatedIn" : null, + "description" : "minimum number of seconds finished Actions block duplicates", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "int32" + }, + "server.maintenance-actions-linger" : { + "category" : "option", + "component" : [ + "dbserver" + ], + "default" : 3600, + "deprecatedIn" : null, + "description" : "minimum number of seconds finished Actions remain in deque", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "int32" + }, + "server.maintenance-threads" : { + "category" : "option", + "component" : [ + "dbserver" + ], + "default" : 5, + "deprecatedIn" : null, + "description" : "maximum number of threads available for maintenance actions", + "dynamic" : true, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "uint32" + }, + "server.maximal-queue-size" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 4096, + "deprecatedIn" : null, + "description" : "size of the priority 3 fifo", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "uint64" + }, + "server.maximal-threads" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 0, + "deprecatedIn" : null, + "description" : "maximum number of request handling threads to run (0 = use system-specific default of 32)", + "dynamic" : true, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "uint64" + }, + "server.minimal-threads" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 4, + "deprecatedIn" : null, + "description" : "minimum number of request handling threads to run", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "uint64" + }, + "server.ongoing-low-priority-multiplier" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 4, + "deprecatedIn" : null, + "description" : "controls the number of low prio requests that can be ongoing at a given point in time, relative to the maximum number of request handling threads", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "double" + }, + "server.prio1-size" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 4096, + "deprecatedIn" : null, + "description" : "size of the priority 1 fifo", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "uint64" + }, + "server.prio2-size" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 4096, + "deprecatedIn" : null, + "description" : "size of the priority 2 fifo", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "uint64" + }, + "server.rest-server" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "start a rest-server", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "server", + "type" : "boolean" + }, + "server.scheduler-queue-size" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 4096, + "deprecatedIn" : null, + "description" : "number of simultaneously queued requests inside the scheduler", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "uint64" + }, + "server.session-timeout" : { + "category" : "option", + "component" : [ + "coordinator", + "single" + ], + "default" : 3600, + "deprecatedIn" : null, + "description" : "timeout in seconds for web interface JWT sessions", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.9.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "double" + }, + "server.statistics" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "turn statistics gathering on or off", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "server", + "type" : "boolean" + }, + "server.statistics-all-databases" : { + "category" : "option", + "component" : [ + "coordinator" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "provide cluster statistics in web interface in all databases", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "server", + "type" : "boolean" + }, + "server.statistics-history" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "turn storing statistics in database on or off", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.4.9", + "v3.5.1" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "server", + "type" : "boolean" + }, + "server.storage-engine" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "auto", + "deprecatedIn" : null, + "description" : "storage engine type (note that the mmfiles engine is unavailable since v3.7.0 and cannot be used anymore)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "string", + "values" : "Possible values: \"auto\", \"rocksdb\"" + }, + "server.uid" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "switch to user-id after reading config files", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "string" + }, + "server.unavailability-queue-fill-grade" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 0.75, + "deprecatedIn" : null, + "description" : "queue fill grade from which onwards the server is considered unavailable because of overload (ratio, use a value of 0 to disable it)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.6.10", + "v3.7.6" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "double" + }, + "server.validate-utf8-strings" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "perform UTF-8 string validation for incoming JSON and VelocyPack data", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.7.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "server", + "type" : "boolean" + }, + "ssl.cafile" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "ca file used for secure connections", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ssl", + "type" : "string" + }, + "ssl.cipher-list" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "HIGH:!EXPORT:!aNULL@STRENGTH", + "deprecatedIn" : null, + "description" : "ssl ciphers to use, see OpenSSL documentation", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ssl", + "type" : "string" + }, + "ssl.ecdh-curve" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "prime256v1", + "deprecatedIn" : null, + "description" : "SSL ECDH Curve, see the output of \"openssl ecparam -list_curves\"", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ssl", + "type" : "string" + }, + "ssl.keyfile" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "key-file used for secure connections", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ssl", + "type" : "string" + }, + "ssl.options" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 2147485780, + "deprecatedIn" : null, + "description" : "ssl connection options, see OpenSSL documentation", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ssl", + "type" : "uint64" + }, + "ssl.prefer-http1-in-alpn" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "Allows to let the server prefer HTTP/1.1 over HTTP/2 in ALPN protocol negotiations", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "ssl", + "type" : "boolean" + }, + "ssl.protocol" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 9, + "deprecatedIn" : null, + "description" : "ssl protocol (1 = SSLv2 (unsupported), 2 = SSLv2 or SSLv3 (negotiated), 3 = SSLv3, 4 = TLSv1, 5 = TLSv1.2, 6 = TLSv1.3, 9 = generic TLS)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ssl", + "type" : "uint64", + "values" : "Possible values: 1, 2, 3, 4, 5, 6, 9" + }, + "ssl.require-peer-certificate" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "require a peer certificate when connecting", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "ssl", + "type" : "boolean" + }, + "ssl.server-name-indication" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : [ + ], + "deprecatedIn" : null, + "description" : "add a case SERVERNAME=KEYFILENAME for a different server keyfile for a specific server name, can be given multiple times", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ssl", + "type" : "string..." + }, + "ssl.session-cache" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "enable the session cache for connections", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "ssl", + "type" : "boolean" + }, + "supervisor" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : false, + "deprecatedIn" : null, + "description" : "background the server, starts a supervisor", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "tcp.backlog-size" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 64, + "deprecatedIn" : null, + "description" : "listen backlog size", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "tcp", + "type" : "uint64" + }, + "tcp.reuse-address" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : true, + "deprecatedIn" : null, + "description" : "try to reuse TCP port(s)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "tcp", + "type" : "boolean" + }, + "temp.path" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "path for temporary files", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "temp", + "type" : "string" + }, + "transaction.streaming-idle-timeout" : { + "category" : "option", + "component" : [ + "coordinator", + "single" + ], + "default" : 60, + "deprecatedIn" : null, + "description" : "idle timeout for streaming transactions in seconds", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "transaction", + "type" : "double" + }, + "transaction.streaming-lock-timeout" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 8, + "deprecatedIn" : null, + "description" : "lock timeout in seconds in case of parallel access to the same streaming transaction", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.6.5", + "v3.7.1" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "transaction", + "type" : "double" + }, + "ttl.frequency" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 30000, + "deprecatedIn" : null, + "description" : "frequency (in milliseconds) for the TTL background thread invocation. a value of 0 turns the TTL background thread off entirely", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ttl", + "type" : "uint64" + }, + "ttl.max-collection-removes" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 1000000, + "deprecatedIn" : null, + "description" : "maximum number of documents to remove per collection", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ttl", + "type" : "uint64" + }, + "ttl.max-total-removes" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : 1000000, + "deprecatedIn" : null, + "description" : "maximum number of documents to remove per invocation of the TTL thread", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ttl", + "type" : "uint64" + }, + "uid" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "", + "deprecatedIn" : null, + "description" : "switch to user-id after reading config files", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "version" : { + "category" : "command", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "deprecatedIn" : null, + "description" : "reports the version and exits", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "version-json" : { + "category" : "command", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "deprecatedIn" : null, + "description" : "reports the version as JSON and exits", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.9.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "working-directory" : { + "category" : "option", + "component" : [ + "coordinator", + "dbserver", + "agent", + "single" + ], + "default" : "/var/tmp", + "deprecatedIn" : null, + "description" : "working directory in daemon mode", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + } +} diff --git a/3.9/generated/Examples/arangodump.json b/3.9/generated/Examples/arangodump.json new file mode 100644 index 0000000000..e6eed77274 --- /dev/null +++ b/3.9/generated/Examples/arangodump.json @@ -0,0 +1,1322 @@ +{ + "all-databases" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "dump data of all databases", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "batch-size" : { + "category" : "option", + "default" : 67108864, + "deprecatedIn" : null, + "description" : "maximum size for individual data batches (in bytes)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "uint64" + }, + "check-configuration" : { + "category" : "command", + "deprecatedIn" : null, + "description" : "check the configuration and exit", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "collection" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "restrict to collection name (can be specified multiple times)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string..." + }, + "compress-output" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "compress files containing collection contents using gzip format (not compatible with encryption)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.4.6" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "config" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "the configuration file or 'none'", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "configuration" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "the configuration file or 'none'", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "define" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "define key=value for a @key@ entry in config file", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string..." + }, + "dump-data" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "dump collection data", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "dump-dependencies" : { + "category" : "command", + "deprecatedIn" : null, + "description" : "dump dependency graph", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "dump-options" : { + "category" : "command", + "deprecatedIn" : null, + "description" : "dump configuration options in JSON format", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "encryption.key-generator" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "program providing the encryption key on stdout. If set, encryption will be enabled.", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "encryption", + "type" : "string" + }, + "encryption.keyfile" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "file containing the encryption key. If set, encryption will be enabled.", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "encryption", + "type" : "string" + }, + "envelope" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "wrap each document into a {type, data} envelope (this is required from compatibility with v3.7 and before)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "force" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "continue dumping even in the face of some server-side errors", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "ignore-distribute-shards-like-errors" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "continue dump even if sharding prototype collection is not backed up along", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "include-system-collections" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "include system collections", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "initial-batch-size" : { + "category" : "option", + "default" : 8388608, + "deprecatedIn" : null, + "description" : "initial size for individual data batches (in bytes)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "uint64" + }, + "log" : { + "category" : "option", + "default" : [ + "info" + ], + "deprecatedIn" : [ + "v3.5.0" + ], + "description" : "the global or topic-specific log level", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string..." + }, + "log.color" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "use colors for TTY logging", + "dynamic" : true, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.escape" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "escape characters when logging", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.file" : { + "category" : "option", + "default" : "-", + "deprecatedIn" : null, + "description" : "shortcut for '--log.output file://'", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.file-group" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "group to use for new log file, user must be a member of this group", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.4.5" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.file-mode" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "mode to use for new log file, umask will be applied as well", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.4.5" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.force-direct" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "do not start a seperate thread for logging", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.foreground-tty" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "also log to tty if backgrounded", + "dynamic" : true, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.hostname" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "hostname to use in log message (empty for none, use 'auto' to automatically figure out hostname)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.ids" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "log unique message ids", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.level" : { + "category" : "option", + "default" : [ + "info" + ], + "deprecatedIn" : null, + "description" : "the global or topic-specific log level", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string..." + }, + "log.line-number" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "include the function name, file name and line number of the source code that issues the log message. Format: `[func@FileName.cpp:123]`", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.max-entry-length" : { + "category" : "option", + "default" : 134217728, + "deprecatedIn" : null, + "description" : "maximum length of a log entry (in bytes)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.7.9" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "uint32" + }, + "log.output" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "log destination(s), e.g. file:///path/to/file (any '$PID' will be replaced with the process id)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string..." + }, + "log.performance" : { + "category" : "option", + "default" : false, + "deprecatedIn" : [ + "v3.5.0" + ], + "description" : "shortcut for '--log.level performance=trace'", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.prefix" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "prefix log message with this string", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.process" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "show process identifier (pid) in log message", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.request-parameters" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "include full URLs and HTTP request parameters in trace logs", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.role" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "log server role", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.shorten-filenames" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "shorten filenames in log output (use with --log.line-number)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.thread" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "show thread identifier in log message", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.thread-name" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "show thread name in log message", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.time-format" : { + "category" : "option", + "default" : "utc-datestring", + "deprecatedIn" : null, + "description" : "time format to use in logs", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string", + "values" : "Possible values: \"local-datestring\", \"timestamp\", \"timestamp-micros\", \"timestamp-millis\", \"uptime\", \"uptime-micros\", \"uptime-millis\", \"utc-datestring\", \"utc-datestring-millis\"" + }, + "log.use-json-format" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "use json output format", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.use-local-time" : { + "category" : "option", + "default" : false, + "deprecatedIn" : [ + "v3.5.0" + ], + "description" : "use local timezone instead of UTC", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.use-microtime" : { + "category" : "option", + "default" : false, + "deprecatedIn" : [ + "v3.5.0" + ], + "description" : "use microtime instead", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "maskings" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "file with maskings definition", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.3.22", + "v3.4.2" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "output-directory" : { + "category" : "option", + "default" : "/Users/hkernbach/Git/ArangoDB/devel-2/dump", + "deprecatedIn" : null, + "description" : "output directory", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "overwrite" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "overwrite data in output directory", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "progress" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "show progress", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "random.generator" : { + "category" : "option", + "default" : 1, + "deprecatedIn" : null, + "description" : "random number generator to use (1 = MERSENNE, 2 = RANDOM, 3 = URANDOM, 4 = COMBINED (not for Windows), 5 = WinCrypt (Windows only)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "random", + "type" : "uint32", + "values" : "Possible values: 1, 2, 3, 4" + }, + "server.ask-jwt-secret" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "if this option is specified, the user will be prompted for a JWT secret. This option is not compatible with --server.username or --server.password. If specified, it will be used for all connections - even when a new connection to another server is created", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "server", + "type" : "boolean" + }, + "server.authentication" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "require authentication credentials when connecting (does not affect the server-side authentication settings)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "server", + "type" : "boolean" + }, + "server.connection-timeout" : { + "category" : "option", + "default" : 5, + "deprecatedIn" : null, + "description" : "connection timeout in seconds", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "double" + }, + "server.database" : { + "category" : "option", + "default" : "_system", + "deprecatedIn" : null, + "description" : "database name to use when connecting", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "string" + }, + "server.endpoint" : { + "category" : "option", + "default" : "http+tcp://127.0.0.1:8529", + "deprecatedIn" : null, + "description" : "endpoint to connect to. Use 'none' to start without a server. Use http+ssl:// or vst+ssl:// as schema to connect to an SSL-secured server endpoint, otherwise http+tcp://, vst+tcp:// or unix://", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "string" + }, + "server.force-json" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "force to not use VelocyPack for easier debugging", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.6.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "server", + "type" : "boolean" + }, + "server.jwt-secret-keyfile" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "if this option is specified, the jwt secret will be loaded from the given file. This option is not compatible with --server.ask-jwt-secret, --server.username or --server.password. If specified, it will be used for all connections - even when a new connection to another server is created", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "string" + }, + "server.max-packet-size" : { + "category" : "option", + "default" : 1073741824, + "deprecatedIn" : null, + "description" : "maximum packet size (in bytes) for client/server communication", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "uint64" + }, + "server.password" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "password to use when connecting. If not specified and authentication is required, the user will be prompted for a password", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "string" + }, + "server.request-timeout" : { + "category" : "option", + "default" : 1200, + "deprecatedIn" : null, + "description" : "request timeout in seconds", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "double" + }, + "server.username" : { + "category" : "option", + "default" : "root", + "deprecatedIn" : null, + "description" : "username to use when connecting", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "string" + }, + "shard" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "restrict dump to shard (can be specified multiple times)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string..." + }, + "ssl.protocol" : { + "category" : "option", + "default" : 5, + "deprecatedIn" : null, + "description" : "ssl protocol (1 = SSLv2 (unsupported), 2 = SSLv2 or SSLv3 (negotiated), 3 = SSLv3, 4 = TLSv1, 5 = TLSv1.2, 6 = TLSv1.3, 9 = generic TLS)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ssl", + "type" : "uint64", + "values" : "Possible values: 1, 2, 3, 4, 5, 6, 9" + }, + "threads" : { + "category" : "option", + "default" : 2, + "deprecatedIn" : null, + "description" : "maximum number of collections/shards to process in parallel", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.4.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "uint32" + }, + "tick-end" : { + "category" : "option", + "default" : 0, + "deprecatedIn" : null, + "description" : "last tick to be included in data dump", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "uint64" + }, + "tick-start" : { + "category" : "option", + "default" : 0, + "deprecatedIn" : null, + "description" : "only include data after this tick", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "uint64" + }, + "version" : { + "category" : "command", + "deprecatedIn" : null, + "description" : "reports the version and exits", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "version-json" : { + "category" : "command", + "deprecatedIn" : null, + "description" : "reports the version as JSON and exits", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.9.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + } +} diff --git a/3.9/generated/Examples/arangoexport.json b/3.9/generated/Examples/arangoexport.json new file mode 100644 index 0000000000..35921b7fcc --- /dev/null +++ b/3.9/generated/Examples/arangoexport.json @@ -0,0 +1,1202 @@ +{ + "check-configuration" : { + "category" : "command", + "deprecatedIn" : null, + "description" : "check the configuration and exit", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "collection" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "restrict to collection name (can be specified multiple times)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string..." + }, + "compress-output" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "compress files containing collection contents using gzip format", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.4.8", + "v3.5.1" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "config" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "the configuration file or 'none'", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "configuration" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "the configuration file or 'none'", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "define" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "define key=value for a @key@ entry in config file", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string..." + }, + "documents-per-batch" : { + "category" : "option", + "default" : 1000, + "deprecatedIn" : null, + "description" : "number of documents to return in each batch", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "uint64" + }, + "dump-dependencies" : { + "category" : "command", + "deprecatedIn" : null, + "description" : "dump dependency graph", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "dump-options" : { + "category" : "command", + "deprecatedIn" : null, + "description" : "dump configuration options in JSON format", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "encryption.key-generator" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "program providing the encryption key on stdout. If set, encryption will be enabled.", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "encryption", + "type" : "string" + }, + "encryption.keyfile" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "file containing the encryption key. If set, encryption will be enabled.", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "encryption", + "type" : "string" + }, + "fields" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "comma separated list of fields to export into a csv file", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "graph-name" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "name of a graph to export", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "log" : { + "category" : "option", + "default" : [ + "info" + ], + "deprecatedIn" : [ + "v3.5.0" + ], + "description" : "the global or topic-specific log level", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string..." + }, + "log.color" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "use colors for TTY logging", + "dynamic" : true, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.escape" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "escape characters when logging", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.file" : { + "category" : "option", + "default" : "-", + "deprecatedIn" : null, + "description" : "shortcut for '--log.output file://'", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.file-group" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "group to use for new log file, user must be a member of this group", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.4.5" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.file-mode" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "mode to use for new log file, umask will be applied as well", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.4.5" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.force-direct" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "do not start a seperate thread for logging", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.foreground-tty" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "also log to tty if backgrounded", + "dynamic" : true, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.hostname" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "hostname to use in log message (empty for none, use 'auto' to automatically figure out hostname)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.ids" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "log unique message ids", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.level" : { + "category" : "option", + "default" : [ + "info" + ], + "deprecatedIn" : null, + "description" : "the global or topic-specific log level", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string..." + }, + "log.line-number" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "include the function name, file name and line number of the source code that issues the log message. Format: `[func@FileName.cpp:123]`", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.max-entry-length" : { + "category" : "option", + "default" : 134217728, + "deprecatedIn" : null, + "description" : "maximum length of a log entry (in bytes)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.7.9" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "uint32" + }, + "log.output" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "log destination(s), e.g. file:///path/to/file (any '$PID' will be replaced with the process id)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string..." + }, + "log.performance" : { + "category" : "option", + "default" : false, + "deprecatedIn" : [ + "v3.5.0" + ], + "description" : "shortcut for '--log.level performance=trace'", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.prefix" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "prefix log message with this string", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.process" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "show process identifier (pid) in log message", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.request-parameters" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "include full URLs and HTTP request parameters in trace logs", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.role" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "log server role", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.shorten-filenames" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "shorten filenames in log output (use with --log.line-number)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.thread" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "show thread identifier in log message", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.thread-name" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "show thread name in log message", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.time-format" : { + "category" : "option", + "default" : "utc-datestring", + "deprecatedIn" : null, + "description" : "time format to use in logs", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string", + "values" : "Possible values: \"local-datestring\", \"timestamp\", \"timestamp-micros\", \"timestamp-millis\", \"uptime\", \"uptime-micros\", \"uptime-millis\", \"utc-datestring\", \"utc-datestring-millis\"" + }, + "log.use-json-format" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "use json output format", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.use-local-time" : { + "category" : "option", + "default" : false, + "deprecatedIn" : [ + "v3.5.0" + ], + "description" : "use local timezone instead of UTC", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.use-microtime" : { + "category" : "option", + "default" : false, + "deprecatedIn" : [ + "v3.5.0" + ], + "description" : "use microtime instead", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "output-directory" : { + "category" : "option", + "default" : "/Users/hkernbach/Git/ArangoDB/devel-2/export", + "deprecatedIn" : null, + "description" : "output directory", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "overwrite" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "overwrite data in output directory", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "progress" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "show progress", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "query" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "AQL query to run", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "query-max-runtime" : { + "category" : "option", + "default" : 0, + "deprecatedIn" : null, + "description" : "runtime threshold for AQL queries (in seconds, 0 = no limit)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "double" + }, + "random.generator" : { + "category" : "option", + "default" : 1, + "deprecatedIn" : null, + "description" : "random number generator to use (1 = MERSENNE, 2 = RANDOM, 3 = URANDOM, 4 = COMBINED (not for Windows), 5 = WinCrypt (Windows only)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "random", + "type" : "uint32", + "values" : "Possible values: 1, 2, 3, 4" + }, + "server.authentication" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "require authentication credentials when connecting (does not affect the server-side authentication settings)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "server", + "type" : "boolean" + }, + "server.connection-timeout" : { + "category" : "option", + "default" : 5, + "deprecatedIn" : null, + "description" : "connection timeout in seconds", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "double" + }, + "server.database" : { + "category" : "option", + "default" : "_system", + "deprecatedIn" : null, + "description" : "database name to use when connecting", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "string" + }, + "server.endpoint" : { + "category" : "option", + "default" : "http+tcp://127.0.0.1:8529", + "deprecatedIn" : null, + "description" : "endpoint to connect to. Use 'none' to start without a server. Use http+ssl:// or vst+ssl:// as schema to connect to an SSL-secured server endpoint, otherwise http+tcp://, vst+tcp:// or unix://", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "string" + }, + "server.force-json" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "force to not use VelocyPack for easier debugging", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.6.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "server", + "type" : "boolean" + }, + "server.max-packet-size" : { + "category" : "option", + "default" : 1073741824, + "deprecatedIn" : null, + "description" : "maximum packet size (in bytes) for client/server communication", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "uint64" + }, + "server.password" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "password to use when connecting. If not specified and authentication is required, the user will be prompted for a password", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "string" + }, + "server.request-timeout" : { + "category" : "option", + "default" : 1200, + "deprecatedIn" : null, + "description" : "request timeout in seconds", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "double" + }, + "server.username" : { + "category" : "option", + "default" : "root", + "deprecatedIn" : null, + "description" : "username to use when connecting", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "string" + }, + "ssl.protocol" : { + "category" : "option", + "default" : 5, + "deprecatedIn" : null, + "description" : "ssl protocol (1 = SSLv2 (unsupported), 2 = SSLv2 or SSLv3 (negotiated), 3 = SSLv3, 4 = TLSv1, 5 = TLSv1.2, 6 = TLSv1.3, 9 = generic TLS)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ssl", + "type" : "uint64", + "values" : "Possible values: 1, 2, 3, 4, 5, 6, 9" + }, + "temp.path" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "path for temporary files", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "temp", + "type" : "string" + }, + "type" : { + "category" : "option", + "default" : "json", + "deprecatedIn" : null, + "description" : "type of export", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string", + "values" : "Possible values: \"csv\", \"json\", \"jsonl\", \"xgmml\", \"xml\"" + }, + "version" : { + "category" : "command", + "deprecatedIn" : null, + "description" : "reports the version and exits", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "version-json" : { + "category" : "command", + "deprecatedIn" : null, + "description" : "reports the version as JSON and exits", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.9.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "xgmml-label-attribute" : { + "category" : "option", + "default" : "label", + "deprecatedIn" : null, + "description" : "specify document attribute that will be the xgmml label", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "xgmml-label-only" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "export only xgmml label", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + } +} diff --git a/3.9/generated/Examples/arangoimport.json b/3.9/generated/Examples/arangoimport.json new file mode 100644 index 0000000000..2e30c78bd0 --- /dev/null +++ b/3.9/generated/Examples/arangoimport.json @@ -0,0 +1,1432 @@ +{ + "auto-rate-limit" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "adjust the data loading rate automatically, starting at --batch-size bytes per thread per second", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.7.11" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "backslash-escape" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "use backslash as the escape character for quotes, used for csv", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "batch-size" : { + "category" : "option", + "default" : 8388608, + "deprecatedIn" : null, + "description" : "size for individual data batches (in bytes)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "uint64" + }, + "check-configuration" : { + "category" : "command", + "deprecatedIn" : null, + "description" : "check the configuration and exit", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "collection" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "collection name", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "config" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "the configuration file or 'none'", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "configuration" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "the configuration file or 'none'", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "convert" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "convert the strings 'null', 'false', 'true' and strings containing numbers into non-string types (csv and tsv only)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "create-collection" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "create collection if it does not yet exist", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "create-collection-type" : { + "category" : "option", + "default" : "document", + "deprecatedIn" : null, + "description" : "type of collection if collection is created (edge or document)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string", + "values" : "Possible values: \"document\", \"edge\"" + }, + "create-database" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "create the target database if it does not exist", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "define" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "define key=value for a @key@ entry in config file", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string..." + }, + "dump-dependencies" : { + "category" : "command", + "deprecatedIn" : null, + "description" : "dump dependency graph", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "dump-options" : { + "category" : "command", + "deprecatedIn" : null, + "description" : "dump configuration options in JSON format", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "encryption.key-generator" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "program providing the encryption key on stdout. If set, encryption will be enabled.", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "encryption", + "type" : "string" + }, + "encryption.keyfile" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "file containing the encryption key. If set, encryption will be enabled.", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "encryption", + "type" : "string" + }, + "file" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "file name (\"-\" for STDIN)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "from-collection-prefix" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "_from collection name prefix (will be prepended to all values in '_from')", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "headers-file" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "filename to read CSV or TSV headers from. if specified will not try to read headers from regular input file", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "ignore-missing" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "ignore missing columns in csv input", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "latency" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "show 10 second latency statistics (values in microseconds)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "log" : { + "category" : "option", + "default" : [ + "info" + ], + "deprecatedIn" : [ + "v3.5.0" + ], + "description" : "the global or topic-specific log level", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string..." + }, + "log.color" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "use colors for TTY logging", + "dynamic" : true, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.escape" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "escape characters when logging", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.file" : { + "category" : "option", + "default" : "-", + "deprecatedIn" : null, + "description" : "shortcut for '--log.output file://'", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.file-group" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "group to use for new log file, user must be a member of this group", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.4.5" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.file-mode" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "mode to use for new log file, umask will be applied as well", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.4.5" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.force-direct" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "do not start a seperate thread for logging", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.foreground-tty" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "also log to tty if backgrounded", + "dynamic" : true, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.hostname" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "hostname to use in log message (empty for none, use 'auto' to automatically figure out hostname)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.ids" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "log unique message ids", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.level" : { + "category" : "option", + "default" : [ + "info" + ], + "deprecatedIn" : null, + "description" : "the global or topic-specific log level", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string..." + }, + "log.line-number" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "include the function name, file name and line number of the source code that issues the log message. Format: `[func@FileName.cpp:123]`", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.max-entry-length" : { + "category" : "option", + "default" : 134217728, + "deprecatedIn" : null, + "description" : "maximum length of a log entry (in bytes)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.7.9" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "uint32" + }, + "log.output" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "log destination(s), e.g. file:///path/to/file (any '$PID' will be replaced with the process id)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string..." + }, + "log.performance" : { + "category" : "option", + "default" : false, + "deprecatedIn" : [ + "v3.5.0" + ], + "description" : "shortcut for '--log.level performance=trace'", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.prefix" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "prefix log message with this string", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.process" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "show process identifier (pid) in log message", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.request-parameters" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "include full URLs and HTTP request parameters in trace logs", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.role" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "log server role", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.shorten-filenames" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "shorten filenames in log output (use with --log.line-number)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.thread" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "show thread identifier in log message", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.thread-name" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "show thread name in log message", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.time-format" : { + "category" : "option", + "default" : "utc-datestring", + "deprecatedIn" : null, + "description" : "time format to use in logs", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string", + "values" : "Possible values: \"local-datestring\", \"timestamp\", \"timestamp-micros\", \"timestamp-millis\", \"uptime\", \"uptime-micros\", \"uptime-millis\", \"utc-datestring\", \"utc-datestring-millis\"" + }, + "log.use-json-format" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "use json output format", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.use-local-time" : { + "category" : "option", + "default" : false, + "deprecatedIn" : [ + "v3.5.0" + ], + "description" : "use local timezone instead of UTC", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.use-microtime" : { + "category" : "option", + "default" : false, + "deprecatedIn" : [ + "v3.5.0" + ], + "description" : "use microtime instead", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "on-duplicate" : { + "category" : "option", + "default" : "error", + "deprecatedIn" : null, + "description" : "action to perform when a unique key constraint violation occurs. Possible values: update, ignore, replace, error", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string", + "values" : "Possible values: \"error\", \"ignore\", \"replace\", \"update\"" + }, + "overwrite" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "overwrite collection if it exist (WARNING: this will remove any data from the collection)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "progress" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "show progress", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "quote" : { + "category" : "option", + "default" : "\"", + "deprecatedIn" : null, + "description" : "quote character(s), used for csv", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "random.generator" : { + "category" : "option", + "default" : 1, + "deprecatedIn" : null, + "description" : "random number generator to use (1 = MERSENNE, 2 = RANDOM, 3 = URANDOM, 4 = COMBINED (not for Windows), 5 = WinCrypt (Windows only)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "random", + "type" : "uint32", + "values" : "Possible values: 1, 2, 3, 4" + }, + "remove-attribute" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "remove an attribute before inserting an attribute into a collection (for csv and tsv only)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string..." + }, + "separator" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "field separator, used for csv and tsv. Defaults to a comma (csv) or a tabulation character (tsv)", + "dynamic" : true, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "server.authentication" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "require authentication credentials when connecting (does not affect the server-side authentication settings)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "server", + "type" : "boolean" + }, + "server.connection-timeout" : { + "category" : "option", + "default" : 5, + "deprecatedIn" : null, + "description" : "connection timeout in seconds", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "double" + }, + "server.database" : { + "category" : "option", + "default" : "_system", + "deprecatedIn" : null, + "description" : "database name to use when connecting", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "string" + }, + "server.endpoint" : { + "category" : "option", + "default" : "http+tcp://127.0.0.1:8529", + "deprecatedIn" : null, + "description" : "endpoint to connect to. Use 'none' to start without a server. Use http+ssl:// or vst+ssl:// as schema to connect to an SSL-secured server endpoint, otherwise http+tcp://, vst+tcp:// or unix://", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "string" + }, + "server.force-json" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "force to not use VelocyPack for easier debugging", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.6.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "server", + "type" : "boolean" + }, + "server.max-packet-size" : { + "category" : "option", + "default" : 1073741824, + "deprecatedIn" : null, + "description" : "maximum packet size (in bytes) for client/server communication", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "uint64" + }, + "server.password" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "password to use when connecting. If not specified and authentication is required, the user will be prompted for a password", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "string" + }, + "server.request-timeout" : { + "category" : "option", + "default" : 1200, + "deprecatedIn" : null, + "description" : "request timeout in seconds", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "double" + }, + "server.username" : { + "category" : "option", + "default" : "root", + "deprecatedIn" : null, + "description" : "username to use when connecting", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "string" + }, + "skip-lines" : { + "category" : "option", + "default" : 0, + "deprecatedIn" : null, + "description" : "number of lines to skip for formats (csv and tsv only)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "uint64" + }, + "skip-validation" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "skips document validation during import", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.7.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "ssl.protocol" : { + "category" : "option", + "default" : 5, + "deprecatedIn" : null, + "description" : "ssl protocol (1 = SSLv2 (unsupported), 2 = SSLv2 or SSLv3 (negotiated), 3 = SSLv3, 4 = TLSv1, 5 = TLSv1.2, 6 = TLSv1.3, 9 = generic TLS)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ssl", + "type" : "uint64", + "values" : "Possible values: 1, 2, 3, 4, 5, 6, 9" + }, + "temp.path" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "path for temporary files", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "temp", + "type" : "string" + }, + "threads" : { + "category" : "option", + "default" : 2, + "deprecatedIn" : null, + "description" : "Number of parallel import threads", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "uint32" + }, + "to-collection-prefix" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "_to collection name prefix (will be prepended to all values in '_to')", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "translate" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "translate an attribute name (use as --translate \"from=to\", for csv and tsv only)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string..." + }, + "type" : { + "category" : "option", + "default" : "json", + "deprecatedIn" : null, + "description" : "type of import file", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string", + "values" : "Possible values: \"auto\", \"csv\", \"json\", \"jsonl\", \"tsv\"" + }, + "version" : { + "category" : "command", + "deprecatedIn" : null, + "description" : "reports the version and exits", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "version-json" : { + "category" : "command", + "deprecatedIn" : null, + "description" : "reports the version as JSON and exits", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.9.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + } +} diff --git a/3.9/generated/Examples/arangoinspect.json b/3.9/generated/Examples/arangoinspect.json new file mode 100644 index 0000000000..0cc5aa2917 --- /dev/null +++ b/3.9/generated/Examples/arangoinspect.json @@ -0,0 +1,1745 @@ +{ + "check-configuration" : { + "category" : "command", + "deprecatedIn" : null, + "description" : "check the configuration and exit", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "config" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "the configuration file or 'none'", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "configuration" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "the configuration file or 'none'", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "console.audit-file" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "audit log file to save commands and results", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "console", + "type" : "string" + }, + "console.auto-complete" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "enable auto completion", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "console", + "type" : "boolean" + }, + "console.colors" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "enable color support", + "dynamic" : true, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "console", + "type" : "boolean" + }, + "console.history" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "whether or not to load and persist command-line history", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.4.5" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "console", + "type" : "boolean" + }, + "console.pager" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "enable paging", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "console", + "type" : "boolean" + }, + "console.pager-command" : { + "category" : "option", + "default" : "less -X -R -F -L", + "deprecatedIn" : null, + "description" : "pager command", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "console", + "type" : "string" + }, + "console.pretty-print" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "enable pretty printing", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "console", + "type" : "boolean" + }, + "console.prompt" : { + "category" : "option", + "default" : "%E@%d> ", + "deprecatedIn" : null, + "description" : "prompt used in REPL. prompt components are: '%t': current time as timestamp, '%p': duration of last command in seconds, '%d': name of current database, '%e': current endpoint, '%E': current endpoint without protocol, '%u': current user", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "console", + "type" : "string" + }, + "default-language" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "ISO-639 language code", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "default-language-check" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "check if default language matches stored language", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "define" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "define key=value for a @key@ entry in config file", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string..." + }, + "dump-dependencies" : { + "category" : "command", + "deprecatedIn" : null, + "description" : "dump dependency graph", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "dump-options" : { + "category" : "command", + "deprecatedIn" : null, + "description" : "dump configuration options in JSON format", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "encryption.key-generator" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "program providing the encryption key on stdout. If set, encryption will be enabled.", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "encryption", + "type" : "string" + }, + "encryption.keyfile" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "file containing the encryption key. If set, encryption will be enabled.", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "encryption", + "type" : "string" + }, + "javascript.allow-external-process-control" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "allow execution and control of external processes from within JavaScript actions", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "javascript", + "type" : "boolean" + }, + "javascript.allow-port-testing" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "allow testing of ports from within JavaScript actions", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "javascript", + "type" : "boolean" + }, + "javascript.check-syntax" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "syntax check code JavaScript code from file", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string..." + }, + "javascript.client-module" : { + "category" : "option", + "default" : "inspector.js", + "deprecatedIn" : null, + "description" : "client module to use at startup", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string" + }, + "javascript.copy-directory" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "target directory to copy files from 'javascript.startup-directory' into (only used when `--javascript.copy-installation` is enabled)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string" + }, + "javascript.copy-installation" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "copy contents of 'javascript.startup-directory'", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "javascript", + "type" : "boolean" + }, + "javascript.current-module-directory" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "add current directory to module path", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "javascript", + "type" : "boolean" + }, + "javascript.endpoints-allowlist" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "endpoints that can be connected to via @arangodb/request module in JavaScript actions", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string..." + }, + "javascript.endpoints-denylist" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "endpoints that cannot be connected to via @arangodb/request module in JavaScript actions (if not in allowlist)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string..." + }, + "javascript.environment-variables-allowlist" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "environment variables that will be accessible in JavaScript", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string..." + }, + "javascript.environment-variables-denylist" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "environment variables that will be inaccessible in JavaScript (if not in allowlist)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string..." + }, + "javascript.execute" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "execute JavaScript code from file", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string..." + }, + "javascript.execute-string" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "execute JavaScript code from string", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string..." + }, + "javascript.files-allowlist" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "filesystem paths that will be accessible from within JavaScript actions", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string..." + }, + "javascript.gc-interval" : { + "category" : "option", + "default" : 50, + "deprecatedIn" : null, + "description" : "request-based garbage collection interval (each n.th command)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "uint64" + }, + "javascript.harden" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "disables access to JavaScript functions in the internal module: getPid() and logLevel()", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "javascript", + "type" : "boolean" + }, + "javascript.module-directory" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "additional paths containing JavaScript modules", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string..." + }, + "javascript.run-main" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "execute function main", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "javascript", + "type" : "boolean" + }, + "javascript.script-parameter" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "script parameter", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string..." + }, + "javascript.startup-directory" : { + "category" : "option", + "default" : "./js", + "deprecatedIn" : null, + "description" : "startup paths containing the JavaScript files", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string" + }, + "javascript.startup-options-allowlist" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "startup options whose names match this regular expression will be allowed and exposed to JavaScript", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string..." + }, + "javascript.startup-options-denylist" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "startup options whose names match this regular expression will not be exposed (if not in allowlist) to JavaScript actions", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string..." + }, + "javascript.unit-test-filter" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "filter testcases in suite", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string" + }, + "javascript.unit-tests" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "do not start as shell, run unit tests instead", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string..." + }, + "javascript.v8-max-heap" : { + "category" : "option", + "default" : 3072, + "deprecatedIn" : null, + "description" : "maximal heap size (in MB)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "uint64" + }, + "javascript.v8-options" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "options to pass to v8", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string..." + }, + "jslint" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "do not start as shell, run jslint instead", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string..." + }, + "log" : { + "category" : "option", + "default" : [ + "info" + ], + "deprecatedIn" : [ + "v3.5.0" + ], + "description" : "the global or topic-specific log level", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string..." + }, + "log.color" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "use colors for TTY logging", + "dynamic" : true, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.escape" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "escape characters when logging", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.file" : { + "category" : "option", + "default" : "-", + "deprecatedIn" : null, + "description" : "shortcut for '--log.output file://'", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.file-group" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "group to use for new log file, user must be a member of this group", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.4.5" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.file-mode" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "mode to use for new log file, umask will be applied as well", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.4.5" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.force-direct" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "do not start a seperate thread for logging", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.foreground-tty" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "also log to tty if backgrounded", + "dynamic" : true, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.hostname" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "hostname to use in log message (empty for none, use 'auto' to automatically figure out hostname)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.ids" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "log unique message ids", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.level" : { + "category" : "option", + "default" : [ + "info" + ], + "deprecatedIn" : null, + "description" : "the global or topic-specific log level", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string..." + }, + "log.line-number" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "include the function name, file name and line number of the source code that issues the log message. Format: `[func@FileName.cpp:123]`", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.max-entry-length" : { + "category" : "option", + "default" : 134217728, + "deprecatedIn" : null, + "description" : "maximum length of a log entry (in bytes)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.7.9" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "uint32" + }, + "log.output" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "log destination(s), e.g. file:///path/to/file (any '$PID' will be replaced with the process id)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string..." + }, + "log.performance" : { + "category" : "option", + "default" : false, + "deprecatedIn" : [ + "v3.5.0" + ], + "description" : "shortcut for '--log.level performance=trace'", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.prefix" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "prefix log message with this string", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.process" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "show process identifier (pid) in log message", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.request-parameters" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "include full URLs and HTTP request parameters in trace logs", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.role" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "log server role", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.shorten-filenames" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "shorten filenames in log output (use with --log.line-number)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.thread" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "show thread identifier in log message", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.thread-name" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "show thread name in log message", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.time-format" : { + "category" : "option", + "default" : "utc-datestring", + "deprecatedIn" : null, + "description" : "time format to use in logs", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string", + "values" : "Possible values: \"local-datestring\", \"timestamp\", \"timestamp-micros\", \"timestamp-millis\", \"uptime\", \"uptime-micros\", \"uptime-millis\", \"utc-datestring\", \"utc-datestring-millis\"" + }, + "log.use-json-format" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "use json output format", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.use-local-time" : { + "category" : "option", + "default" : false, + "deprecatedIn" : [ + "v3.5.0" + ], + "description" : "use local timezone instead of UTC", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.use-microtime" : { + "category" : "option", + "default" : false, + "deprecatedIn" : [ + "v3.5.0" + ], + "description" : "use microtime instead", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "quiet" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "silent startup", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "random.generator" : { + "category" : "option", + "default" : 1, + "deprecatedIn" : null, + "description" : "random number generator to use (1 = MERSENNE, 2 = RANDOM, 3 = URANDOM, 4 = COMBINED (not for Windows), 5 = WinCrypt (Windows only)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "random", + "type" : "uint32", + "values" : "Possible values: 1, 2, 3, 4" + }, + "server.ask-jwt-secret" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "if this option is specified, the user will be prompted for a JWT secret. This option is not compatible with --server.username or --server.password. If specified, it will be used for all connections - even when a new connection to another server is created", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "server", + "type" : "boolean" + }, + "server.authentication" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "require authentication credentials when connecting (does not affect the server-side authentication settings)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "server", + "type" : "boolean" + }, + "server.connection-timeout" : { + "category" : "option", + "default" : 5, + "deprecatedIn" : null, + "description" : "connection timeout in seconds", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "double" + }, + "server.database" : { + "category" : "option", + "default" : "_system", + "deprecatedIn" : null, + "description" : "database name to use when connecting", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "string" + }, + "server.endpoint" : { + "category" : "option", + "default" : "http+tcp://127.0.0.1:8529", + "deprecatedIn" : null, + "description" : "endpoint to connect to. Use 'none' to start without a server. Use http+ssl:// or vst+ssl:// as schema to connect to an SSL-secured server endpoint, otherwise http+tcp://, vst+tcp:// or unix://", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "string" + }, + "server.force-json" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "force to not use VelocyPack for easier debugging", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.6.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "server", + "type" : "boolean" + }, + "server.jwt-secret-keyfile" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "if this option is specified, the jwt secret will be loaded from the given file. This option is not compatible with --server.ask-jwt-secret, --server.username or --server.password. If specified, it will be used for all connections - even when a new connection to another server is created", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "string" + }, + "server.max-packet-size" : { + "category" : "option", + "default" : 1073741824, + "deprecatedIn" : null, + "description" : "maximum packet size (in bytes) for client/server communication", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "uint64" + }, + "server.password" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "password to use when connecting. If not specified and authentication is required, the user will be prompted for a password", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "string" + }, + "server.request-timeout" : { + "category" : "option", + "default" : 1200, + "deprecatedIn" : null, + "description" : "request timeout in seconds", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "double" + }, + "server.username" : { + "category" : "option", + "default" : "root", + "deprecatedIn" : null, + "description" : "username to use when connecting", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "string" + }, + "ssl.protocol" : { + "category" : "option", + "default" : 5, + "deprecatedIn" : null, + "description" : "ssl protocol (1 = SSLv2 (unsupported), 2 = SSLv2 or SSLv3 (negotiated), 3 = SSLv3, 4 = TLSv1, 5 = TLSv1.2, 6 = TLSv1.3, 9 = generic TLS)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ssl", + "type" : "uint64", + "values" : "Possible values: 1, 2, 3, 4, 5, 6, 9" + }, + "temp.path" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "path for temporary files", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "temp", + "type" : "string" + }, + "version" : { + "category" : "command", + "deprecatedIn" : null, + "description" : "reports the version and exits", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "version-json" : { + "category" : "command", + "deprecatedIn" : null, + "description" : "reports the version as JSON and exits", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.9.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + } +} diff --git a/3.9/generated/Examples/arangorestore.json b/3.9/generated/Examples/arangorestore.json new file mode 100644 index 0000000000..1f75f0cb0d --- /dev/null +++ b/3.9/generated/Examples/arangorestore.json @@ -0,0 +1,1468 @@ +{ + "all-databases" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "restore data to all databases", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "batch-size" : { + "category" : "option", + "default" : 8388608, + "deprecatedIn" : null, + "description" : "maximum size for individual data batches (in bytes)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "uint64" + }, + "check-configuration" : { + "category" : "command", + "deprecatedIn" : null, + "description" : "check the configuration and exit", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "cleanup-duplicate-attributes" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "clean up duplicate attributes (use first specified value) in input documents instead of making the restore operation fail", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.3.22", + "v3.4.2" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "collection" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "restrict to collection name (can be specified multiple times)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string..." + }, + "config" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "the configuration file or 'none'", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "configuration" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "the configuration file or 'none'", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "continue" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "continue restore operation", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "create-collection" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "create collection structure", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "create-database" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "create the target database if it does not exist", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "default-number-of-shards" : { + "category" : "option", + "default" : 1, + "deprecatedIn" : [ + "v3.3.22", + "v3.4.2" + ], + "description" : "default value for numberOfShards if not specified in dump", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "uint64" + }, + "default-replication-factor" : { + "category" : "option", + "default" : 1, + "deprecatedIn" : [ + "v3.3.22", + "v3.4.2" + ], + "description" : "default value for replicationFactor if not specified in dump", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "uint64" + }, + "define" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "define key=value for a @key@ entry in config file", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string..." + }, + "dump-dependencies" : { + "category" : "command", + "deprecatedIn" : null, + "description" : "dump dependency graph", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "dump-options" : { + "category" : "command", + "deprecatedIn" : null, + "description" : "dump configuration options in JSON format", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "encryption.key-generator" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "program providing the encryption key on stdout. If set, encryption will be enabled.", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "encryption", + "type" : "string" + }, + "encryption.keyfile" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "file containing the encryption key. If set, encryption will be enabled.", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "encryption", + "type" : "string" + }, + "envelope" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "wrap each document into a {type, data} envelope (this is required from compatibility with v3.7 and before)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "fail-after-update-continue-file" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "force" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "continue restore even in the face of some server-side errors", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "force-same-database" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "force usage of the same database name as in the source dump.json file", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "ignore-distribute-shards-like-errors" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "continue restore even if sharding prototype collection is missing", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "import-data" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "import data into collection", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "include-system-collections" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "include system collections", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "initial-connect-retries" : { + "category" : "option", + "default" : 3, + "deprecatedIn" : null, + "description" : "number of connect retries for initial connection", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.7.13", + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "uint32" + }, + "input-directory" : { + "category" : "option", + "default" : "/Users/hkernbach/Git/ArangoDB/devel-2/dump", + "deprecatedIn" : null, + "description" : "input directory", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "log" : { + "category" : "option", + "default" : [ + "info" + ], + "deprecatedIn" : [ + "v3.5.0" + ], + "description" : "the global or topic-specific log level", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string..." + }, + "log.color" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "use colors for TTY logging", + "dynamic" : true, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.escape" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "escape characters when logging", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.file" : { + "category" : "option", + "default" : "-", + "deprecatedIn" : null, + "description" : "shortcut for '--log.output file://'", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.file-group" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "group to use for new log file, user must be a member of this group", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.4.5" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.file-mode" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "mode to use for new log file, umask will be applied as well", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.4.5" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.force-direct" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "do not start a seperate thread for logging", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.foreground-tty" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "also log to tty if backgrounded", + "dynamic" : true, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.hostname" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "hostname to use in log message (empty for none, use 'auto' to automatically figure out hostname)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.ids" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "log unique message ids", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.level" : { + "category" : "option", + "default" : [ + "info" + ], + "deprecatedIn" : null, + "description" : "the global or topic-specific log level", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string..." + }, + "log.line-number" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "include the function name, file name and line number of the source code that issues the log message. Format: `[func@FileName.cpp:123]`", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.max-entry-length" : { + "category" : "option", + "default" : 134217728, + "deprecatedIn" : null, + "description" : "maximum length of a log entry (in bytes)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.7.9" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "uint32" + }, + "log.output" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "log destination(s), e.g. file:///path/to/file (any '$PID' will be replaced with the process id)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string..." + }, + "log.performance" : { + "category" : "option", + "default" : false, + "deprecatedIn" : [ + "v3.5.0" + ], + "description" : "shortcut for '--log.level performance=trace'", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.prefix" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "prefix log message with this string", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.process" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "show process identifier (pid) in log message", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.request-parameters" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "include full URLs and HTTP request parameters in trace logs", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.role" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "log server role", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.shorten-filenames" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "shorten filenames in log output (use with --log.line-number)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.thread" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "show thread identifier in log message", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.thread-name" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "show thread name in log message", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.time-format" : { + "category" : "option", + "default" : "utc-datestring", + "deprecatedIn" : null, + "description" : "time format to use in logs", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string", + "values" : "Possible values: \"local-datestring\", \"timestamp\", \"timestamp-micros\", \"timestamp-millis\", \"uptime\", \"uptime-micros\", \"uptime-millis\", \"utc-datestring\", \"utc-datestring-millis\"" + }, + "log.use-json-format" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "use json output format", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.use-local-time" : { + "category" : "option", + "default" : false, + "deprecatedIn" : [ + "v3.5.0" + ], + "description" : "use local timezone instead of UTC", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.use-microtime" : { + "category" : "option", + "default" : false, + "deprecatedIn" : [ + "v3.5.0" + ], + "description" : "use microtime instead", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "number-of-shards" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "override value for numberOfShards (can be specified multiple times, e.g. --number-of-shards 2 --number-of-shards myCollection=3)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.3.22", + "v3.4.2" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string..." + }, + "overwrite" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "overwrite collections if they exist", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "progress" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "show progress", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "random.generator" : { + "category" : "option", + "default" : 1, + "deprecatedIn" : null, + "description" : "random number generator to use (1 = MERSENNE, 2 = RANDOM, 3 = URANDOM, 4 = COMBINED (not for Windows), 5 = WinCrypt (Windows only)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "random", + "type" : "uint32", + "values" : "Possible values: 1, 2, 3, 4" + }, + "replication-factor" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "override value for replicationFactor (can be specified multiple times, e.g. --replication-factor 2 --replication-factor myCollection=3)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.3.22", + "v3.4.2" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string..." + }, + "server.ask-jwt-secret" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "if this option is specified, the user will be prompted for a JWT secret. This option is not compatible with --server.username or --server.password. If specified, it will be used for all connections - even when a new connection to another server is created", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "server", + "type" : "boolean" + }, + "server.authentication" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "require authentication credentials when connecting (does not affect the server-side authentication settings)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "server", + "type" : "boolean" + }, + "server.connection-timeout" : { + "category" : "option", + "default" : 5, + "deprecatedIn" : null, + "description" : "connection timeout in seconds", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "double" + }, + "server.database" : { + "category" : "option", + "default" : "_system", + "deprecatedIn" : null, + "description" : "database name to use when connecting", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "string" + }, + "server.endpoint" : { + "category" : "option", + "default" : "http+tcp://127.0.0.1:8529", + "deprecatedIn" : null, + "description" : "endpoint to connect to. Use 'none' to start without a server. Use http+ssl:// or vst+ssl:// as schema to connect to an SSL-secured server endpoint, otherwise http+tcp://, vst+tcp:// or unix://", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "string" + }, + "server.force-json" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "force to not use VelocyPack for easier debugging", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.6.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "server", + "type" : "boolean" + }, + "server.jwt-secret-keyfile" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "if this option is specified, the jwt secret will be loaded from the given file. This option is not compatible with --server.ask-jwt-secret, --server.username or --server.password. If specified, it will be used for all connections - even when a new connection to another server is created", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "string" + }, + "server.max-packet-size" : { + "category" : "option", + "default" : 1073741824, + "deprecatedIn" : null, + "description" : "maximum packet size (in bytes) for client/server communication", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "uint64" + }, + "server.password" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "password to use when connecting. If not specified and authentication is required, the user will be prompted for a password", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "string" + }, + "server.request-timeout" : { + "category" : "option", + "default" : 1200, + "deprecatedIn" : null, + "description" : "request timeout in seconds", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "double" + }, + "server.username" : { + "category" : "option", + "default" : "root", + "deprecatedIn" : null, + "description" : "username to use when connecting", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "string" + }, + "ssl.protocol" : { + "category" : "option", + "default" : 5, + "deprecatedIn" : null, + "description" : "ssl protocol (1 = SSLv2 (unsupported), 2 = SSLv2 or SSLv3 (negotiated), 3 = SSLv3, 4 = TLSv1, 5 = TLSv1.2, 6 = TLSv1.3, 9 = generic TLS)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ssl", + "type" : "uint64", + "values" : "Possible values: 1, 2, 3, 4, 5, 6, 9" + }, + "temp.path" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "path for temporary files", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "temp", + "type" : "string" + }, + "threads" : { + "category" : "option", + "default" : 2, + "deprecatedIn" : null, + "description" : "maximum number of collections to process in parallel", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.4.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "uint32" + }, + "version" : { + "category" : "command", + "deprecatedIn" : null, + "description" : "reports the version and exits", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "version-json" : { + "category" : "command", + "deprecatedIn" : null, + "description" : "reports the version as JSON and exits", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.9.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "view" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "restrict to view name (can be specified multiple times)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string..." + } +} diff --git a/3.9/generated/Examples/arangosh.json b/3.9/generated/Examples/arangosh.json new file mode 100644 index 0000000000..d9357ea122 --- /dev/null +++ b/3.9/generated/Examples/arangosh.json @@ -0,0 +1,1746 @@ +{ + "check-configuration" : { + "category" : "command", + "deprecatedIn" : null, + "description" : "check the configuration and exit", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "config" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "the configuration file or 'none'", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "configuration" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "the configuration file or 'none'", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "console.audit-file" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "audit log file to save commands and results", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "console", + "type" : "string" + }, + "console.auto-complete" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "enable auto completion", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "console", + "type" : "boolean" + }, + "console.colors" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "enable color support", + "dynamic" : true, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "console", + "type" : "boolean" + }, + "console.history" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "whether or not to load and persist command-line history", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.4.5" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "console", + "type" : "boolean" + }, + "console.pager" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "enable paging", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "console", + "type" : "boolean" + }, + "console.pager-command" : { + "category" : "option", + "default" : "less -X -R -F -L", + "deprecatedIn" : null, + "description" : "pager command", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "console", + "type" : "string" + }, + "console.pretty-print" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "enable pretty printing", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "console", + "type" : "boolean" + }, + "console.prompt" : { + "category" : "option", + "default" : "%E@%d> ", + "deprecatedIn" : null, + "description" : "prompt used in REPL. prompt components are: '%t': current time as timestamp, '%p': duration of last command in seconds, '%d': name of current database, '%e': current endpoint, '%E': current endpoint without protocol, '%u': current user", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "console", + "type" : "string" + }, + "default-language" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "ISO-639 language code", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "default-language-check" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "check if default language matches stored language", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "define" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "define key=value for a @key@ entry in config file", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string..." + }, + "dump-dependencies" : { + "category" : "command", + "deprecatedIn" : null, + "description" : "dump dependency graph", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "dump-options" : { + "category" : "command", + "deprecatedIn" : null, + "description" : "dump configuration options in JSON format", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "encryption.key-generator" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "program providing the encryption key on stdout. If set, encryption will be enabled.", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "encryption", + "type" : "string" + }, + "encryption.keyfile" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "file containing the encryption key. If set, encryption will be enabled.", + "dynamic" : false, + "enterpriseOnly" : true, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "encryption", + "type" : "string" + }, + "javascript.allow-external-process-control" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "allow execution and control of external processes from within JavaScript actions", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "javascript", + "type" : "boolean" + }, + "javascript.allow-port-testing" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "allow testing of ports from within JavaScript actions", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "javascript", + "type" : "boolean" + }, + "javascript.check-syntax" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "syntax check code JavaScript code from file", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string..." + }, + "javascript.client-module" : { + "category" : "option", + "default" : "client.js", + "deprecatedIn" : null, + "description" : "client module to use at startup", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string" + }, + "javascript.copy-directory" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "target directory to copy files from 'javascript.startup-directory' into (only used when `--javascript.copy-installation` is enabled)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string" + }, + "javascript.copy-installation" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "copy contents of 'javascript.startup-directory'", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "javascript", + "type" : "boolean" + }, + "javascript.current-module-directory" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "add current directory to module path", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "javascript", + "type" : "boolean" + }, + "javascript.endpoints-allowlist" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "endpoints that can be connected to via @arangodb/request module in JavaScript actions", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string..." + }, + "javascript.endpoints-denylist" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "endpoints that cannot be connected to via @arangodb/request module in JavaScript actions (if not in allowlist)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string..." + }, + "javascript.environment-variables-allowlist" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "environment variables that will be accessible in JavaScript", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string..." + }, + "javascript.environment-variables-denylist" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "environment variables that will be inaccessible in JavaScript (if not in allowlist)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string..." + }, + "javascript.execute" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "execute JavaScript code from file", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string..." + }, + "javascript.execute-string" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "execute JavaScript code from string", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string..." + }, + "javascript.files-allowlist" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "filesystem paths that will be accessible from within JavaScript actions", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string..." + }, + "javascript.gc-interval" : { + "category" : "option", + "default" : 50, + "deprecatedIn" : null, + "description" : "request-based garbage collection interval (each n.th command)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "uint64" + }, + "javascript.harden" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "disables access to JavaScript functions in the internal module: getPid() and logLevel()", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "javascript", + "type" : "boolean" + }, + "javascript.module-directory" : { + "category" : "option", + "default" : [ + "./enterprise/js" + ], + "deprecatedIn" : null, + "description" : "additional paths containing JavaScript modules", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string..." + }, + "javascript.run-main" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "execute function main", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "javascript", + "type" : "boolean" + }, + "javascript.script-parameter" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "script parameter", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string..." + }, + "javascript.startup-directory" : { + "category" : "option", + "default" : "./js", + "deprecatedIn" : null, + "description" : "startup paths containing the JavaScript files", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string" + }, + "javascript.startup-options-allowlist" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "startup options whose names match this regular expression will be allowed and exposed to JavaScript", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string..." + }, + "javascript.startup-options-denylist" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "startup options whose names match this regular expression will not be exposed (if not in allowlist) to JavaScript actions", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string..." + }, + "javascript.unit-test-filter" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "filter testcases in suite", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string" + }, + "javascript.unit-tests" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "do not start as shell, run unit tests instead", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string..." + }, + "javascript.v8-max-heap" : { + "category" : "option", + "default" : 3072, + "deprecatedIn" : null, + "description" : "maximal heap size (in MB)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "uint64" + }, + "javascript.v8-options" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "options to pass to v8", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "javascript", + "type" : "string..." + }, + "jslint" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "do not start as shell, run jslint instead", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string..." + }, + "log" : { + "category" : "option", + "default" : [ + "info" + ], + "deprecatedIn" : [ + "v3.5.0" + ], + "description" : "the global or topic-specific log level", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string..." + }, + "log.color" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "use colors for TTY logging", + "dynamic" : true, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.escape" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "escape characters when logging", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.file" : { + "category" : "option", + "default" : "-", + "deprecatedIn" : null, + "description" : "shortcut for '--log.output file://'", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.file-group" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "group to use for new log file, user must be a member of this group", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.4.5" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.file-mode" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "mode to use for new log file, umask will be applied as well", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.4.5" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.force-direct" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "do not start a seperate thread for logging", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.foreground-tty" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "also log to tty if backgrounded", + "dynamic" : true, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.hostname" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "hostname to use in log message (empty for none, use 'auto' to automatically figure out hostname)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.ids" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "log unique message ids", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.level" : { + "category" : "option", + "default" : [ + "info" + ], + "deprecatedIn" : null, + "description" : "the global or topic-specific log level", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string..." + }, + "log.line-number" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "include the function name, file name and line number of the source code that issues the log message. Format: `[func@FileName.cpp:123]`", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.max-entry-length" : { + "category" : "option", + "default" : 134217728, + "deprecatedIn" : null, + "description" : "maximum length of a log entry (in bytes)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.7.9" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "uint32" + }, + "log.output" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "log destination(s), e.g. file:///path/to/file (any '$PID' will be replaced with the process id)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string..." + }, + "log.performance" : { + "category" : "option", + "default" : false, + "deprecatedIn" : [ + "v3.5.0" + ], + "description" : "shortcut for '--log.level performance=trace'", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.prefix" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "prefix log message with this string", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.process" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "show process identifier (pid) in log message", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.request-parameters" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "include full URLs and HTTP request parameters in trace logs", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.role" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "log server role", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.shorten-filenames" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "shorten filenames in log output (use with --log.line-number)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.thread" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "show thread identifier in log message", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.thread-name" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "show thread name in log message", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.time-format" : { + "category" : "option", + "default" : "utc-datestring", + "deprecatedIn" : null, + "description" : "time format to use in logs", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string", + "values" : "Possible values: \"local-datestring\", \"timestamp\", \"timestamp-micros\", \"timestamp-millis\", \"uptime\", \"uptime-micros\", \"uptime-millis\", \"utc-datestring\", \"utc-datestring-millis\"" + }, + "log.use-json-format" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "use json output format", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.use-local-time" : { + "category" : "option", + "default" : false, + "deprecatedIn" : [ + "v3.5.0" + ], + "description" : "use local timezone instead of UTC", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.use-microtime" : { + "category" : "option", + "default" : false, + "deprecatedIn" : [ + "v3.5.0" + ], + "description" : "use microtime instead", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "quiet" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "silent startup", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "random.generator" : { + "category" : "option", + "default" : 1, + "deprecatedIn" : null, + "description" : "random number generator to use (1 = MERSENNE, 2 = RANDOM, 3 = URANDOM, 4 = COMBINED (not for Windows), 5 = WinCrypt (Windows only)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "random", + "type" : "uint32", + "values" : "Possible values: 1, 2, 3, 4" + }, + "server.ask-jwt-secret" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "if this option is specified, the user will be prompted for a JWT secret. This option is not compatible with --server.username or --server.password. If specified, it will be used for all connections - even when a new connection to another server is created", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "server", + "type" : "boolean" + }, + "server.authentication" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "require authentication credentials when connecting (does not affect the server-side authentication settings)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "server", + "type" : "boolean" + }, + "server.connection-timeout" : { + "category" : "option", + "default" : 5, + "deprecatedIn" : null, + "description" : "connection timeout in seconds", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "double" + }, + "server.database" : { + "category" : "option", + "default" : "_system", + "deprecatedIn" : null, + "description" : "database name to use when connecting", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "string" + }, + "server.endpoint" : { + "category" : "option", + "default" : "http+tcp://127.0.0.1:8529", + "deprecatedIn" : null, + "description" : "endpoint to connect to. Use 'none' to start without a server. Use http+ssl:// or vst+ssl:// as schema to connect to an SSL-secured server endpoint, otherwise http+tcp://, vst+tcp:// or unix://", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "string" + }, + "server.force-json" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "force to not use VelocyPack for easier debugging", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.6.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "server", + "type" : "boolean" + }, + "server.jwt-secret-keyfile" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "if this option is specified, the jwt secret will be loaded from the given file. This option is not compatible with --server.ask-jwt-secret, --server.username or --server.password. If specified, it will be used for all connections - even when a new connection to another server is created", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "string" + }, + "server.max-packet-size" : { + "category" : "option", + "default" : 1073741824, + "deprecatedIn" : null, + "description" : "maximum packet size (in bytes) for client/server communication", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "uint64" + }, + "server.password" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "password to use when connecting. If not specified and authentication is required, the user will be prompted for a password", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "string" + }, + "server.request-timeout" : { + "category" : "option", + "default" : 1200, + "deprecatedIn" : null, + "description" : "request timeout in seconds", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "double" + }, + "server.username" : { + "category" : "option", + "default" : "root", + "deprecatedIn" : null, + "description" : "username to use when connecting", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "server", + "type" : "string" + }, + "ssl.protocol" : { + "category" : "option", + "default" : 5, + "deprecatedIn" : null, + "description" : "ssl protocol (1 = SSLv2 (unsupported), 2 = SSLv2 or SSLv3 (negotiated), 3 = SSLv3, 4 = TLSv1, 5 = TLSv1.2, 6 = TLSv1.3, 9 = generic TLS)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "ssl", + "type" : "uint64", + "values" : "Possible values: 1, 2, 3, 4, 5, 6, 9" + }, + "temp.path" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "path for temporary files", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "temp", + "type" : "string" + }, + "version" : { + "category" : "command", + "deprecatedIn" : null, + "description" : "reports the version and exits", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "version-json" : { + "category" : "command", + "deprecatedIn" : null, + "description" : "reports the version as JSON and exits", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.9.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + } +} diff --git a/3.9/generated/Examples/arangovpack.json b/3.9/generated/Examples/arangovpack.json new file mode 100644 index 0000000000..af1f2558bb --- /dev/null +++ b/3.9/generated/Examples/arangovpack.json @@ -0,0 +1,799 @@ +{ + "check-configuration" : { + "category" : "command", + "deprecatedIn" : null, + "description" : "check the configuration and exit", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "config" : { + "category" : "option", + "default" : "none", + "deprecatedIn" : null, + "description" : "the configuration file or 'none'", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "configuration" : { + "category" : "option", + "default" : "none", + "deprecatedIn" : null, + "description" : "the configuration file or 'none'", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "define" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "define key=value for a @key@ entry in config file", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string..." + }, + "dump-dependencies" : { + "category" : "command", + "deprecatedIn" : null, + "description" : "dump dependency graph", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "dump-options" : { + "category" : "command", + "deprecatedIn" : null, + "description" : "dump configuration options in JSON format", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "fail-on-non-json" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "fail when trying to emit non-JSON types to JSON output", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "input-file" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "input filename", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "input-type" : { + "category" : "option", + "default" : "vpack", + "deprecatedIn" : null, + "description" : "type of input", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string", + "values" : "Possible values: \"json\", \"json-hex\", \"vpack\", \"vpack-hex\"" + }, + "log" : { + "category" : "option", + "default" : [ + "info" + ], + "deprecatedIn" : [ + "v3.5.0" + ], + "description" : "the global or topic-specific log level", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string..." + }, + "log.color" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "use colors for TTY logging", + "dynamic" : true, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.escape" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "escape characters when logging", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.file" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "shortcut for '--log.output file://'", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.file-group" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "group to use for new log file, user must be a member of this group", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.4.5" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.file-mode" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "mode to use for new log file, umask will be applied as well", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.4.5" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.force-direct" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "do not start a seperate thread for logging", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.foreground-tty" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "also log to tty if backgrounded", + "dynamic" : true, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.hostname" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "hostname to use in log message (empty for none, use 'auto' to automatically figure out hostname)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.ids" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "log unique message ids", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.level" : { + "category" : "option", + "default" : [ + "info" + ], + "deprecatedIn" : null, + "description" : "the global or topic-specific log level", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string..." + }, + "log.line-number" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "include the function name, file name and line number of the source code that issues the log message. Format: `[func@FileName.cpp:123]`", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.max-entry-length" : { + "category" : "option", + "default" : 134217728, + "deprecatedIn" : null, + "description" : "maximum length of a log entry (in bytes)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.7.9" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "uint32" + }, + "log.output" : { + "category" : "option", + "default" : [ + ], + "deprecatedIn" : null, + "description" : "log destination(s), e.g. file:///path/to/file (any '$PID' will be replaced with the process id)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string..." + }, + "log.performance" : { + "category" : "option", + "default" : false, + "deprecatedIn" : [ + "v3.5.0" + ], + "description" : "shortcut for '--log.level performance=trace'", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.prefix" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "prefix log message with this string", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string" + }, + "log.process" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "show process identifier (pid) in log message", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.request-parameters" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "include full URLs and HTTP request parameters in trace logs", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.role" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "log server role", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.shorten-filenames" : { + "category" : "option", + "default" : true, + "deprecatedIn" : null, + "description" : "shorten filenames in log output (use with --log.line-number)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.thread" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "show thread identifier in log message", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.thread-name" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "show thread name in log message", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.time-format" : { + "category" : "option", + "default" : "utc-datestring", + "deprecatedIn" : null, + "description" : "time format to use in logs", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.5.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "log", + "type" : "string", + "values" : "Possible values: \"local-datestring\", \"timestamp\", \"timestamp-micros\", \"timestamp-millis\", \"uptime\", \"uptime-micros\", \"uptime-millis\", \"utc-datestring\", \"utc-datestring-millis\"" + }, + "log.use-json-format" : { + "category" : "option", + "default" : false, + "deprecatedIn" : null, + "description" : "use json output format", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.use-local-time" : { + "category" : "option", + "default" : false, + "deprecatedIn" : [ + "v3.5.0" + ], + "description" : "use local timezone instead of UTC", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "log.use-microtime" : { + "category" : "option", + "default" : false, + "deprecatedIn" : [ + "v3.5.0" + ], + "description" : "use microtime instead", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "log", + "type" : "boolean" + }, + "output-file" : { + "category" : "option", + "default" : "", + "deprecatedIn" : null, + "description" : "output filename", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string" + }, + "output-type" : { + "category" : "option", + "default" : "json-pretty", + "deprecatedIn" : null, + "description" : "type of output", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.8.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "", + "type" : "string", + "values" : "Possible values: \"json\", \"json-pretty\", \"vpack\", \"vpack-hex\"" + }, + "random.generator" : { + "category" : "option", + "default" : 1, + "deprecatedIn" : null, + "description" : "random number generator to use (1 = MERSENNE, 2 = RANDOM, 3 = URANDOM, 4 = COMBINED (not for Windows), 5 = WinCrypt (Windows only)", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : true, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : true, + "section" : "random", + "type" : "uint32", + "values" : "Possible values: 1, 2, 3, 4" + }, + "version" : { + "category" : "command", + "deprecatedIn" : null, + "description" : "reports the version and exits", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : null, + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + }, + "version-json" : { + "category" : "command", + "deprecatedIn" : null, + "description" : "reports the version as JSON and exits", + "dynamic" : false, + "enterpriseOnly" : false, + "hidden" : false, + "introducedIn" : [ + "v3.9.0" + ], + "obsolete" : false, + "os" : [ + "linux", + "macos", + "windows" + ], + "requiresValue" : false, + "section" : "", + "type" : "boolean" + } +} diff --git a/3.9/generated/Examples/job_cancel.generated b/3.9/generated/Examples/job_cancel.generated index 9b6f1a8287..3d5ef06b3c 100644 --- a/3.9/generated/Examples/job_cancel.generated +++ b/3.9/generated/Examples/job_cancel.generated @@ -1,6 +1,6 @@ -shell> curl -X POST --header 'x-arango-async: store' --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF +shell> curl -X POST --header 'x-arango-async: store' --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF { - "query" : "FOR i IN 1..10 FOR j IN 1..10 LET x = sleep(1.0) FILTER i == 5 && j == 5 RETURN 42" + "query" : "FOR i IN 1..10 FOR j IN 1..10 LET x = sleep(1.0) FILTER i == 5 && j == 5 RETURN 42" } EOF @@ -9,22 +9,22 @@ content-type: text/plain connection: Keep-Alive content-length: 0 server: ArangoDB -x-arango-async-id: 80846 +x-arango-async-id: 3913 x-content-type-options: nosniff -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/job/pending +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/job/pending HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 9 +content-length: 8 server: ArangoDB x-content-type-options: nosniff [ - "80846" + "3913" ] -shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/job/80846/cancel +shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/job/3913/cancel HTTP/1.1 200 OK content-type: application/json @@ -34,17 +34,17 @@ server: ArangoDB x-content-type-options: nosniff { - "result" : true + "result" : true } -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/job/pending +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/job/pending HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 9 +content-length: 8 server: ArangoDB x-content-type-options: nosniff [ - "80846" + "3913" ] diff --git a/3.9/generated/Examples/job_delete_01.generated b/3.9/generated/Examples/job_delete_01.generated index 84d9bfaa4b..196cab51bf 100644 --- a/3.9/generated/Examples/job_delete_01.generated +++ b/3.9/generated/Examples/job_delete_01.generated @@ -1,14 +1,14 @@ -shell> curl -X PUT --header 'x-arango-async: store' --header 'accept: application/json' --dump - http://localhost:8529/_api/version +shell> curl -X PUT --header 'x-arango-async: store' --header 'accept: application/json' --dump - http://localhost:8529/_api/version HTTP/1.1 202 Accepted content-type: text/plain connection: Keep-Alive content-length: 0 server: ArangoDB -x-arango-async-id: 80850 +x-arango-async-id: 3917 x-content-type-options: nosniff -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/job/all +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/job/all HTTP/1.1 200 OK content-type: application/json @@ -18,5 +18,5 @@ server: ArangoDB x-content-type-options: nosniff { - "result" : true + "result" : true } diff --git a/3.9/generated/Examples/job_delete_02.generated b/3.9/generated/Examples/job_delete_02.generated index 9c33394ab0..82192dd56a 100644 --- a/3.9/generated/Examples/job_delete_02.generated +++ b/3.9/generated/Examples/job_delete_02.generated @@ -1,14 +1,14 @@ -shell> curl -X PUT --header 'x-arango-async: store' --header 'accept: application/json' --dump - http://localhost:8529/_api/version +shell> curl -X PUT --header 'x-arango-async: store' --header 'accept: application/json' --dump - http://localhost:8529/_api/version HTTP/1.1 202 Accepted content-type: text/plain connection: Keep-Alive content-length: 0 server: ArangoDB -x-arango-async-id: 80852 +x-arango-async-id: 3919 x-content-type-options: nosniff -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_admin/time +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_admin/time HTTP/1.1 200 OK content-type: application/json @@ -18,11 +18,11 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "time" : 1621938229.577555 + "error" : false, + "code" : 200, + "time" : 1628086094.494276 } -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/job/expired?stamp=1621938229.577555 +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/job/expired?stamp=1628086094.494276 HTTP/1.1 200 OK content-type: application/json @@ -32,9 +32,9 @@ server: ArangoDB x-content-type-options: nosniff { - "result" : true + "result" : true } -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/job/pending +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/job/pending HTTP/1.1 200 OK content-type: application/json diff --git a/3.9/generated/Examples/job_delete_03.generated b/3.9/generated/Examples/job_delete_03.generated index 7180ad8691..0eebda18a0 100644 --- a/3.9/generated/Examples/job_delete_03.generated +++ b/3.9/generated/Examples/job_delete_03.generated @@ -1,14 +1,14 @@ -shell> curl -X PUT --header 'x-arango-async: store' --header 'accept: application/json' --dump - http://localhost:8529/_api/version +shell> curl -X PUT --header 'x-arango-async: store' --header 'accept: application/json' --dump - http://localhost:8529/_api/version HTTP/1.1 202 Accepted content-type: text/plain connection: Keep-Alive content-length: 0 server: ArangoDB -x-arango-async-id: 80854 +x-arango-async-id: 3921 x-content-type-options: nosniff -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/job/80854 +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/job/3921 HTTP/1.1 200 OK content-type: application/json @@ -18,5 +18,5 @@ server: ArangoDB x-content-type-options: nosniff { - "result" : true + "result" : true } diff --git a/3.9/generated/Examples/job_delete_04.generated b/3.9/generated/Examples/job_delete_04.generated index a9437e5395..dc1df0d21f 100644 --- a/3.9/generated/Examples/job_delete_04.generated +++ b/3.9/generated/Examples/job_delete_04.generated @@ -1,4 +1,4 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/job/AreYouThere +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/job/AreYouThere HTTP/1.1 404 Not Found content-type: application/json @@ -8,8 +8,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 404, - "error" : true, - "errorMessage" : "not found", - "errorNum" : 404 + "code" : 404, + "error" : true, + "errorMessage" : "not found", + "errorNum" : 404 } diff --git a/3.9/generated/Examples/job_fetch_result_01.generated b/3.9/generated/Examples/job_fetch_result_01.generated index 2051e27a1a..e2eba93fd0 100644 --- a/3.9/generated/Examples/job_fetch_result_01.generated +++ b/3.9/generated/Examples/job_fetch_result_01.generated @@ -1,4 +1,4 @@ -shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/job +shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/job HTTP/1.1 400 Bad Request content-type: application/json @@ -8,8 +8,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 400, - "error" : true, - "errorMessage" : "bad parameter", - "errorNum" : 400 + "code" : 400, + "error" : true, + "errorMessage" : "bad parameter", + "errorNum" : 400 } diff --git a/3.9/generated/Examples/job_fetch_result_02.generated b/3.9/generated/Examples/job_fetch_result_02.generated index d2e46061c2..924ff7b1ef 100644 --- a/3.9/generated/Examples/job_fetch_result_02.generated +++ b/3.9/generated/Examples/job_fetch_result_02.generated @@ -1,4 +1,4 @@ -shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/job/notthere +shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/job/notthere HTTP/1.1 404 Not Found content-type: application/json @@ -8,8 +8,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 404, - "error" : true, - "errorMessage" : "not found", - "errorNum" : 404 + "code" : 404, + "error" : true, + "errorMessage" : "not found", + "errorNum" : 404 } diff --git a/3.9/generated/Examples/job_fetch_result_03.generated b/3.9/generated/Examples/job_fetch_result_03.generated index f3c6dfb6ef..21a6b29345 100644 --- a/3.9/generated/Examples/job_fetch_result_03.generated +++ b/3.9/generated/Examples/job_fetch_result_03.generated @@ -1,25 +1,25 @@ -shell> curl -X PUT --header 'x-arango-async: store' --header 'accept: application/json' --dump - http://localhost:8529/_api/version +shell> curl -X PUT --header 'x-arango-async: store' --header 'accept: application/json' --dump - http://localhost:8529/_api/version HTTP/1.1 202 Accepted content-type: text/plain connection: Keep-Alive content-length: 0 server: ArangoDB -x-arango-async-id: 80859 +x-arango-async-id: 3926 x-content-type-options: nosniff -shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/job/80859 +shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/job/3926 HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive content-length: 66 server: ArangoDB -x-arango-async-id: 80859 +x-arango-async-id: 3926 x-content-type-options: nosniff { - "server" : "arango", - "license" : "enterprise", - "version" : "3.9.0-devel" + "server" : "arango", + "license" : "enterprise", + "version" : "3.9.0-devel" } diff --git a/3.9/generated/Examples/job_fetch_result_04.generated b/3.9/generated/Examples/job_fetch_result_04.generated index 52a07c664f..772e8c9984 100644 --- a/3.9/generated/Examples/job_fetch_result_04.generated +++ b/3.9/generated/Examples/job_fetch_result_04.generated @@ -1,6 +1,6 @@ -shell> curl -X PUT --header 'x-arango-async: store' --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/collection <<EOF +shell> curl -X PUT --header 'x-arango-async: store' --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/collection <<EOF { - "name" : " this name is invalid " + "name" : " this name is invalid " } EOF @@ -9,22 +9,22 @@ content-type: text/plain connection: Keep-Alive content-length: 0 server: ArangoDB -x-arango-async-id: 80861 +x-arango-async-id: 3928 x-content-type-options: nosniff -shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/job/80861 +shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/job/3928 HTTP/1.1 400 Bad Request content-type: application/json connection: Keep-Alive content-length: 114 server: ArangoDB -x-arango-async-id: 80861 +x-arango-async-id: 3928 x-content-type-options: nosniff { - "code" : 400, - "error" : true, - "errorMessage" : "expected PUT /_api/collection/<collection-name>/<action>", - "errorNum" : 400 + "code" : 400, + "error" : true, + "errorMessage" : "expected PUT /_api/collection/<collection-name>/<action>", + "errorNum" : 400 } diff --git a/3.9/generated/Examples/job_getByType_01.generated b/3.9/generated/Examples/job_getByType_01.generated index 7728535903..818bd4ced4 100644 --- a/3.9/generated/Examples/job_getByType_01.generated +++ b/3.9/generated/Examples/job_getByType_01.generated @@ -1,22 +1,22 @@ -shell> curl -X PUT --header 'x-arango-async: store' --header 'accept: application/json' --dump - http://localhost:8529/_api/version +shell> curl -X PUT --header 'x-arango-async: store' --header 'accept: application/json' --dump - http://localhost:8529/_api/version HTTP/1.1 202 Accepted content-type: text/plain connection: Keep-Alive content-length: 0 server: ArangoDB -x-arango-async-id: 80863 +x-arango-async-id: 3930 x-content-type-options: nosniff -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/job/done +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/job/done HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 9 +content-length: 8 server: ArangoDB x-content-type-options: nosniff [ - "80863" + "3930" ] diff --git a/3.9/generated/Examples/job_getByType_02.generated b/3.9/generated/Examples/job_getByType_02.generated index 90c23ee252..633694efb9 100644 --- a/3.9/generated/Examples/job_getByType_02.generated +++ b/3.9/generated/Examples/job_getByType_02.generated @@ -1,14 +1,14 @@ -shell> curl -X PUT --header 'x-arango-async: store' --header 'accept: application/json' --dump - http://localhost:8529/_api/version +shell> curl -X PUT --header 'x-arango-async: store' --header 'accept: application/json' --dump - http://localhost:8529/_api/version HTTP/1.1 202 Accepted content-type: text/plain connection: Keep-Alive content-length: 0 server: ArangoDB -x-arango-async-id: 80865 +x-arango-async-id: 3932 x-content-type-options: nosniff -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/job/pending +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/job/pending HTTP/1.1 200 OK content-type: application/json diff --git a/3.9/generated/Examples/job_getByType_03.generated b/3.9/generated/Examples/job_getByType_03.generated index 18b9f33702..4516a7efa9 100644 --- a/3.9/generated/Examples/job_getByType_03.generated +++ b/3.9/generated/Examples/job_getByType_03.generated @@ -1,11 +1,11 @@ -shell> curl -X POST --header 'x-arango-async: store' --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/transaction <<EOF +shell> curl -X POST --header 'x-arango-async: store' --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/transaction <<EOF { - "collections" : { - "read" : [ - "_frontend" + "collections" : { + "read" : [ + "_frontend" ] }, - "action" : "function () {require('internal').sleep(15.0);}" + "action" : "function () {require('internal').sleep(15.0);}" } EOF @@ -14,22 +14,22 @@ content-type: text/plain connection: Keep-Alive content-length: 0 server: ArangoDB -x-arango-async-id: 80867 +x-arango-async-id: 3934 x-content-type-options: nosniff -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/job/pending +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/job/pending HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 9 +content-length: 8 server: ArangoDB x-content-type-options: nosniff [ - "80867" + "3934" ] -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/job/80867 +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/job/3934 HTTP/1.1 200 OK content-type: application/json @@ -39,5 +39,5 @@ server: ArangoDB x-content-type-options: nosniff { - "result" : true + "result" : true } diff --git a/3.9/generated/Examples/job_getStatusById_01.generated b/3.9/generated/Examples/job_getStatusById_01.generated index f750af66b0..a45629fcb7 100644 --- a/3.9/generated/Examples/job_getStatusById_01.generated +++ b/3.9/generated/Examples/job_getStatusById_01.generated @@ -1,25 +1,25 @@ -shell> curl -X PUT --header 'x-arango-async: store' --header 'accept: application/json' --dump - http://localhost:8529/_api/version +shell> curl -X PUT --header 'x-arango-async: store' --header 'accept: application/json' --dump - http://localhost:8529/_api/version HTTP/1.1 202 Accepted content-type: text/plain connection: Keep-Alive content-length: 0 server: ArangoDB -x-arango-async-id: 80870 +x-arango-async-id: 3937 x-content-type-options: nosniff -shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/job/80870 +shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/job/3937 HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive content-length: 66 server: ArangoDB -x-arango-async-id: 80870 +x-arango-async-id: 3937 x-content-type-options: nosniff { - "server" : "arango", - "license" : "enterprise", - "version" : "3.9.0-devel" + "server" : "arango", + "license" : "enterprise", + "version" : "3.9.0-devel" } diff --git a/3.9/generated/Examples/job_getStatusById_02.generated b/3.9/generated/Examples/job_getStatusById_02.generated index b9e3c8dd98..bd28d2b4e6 100644 --- a/3.9/generated/Examples/job_getStatusById_02.generated +++ b/3.9/generated/Examples/job_getStatusById_02.generated @@ -1,11 +1,11 @@ -shell> curl -X POST --header 'x-arango-async: store' --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/transaction <<EOF +shell> curl -X POST --header 'x-arango-async: store' --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/transaction <<EOF { - "collections" : { - "read" : [ - "_aqlfunctions" + "collections" : { + "read" : [ + "_aqlfunctions" ] }, - "action" : "function () {require('internal').sleep(15.0);}" + "action" : "function () {require('internal').sleep(15.0);}" } EOF @@ -14,10 +14,10 @@ content-type: text/plain connection: Keep-Alive content-length: 0 server: ArangoDB -x-arango-async-id: 80872 +x-arango-async-id: 3939 x-content-type-options: nosniff -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/job/80872 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/job/3939 HTTP/1.1 204 No Content content-type: text/plain From 0cd6969f404dd670b5f30a0370d825291b43c9a6 Mon Sep 17 00:00:00 2001 From: Heiko Kernbach Date: Wed, 4 Aug 2021 17:03:52 +0200 Subject: [PATCH 10/21] cleanup duplicate --- 3.9/release-notes-api-changes39.md | 48 ------------------------------ 1 file changed, 48 deletions(-) diff --git a/3.9/release-notes-api-changes39.md b/3.9/release-notes-api-changes39.md index 873a7cdf35..34248384fe 100644 --- a/3.9/release-notes-api-changes39.md +++ b/3.9/release-notes-api-changes39.md @@ -108,51 +108,3 @@ replacements: Using the replacements will work from ArangoDB 3.7 onwards already, so any client applications that still call the old addresses can be adjusted to call the new addresses from 3.7 onwards. - -## HTTP RESTful API - -### GRAPH API (Gharial) - -The following changes affect the behavior of the RESTful graph APIs at -endpoints starting with path `/_api/gharial/`: - -The options object now supports a new field: `satellites`, when creating a graph (POST). -The value of satellites is optional. In case it is defined, it needs to be an array -of collection names. Each defined collection name must be a string. This value is -only valid in case of SmartGraphs (Enterprise-Only). In a community based graph it -will be ignored. - -Using `satellites` during SmartGraph creation will result in a Hybrid Smart Graph. -Using `satellites` during Disjoint SmartGraph creation will result in a Hybrid -Disjoint SmartGraph. - -Hybrid (Disjoint) SmartGraphs are capable of having Satellite collections in their -graph definitions. If a collection is found in `satellites` and they are also being -used in the graph definition itself (e.g. EdgeDefinition), this collection will be -created as a satellite collection. Hybrid (Disjoint) Smart Graphs are then capable -of executing all type of graph queries between the regular SmartCollections and -Satellite collections. - -The following changes affect the behavior of the RESTful graph APIs at -endpoints starting with path `/_api/gharial/{graph}/edge`: - -Creating and modifying a new edge definition (POST / PUT): -Added new optional options object. This was not available in previous ArangoDB -versions. The options object currently can contain a field called `satellites`. -The field must be an array and contain collection name(s) written down as strings. -If an EdgeDefinition does contain a collection name, which is also defined in -the satellites option entry, it will be created as a Satellite collection. -Otherwise, it will be ignored. This option only takes effect using SmartGraphs. - -The following changes affect the behavior of the RESTful graph APIs at -endpoints starting with path `/_api/gharial/{graph}/vertex`: - -Creating a new vertex collection (POST): -Added new optional options object. This was not available in previous ArangoDB -versions. The options object currently can contain a field called `satellites`. -The field must be an array and contain collection name(s) written down as strings. -If the vertex to add is also defined in the satellites option entry, it will be -created as a Satellite collection. Otherwise, it will be ignored. This option -only takes effect using SmartGraphs. - -## JavaScript API From 1edf615940e6efd97880ba1a19e799a140c3f5a1 Mon Sep 17 00:00:00 2001 From: Heiko Date: Mon, 9 Aug 2021 13:55:25 +0200 Subject: [PATCH 11/21] Update 3.9/graphs-smart-graphs.md Co-authored-by: Michael Hackstein --- 3.9/graphs-smart-graphs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3.9/graphs-smart-graphs.md b/3.9/graphs-smart-graphs.md index 23b638d801..285e7e5846 100644 --- a/3.9/graphs-smart-graphs.md +++ b/3.9/graphs-smart-graphs.md @@ -79,7 +79,7 @@ definition. Therefore, defined EdgeDefinitions between SmartCollections and SatelliteCollections can be created. As Satellite Collections are globally replicated to each participating DB-Server, graph traversals, shortest path, weighted traversals and k-shortest-paths queries can be executed partially -locally on each DB-Server. This means that query execution is guaranteed to be +locally on each DB-Server. This means a larger part of the query can be executed fully local whenever data from the Satellite part is required. Benefits of Disjoint SmartGraphs From eacb5d2b573022161e1afa5a00abc971695ad2d8 Mon Sep 17 00:00:00 2001 From: Heiko Kernbach Date: Tue, 10 Aug 2021 10:16:18 +0200 Subject: [PATCH 12/21] added documentation for Hybrid (Disjoint) SmartGraphs to release nodes new features 39 --- 3.9/release-notes-new-features39.md | 33 +++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/3.9/release-notes-new-features39.md b/3.9/release-notes-new-features39.md index 1ccd939f6d..344dbd7ab8 100644 --- a/3.9/release-notes-new-features39.md +++ b/3.9/release-notes-new-features39.md @@ -29,6 +29,39 @@ DECAY_LINEAR(5, 0, 10, 0, 0.2) // 0.6 DECAY_EXP(2, 0, 10, 0, 0.2) // 0.7247796636776955 ``` +Graph +-- + +### Hybrid SmartGraphs + +SmartGraphs have been extended with a new option to create Hybrid Smart Graphs. +Hybrid SmartGraphs are capable of using Satellite Collections within their graph +definition and therefore can make use of all the benefits of [SatelliteCollections](satellites.html). +EdgeDefinitions can now be created between SmartCollections and SatelliteCollections. +As Satellite Collections are globally replicated to each participating DB-Server, +graph traversals, shortest path, weighted traversals and k-shortest-paths queries +can be executed partially locally on each DB-Server. This means that query execution +can be fully local whenever actual data from the Satellite part is being processed. +This can improve data locality and reduce the number of network hops between cluster +nodes. + +[Hybrid SmartGraphs](graphs-smart-graphs.html#benefits-of-hybrid-smartgraphs) +are only available in the Enterprise Edition and the +[ArangoDB Cloud](https://cloud.arangodb.com/home?utm_source=docs&utm_medium=cluster_pages&utm_campaign=docs_traffic). + +### Hybrid Disjoint SmartGraphs + +A Disjoint SmartGraph prohibits edges connecting different SmartGraph components. +The same rule applies to Hybrid Disjoint SmartGraphs. If your graph doesn't need +edges between vertices with different SmartGraph attribute values, then you should +enable this option. This topology restriction allows the query optimizer to improve +traversal execution times, because in many cases the execution can be pushed down +to a single DB-Server. + +[Hybrid Disjoint SmartGraphs](graphs-smart-graphs.html#benefits-of-hybrid-disjoint-smartgraphs) +are only available in the Enterprise Edition and the +[ArangoDB Cloud](https://cloud.arangodb.com/home?utm_source=docs&utm_medium=cluster_pages&utm_campaign=docs_traffic). + UI -- From ebc0740ba3d1676aa4ea1c905ff44bc36728a47f Mon Sep 17 00:00:00 2001 From: Heiko Kernbach Date: Tue, 10 Aug 2021 10:31:27 +0200 Subject: [PATCH 13/21] added description for edge definition object properties --- 3.9/graphs-general-graphs-management.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/3.9/graphs-general-graphs-management.md b/3.9/graphs-general-graphs-management.md index f3dac64188..15e41ca78a 100644 --- a/3.9/graphs-general-graphs-management.md +++ b/3.9/graphs-general-graphs-management.md @@ -336,7 +336,7 @@ Drop a graph and keep collections: Modify a Graph definition at runtime ------------------------------------ -After you have created an graph its definition is not immutable. +After you have created a graph its definition is not immutable. You can still add, delete or modify edge definitions and vertex collections. ### Extend the Edge Definitions @@ -349,6 +349,7 @@ Add another edge definition to the graph: The relation definition to extend the graph - `options` (object): Additional options related to the edgeDefinition itself. + Definition can be found [here](graphs-general-graphs-management.html#edge-definition-options). Extends the edge definitions of a graph. If an orphan collection is used in this edge definition, it will be removed from the orphanage. If the edge collection of @@ -383,6 +384,7 @@ Modify a relation definition: attribute *collection*. - `options` (object): Additional options related to the edgeDefinition itself. + Definition can be found [here](graphs-general-graphs-management.html#edge-definition-options). Edits one relation definition of a graph. The edge definition used as argument will replace the existing edge definition of the graph which has the same collection. @@ -408,6 +410,14 @@ definition will be modified, too. {% endarangoshexample %} {% include arangoshexample.html id=examplevar script=script result=result %} +### Edge Definition Options + +Currently, supported options are: +- `satellites` (array): + List of collections that are going to be created as SatelliteCollections. + Each entry must be defined as a String and must be a valid a valid collection + name. Details can be found [here](data-modeling-naming-conventions-collection-and-view-names.html). + ### Delete an Edge Definition Delete one relation definition: From 4d5e061ead6da79a572880b08d617302736854a9 Mon Sep 17 00:00:00 2001 From: Heiko Kernbach Date: Tue, 10 Aug 2021 11:16:00 +0200 Subject: [PATCH 14/21] added note about use case of hybrid smart graph --- 3.9/release-notes-new-features39.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/3.9/release-notes-new-features39.md b/3.9/release-notes-new-features39.md index 344dbd7ab8..824b813df1 100644 --- a/3.9/release-notes-new-features39.md +++ b/3.9/release-notes-new-features39.md @@ -45,6 +45,10 @@ can be fully local whenever actual data from the Satellite part is being process This can improve data locality and reduce the number of network hops between cluster nodes. +In case you do have collections which are almost needed in every traversal, but are +small enough to be copied over to every participating DB-Server, Hybrid Smart Graphs +are the perfect fit, as this will increase the amount of local query execution. + [Hybrid SmartGraphs](graphs-smart-graphs.html#benefits-of-hybrid-smartgraphs) are only available in the Enterprise Edition and the [ArangoDB Cloud](https://cloud.arangodb.com/home?utm_source=docs&utm_medium=cluster_pages&utm_campaign=docs_traffic). From e6b33ffa387a9bd331e92903513e181835fa8ffb Mon Sep 17 00:00:00 2001 From: Simran Spiller Date: Tue, 28 Sep 2021 15:44:46 +0200 Subject: [PATCH 15/21] Revert "adding examples" This reverts commit 0ff4c4fb39eab986fadc5d03cd6e8db09bf961eb. --- .../Examples/HttpGharialAddEdge.generated | 24 +- .../Examples/HttpGharialAddEdgeCol.generated | 60 +- .../Examples/HttpGharialAddVertex.generated | 20 +- .../HttpGharialAddVertexCol.generated | 40 +- .../Examples/HttpGharialCreate.generated | 46 +- .../Examples/HttpGharialCreate2.generated | 62 +- .../Examples/HttpGharialDeleteEdge.generated | 8 +- .../HttpGharialDeleteVertex.generated | 8 +- .../Examples/HttpGharialDrop.generated | 8 +- .../HttpGharialEdgeDefinitionRemove.generated | 26 +- .../Examples/HttpGharialGetEdge.generated | 26 +- .../Examples/HttpGharialGetGraph.generated | 30 +- .../Examples/HttpGharialGetVertex.generated | 18 +- .../Examples/HttpGharialList.generated | 80 +- .../Examples/HttpGharialListEdge.generated | 10 +- .../Examples/HttpGharialListVertex.generated | 12 +- .../HttpGharialModifyVertex.generated | 20 +- .../Examples/HttpGharialPatchEdge.generated | 22 +- .../Examples/HttpGharialPutEdge.generated | 26 +- ...ttpGharialRemoveVertexCollection.generated | 36 +- ...rialRemoveVertexCollectionFailed.generated | 10 +- .../HttpGharialReplaceEdgeCol.generated | 58 +- .../HttpGharialReplaceVertex.generated | 22 +- .../Examples/RestAdminCompact.generated | 2 +- .../Examples/RestAdminMetrics.generated | 220 +- .../Examples/RestAdminMetricsV2.generated | 360 +- .../Examples/RestAdminStatistics1.generated | 304 +- .../RestAdminStatisticsDescription1.generated | 536 +- .../Examples/RestAnalyzerDelete.generated | 8 +- .../RestAnalyzerDeleteForce.generated | 28 +- .../Examples/RestAnalyzerGet.generated | 14 +- .../Examples/RestAnalyzerPost.generated | 14 +- .../Examples/RestAnalyzersGet.generated | 308 +- .../Examples/RestAqlfunctionCreate.generated | 14 +- .../Examples/RestAqlfunctionDelete.generated | 8 +- .../RestAqlfunctionDeleteFails.generated | 10 +- .../Examples/RestAqlfunctionsGetAll.generated | 8 +- .../RestBackupCreateBackup_rocksdb.generated | 22 +- .../RestBackupDeleteBackup_rocksdb.generated | 10 +- ...kupDownloadBackupStarted_rocksdb.generated | 26 +- ...RestBackupDownloadBackup_rocksdb.generated | 22 +- .../RestBackupListBackup_rocksdb.generated | 78 +- .../RestBackupRestoreBackup_rocksdb.generated | 14 +- ...ackupUploadBackupStarted_rocksdb.generated | 26 +- .../RestBackupUploadBackup_rocksdb.generated | 22 +- .../RestBatchImplicitBoundary.generated | 18 +- .../RestBatchMultipartHeader.generated | 142 +- .../RestCollectionCreateCollection.generated | 106 +- .../RestCollectionCreateKeyopt.generated | 64 +- ...ectionDeleteCollectionIdentifier.generated | 10 +- ...stCollectionDeleteCollectionName.generated | 10 +- ...CollectionDeleteCollectionSystem.generated | 10 +- .../RestCollectionGetAllCollections.generated | 176 +- ...tCollectionGetCollectionChecksum.generated | 24 +- ...ectionGetCollectionChecksumNoRev.generated | 24 +- ...RestCollectionGetCollectionCount.generated | 52 +- ...stCollectionGetCollectionFigures.generated | 70 +- ...ctionGetCollectionFiguresDetails.generated | 82 +- ...ollectionGetCollectionIdentifier.generated | 52 +- .../RestCollectionGetCollectionName.generated | 50 +- ...tCollectionGetCollectionRevision.generated | 52 +- .../RestCollectionIdentifierLoad.generated | 22 +- ...nIdentifierLoadIndexesIntoMemory.generated | 8 +- ...llectionIdentifierPropertiesSync.generated | 52 +- .../RestCollectionIdentifierRename.generated | 22 +- ...RestCollectionIdentifierTruncate.generated | 20 +- .../RestCollectionIdentifierUnload.generated | 20 +- .../Examples/RestCreateUser.generated | 16 +- ...CursorCreateCursorForLimitReturn.generated | 62 +- ...CreateCursorForLimitReturnSingle.generated | 60 +- ...estCursorCreateCursorMissingBody.generated | 10 +- .../RestCursorCreateCursorOption.generated | 46 +- ...sorCreateCursorUnknownCollection.generated | 16 +- .../Examples/RestCursorDelete.generated | 64 +- .../Examples/RestCursorDeleteIgnore.generated | 38 +- .../Examples/RestCursorDeleteQuery.generated | 38 +- .../RestCursorDeleteQueryFail.generated | 12 +- .../RestCursorForLimitReturnCont.generated | 64 +- ...estCursorInvalidCursorIdentifier.generated | 10 +- ...estCursorMissingCursorIdentifier.generated | 10 +- .../RestCursorOptimizerRules.generated | 52 +- ...RestCursorPostForLimitReturnCont.generated | 64 +- ...ursorPostInvalidCursorIdentifier.generated | 10 +- ...ursorPostMissingCursorIdentifier.generated | 10 +- .../Examples/RestCursorProfileQuery.generated | 308 +- .../Examples/RestDatabaseCreate.generated | 16 +- .../RestDatabaseCreateUsers.generated | 24 +- .../Examples/RestDatabaseDrop.generated | 8 +- .../Examples/RestDatabaseGet.generated | 10 +- .../Examples/RestDatabaseGetInfo.generated | 16 +- .../Examples/RestDatabaseGetUser.generated | 10 +- .../Examples/RestDeleteUser.generated | 6 +- ...estDocumentHandlerDeleteDocument.generated | 14 +- ...lerDeleteDocumentIdentifierMulti.generated | 18 +- ...andlerDeleteDocumentIfMatchOther.generated | 20 +- ...entHandlerDeleteDocumentKeyMulti.generated | 18 +- ...HandlerDeleteDocumentObjectMulti.generated | 18 +- ...erDeleteDocumentRevConflictMulti.generated | 24 +- ...entHandlerDeleteDocumentRevMulti.generated | 22 +- ...ndlerDeleteDocumentUnknownHandle.generated | 10 +- ...andlerDeleteDocumentUnknownMulti.generated | 20 +- ...RestDocumentHandlerPatchDocument.generated | 118 +- ...ocumentHandlerPatchDocumentMerge.generated | 88 +- .../RestDocumentHandlerPostAccept1.generated | 14 +- .../RestDocumentHandlerPostBadJson1.generated | 10 +- ...tDocumentHandlerPostBadJsonMulti.generated | 16 +- .../RestDocumentHandlerPostCreate1.generated | 14 +- .../RestDocumentHandlerPostMulti1.generated | 22 +- .../RestDocumentHandlerPostMulti2.generated | 52 +- ...RestDocumentHandlerPostOverwrite.generated | 22 +- ...RestDocumentHandlerPostReturnNew.generated | 24 +- ...entHandlerPostUnknownCollection1.generated | 10 +- .../RestDocumentHandlerPostWait1.generated | 14 +- .../RestDocumentHandlerReadDocument.generated | 14 +- ...tDocumentHandlerReadDocumentHead.generated | 2 +- ...ntHandlerReadDocumentIfNoneMatch.generated | 2 +- ...HandlerReadDocumentUnknownHandle.generated | 10 +- ...DocumentHandlerReadMultiDocument.generated | 18 +- ...estDocumentHandlerUpdateDocument.generated | 16 +- ...andlerUpdateDocumentIfMatchOther.generated | 20 +- ...ndlerUpdateDocumentUnknownHandle.generated | 10 +- .../Examples/RestEdgesReadEdgesAny.generated | 62 +- .../Examples/RestEdgesReadEdgesIn.generated | 52 +- .../Examples/RestEdgesReadEdgesOut.generated | 38 +- .../Examples/RestEndpointGet.generated | 4 +- .../Examples/RestEngine_rocksdb.generated | 34 +- .../Examples/RestExplainAllPlans.generated | 210 +- .../Examples/RestExplainEmpty.generated | 178 +- .../Examples/RestExplainInvalid.generated | 12 +- .../RestExplainOptimizerRules.generated | 298 +- .../Examples/RestExplainOptions.generated | 394 +- .../Examples/RestExplainValid.generated | 118 +- .../Examples/RestExplainWarning.generated | 208 +- .../Examples/RestFetchAllUser.generated | 26 +- .../Examples/RestFetchUser.generated | 12 +- ...estFetchUserCollectionPermission.generated | 8 +- .../RestFetchUserDatabaseList.generated | 10 +- .../RestFetchUserDatabaseListFull.generated | 48 +- .../RestFetchUserDatabasePermission.generated | 8 +- ...tResponsibleShardExample_cluster.generated | 8 +- ...RestGetShardsWithDetails_cluster.generated | 6 +- .../Examples/RestGetShards_cluster.generated | 6 +- .../Examples/RestGrantCollection.generated | 10 +- .../Examples/RestGrantDatabase.generated | 10 +- .../Examples/RestImportCsvEdge.generated | 14 +- .../RestImportCsvEdgeInvalid.generated | 20 +- .../Examples/RestImportCsvExample.generated | 14 +- .../RestImportCsvInvalidBody.generated | 10 +- .../RestImportCsvInvalidCollection.generated | 10 +- .../RestImportCsvUniqueContinue.generated | 18 +- .../RestImportCsvUniqueFail.generated | 10 +- .../Examples/RestImportJsonEdge.generated | 14 +- .../RestImportJsonEdgeInvalid.generated | 20 +- .../RestImportJsonInvalidBody.generated | 10 +- .../RestImportJsonInvalidCollection.generated | 10 +- .../Examples/RestImportJsonLines.generated | 14 +- .../Examples/RestImportJsonList.generated | 32 +- .../Examples/RestImportJsonType.generated | 32 +- .../RestImportJsonUniqueContinue.generated | 18 +- .../RestImportJsonUniqueFail.generated | 10 +- .../Examples/RestIndexAllIndexes.generated | 130 +- ...tIndexCreateGeoLatitudeLongitude.generated | 42 +- .../RestIndexCreateGeoLocation.generated | 38 +- .../RestIndexCreateNewFulltext.generated | 32 +- .../RestIndexCreateNewHashIndex.generated | 42 +- .../RestIndexCreateNewPersistent.generated | 42 +- .../RestIndexCreateNewSkiplist.generated | 42 +- .../RestIndexCreateNewTtlIndex.generated | 34 +- ...stIndexCreateNewUniqueConstraint.generated | 42 +- .../RestIndexCreateSparseHashIndex.generated | 40 +- .../RestIndexCreateSparsePersistent.generated | 40 +- .../RestIndexCreateSparseSkiplist.generated | 40 +- .../RestIndexDeleteUniqueSkiplist.generated | 10 +- .../Examples/RestIndexPrimaryIndex.generated | 20 +- ...tPregelCancelConnectedComponents.generated | 4 +- ...stPregelStartConnectedComponents.generated | 16 +- ...tPregelStatusConnectedComponents.generated | 35 +- .../Examples/RestQueryInvalid.generated | 10 +- .../Examples/RestQueryValid.generated | 90 +- .../Examples/RestReplaceUser.generated | 14 +- .../RestReplicationApplierGetConfig.generated | 50 +- .../RestReplicationApplierSetConfig.generated | 68 +- .../RestReplicationApplierStart.generated | 68 +- ...eplicationApplierStateNotRunning.generated | 66 +- ...stReplicationApplierStateRunning.generated | 68 +- .../RestReplicationApplierStop.generated | 66 +- .../RestReplicationLoggerFirstTick.generated | 6 +- ...plicationLoggerFollowBufferLimit.generated | 126 +- ...RestReplicationLoggerFollowEmpty.generated | 6 +- .../RestReplicationLoggerFollowSome.generated | 240 +- ...RestReplicationLoggerStateActive.generated | 26 +- .../RestReplicationLoggerTickRanges.generated | 28 +- .../RestReplicationServerId.generated | 6 +- .../Examples/RestRevokeCollection.generated | 6 +- .../Examples/RestRevokeDatabase.generated | 6 +- .../Examples/RestTasksCreate.generated | 34 +- .../Examples/RestTasksDelete.generated | 6 +- .../Examples/RestTasksDeleteFail.generated | 10 +- .../Examples/RestTasksListAll.generated | 2 +- .../RestTasksListNonExisting.generated | 10 +- .../Examples/RestTasksListOne.generated | 20 +- .../Examples/RestTasksPutWithId.generated | 34 +- .../Examples/RestTransactionAbort.generated | 16 +- .../RestTransactionAbortInternal.generated | 16 +- .../RestTransactionBeginAbort.generated | 14 +- .../RestTransactionBeginCommit.generated | 14 +- .../RestTransactionBeginNonExisting.generated | 14 +- .../RestTransactionBeginSingle.generated | 18 +- .../Examples/RestTransactionGet.generated | 14 +- .../Examples/RestTransactionMulti.generated | 18 +- .../RestTransactionNonExisting.generated | 16 +- .../Examples/RestTransactionSingle.generated | 14 +- .../Examples/RestTransactionsGet.generated | 10 +- .../Examples/RestUpdateUser.generated | 14 +- 3.9/generated/Examples/RestVersion.generated | 8 +- .../Examples/RestVersionDetails.generated | 114 +- ...DeleteViewIdentifierArangoSearch.generated | 8 +- ...stViewDeleteViewNameArangoSearch.generated | 8 +- .../Examples/RestViewGetAllViews.generated | 16 +- ...iewGetViewIdentifierArangoSearch.generated | 16 +- .../RestViewGetViewNameArangoSearch.generated | 16 +- ...PropertiesIdentifierArangoSearch.generated | 50 +- ...etViewPropertiesNameArangoSearch.generated | 50 +- ...tViewPatchPropertiesArangoSearch.generated | 48 +- .../RestViewPostViewArangoSearch.generated | 50 +- ...estViewPutPropertiesArangoSearch.generated | 48 +- .../Examples/RestViewPutRename.generated | 18 +- .../Examples/RestWalAccessFirstTick.generated | 14 +- .../RestWalAccessTailingBufferLimit.generated | 18 +- .../RestWalAccessTailingEmpty.generated | 6 +- .../RestWalAccessTailingSome.generated | 18 +- .../Examples/RestWalAccessTickRange.generated | 16 +- 3.9/generated/Examples/arangobackup.json | 1116 -- 3.9/generated/Examples/arangobench.json | 1395 --- 3.9/generated/Examples/arangod.json | 9867 ----------------- 3.9/generated/Examples/arangodump.json | 1322 --- 3.9/generated/Examples/arangoexport.json | 1202 -- 3.9/generated/Examples/arangoimport.json | 1432 --- 3.9/generated/Examples/arangoinspect.json | 1745 --- 3.9/generated/Examples/arangorestore.json | 1468 --- 3.9/generated/Examples/arangosh.json | 1746 --- 3.9/generated/Examples/arangovpack.json | 799 -- 3.9/generated/Examples/job_cancel.generated | 22 +- .../Examples/job_delete_01.generated | 8 +- .../Examples/job_delete_02.generated | 18 +- .../Examples/job_delete_03.generated | 8 +- .../Examples/job_delete_04.generated | 10 +- .../Examples/job_fetch_result_01.generated | 10 +- .../Examples/job_fetch_result_02.generated | 10 +- .../Examples/job_fetch_result_03.generated | 14 +- .../Examples/job_fetch_result_04.generated | 18 +- .../Examples/job_getByType_01.generated | 10 +- .../Examples/job_getByType_02.generated | 6 +- .../Examples/job_getByType_03.generated | 22 +- .../Examples/job_getStatusById_01.generated | 14 +- .../Examples/job_getStatusById_02.generated | 14 +- 256 files changed, 5047 insertions(+), 27112 deletions(-) delete mode 100644 3.9/generated/Examples/arangobackup.json delete mode 100644 3.9/generated/Examples/arangobench.json delete mode 100644 3.9/generated/Examples/arangod.json delete mode 100644 3.9/generated/Examples/arangodump.json delete mode 100644 3.9/generated/Examples/arangoexport.json delete mode 100644 3.9/generated/Examples/arangoimport.json delete mode 100644 3.9/generated/Examples/arangoinspect.json delete mode 100644 3.9/generated/Examples/arangorestore.json delete mode 100644 3.9/generated/Examples/arangosh.json delete mode 100644 3.9/generated/Examples/arangovpack.json diff --git a/3.9/generated/Examples/HttpGharialAddEdge.generated b/3.9/generated/Examples/HttpGharialAddEdge.generated index cc4f3b8b78..be60896d89 100644 --- a/3.9/generated/Examples/HttpGharialAddEdge.generated +++ b/3.9/generated/Examples/HttpGharialAddEdge.generated @@ -1,25 +1,25 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial/social/edge/relation <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial/social/edge/relation <<EOF { - "type" : "friend", - "_from" : "female/alice", - "_to" : "female/diana" + "type" : "friend", + "_from" : "female/alice", + "_to" : "female/diana" } EOF HTTP/1.1 202 Accepted content-type: application/json connection: Keep-Alive -content-length: 90 -etag: _cvD7g2O--- +content-length: 94 +etag: _cYKKcKq--- server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 202, - "edge" : { - "_id" : "relation/139", - "_key" : "139", - "_rev" : "_cvD7g2O---" + "error" : false, + "code" : 202, + "edge" : { + "_id" : "relation/64583", + "_key" : "64583", + "_rev" : "_cYKKcKq---" } } diff --git a/3.9/generated/Examples/HttpGharialAddEdgeCol.generated b/3.9/generated/Examples/HttpGharialAddEdgeCol.generated index f825654786..ed9b7c1e2a 100644 --- a/3.9/generated/Examples/HttpGharialAddEdgeCol.generated +++ b/3.9/generated/Examples/HttpGharialAddEdgeCol.generated @@ -1,12 +1,12 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial/social/edge <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial/social/edge <<EOF { - "collection" : "works_in", - "from" : [ - "female", - "male" + "collection" : "works_in", + "from" : [ + "female", + "male" ], - "to" : [ - "city" + "to" : [ + "city" ] } EOF @@ -15,41 +15,41 @@ HTTP/1.1 202 A content-type: application/json connection: Keep-Alive content-length: 294 -etag: _cvD7g3y--A +etag: _cYKKcL2--- server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 202, - "graph" : { - "_key" : "social", - "edgeDefinitions" : [ + "error" : false, + "code" : 202, + "graph" : { + "_key" : "social", + "edgeDefinitions" : [ { - "collection" : "relation", - "from" : [ - "female", - "male" + "collection" : "relation", + "from" : [ + "female", + "male" ], - "to" : [ - "female", - "male" + "to" : [ + "female", + "male" ] }, { - "collection" : "works_in", - "from" : [ - "female", - "male" + "collection" : "works_in", + "from" : [ + "female", + "male" ], - "to" : [ - "city" + "to" : [ + "city" ] } ], - "orphanCollections" : [ ], - "_rev" : "_cvD7g3y--A", - "_id" : "_graphs/social", - "name" : "social" + "orphanCollections" : [ ], + "_rev" : "_cYKKcL2---", + "_id" : "_graphs/social", + "name" : "social" } } diff --git a/3.9/generated/Examples/HttpGharialAddVertex.generated b/3.9/generated/Examples/HttpGharialAddVertex.generated index fb4eed73b3..8bb075c95a 100644 --- a/3.9/generated/Examples/HttpGharialAddVertex.generated +++ b/3.9/generated/Examples/HttpGharialAddVertex.generated @@ -1,23 +1,23 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial/social/vertex/male <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial/social/vertex/male <<EOF { - "name" : "Francis" + "name" : "Francis" } EOF HTTP/1.1 202 Accepted content-type: application/json connection: Keep-Alive -content-length: 88 -etag: _cvD7g4i--B +content-length: 92 +etag: _cYKKcN---- server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 202, - "vertex" : { - "_id" : "male/288", - "_key" : "288", - "_rev" : "_cvD7g4i--B" + "error" : false, + "code" : 202, + "vertex" : { + "_id" : "male/64732", + "_key" : "64732", + "_rev" : "_cYKKcN----" } } diff --git a/3.9/generated/Examples/HttpGharialAddVertexCol.generated b/3.9/generated/Examples/HttpGharialAddVertexCol.generated index 4af357d66d..4ccbb4541a 100644 --- a/3.9/generated/Examples/HttpGharialAddVertexCol.generated +++ b/3.9/generated/Examples/HttpGharialAddVertexCol.generated @@ -1,6 +1,6 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial/social/vertex <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial/social/vertex <<EOF { - "collection" : "otherVertices" + "collection" : "otherVertices" } EOF @@ -8,33 +8,33 @@ HTTP/1.1 202 A content-type: application/json connection: Keep-Alive content-length: 244 -etag: _cvD7g5S--_ +etag: _cYKKcOC--- server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 202, - "graph" : { - "_key" : "social", - "edgeDefinitions" : [ + "error" : false, + "code" : 202, + "graph" : { + "_key" : "social", + "edgeDefinitions" : [ { - "collection" : "relation", - "from" : [ - "female", - "male" + "collection" : "relation", + "from" : [ + "female", + "male" ], - "to" : [ - "female", - "male" + "to" : [ + "female", + "male" ] } ], - "orphanCollections" : [ - "otherVertices" + "orphanCollections" : [ + "otherVertices" ], - "_rev" : "_cvD7g5S--_", - "_id" : "_graphs/social", - "name" : "social" + "_rev" : "_cYKKcOC---", + "_id" : "_graphs/social", + "name" : "social" } } diff --git a/3.9/generated/Examples/HttpGharialCreate.generated b/3.9/generated/Examples/HttpGharialCreate.generated index 0d0ac8975f..68b66f5b9b 100644 --- a/3.9/generated/Examples/HttpGharialCreate.generated +++ b/3.9/generated/Examples/HttpGharialCreate.generated @@ -1,14 +1,14 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial <<EOF { - "name" : "myGraph", - "edgeDefinitions" : [ + "name" : "myGraph", + "edgeDefinitions" : [ { - "collection" : "edges", - "from" : [ - "startVertices" + "collection" : "edges", + "from" : [ + "startVertices" ], - "to" : [ - "endVertices" + "to" : [ + "endVertices" ] } ] @@ -19,29 +19,29 @@ HTTP/1.1 202 A content-type: application/json connection: Keep-Alive content-length: 227 -etag: _cvD7g5y--_ +etag: _cYKKcOm--_ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 202, - "graph" : { - "_key" : "myGraph", - "edgeDefinitions" : [ + "error" : false, + "code" : 202, + "graph" : { + "_key" : "myGraph", + "edgeDefinitions" : [ { - "collection" : "edges", - "from" : [ - "startVertices" + "collection" : "edges", + "from" : [ + "startVertices" ], - "to" : [ - "endVertices" + "to" : [ + "endVertices" ] } ], - "orphanCollections" : [ ], - "_rev" : "_cvD7g5y--_", - "_id" : "_graphs/myGraph", - "name" : "myGraph" + "orphanCollections" : [ ], + "_rev" : "_cYKKcOm--_", + "_id" : "_graphs/myGraph", + "name" : "myGraph" } } diff --git a/3.9/generated/Examples/HttpGharialCreate2.generated b/3.9/generated/Examples/HttpGharialCreate2.generated index 5a446e7225..a2ee9f6eae 100644 --- a/3.9/generated/Examples/HttpGharialCreate2.generated +++ b/3.9/generated/Examples/HttpGharialCreate2.generated @@ -1,25 +1,25 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial <<EOF { - "name" : "myGraph", - "edgeDefinitions" : [ + "name" : "myGraph", + "edgeDefinitions" : [ { - "collection" : "edges", - "from" : [ - "startVertices" + "collection" : "edges", + "from" : [ + "startVertices" ], - "to" : [ - "endVertices" + "to" : [ + "endVertices" ] } ], - "orphanCollections" : [ - "orphanVertices" + "orphanCollections" : [ + "orphanVertices" ], - "isSmart" : true, - "options" : { - "replicationFactor" : 2, - "numberOfShards" : 9, - "smartGraphAttribute" : "region" + "isSmart" : true, + "options" : { + "replicationFactor" : 2, + "numberOfShards" : 9, + "smartGraphAttribute" : "region" } } EOF @@ -28,31 +28,31 @@ HTTP/1.1 202 A content-type: application/json connection: Keep-Alive content-length: 243 -etag: _cvD7g6O--_ +etag: _cYKKcPG--_ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 202, - "graph" : { - "_key" : "myGraph", - "edgeDefinitions" : [ + "error" : false, + "code" : 202, + "graph" : { + "_key" : "myGraph", + "edgeDefinitions" : [ { - "collection" : "edges", - "from" : [ - "startVertices" + "collection" : "edges", + "from" : [ + "startVertices" ], - "to" : [ - "endVertices" + "to" : [ + "endVertices" ] } ], - "orphanCollections" : [ - "orphanVertices" + "orphanCollections" : [ + "orphanVertices" ], - "_rev" : "_cvD7g6O--_", - "_id" : "_graphs/myGraph", - "name" : "myGraph" + "_rev" : "_cYKKcPG--_", + "_id" : "_graphs/myGraph", + "name" : "myGraph" } } diff --git a/3.9/generated/Examples/HttpGharialDeleteEdge.generated b/3.9/generated/Examples/HttpGharialDeleteEdge.generated index 94696d7fb5..93a683ebd3 100644 --- a/3.9/generated/Examples/HttpGharialDeleteEdge.generated +++ b/3.9/generated/Examples/HttpGharialDeleteEdge.generated @@ -1,4 +1,4 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/social/edge/relation/511 +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/social/edge/relation/64955 HTTP/1.1 202 Accepted content-type: application/json @@ -8,7 +8,7 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 202, - "removed" : true + "error" : false, + "code" : 202, + "removed" : true } diff --git a/3.9/generated/Examples/HttpGharialDeleteVertex.generated b/3.9/generated/Examples/HttpGharialDeleteVertex.generated index 4ecaaa557a..bc41463e12 100644 --- a/3.9/generated/Examples/HttpGharialDeleteVertex.generated +++ b/3.9/generated/Examples/HttpGharialDeleteVertex.generated @@ -1,4 +1,4 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/social/vertex/female/alice +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/social/vertex/female/alice HTTP/1.1 202 Accepted content-type: application/json @@ -8,7 +8,7 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 202, - "removed" : true + "error" : false, + "code" : 202, + "removed" : true } diff --git a/3.9/generated/Examples/HttpGharialDrop.generated b/3.9/generated/Examples/HttpGharialDrop.generated index 8164f29ab7..a0bb692389 100644 --- a/3.9/generated/Examples/HttpGharialDrop.generated +++ b/3.9/generated/Examples/HttpGharialDrop.generated @@ -1,4 +1,4 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/social?dropCollections=true +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/social?dropCollections=true HTTP/1.1 202 Accepted content-type: application/json @@ -8,7 +8,7 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 202, - "removed" : true + "error" : false, + "code" : 202, + "removed" : true } diff --git a/3.9/generated/Examples/HttpGharialEdgeDefinitionRemove.generated b/3.9/generated/Examples/HttpGharialEdgeDefinitionRemove.generated index 2ee4736179..1b44f47d33 100644 --- a/3.9/generated/Examples/HttpGharialEdgeDefinitionRemove.generated +++ b/3.9/generated/Examples/HttpGharialEdgeDefinitionRemove.generated @@ -1,25 +1,25 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/social/edge/relation +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/social/edge/relation HTTP/1.1 202 Accepted content-type: application/json connection: Keep-Alive content-length: 171 -etag: _cvD7g9S--B +etag: _cYKKcTa--_ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 202, - "graph" : { - "_key" : "social", - "edgeDefinitions" : [ ], - "orphanCollections" : [ - "female", - "male" + "error" : false, + "code" : 202, + "graph" : { + "_key" : "social", + "edgeDefinitions" : [ ], + "orphanCollections" : [ + "female", + "male" ], - "_rev" : "_cvD7g9S--B", - "_id" : "_graphs/social", - "name" : "social" + "_rev" : "_cYKKcTa--_", + "_id" : "_graphs/social", + "name" : "social" } } diff --git a/3.9/generated/Examples/HttpGharialGetEdge.generated b/3.9/generated/Examples/HttpGharialGetEdge.generated index ed752def41..a0ea4ee5b4 100644 --- a/3.9/generated/Examples/HttpGharialGetEdge.generated +++ b/3.9/generated/Examples/HttpGharialGetEdge.generated @@ -1,23 +1,23 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/social/edge/relation/771 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/social/edge/relation/65217 HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 168 -etag: _cvD7h----B +content-length: 165 +etag: _cYKKcUW--_ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "edge" : { - "_key" : "771", - "_id" : "relation/771", - "_from" : "male/charly", - "_to" : "female/diana", - "_rev" : "_cvD7h----B", - "type" : "married", - "vertex" : "charly" + "error" : false, + "code" : 200, + "edge" : { + "_key" : "65217", + "_id" : "relation/65217", + "_from" : "male/bob", + "_to" : "female/diana", + "_rev" : "_cYKKcUW--_", + "type" : "friend", + "vertex" : "bob" } } diff --git a/3.9/generated/Examples/HttpGharialGetGraph.generated b/3.9/generated/Examples/HttpGharialGetGraph.generated index fae7b37331..a2b29be102 100644 --- a/3.9/generated/Examples/HttpGharialGetGraph.generated +++ b/3.9/generated/Examples/HttpGharialGetGraph.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/myGraph +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/myGraph HTTP/1.1 200 OK content-type: application/json @@ -8,24 +8,24 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "graph" : { - "_key" : "myGraph", - "edgeDefinitions" : [ + "error" : false, + "code" : 200, + "graph" : { + "_key" : "myGraph", + "edgeDefinitions" : [ { - "collection" : "edges", - "from" : [ - "startVertices" + "collection" : "edges", + "from" : [ + "startVertices" ], - "to" : [ - "endVertices" + "to" : [ + "endVertices" ] } ], - "orphanCollections" : [ ], - "_rev" : "_cvD7h-a--_", - "_id" : "_graphs/myGraph", - "name" : "myGraph" + "orphanCollections" : [ ], + "_rev" : "_cYKKcU6--_", + "_id" : "_graphs/myGraph", + "name" : "myGraph" } } diff --git a/3.9/generated/Examples/HttpGharialGetVertex.generated b/3.9/generated/Examples/HttpGharialGetVertex.generated index 019d42ab8a..730484f8b8 100644 --- a/3.9/generated/Examples/HttpGharialGetVertex.generated +++ b/3.9/generated/Examples/HttpGharialGetVertex.generated @@ -1,20 +1,20 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/social/vertex/female/alice +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/social/vertex/female/alice HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive content-length: 109 -etag: _cvD7h_C--- +etag: _cYKKcVy--- server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "vertex" : { - "_key" : "alice", - "_id" : "female/alice", - "_rev" : "_cvD7h_C---", - "name" : "Alice" + "error" : false, + "code" : 200, + "vertex" : { + "_key" : "alice", + "_id" : "female/alice", + "_rev" : "_cYKKcVy---", + "name" : "Alice" } } diff --git a/3.9/generated/Examples/HttpGharialList.generated b/3.9/generated/Examples/HttpGharialList.generated index 3d3e5c0682..6d1944f95a 100644 --- a/3.9/generated/Examples/HttpGharialList.generated +++ b/3.9/generated/Examples/HttpGharialList.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial HTTP/1.1 200 OK content-type: application/json @@ -8,66 +8,66 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "graphs" : [ + "error" : false, + "code" : 200, + "graphs" : [ { - "_id" : "_graphs/social", - "_key" : "social", - "_rev" : "_cvD7h_q---", - "edgeDefinitions" : [ + "_id" : "_graphs/social", + "_key" : "social", + "_rev" : "_cYKKcWq---", + "edgeDefinitions" : [ { - "collection" : "relation", - "from" : [ - "female", - "male" + "collection" : "relation", + "from" : [ + "female", + "male" ], - "to" : [ - "female", - "male" + "to" : [ + "female", + "male" ] } ], - "orphanCollections" : [ ], - "name" : "social" + "orphanCollections" : [ ], + "name" : "social" }, { - "_id" : "_graphs/routeplanner", - "_key" : "routeplanner", - "_rev" : "_cvD7hA----", - "edgeDefinitions" : [ + "_id" : "_graphs/routeplanner", + "_key" : "routeplanner", + "_rev" : "_cYKKcXK--_", + "edgeDefinitions" : [ { - "collection" : "frenchHighway", - "from" : [ - "frenchCity" + "collection" : "frenchHighway", + "from" : [ + "frenchCity" ], - "to" : [ - "frenchCity" + "to" : [ + "frenchCity" ] }, { - "collection" : "germanHighway", - "from" : [ - "germanCity" + "collection" : "germanHighway", + "from" : [ + "germanCity" ], - "to" : [ - "germanCity" + "to" : [ + "germanCity" ] }, { - "collection" : "internationalHighway", - "from" : [ - "frenchCity", - "germanCity" + "collection" : "internationalHighway", + "from" : [ + "frenchCity", + "germanCity" ], - "to" : [ - "frenchCity", - "germanCity" + "to" : [ + "frenchCity", + "germanCity" ] } ], - "orphanCollections" : [ ], - "name" : "routeplanner" + "orphanCollections" : [ ], + "name" : "routeplanner" } ] } diff --git a/3.9/generated/Examples/HttpGharialListEdge.generated b/3.9/generated/Examples/HttpGharialListEdge.generated index 851c990afa..2167a49643 100644 --- a/3.9/generated/Examples/HttpGharialListEdge.generated +++ b/3.9/generated/Examples/HttpGharialListEdge.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/social/edge +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/social/edge HTTP/1.1 200 OK content-type: application/json @@ -8,9 +8,9 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "collections" : [ - "relation" + "error" : false, + "code" : 200, + "collections" : [ + "relation" ] } diff --git a/3.9/generated/Examples/HttpGharialListVertex.generated b/3.9/generated/Examples/HttpGharialListVertex.generated index 0fbe302fc0..8c264ad589 100644 --- a/3.9/generated/Examples/HttpGharialListVertex.generated +++ b/3.9/generated/Examples/HttpGharialListVertex.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/social/vertex +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/social/vertex HTTP/1.1 200 OK content-type: application/json @@ -8,10 +8,10 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "collections" : [ - "female", - "male" + "error" : false, + "code" : 200, + "collections" : [ + "female", + "male" ] } diff --git a/3.9/generated/Examples/HttpGharialModifyVertex.generated b/3.9/generated/Examples/HttpGharialModifyVertex.generated index 596c7dfa6d..f0cce72bc1 100644 --- a/3.9/generated/Examples/HttpGharialModifyVertex.generated +++ b/3.9/generated/Examples/HttpGharialModifyVertex.generated @@ -1,6 +1,6 @@ -shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial/social/vertex/female/alice <<EOF +shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial/social/vertex/female/alice <<EOF { - "age" : 26 + "age" : 26 } EOF @@ -8,17 +8,17 @@ HTTP/1.1 202 A content-type: application/json connection: Keep-Alive content-length: 118 -etag: _cvD7hCy--A +etag: _cYKKca2--A server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 202, - "vertex" : { - "_id" : "female/alice", - "_key" : "alice", - "_oldRev" : "_cvD7hCq---", - "_rev" : "_cvD7hCy--A" + "error" : false, + "code" : 202, + "vertex" : { + "_id" : "female/alice", + "_key" : "alice", + "_oldRev" : "_cYKKcau---", + "_rev" : "_cYKKca2--A" } } diff --git a/3.9/generated/Examples/HttpGharialPatchEdge.generated b/3.9/generated/Examples/HttpGharialPatchEdge.generated index 06e2ecc5a1..1b74d3ca59 100644 --- a/3.9/generated/Examples/HttpGharialPatchEdge.generated +++ b/3.9/generated/Examples/HttpGharialPatchEdge.generated @@ -1,24 +1,24 @@ -shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial/social/edge/relation/1284 <<EOF +shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial/social/edge/relation/65722 <<EOF { - "since" : "01.01.2001" + "since" : "01.01.2001" } EOF HTTP/1.1 202 Accepted content-type: application/json connection: Keep-Alive -content-length: 116 -etag: _cvD7hDi--- +content-length: 118 +etag: _cYKKcbu--- server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 202, - "edge" : { - "_id" : "relation/1284", - "_key" : "1284", - "_oldRev" : "_cvD7hDe--_", - "_rev" : "_cvD7hDi---" + "error" : false, + "code" : 202, + "edge" : { + "_id" : "relation/65722", + "_key" : "65722", + "_oldRev" : "_cYKKcbm--A", + "_rev" : "_cYKKcbu---" } } diff --git a/3.9/generated/Examples/HttpGharialPutEdge.generated b/3.9/generated/Examples/HttpGharialPutEdge.generated index 91615cae94..63ddaa1b21 100644 --- a/3.9/generated/Examples/HttpGharialPutEdge.generated +++ b/3.9/generated/Examples/HttpGharialPutEdge.generated @@ -1,26 +1,26 @@ -shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial/social/edge/relation/1345 <<EOF +shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial/social/edge/relation/65785 <<EOF { - "type" : "divorced", - "_from" : "female/alice", - "_to" : "male/bob" + "type" : "divorced", + "_from" : "female/alice", + "_to" : "male/bob" } EOF HTTP/1.1 202 Accepted content-type: application/json connection: Keep-Alive -content-length: 116 -etag: _cvD7hEK--A +content-length: 118 +etag: _cYKKccq--- server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 202, - "edge" : { - "_id" : "relation/1345", - "_key" : "1345", - "_oldRev" : "_cvD7hEK---", - "_rev" : "_cvD7hEK--A" + "error" : false, + "code" : 202, + "edge" : { + "_id" : "relation/65785", + "_key" : "65785", + "_oldRev" : "_cYKKcci---", + "_rev" : "_cYKKccq---" } } diff --git a/3.9/generated/Examples/HttpGharialRemoveVertexCollection.generated b/3.9/generated/Examples/HttpGharialRemoveVertexCollection.generated index 166a9d72ff..251ae9a7d7 100644 --- a/3.9/generated/Examples/HttpGharialRemoveVertexCollection.generated +++ b/3.9/generated/Examples/HttpGharialRemoveVertexCollection.generated @@ -1,34 +1,34 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/social/vertex/otherVertices +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/social/vertex/otherVertices HTTP/1.1 202 Accepted content-type: application/json connection: Keep-Alive content-length: 229 -etag: _cvD7hF---- +etag: _cYKKcdy--- server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 202, - "graph" : { - "_key" : "social", - "edgeDefinitions" : [ + "error" : false, + "code" : 202, + "graph" : { + "_key" : "social", + "edgeDefinitions" : [ { - "collection" : "relation", - "from" : [ - "female", - "male" + "collection" : "relation", + "from" : [ + "female", + "male" ], - "to" : [ - "female", - "male" + "to" : [ + "female", + "male" ] } ], - "orphanCollections" : [ ], - "_rev" : "_cvD7hF----", - "_id" : "_graphs/social", - "name" : "social" + "orphanCollections" : [ ], + "_rev" : "_cYKKcdy---", + "_id" : "_graphs/social", + "name" : "social" } } diff --git a/3.9/generated/Examples/HttpGharialRemoveVertexCollectionFailed.generated b/3.9/generated/Examples/HttpGharialRemoveVertexCollectionFailed.generated index f8fbf62e98..22b4b663b8 100644 --- a/3.9/generated/Examples/HttpGharialRemoveVertexCollectionFailed.generated +++ b/3.9/generated/Examples/HttpGharialRemoveVertexCollectionFailed.generated @@ -1,4 +1,4 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/social/vertex/male +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/social/vertex/male HTTP/1.1 400 Bad Request content-type: application/json @@ -8,8 +8,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 400, - "error" : true, - "errorMessage" : "collection is not in list of orphan collections", - "errorNum" : 1928 + "code" : 400, + "error" : true, + "errorMessage" : "collection is not in list of orphan collections", + "errorNum" : 1928 } diff --git a/3.9/generated/Examples/HttpGharialReplaceEdgeCol.generated b/3.9/generated/Examples/HttpGharialReplaceEdgeCol.generated index 5b98e9ba54..4db52dd4c6 100644 --- a/3.9/generated/Examples/HttpGharialReplaceEdgeCol.generated +++ b/3.9/generated/Examples/HttpGharialReplaceEdgeCol.generated @@ -1,15 +1,15 @@ -shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial/social/edge/relation <<EOF +shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial/social/edge/relation <<EOF { - "collection" : "relation", - "from" : [ - "female", - "male", - "animal" + "collection" : "relation", + "from" : [ + "female", + "male", + "animal" ], - "to" : [ - "female", - "male", - "animal" + "to" : [ + "female", + "male", + "animal" ] } EOF @@ -18,33 +18,33 @@ HTTP/1.1 202 A content-type: application/json connection: Keep-Alive content-length: 247 -etag: _cvD7hGS--- +etag: _cYKKcfu--- server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 202, - "graph" : { - "_key" : "social", - "edgeDefinitions" : [ + "error" : false, + "code" : 202, + "graph" : { + "_key" : "social", + "edgeDefinitions" : [ { - "collection" : "relation", - "from" : [ - "animal", - "female", - "male" + "collection" : "relation", + "from" : [ + "animal", + "female", + "male" ], - "to" : [ - "animal", - "female", - "male" + "to" : [ + "animal", + "female", + "male" ] } ], - "orphanCollections" : [ ], - "_rev" : "_cvD7hGS---", - "_id" : "_graphs/social", - "name" : "social" + "orphanCollections" : [ ], + "_rev" : "_cYKKcfu---", + "_id" : "_graphs/social", + "name" : "social" } } diff --git a/3.9/generated/Examples/HttpGharialReplaceVertex.generated b/3.9/generated/Examples/HttpGharialReplaceVertex.generated index 5a21a77779..2e529616d9 100644 --- a/3.9/generated/Examples/HttpGharialReplaceVertex.generated +++ b/3.9/generated/Examples/HttpGharialReplaceVertex.generated @@ -1,7 +1,7 @@ -shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial/social/vertex/female/alice <<EOF +shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial/social/vertex/female/alice <<EOF { - "name" : "Alice Cooper", - "age" : 26 + "name" : "Alice Cooper", + "age" : 26 } EOF @@ -9,17 +9,17 @@ HTTP/1.1 202 A content-type: application/json connection: Keep-Alive content-length: 118 -etag: _cvD7hHS--_ +etag: _cYKKcgu--_ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 202, - "vertex" : { - "_id" : "female/alice", - "_key" : "alice", - "_oldRev" : "_cvD7hHK---", - "_rev" : "_cvD7hHS--_" + "error" : false, + "code" : 202, + "vertex" : { + "_id" : "female/alice", + "_key" : "alice", + "_oldRev" : "_cYKKcge---", + "_rev" : "_cYKKcgu--_" } } diff --git a/3.9/generated/Examples/RestAdminCompact.generated b/3.9/generated/Examples/RestAdminCompact.generated index 151e8ad2ad..d0fa115642 100644 --- a/3.9/generated/Examples/RestAdminCompact.generated +++ b/3.9/generated/Examples/RestAdminCompact.generated @@ -1,4 +1,4 @@ -shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_admin/compact +shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_admin/compact HTTP/1.1 200 OK content-type: application/json diff --git a/3.9/generated/Examples/RestAdminMetrics.generated b/3.9/generated/Examples/RestAdminMetrics.generated index bf2b88f166..919c53464a 100644 --- a/3.9/generated/Examples/RestAdminMetrics.generated +++ b/3.9/generated/Examples/RestAdminMetrics.generated @@ -1,9 +1,9 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_admin/metrics +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_admin/metrics HTTP/1.1 200 OK content-type: text/plain connection: Keep-Alive -content-length: 46390 +content-length: 47215 server: ArangoDB x-content-type-options: nosniff @@ -35,7 +35,7 @@ arangodb_agencycomm_request_time_msec_count{role="SINGLE"} 0 # HELP arangodb_aql_all_query Total number of AQL queries finished # TYPE arangodb_aql_all_query counter -arangodb_aql_all_query{role="SINGLE"} 115 +arangodb_aql_all_query{role="SINGLE"} 358 # HELP arangodb_aql_current_query Current number of AQL queries executing # TYPE arangodb_aql_current_query gauge @@ -43,7 +43,7 @@ arangodb_aql_current_query{role="SINGLE"} 0 # HELP arangodb_aql_global_memory_limit Total memory limit for all AQL queries combined [bytes] # TYPE arangodb_aql_global_memory_limit gauge -arangodb_aql_global_memory_limit{role="SINGLE"} 27831388078 +arangodb_aql_global_memory_limit{role="SINGLE"} 51208202281 # HELP arangodb_aql_global_memory_usage Total memory usage of all AQL queries executing [bytes], granularity: 32768 bytes steps # TYPE arangodb_aql_global_memory_usage gauge @@ -55,35 +55,35 @@ arangodb_aql_global_query_memory_limit_reached_total{role="SINGLE"} 0 # HELP arangodb_aql_local_query_memory_limit_reached_total Number of local AQL query memory limit violations # TYPE arangodb_aql_local_query_memory_limit_reached_total counter -arangodb_aql_local_query_memory_limit_reached_total{role="SINGLE"} 0 +arangodb_aql_local_query_memory_limit_reached_total{role="SINGLE"} 1 # HELP arangodb_aql_query_time Execution time histogram for all AQL queries [s] # TYPE arangodb_aql_query_time histogram -arangodb_aql_query_time_bucket{role="SINGLE",le="0.000095"} 0 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.000191"} 2 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.000381"} 106 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.000763"} 3 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.001526"} 1 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.003052"} 1 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.000095"} 76 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.000191"} 144 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.000381"} 91 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.000763"} 33 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.001526"} 10 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.003052"} 0 arangodb_aql_query_time_bucket{role="SINGLE",le="0.006104"} 1 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.012207"} 1 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.024414"} 0 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.012207"} 0 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.024414"} 1 arangodb_aql_query_time_bucket{role="SINGLE",le="0.048828"} 0 arangodb_aql_query_time_bucket{role="SINGLE",le="0.097656"} 0 arangodb_aql_query_time_bucket{role="SINGLE",le="0.195312"} 0 arangodb_aql_query_time_bucket{role="SINGLE",le="0.390625"} 0 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.781250"} 0 -arangodb_aql_query_time_bucket{role="SINGLE",le="1.562500"} 0 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.781250"} 1 +arangodb_aql_query_time_bucket{role="SINGLE",le="1.562500"} 1 arangodb_aql_query_time_bucket{role="SINGLE",le="3.125000"} 0 arangodb_aql_query_time_bucket{role="SINGLE",le="6.250000"} 0 arangodb_aql_query_time_bucket{role="SINGLE",le="12.500000"} 0 arangodb_aql_query_time_bucket{role="SINGLE",le="25.000000"} 0 arangodb_aql_query_time_bucket{role="SINGLE",le="+Inf"} 0 -arangodb_aql_query_time_count{role="SINGLE"} 115 +arangodb_aql_query_time_count{role="SINGLE"} 358 # HELP arangodb_aql_slow_query_time Execution time histogram for slow AQL queries [s] # TYPE arangodb_aql_slow_query_time histogram -arangodb_aql_slow_query_time_bucket{role="SINGLE",le="4.904297"} 0 +arangodb_aql_slow_query_time_bucket{role="SINGLE",le="4.904297"} 1 arangodb_aql_slow_query_time_bucket{role="SINGLE",le="8.808594"} 0 arangodb_aql_slow_query_time_bucket{role="SINGLE",le="16.617188"} 0 arangodb_aql_slow_query_time_bucket{role="SINGLE",le="32.234375"} 0 @@ -93,26 +93,26 @@ arangodb_aql_slow_query_time_bucket{role="SINGLE",le="250.875000"} 0 arangodb_aql_slow_query_time_bucket{role="SINGLE",le="500.750000"} 0 arangodb_aql_slow_query_time_bucket{role="SINGLE",le="1000.500000"} 0 arangodb_aql_slow_query_time_bucket{role="SINGLE",le="+Inf"} 0 -arangodb_aql_slow_query_time_count{role="SINGLE"} 0 +arangodb_aql_slow_query_time_count{role="SINGLE"} 1 # HELP arangodb_aql_slow_query Total number of slow AQL queries finished # TYPE arangodb_aql_slow_query counter -arangodb_aql_slow_query{role="SINGLE"} 0 +arangodb_aql_slow_query{role="SINGLE"} 1 # HELP arangodb_aql_total_query_time_msec Total execution time of all AQL queries [ms] # TYPE arangodb_aql_total_query_time_msec counter -arangodb_aql_total_query_time_msec{role="SINGLE"} 15 +arangodb_aql_total_query_time_msec{role="SINGLE"} 1826 # HELP arangodb_collection_lock_acquisition_micros Total amount of collection lock acquisition time [μs] # TYPE arangodb_collection_lock_acquisition_micros counter -arangodb_collection_lock_acquisition_micros{role="SINGLE"} 898 +arangodb_collection_lock_acquisition_micros{role="SINGLE"} 9852 # HELP arangodb_collection_lock_acquisition_time Collection lock acquisition time histogram [s] # TYPE arangodb_collection_lock_acquisition_time histogram -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000000"} 6 -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000001"} 2 -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000010"} 387 -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000100"} 5 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000000"} 0 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000001"} 23110 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000010"} 8896 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000100"} 24 arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.001000"} 0 arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.010000"} 0 arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.100000"} 0 @@ -120,7 +120,7 @@ arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="1.000000"} 0 arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="10.000000"} 0 arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="100.000000"} 0 arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="+Inf"} 0 -arangodb_collection_lock_acquisition_time_count{role="SINGLE"} 400 +arangodb_collection_lock_acquisition_time_count{role="SINGLE"} 32030 # HELP arangodb_collection_lock_sequential_mode Number of transactions using sequential locking of collections to avoid deadlocking # TYPE arangodb_collection_lock_sequential_mode counter @@ -369,15 +369,15 @@ arangodb_scheduler_high_prio_queue_length{role="SINGLE"} 0 # HELP arangodb_scheduler_jobs_dequeued Total number of jobs dequeued # TYPE arangodb_scheduler_jobs_dequeued gauge -arangodb_scheduler_jobs_dequeued{role="SINGLE"} 188 +arangodb_scheduler_jobs_dequeued{role="SINGLE"} 32830 # HELP arangodb_scheduler_jobs_done Total number of queue jobs done # TYPE arangodb_scheduler_jobs_done gauge -arangodb_scheduler_jobs_done{role="SINGLE"} 188 +arangodb_scheduler_jobs_done{role="SINGLE"} 32829 # HELP arangodb_scheduler_jobs_submitted Total number of jobs submitted to the scheduler # TYPE arangodb_scheduler_jobs_submitted gauge -arangodb_scheduler_jobs_submitted{role="SINGLE"} 188 +arangodb_scheduler_jobs_submitted{role="SINGLE"} 32830 # HELP arangodb_scheduler_low_prio_queue_last_dequeue_time Last recorded dequeue time for a low priority queue item [ms] # TYPE arangodb_scheduler_low_prio_queue_last_dequeue_time gauge @@ -397,7 +397,7 @@ arangodb_scheduler_medium_prio_queue_length{role="SINGLE"} 0 # HELP arangodb_scheduler_awake_threads Number of awake worker threads # TYPE arangodb_scheduler_awake_threads gauge -arangodb_scheduler_awake_threads{role="SINGLE"} 0 +arangodb_scheduler_awake_threads{role="SINGLE"} 1 # HELP arangodb_scheduler_num_worker_threads Number of worker threads # TYPE arangodb_scheduler_num_worker_threads gauge @@ -405,7 +405,7 @@ arangodb_scheduler_num_worker_threads{role="SINGLE"} 4 # HELP arangodb_scheduler_num_working_threads Number of working threads # TYPE arangodb_scheduler_num_working_threads gauge -arangodb_scheduler_num_working_threads{role="SINGLE"} 0 +arangodb_scheduler_num_working_threads{role="SINGLE"} 1 # HELP arangodb_scheduler_ongoing_low_prio Total number of ongoing RestHandlers coming from the low prio queue # TYPE arangodb_scheduler_ongoing_low_prio gauge @@ -429,11 +429,11 @@ arangodb_scheduler_threads_stopped{role="SINGLE"} 0 # HELP arangodb_transactions_aborted Number of transactions aborted # TYPE arangodb_transactions_aborted counter -arangodb_transactions_aborted{role="SINGLE"} 131 +arangodb_transactions_aborted{role="SINGLE"} 292 # HELP arangodb_transactions_committed Number of transactions committed # TYPE arangodb_transactions_committed counter -arangodb_transactions_committed{role="SINGLE"} 637 +arangodb_transactions_committed{role="SINGLE"} 32823 # HELP arangodb_transactions_expired Total number of expired transactions # TYPE arangodb_transactions_expired counter @@ -441,15 +441,15 @@ arangodb_transactions_expired{role="SINGLE"} 0 # HELP arangodb_transactions_started Number of transactions started # TYPE arangodb_transactions_started counter -arangodb_transactions_started{role="SINGLE"} 768 +arangodb_transactions_started{role="SINGLE"} 33115 # HELP arangodb_v8_context_created V8 contexts created # TYPE arangodb_v8_context_created counter -arangodb_v8_context_created{role="SINGLE"} 1 +arangodb_v8_context_created{role="SINGLE"} 2 # HELP arangodb_v8_context_creation_time_msec Total time for creating V8 contexts [ms] # TYPE arangodb_v8_context_creation_time_msec counter -arangodb_v8_context_creation_time_msec{role="SINGLE"} 28 +arangodb_v8_context_creation_time_msec{role="SINGLE"} 12 # HELP arangodb_v8_context_destroyed V8 contexts destroyed # TYPE arangodb_v8_context_destroyed counter @@ -461,57 +461,73 @@ arangodb_v8_context_enter_failures{role="SINGLE"} 0 # HELP arangodb_v8_context_entered V8 context enter events # TYPE arangodb_v8_context_entered counter -arangodb_v8_context_entered{role="SINGLE"} 5 +arangodb_v8_context_entered{role="SINGLE"} 23 # HELP arangodb_v8_context_exited V8 context exit events # TYPE arangodb_v8_context_exited counter -arangodb_v8_context_exited{role="SINGLE"} 5 +arangodb_v8_context_exited{role="SINGLE"} 23 # HELP arangodb_process_statistics_minor_page_faults The number of minor faults the process has made which have not required loading a memory page from disk. This figure is not reported on Windows # TYPE arangodb_process_statistics_minor_page_faults gauge -arangodb_process_statistics_minor_page_faults 51348 +arangodb_process_statistics_minor_page_faults 76801 # HELP arangodb_process_statistics_major_page_faults On Windows, this figure contains the total number of page faults. On other system, this figure contains the number of major faults the process has made which have required loading a memory page from disk # TYPE arangodb_process_statistics_major_page_faults gauge -arangodb_process_statistics_major_page_faults 3505 +arangodb_process_statistics_major_page_faults 0 # HELP arangodb_process_statistics_user_time Amount of time that this process has been scheduled in user mode, measured in seconds # TYPE arangodb_process_statistics_user_time gauge -arangodb_process_statistics_user_time 0.485617 +arangodb_process_statistics_user_time 6.660000 # HELP arangodb_process_statistics_system_time Amount of time that this process has been scheduled in kernel mode, measured in seconds # TYPE arangodb_process_statistics_system_time gauge -arangodb_process_statistics_system_time 0.194748 +arangodb_process_statistics_system_time 3.050000 # HELP arangodb_process_statistics_number_of_threads Number of threads in the arangod process # TYPE arangodb_process_statistics_number_of_threads gauge -arangodb_process_statistics_number_of_threads 47 +arangodb_process_statistics_number_of_threads 51 # HELP arangodb_process_statistics_resident_set_size The total size of the number of pages the process has in real memory. This is just the pages which count toward text, data, or stack space. This does not include pages which have not been demand-loaded in, or which are swapped out. The resident set size is reported in bytes # TYPE arangodb_process_statistics_resident_set_size gauge -arangodb_process_statistics_resident_set_size 215175168 +arangodb_process_statistics_resident_set_size 314568704 # HELP arangodb_process_statistics_resident_set_size_percent The relative size of the number of pages the process has in real memory compared to system memory. This is just the pages which count toward text, data, or stack space. This does not include pages which have not been demand-loaded in, or which are swapped out. The value is a ratio between 0.00 and 1.00 # TYPE arangodb_process_statistics_resident_set_size_percent gauge -arangodb_process_statistics_resident_set_size_percent 0.006262 +arangodb_process_statistics_resident_set_size_percent 0.004976 # HELP arangodb_process_statistics_virtual_memory_size On Windows, this figure contains the total amount of memory that the memory manager has committed for the arangod process. On other systems, this figure contains The size of the virtual memory the process is using # TYPE arangodb_process_statistics_virtual_memory_size gauge -arangodb_process_statistics_virtual_memory_size 6059905024 +arangodb_process_statistics_virtual_memory_size 1363283968 # HELP arangodb_server_statistics_physical_memory Physical memory in bytes # TYPE arangodb_server_statistics_physical_memory gauge -arangodb_server_statistics_physical_memory 34359738368 +arangodb_server_statistics_physical_memory 63220002816 # HELP arangodb_server_statistics_server_uptime Number of seconds elapsed since server start # TYPE arangodb_server_statistics_server_uptime gauge -arangodb_server_statistics_server_uptime 1.533868 +arangodb_server_statistics_server_uptime 14.741664 # HELP arangodb_server_statistics_cpu_cores Number of CPU cores visible to the arangod process # TYPE arangodb_server_statistics_cpu_cores gauge arangodb_server_statistics_cpu_cores 16 +# HELP arangodb_server_statistics_user_percent Percentage of time that the system CPUs have spent in user mode +# TYPE arangodb_server_statistics_user_percent gauge +arangodb_server_statistics_user_percent 28.774406 + +# HELP arangodb_server_statistics_system_percent Percentage of time that the system CPUs have spent in kernel mode +# TYPE arangodb_server_statistics_system_percent gauge +arangodb_server_statistics_system_percent 8.682358 + +# HELP arangodb_server_statistics_idle_percent Percentage of time that the system CPUs have been idle +# TYPE arangodb_server_statistics_idle_percent gauge +arangodb_server_statistics_idle_percent 62.349647 + +# HELP arangodb_server_statistics_iowait_percent Percentage of time that the system CPUs have been waiting for I/O +# TYPE arangodb_server_statistics_iowait_percent gauge +arangodb_server_statistics_iowait_percent 0.089262 + # HELP arangodb_client_connection_statistics_client_connections The number of client connections that are currently open # TYPE arangodb_client_connection_statistics_client_connections gauge arangodb_client_connection_statistics_client_connections 2 @@ -526,35 +542,35 @@ arangodb_client_connection_statistics_connection_time_count 0 # HELP arangodb_client_connection_statistics_total_time Total time needed to answer a request # TYPE arangodb_client_connection_statistics_total_time histogram -arangodb_client_connection_statistics_total_time_bucket{le="0.01"} 441 -arangodb_client_connection_statistics_total_time_bucket{le="0.05"} 0 -arangodb_client_connection_statistics_total_time_bucket{le="0.1"} 0 +arangodb_client_connection_statistics_total_time_bucket{le="0.01"} 32799 +arangodb_client_connection_statistics_total_time_bucket{le="0.05"} 4 +arangodb_client_connection_statistics_total_time_bucket{le="0.1"} 1 arangodb_client_connection_statistics_total_time_bucket{le="0.2"} 0 arangodb_client_connection_statistics_total_time_bucket{le="0.5"} 0 -arangodb_client_connection_statistics_total_time_bucket{le="1.0"} 0 +arangodb_client_connection_statistics_total_time_bucket{le="1.0"} 1 arangodb_client_connection_statistics_total_time_bucket{le="5.0"} 0 arangodb_client_connection_statistics_total_time_bucket{le="15.0"} 0 arangodb_client_connection_statistics_total_time_bucket{le="30.0"} 0 arangodb_client_connection_statistics_total_time_bucket{le="+Inf"} 0 -arangodb_client_connection_statistics_total_time_count 441 +arangodb_client_connection_statistics_total_time_count 32805 # HELP arangodb_client_connection_statistics_request_time Request time needed to answer a request # TYPE arangodb_client_connection_statistics_request_time histogram -arangodb_client_connection_statistics_request_time_bucket{le="0.01"} 441 -arangodb_client_connection_statistics_request_time_bucket{le="0.05"} 0 -arangodb_client_connection_statistics_request_time_bucket{le="0.1"} 0 +arangodb_client_connection_statistics_request_time_bucket{le="0.01"} 32799 +arangodb_client_connection_statistics_request_time_bucket{le="0.05"} 4 +arangodb_client_connection_statistics_request_time_bucket{le="0.1"} 1 arangodb_client_connection_statistics_request_time_bucket{le="0.2"} 0 arangodb_client_connection_statistics_request_time_bucket{le="0.5"} 0 -arangodb_client_connection_statistics_request_time_bucket{le="1.0"} 0 +arangodb_client_connection_statistics_request_time_bucket{le="1.0"} 1 arangodb_client_connection_statistics_request_time_bucket{le="5.0"} 0 arangodb_client_connection_statistics_request_time_bucket{le="15.0"} 0 arangodb_client_connection_statistics_request_time_bucket{le="30.0"} 0 arangodb_client_connection_statistics_request_time_bucket{le="+Inf"} 0 -arangodb_client_connection_statistics_request_time_count 441 +arangodb_client_connection_statistics_request_time_count 32805 # HELP arangodb_client_connection_statistics_queue_time Request time needed to answer a request # TYPE arangodb_client_connection_statistics_queue_time histogram -arangodb_client_connection_statistics_queue_time_bucket{le="0.01"} 441 +arangodb_client_connection_statistics_queue_time_bucket{le="0.01"} 32805 arangodb_client_connection_statistics_queue_time_bucket{le="0.05"} 0 arangodb_client_connection_statistics_queue_time_bucket{le="0.1"} 0 arangodb_client_connection_statistics_queue_time_bucket{le="0.2"} 0 @@ -564,11 +580,11 @@ arangodb_client_connection_statistics_queue_time_bucket{le="5.0"} 0 arangodb_client_connection_statistics_queue_time_bucket{le="15.0"} 0 arangodb_client_connection_statistics_queue_time_bucket{le="30.0"} 0 arangodb_client_connection_statistics_queue_time_bucket{le="+Inf"} 0 -arangodb_client_connection_statistics_queue_time_count 441 +arangodb_client_connection_statistics_queue_time_count 32805 # HELP arangodb_client_connection_statistics_io_time Request time needed to answer a request # TYPE arangodb_client_connection_statistics_io_time histogram -arangodb_client_connection_statistics_io_time_bucket{le="0.01"} 441 +arangodb_client_connection_statistics_io_time_bucket{le="0.01"} 32805 arangodb_client_connection_statistics_io_time_bucket{le="0.05"} 0 arangodb_client_connection_statistics_io_time_bucket{le="0.1"} 0 arangodb_client_connection_statistics_io_time_bucket{le="0.2"} 0 @@ -578,27 +594,27 @@ arangodb_client_connection_statistics_io_time_bucket{le="5.0"} 0 arangodb_client_connection_statistics_io_time_bucket{le="15.0"} 0 arangodb_client_connection_statistics_io_time_bucket{le="30.0"} 0 arangodb_client_connection_statistics_io_time_bucket{le="+Inf"} 0 -arangodb_client_connection_statistics_io_time_count 441 +arangodb_client_connection_statistics_io_time_count 32805 # HELP arangodb_client_connection_statistics_bytes_sent Bytes sent for a request # TYPE arangodb_client_connection_statistics_bytes_sent histogram -arangodb_client_connection_statistics_bytes_sent_bucket{le="250"} 101 -arangodb_client_connection_statistics_bytes_sent_bucket{le="1000"} 250 -arangodb_client_connection_statistics_bytes_sent_bucket{le="2000"} 88 -arangodb_client_connection_statistics_bytes_sent_bucket{le="5000"} 2 -arangodb_client_connection_statistics_bytes_sent_bucket{le="10000"} 0 -arangodb_client_connection_statistics_bytes_sent_bucket{le="+Inf"} 0 -arangodb_client_connection_statistics_bytes_sent_count 441 +arangodb_client_connection_statistics_bytes_sent_bucket{le="250"} 404 +arangodb_client_connection_statistics_bytes_sent_bucket{le="1000"} 31986 +arangodb_client_connection_statistics_bytes_sent_bucket{le="2000"} 382 +arangodb_client_connection_statistics_bytes_sent_bucket{le="5000"} 25 +arangodb_client_connection_statistics_bytes_sent_bucket{le="10000"} 4 +arangodb_client_connection_statistics_bytes_sent_bucket{le="+Inf"} 4 +arangodb_client_connection_statistics_bytes_sent_count 32805 # HELP arangodb_client_connection_statistics_bytes_received Bytes received for a request # TYPE arangodb_client_connection_statistics_bytes_received histogram -arangodb_client_connection_statistics_bytes_received_bucket{le="250"} 311 -arangodb_client_connection_statistics_bytes_received_bucket{le="1000"} 130 +arangodb_client_connection_statistics_bytes_received_bucket{le="250"} 31699 +arangodb_client_connection_statistics_bytes_received_bucket{le="1000"} 1106 arangodb_client_connection_statistics_bytes_received_bucket{le="2000"} 0 arangodb_client_connection_statistics_bytes_received_bucket{le="5000"} 0 arangodb_client_connection_statistics_bytes_received_bucket{le="10000"} 0 arangodb_client_connection_statistics_bytes_received_bucket{le="+Inf"} 0 -arangodb_client_connection_statistics_bytes_received_count 441 +arangodb_client_connection_statistics_bytes_received_count 32805 # HELP arangodb_http_request_statistics_async_requests Number of asynchronously executed HTTP requests # TYPE arangodb_http_request_statistics_async_requests gauge @@ -606,11 +622,11 @@ arangodb_http_request_statistics_async_requests 0 # HELP arangodb_http_request_statistics_http_delete_requests Number of HTTP DELETE requests # TYPE arangodb_http_request_statistics_http_delete_requests gauge -arangodb_http_request_statistics_http_delete_requests 22 +arangodb_http_request_statistics_http_delete_requests 103 # HELP arangodb_http_request_statistics_http_get_requests Number of HTTP GET requests # TYPE arangodb_http_request_statistics_http_get_requests gauge -arangodb_http_request_statistics_http_get_requests 205 +arangodb_http_request_statistics_http_get_requests 906 # HELP arangodb_http_request_statistics_http_head_requests Number of HTTP HEAD requests # TYPE arangodb_http_request_statistics_http_head_requests gauge @@ -626,11 +642,11 @@ arangodb_http_request_statistics_http_patch_requests 2 # HELP arangodb_http_request_statistics_http_post_requests Number of HTTP POST requests # TYPE arangodb_http_request_statistics_http_post_requests gauge -arangodb_http_request_statistics_http_post_requests 209 +arangodb_http_request_statistics_http_post_requests 31764 # HELP arangodb_http_request_statistics_http_put_requests Number of HTTP PUT requests # TYPE arangodb_http_request_statistics_http_put_requests gauge -arangodb_http_request_statistics_http_put_requests 3 +arangodb_http_request_statistics_http_put_requests 30 # HELP arangodb_http_request_statistics_other_http_requests Number of other HTTP requests # TYPE arangodb_http_request_statistics_other_http_requests gauge @@ -638,7 +654,7 @@ arangodb_http_request_statistics_other_http_requests 0 # HELP arangodb_http_request_statistics_total_requests Total number of HTTP requests # TYPE arangodb_http_request_statistics_total_requests gauge -arangodb_http_request_statistics_total_requests 441 +arangodb_http_request_statistics_total_requests 32805 # HELP arangodb_http_request_statistics_superuser_requests Total number of HTTP requests executed by superuser/JWT # TYPE arangodb_http_request_statistics_superuser_requests gauge @@ -646,11 +662,11 @@ arangodb_http_request_statistics_superuser_requests 0 # HELP arangodb_http_request_statistics_user_requests Total number of HTTP requests executed by clients # TYPE arangodb_http_request_statistics_user_requests gauge -arangodb_http_request_statistics_user_requests 441 +arangodb_http_request_statistics_user_requests 32805 # HELP arangodb_v8_context_alive Number of V8 contexts currently alive # TYPE arangodb_v8_context_alive gauge -arangodb_v8_context_alive 1 +arangodb_v8_context_alive 2 # HELP arangodb_v8_context_busy Number of V8 contexts currently busy # TYPE arangodb_v8_context_busy gauge @@ -662,7 +678,7 @@ arangodb_v8_context_dirty 0 # HELP arangodb_v8_context_free Number of V8 contexts currently free # TYPE arangodb_v8_context_free gauge -arangodb_v8_context_free 1 +arangodb_v8_context_free 2 # HELP arangodb_v8_context_min Minimum number of concurrent V8 contexts # TYPE arangodb_v8_context_min gauge @@ -675,19 +691,19 @@ arangodb_v8_context_max 16 # HELP rocksdb_cache_allocated rocksdb_cache_allocated # TYPE rocksdb_cache_allocated gauge -rocksdb_cache_allocated 1355928 +rocksdb_cache_allocated 1356792 # HELP rocksdb_cache_hit_rate_lifetime rocksdb_cache_hit_rate_lifetime # TYPE rocksdb_cache_hit_rate_lifetime gauge -rocksdb_cache_hit_rate_lifetime 0 +rocksdb_cache_hit_rate_lifetime 9 # HELP rocksdb_cache_hit_rate_recent rocksdb_cache_hit_rate_recent # TYPE rocksdb_cache_hit_rate_recent gauge -rocksdb_cache_hit_rate_recent 0 +rocksdb_cache_hit_rate_recent 9 # HELP rocksdb_cache_limit rocksdb_cache_limit # TYPE rocksdb_cache_limit gauge -rocksdb_cache_limit 8053063680 +rocksdb_cache_limit 15268129792 # HELP rocksdb_actual_delayed_write_rate rocksdb_actual_delayed_write_rate # TYPE rocksdb_actual_delayed_write_rate gauge @@ -703,15 +719,15 @@ rocksdb_base_level 6 # HELP rocksdb_block_cache_capacity rocksdb_block_cache_capacity # TYPE rocksdb_block_cache_capacity gauge -rocksdb_block_cache_capacity 9663676416 +rocksdb_block_cache_capacity 18321755750 # HELP rocksdb_block_cache_pinned_usage rocksdb_block_cache_pinned_usage # TYPE rocksdb_block_cache_pinned_usage gauge -rocksdb_block_cache_pinned_usage 3770 +rocksdb_block_cache_pinned_usage 0 # HELP rocksdb_block_cache_usage rocksdb_block_cache_usage # TYPE rocksdb_block_cache_usage gauge -rocksdb_block_cache_usage 3770 +rocksdb_block_cache_usage 0 # HELP rocksdb_compaction_pending rocksdb_compaction_pending # TYPE rocksdb_compaction_pending gauge @@ -743,23 +759,23 @@ rocksdb_compression_ratio_at_level5 0 # HELP rocksdb_compression_ratio_at_level6 rocksdb_compression_ratio_at_level6 # TYPE rocksdb_compression_ratio_at_level6 gauge -rocksdb_compression_ratio_at_level6 1 +rocksdb_compression_ratio_at_level6 4 # HELP rocksdb_cur_size_active_mem_table rocksdb_cur_size_active_mem_table # TYPE rocksdb_cur_size_active_mem_table gauge -rocksdb_cur_size_active_mem_table 67114088 +rocksdb_cur_size_active_mem_table 73405456 # HELP rocksdb_cur_size_all_mem_tables rocksdb_cur_size_all_mem_tables # TYPE rocksdb_cur_size_all_mem_tables gauge -rocksdb_cur_size_all_mem_tables 67114088 +rocksdb_cur_size_all_mem_tables 73405456 # HELP rocksdb_estimate_live_data_size rocksdb_estimate_live_data_size # TYPE rocksdb_estimate_live_data_size gauge -rocksdb_estimate_live_data_size 31008 +rocksdb_estimate_live_data_size 1508677 # HELP rocksdb_estimate_num_keys rocksdb_estimate_num_keys # TYPE rocksdb_estimate_num_keys gauge -rocksdb_estimate_num_keys 19 +rocksdb_estimate_num_keys 0 # HELP rocksdb_estimate_pending_compaction_bytes rocksdb_estimate_pending_compaction_bytes # TYPE rocksdb_estimate_pending_compaction_bytes gauge @@ -767,15 +783,15 @@ rocksdb_estimate_pending_compaction_bytes 0 # HELP rocksdb_estimate_table_readers_mem rocksdb_estimate_table_readers_mem # TYPE rocksdb_estimate_table_readers_mem gauge -rocksdb_estimate_table_readers_mem 3000 +rocksdb_estimate_table_readers_mem 91504 # HELP rocksdb_free_disk_space rocksdb_free_disk_space # TYPE rocksdb_free_disk_space gauge -rocksdb_free_disk_space 52822654582784 +rocksdb_free_disk_space 237715292160 # HELP rocksdb_free_inodes rocksdb_free_inodes # TYPE rocksdb_free_inodes gauge -rocksdb_free_inodes 585049566 +rocksdb_free_inodes 32307058 # HELP rocksdb_is_file_deletions_enabled rocksdb_is_file_deletions_enabled # TYPE rocksdb_is_file_deletions_enabled gauge @@ -787,7 +803,7 @@ rocksdb_is_write_stopped 0 # HELP rocksdb_live_sst_files_size rocksdb_live_sst_files_size # TYPE rocksdb_live_sst_files_size gauge -rocksdb_live_sst_files_size 31008 +rocksdb_live_sst_files_size 1508677 # HELP rocksdb_mem_table_flush_pending rocksdb_mem_table_flush_pending # TYPE rocksdb_mem_table_flush_pending gauge @@ -869,25 +885,21 @@ rocksdb_num_snapshots 0 # TYPE rocksdb_oldest_snapshot_time gauge rocksdb_oldest_snapshot_time 0 -# HELP rocksdb_read_only rocksdb_read_only -# TYPE rocksdb_read_only gauge -rocksdb_read_only 0 - # HELP rocksdb_size_all_mem_tables rocksdb_size_all_mem_tables # TYPE rocksdb_size_all_mem_tables gauge -rocksdb_size_all_mem_tables 121149696 +rocksdb_size_all_mem_tables 142166264 # HELP rocksdb_total_disk_space rocksdb_total_disk_space # TYPE rocksdb_total_disk_space gauge -rocksdb_total_disk_space 127990572777472 +rocksdb_total_disk_space 266219864064 # HELP rocksdb_total_inodes rocksdb_total_inodes # TYPE rocksdb_total_inodes gauge -rocksdb_total_inodes 587485584 +rocksdb_total_inodes 33030144 # HELP rocksdb_total_sst_files_size rocksdb_total_sst_files_size # TYPE rocksdb_total_sst_files_size gauge -rocksdb_total_sst_files_size 31008 +rocksdb_total_sst_files_size 1508677 # HELP rocksdbengine_throttle_bps rocksdbengine_throttle_bps # TYPE rocksdbengine_throttle_bps gauge diff --git a/3.9/generated/Examples/RestAdminMetricsV2.generated b/3.9/generated/Examples/RestAdminMetricsV2.generated index 0eb4dcbfd2..d1766cbbfb 100644 --- a/3.9/generated/Examples/RestAdminMetricsV2.generated +++ b/3.9/generated/Examples/RestAdminMetricsV2.generated @@ -1,9 +1,9 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_admin/metrics/v2 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_admin/metrics/v2 HTTP/1.1 200 OK content-type: text/plain connection: Keep-Alive -content-length: 48189 +content-length: 49120 server: ArangoDB x-content-type-options: nosniff @@ -36,7 +36,7 @@ arangodb_agencycomm_request_time_msec_sum{role="SINGLE"} 0 # HELP arangodb_aql_all_query_total Total number of AQL queries finished # TYPE arangodb_aql_all_query_total counter -arangodb_aql_all_query_total{role="SINGLE"} 115 +arangodb_aql_all_query_total{role="SINGLE"} 358 # HELP arangodb_aql_current_query Current number of AQL queries executing # TYPE arangodb_aql_current_query gauge @@ -44,7 +44,7 @@ arangodb_aql_current_query{role="SINGLE"} 0 # HELP arangodb_aql_global_memory_limit Total memory limit for all AQL queries combined [bytes] # TYPE arangodb_aql_global_memory_limit gauge -arangodb_aql_global_memory_limit{role="SINGLE"} 27831388078 +arangodb_aql_global_memory_limit{role="SINGLE"} 54686007705 # HELP arangodb_aql_global_memory_usage Total memory usage of all AQL queries executing [bytes], granularity: 32768 bytes steps # TYPE arangodb_aql_global_memory_usage gauge @@ -56,71 +56,71 @@ arangodb_aql_global_query_memory_limit_reached_total{role="SINGLE"} 0 # HELP arangodb_aql_local_query_memory_limit_reached_total Number of local AQL query memory limit violations # TYPE arangodb_aql_local_query_memory_limit_reached_total counter -arangodb_aql_local_query_memory_limit_reached_total{role="SINGLE"} 0 +arangodb_aql_local_query_memory_limit_reached_total{role="SINGLE"} 1 # HELP arangodb_aql_query_time Execution time histogram for all AQL queries [s] # TYPE arangodb_aql_query_time histogram arangodb_aql_query_time_bucket{role="SINGLE",le="0.000095"} 0 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.000191"} 2 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.000381"} 108 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.000763"} 111 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.001526"} 112 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.003052"} 113 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.006104"} 114 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.012207"} 115 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.024414"} 115 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.048828"} 115 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.097656"} 115 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.195312"} 115 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.390625"} 115 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.781250"} 115 -arangodb_aql_query_time_bucket{role="SINGLE",le="1.562500"} 115 -arangodb_aql_query_time_bucket{role="SINGLE",le="3.125000"} 115 -arangodb_aql_query_time_bucket{role="SINGLE",le="6.250000"} 115 -arangodb_aql_query_time_bucket{role="SINGLE",le="12.500000"} 115 -arangodb_aql_query_time_bucket{role="SINGLE",le="25.000000"} 115 -arangodb_aql_query_time_bucket{role="SINGLE",le="+Inf"} 115 -arangodb_aql_query_time_count{role="SINGLE"} 115 -arangodb_aql_query_time_sum{role="SINGLE"} 0.046801 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.000191"} 0 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.000381"} 54 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.000763"} 298 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.001526"} 344 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.003052"} 354 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.006104"} 355 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.012207"} 355 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.024414"} 355 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.048828"} 356 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.097656"} 356 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.195312"} 356 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.390625"} 356 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.781250"} 357 +arangodb_aql_query_time_bucket{role="SINGLE",le="1.562500"} 358 +arangodb_aql_query_time_bucket{role="SINGLE",le="3.125000"} 358 +arangodb_aql_query_time_bucket{role="SINGLE",le="6.250000"} 358 +arangodb_aql_query_time_bucket{role="SINGLE",le="12.500000"} 358 +arangodb_aql_query_time_bucket{role="SINGLE",le="25.000000"} 358 +arangodb_aql_query_time_bucket{role="SINGLE",le="+Inf"} 358 +arangodb_aql_query_time_count{role="SINGLE"} 358 +arangodb_aql_query_time_sum{role="SINGLE"} 2.042929 # HELP arangodb_aql_slow_query_time Execution time histogram for slow AQL queries [s] # TYPE arangodb_aql_slow_query_time histogram -arangodb_aql_slow_query_time_bucket{role="SINGLE",le="4.904297"} 0 -arangodb_aql_slow_query_time_bucket{role="SINGLE",le="8.808594"} 0 -arangodb_aql_slow_query_time_bucket{role="SINGLE",le="16.617188"} 0 -arangodb_aql_slow_query_time_bucket{role="SINGLE",le="32.234375"} 0 -arangodb_aql_slow_query_time_bucket{role="SINGLE",le="63.468750"} 0 -arangodb_aql_slow_query_time_bucket{role="SINGLE",le="125.937500"} 0 -arangodb_aql_slow_query_time_bucket{role="SINGLE",le="250.875000"} 0 -arangodb_aql_slow_query_time_bucket{role="SINGLE",le="500.750000"} 0 -arangodb_aql_slow_query_time_bucket{role="SINGLE",le="1000.500000"} 0 -arangodb_aql_slow_query_time_bucket{role="SINGLE",le="+Inf"} 0 -arangodb_aql_slow_query_time_count{role="SINGLE"} 0 -arangodb_aql_slow_query_time_sum{role="SINGLE"} 0.000000 +arangodb_aql_slow_query_time_bucket{role="SINGLE",le="4.904297"} 1 +arangodb_aql_slow_query_time_bucket{role="SINGLE",le="8.808594"} 1 +arangodb_aql_slow_query_time_bucket{role="SINGLE",le="16.617188"} 1 +arangodb_aql_slow_query_time_bucket{role="SINGLE",le="32.234375"} 1 +arangodb_aql_slow_query_time_bucket{role="SINGLE",le="63.468750"} 1 +arangodb_aql_slow_query_time_bucket{role="SINGLE",le="125.937500"} 1 +arangodb_aql_slow_query_time_bucket{role="SINGLE",le="250.875000"} 1 +arangodb_aql_slow_query_time_bucket{role="SINGLE",le="500.750000"} 1 +arangodb_aql_slow_query_time_bucket{role="SINGLE",le="1000.500000"} 1 +arangodb_aql_slow_query_time_bucket{role="SINGLE",le="+Inf"} 1 +arangodb_aql_slow_query_time_count{role="SINGLE"} 1 +arangodb_aql_slow_query_time_sum{role="SINGLE"} 1.048727 # HELP arangodb_aql_total_query_time_msec_total Total execution time of all AQL queries [ms] # TYPE arangodb_aql_total_query_time_msec_total counter -arangodb_aql_total_query_time_msec_total{role="SINGLE"} 15 +arangodb_aql_total_query_time_msec_total{role="SINGLE"} 1874 # HELP arangodb_collection_lock_acquisition_micros_total Total amount of collection lock acquisition time [μs] # TYPE arangodb_collection_lock_acquisition_micros_total counter -arangodb_collection_lock_acquisition_micros_total{role="SINGLE"} 898 +arangodb_collection_lock_acquisition_micros_total{role="SINGLE"} 136278 # HELP arangodb_collection_lock_acquisition_time Collection lock acquisition time histogram [s] # TYPE arangodb_collection_lock_acquisition_time histogram -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000000"} 6 -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000001"} 8 -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000010"} 395 -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000100"} 400 -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.001000"} 400 -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.010000"} 400 -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.100000"} 400 -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="1.000000"} 400 -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="10.000000"} 400 -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="100.000000"} 400 -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="+Inf"} 400 -arangodb_collection_lock_acquisition_time_count{role="SINGLE"} 400 -arangodb_collection_lock_acquisition_time_sum{role="SINGLE"} 0.001088 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000000"} 0 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000001"} 27 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000010"} 31928 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000100"} 32030 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.001000"} 32030 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.010000"} 32030 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.100000"} 32030 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="1.000000"} 32030 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="10.000000"} 32030 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="100.000000"} 32030 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="+Inf"} 32030 +arangodb_collection_lock_acquisition_time_count{role="SINGLE"} 32030 +arangodb_collection_lock_acquisition_time_sum{role="SINGLE"} 0.149390 # HELP arangodb_collection_lock_sequential_mode_total Number of transactions using sequential locking of collections to avoid deadlocking # TYPE arangodb_collection_lock_sequential_mode_total counter @@ -366,15 +366,15 @@ arangodb_scheduler_high_prio_queue_length{role="SINGLE"} 0 # HELP arangodb_scheduler_jobs_dequeued_total Total number of jobs dequeued # TYPE arangodb_scheduler_jobs_dequeued_total counter -arangodb_scheduler_jobs_dequeued_total{role="SINGLE"} 188 +arangodb_scheduler_jobs_dequeued_total{role="SINGLE"} 32848 # HELP arangodb_scheduler_jobs_done_total Total number of queue jobs done # TYPE arangodb_scheduler_jobs_done_total counter -arangodb_scheduler_jobs_done_total{role="SINGLE"} 188 +arangodb_scheduler_jobs_done_total{role="SINGLE"} 32847 # HELP arangodb_scheduler_jobs_submitted_total Total number of jobs submitted to the scheduler # TYPE arangodb_scheduler_jobs_submitted_total counter -arangodb_scheduler_jobs_submitted_total{role="SINGLE"} 188 +arangodb_scheduler_jobs_submitted_total{role="SINGLE"} 32848 # HELP arangodb_scheduler_low_prio_queue_last_dequeue_time Last recorded dequeue time for a low priority queue item [ms] # TYPE arangodb_scheduler_low_prio_queue_last_dequeue_time gauge @@ -394,7 +394,7 @@ arangodb_scheduler_medium_prio_queue_length{role="SINGLE"} 0 # HELP arangodb_scheduler_num_awake_threads Number of awake worker threads # TYPE arangodb_scheduler_num_awake_threads gauge -arangodb_scheduler_num_awake_threads{role="SINGLE"} 0 +arangodb_scheduler_num_awake_threads{role="SINGLE"} 1 # HELP arangodb_scheduler_num_worker_threads Number of worker threads # TYPE arangodb_scheduler_num_worker_threads gauge @@ -402,7 +402,7 @@ arangodb_scheduler_num_worker_threads{role="SINGLE"} 4 # HELP arangodb_scheduler_num_working_threads Number of working threads # TYPE arangodb_scheduler_num_working_threads gauge -arangodb_scheduler_num_working_threads{role="SINGLE"} 0 +arangodb_scheduler_num_working_threads{role="SINGLE"} 1 # HELP arangodb_scheduler_ongoing_low_prio Total number of ongoing RestHandlers coming from the low prio queue # TYPE arangodb_scheduler_ongoing_low_prio gauge @@ -426,11 +426,11 @@ arangodb_scheduler_threads_stopped_total{role="SINGLE"} 0 # HELP arangodb_transactions_aborted_total Number of transactions aborted # TYPE arangodb_transactions_aborted_total counter -arangodb_transactions_aborted_total{role="SINGLE"} 131 +arangodb_transactions_aborted_total{role="SINGLE"} 292 # HELP arangodb_transactions_committed_total Number of transactions committed # TYPE arangodb_transactions_committed_total counter -arangodb_transactions_committed_total{role="SINGLE"} 638 +arangodb_transactions_committed_total{role="SINGLE"} 32824 # HELP arangodb_transactions_expired_total Total number of expired transactions # TYPE arangodb_transactions_expired_total counter @@ -438,15 +438,15 @@ arangodb_transactions_expired_total{role="SINGLE"} 0 # HELP arangodb_transactions_started_total Number of transactions started # TYPE arangodb_transactions_started_total counter -arangodb_transactions_started_total{role="SINGLE"} 769 +arangodb_transactions_started_total{role="SINGLE"} 33116 # HELP arangodb_v8_context_created_total V8 contexts created # TYPE arangodb_v8_context_created_total counter -arangodb_v8_context_created_total{role="SINGLE"} 1 +arangodb_v8_context_created_total{role="SINGLE"} 2 # HELP arangodb_v8_context_creation_time_msec_total Total time for creating V8 contexts [ms] # TYPE arangodb_v8_context_creation_time_msec_total counter -arangodb_v8_context_creation_time_msec_total{role="SINGLE"} 28 +arangodb_v8_context_creation_time_msec_total{role="SINGLE"} 19 # HELP arangodb_v8_context_destroyed_total V8 contexts destroyed # TYPE arangodb_v8_context_destroyed_total counter @@ -458,56 +458,72 @@ arangodb_v8_context_enter_failures_total{role="SINGLE"} 0 # HELP arangodb_v8_context_entered_total V8 context enter events # TYPE arangodb_v8_context_entered_total counter -arangodb_v8_context_entered_total{role="SINGLE"} 5 +arangodb_v8_context_entered_total{role="SINGLE"} 24 # HELP arangodb_v8_context_exited_total V8 context exit events # TYPE arangodb_v8_context_exited_total counter -arangodb_v8_context_exited_total{role="SINGLE"} 5 +arangodb_v8_context_exited_total{role="SINGLE"} 24 # HELP arangodb_process_statistics_minor_page_faults_total The number of minor faults the process has made which have not required loading a memory page from disk. This figure is not reported on Windows # TYPE arangodb_process_statistics_minor_page_faults_total counter -arangodb_process_statistics_minor_page_faults_total 51376 +arangodb_process_statistics_minor_page_faults_total 87021 # HELP arangodb_process_statistics_major_page_faults_total On Windows, this figure contains the total number of page faults. On other system, this figure contains the number of major faults the process has made which have required loading a memory page from disk # TYPE arangodb_process_statistics_major_page_faults_total counter -arangodb_process_statistics_major_page_faults_total 3515 +arangodb_process_statistics_major_page_faults_total 2 # HELP arangodb_process_statistics_user_time Amount of time that this process has been scheduled in user mode, measured in seconds # TYPE arangodb_process_statistics_user_time gauge -arangodb_process_statistics_user_time 0.488361 +arangodb_process_statistics_user_time 9.310000 # HELP arangodb_process_statistics_system_time Amount of time that this process has been scheduled in kernel mode, measured in seconds # TYPE arangodb_process_statistics_system_time gauge -arangodb_process_statistics_system_time 0.197894 +arangodb_process_statistics_system_time 2.390000 # HELP arangodb_process_statistics_number_of_threads Number of threads in the arangod process # TYPE arangodb_process_statistics_number_of_threads gauge -arangodb_process_statistics_number_of_threads 47 +arangodb_process_statistics_number_of_threads 55 # HELP arangodb_process_statistics_resident_set_size The total size of the number of pages the process has in real memory. This is just the pages which count toward text, data, or stack space. This does not include pages which have not been demand-loaded in, or which are swapped out. The resident set size is reported in bytes # TYPE arangodb_process_statistics_resident_set_size gauge -arangodb_process_statistics_resident_set_size 215318528 +arangodb_process_statistics_resident_set_size 314122240 # HELP arangodb_process_statistics_resident_set_size_percent The relative size of the number of pages the process has in real memory compared to system memory. This is just the pages which count toward text, data, or stack space. This does not include pages which have not been demand-loaded in, or which are swapped out. The value is a ratio between 0.00 and 1.00 # TYPE arangodb_process_statistics_resident_set_size_percent gauge -arangodb_process_statistics_resident_set_size_percent 0.006267 +arangodb_process_statistics_resident_set_size_percent 0.004653 # HELP arangodb_process_statistics_virtual_memory_size On Windows, this figure contains the total amount of memory that the memory manager has committed for the arangod process. On other systems, this figure contains The size of the virtual memory the process is using # TYPE arangodb_process_statistics_virtual_memory_size gauge -arangodb_process_statistics_virtual_memory_size 6194122752 +arangodb_process_statistics_virtual_memory_size 1402511360 # HELP arangodb_server_statistics_physical_memory Physical memory in bytes # TYPE arangodb_server_statistics_physical_memory gauge -arangodb_server_statistics_physical_memory 34359738368 +arangodb_server_statistics_physical_memory 67513589760 # HELP arangodb_server_statistics_server_uptime_total Number of seconds elapsed since server start # TYPE arangodb_server_statistics_server_uptime_total counter -arangodb_server_statistics_server_uptime_total 1.537952 +arangodb_server_statistics_server_uptime_total 15.751129 # HELP arangodb_server_statistics_cpu_cores Number of CPU cores visible to the arangod process # TYPE arangodb_server_statistics_cpu_cores gauge -arangodb_server_statistics_cpu_cores 16 +arangodb_server_statistics_cpu_cores 32 + +# HELP arangodb_server_statistics_user_percent Percentage of time that the system CPUs have spent in user mode +# TYPE arangodb_server_statistics_user_percent gauge +arangodb_server_statistics_user_percent 32.142857 + +# HELP arangodb_server_statistics_system_percent Percentage of time that the system CPUs have spent in kernel mode +# TYPE arangodb_server_statistics_system_percent gauge +arangodb_server_statistics_system_percent 3.571429 + +# HELP arangodb_server_statistics_idle_percent Percentage of time that the system CPUs have been idle +# TYPE arangodb_server_statistics_idle_percent gauge +arangodb_server_statistics_idle_percent 60.714286 + +# HELP arangodb_server_statistics_iowait_percent Percentage of time that the system CPUs have been waiting for I/O +# TYPE arangodb_server_statistics_iowait_percent gauge +arangodb_server_statistics_iowait_percent 0.000000 # HELP arangodb_client_connection_statistics_client_connections The number of client connections that are currently open # TYPE arangodb_client_connection_statistics_client_connections gauge @@ -524,85 +540,85 @@ arangodb_client_connection_statistics_connection_time_sum 0.000000 # HELP arangodb_client_connection_statistics_total_time Total time needed to answer a request # TYPE arangodb_client_connection_statistics_total_time histogram -arangodb_client_connection_statistics_total_time_bucket{le="0.01"} 586 -arangodb_client_connection_statistics_total_time_bucket{le="0.05"} 587 -arangodb_client_connection_statistics_total_time_bucket{le="0.1"} 587 -arangodb_client_connection_statistics_total_time_bucket{le="0.2"} 587 -arangodb_client_connection_statistics_total_time_bucket{le="0.5"} 587 -arangodb_client_connection_statistics_total_time_bucket{le="1.0"} 587 -arangodb_client_connection_statistics_total_time_bucket{le="5.0"} 587 -arangodb_client_connection_statistics_total_time_bucket{le="15.0"} 587 -arangodb_client_connection_statistics_total_time_bucket{le="30.0"} 587 -arangodb_client_connection_statistics_total_time_bucket{le="+Inf"} 587 -arangodb_client_connection_statistics_total_time_count 587 -arangodb_client_connection_statistics_total_time_sum 0.197809 +arangodb_client_connection_statistics_total_time_bucket{le="0.01"} 32799 +arangodb_client_connection_statistics_total_time_bucket{le="0.05"} 32801 +arangodb_client_connection_statistics_total_time_bucket{le="0.1"} 32803 +arangodb_client_connection_statistics_total_time_bucket{le="0.2"} 32804 +arangodb_client_connection_statistics_total_time_bucket{le="0.5"} 32804 +arangodb_client_connection_statistics_total_time_bucket{le="1.0"} 32805 +arangodb_client_connection_statistics_total_time_bucket{le="5.0"} 32805 +arangodb_client_connection_statistics_total_time_bucket{le="15.0"} 32805 +arangodb_client_connection_statistics_total_time_bucket{le="30.0"} 32805 +arangodb_client_connection_statistics_total_time_bucket{le="+Inf"} 32805 +arangodb_client_connection_statistics_total_time_count 32805 +arangodb_client_connection_statistics_total_time_sum 8.515468 # HELP arangodb_client_connection_statistics_request_time Request time needed to answer a request # TYPE arangodb_client_connection_statistics_request_time histogram -arangodb_client_connection_statistics_request_time_bucket{le="0.01"} 586 -arangodb_client_connection_statistics_request_time_bucket{le="0.05"} 587 -arangodb_client_connection_statistics_request_time_bucket{le="0.1"} 587 -arangodb_client_connection_statistics_request_time_bucket{le="0.2"} 587 -arangodb_client_connection_statistics_request_time_bucket{le="0.5"} 587 -arangodb_client_connection_statistics_request_time_bucket{le="1.0"} 587 -arangodb_client_connection_statistics_request_time_bucket{le="5.0"} 587 -arangodb_client_connection_statistics_request_time_bucket{le="15.0"} 587 -arangodb_client_connection_statistics_request_time_bucket{le="30.0"} 587 -arangodb_client_connection_statistics_request_time_bucket{le="+Inf"} 587 -arangodb_client_connection_statistics_request_time_count 587 -arangodb_client_connection_statistics_request_time_sum 0.154675 +arangodb_client_connection_statistics_request_time_bucket{le="0.01"} 32799 +arangodb_client_connection_statistics_request_time_bucket{le="0.05"} 32801 +arangodb_client_connection_statistics_request_time_bucket{le="0.1"} 32803 +arangodb_client_connection_statistics_request_time_bucket{le="0.2"} 32804 +arangodb_client_connection_statistics_request_time_bucket{le="0.5"} 32804 +arangodb_client_connection_statistics_request_time_bucket{le="1.0"} 32805 +arangodb_client_connection_statistics_request_time_bucket{le="5.0"} 32805 +arangodb_client_connection_statistics_request_time_bucket{le="15.0"} 32805 +arangodb_client_connection_statistics_request_time_bucket{le="30.0"} 32805 +arangodb_client_connection_statistics_request_time_bucket{le="+Inf"} 32805 +arangodb_client_connection_statistics_request_time_count 32805 +arangodb_client_connection_statistics_request_time_sum 5.366849 # HELP arangodb_client_connection_statistics_queue_time Request time needed to answer a request # TYPE arangodb_client_connection_statistics_queue_time histogram -arangodb_client_connection_statistics_queue_time_bucket{le="0.01"} 587 -arangodb_client_connection_statistics_queue_time_bucket{le="0.05"} 587 -arangodb_client_connection_statistics_queue_time_bucket{le="0.1"} 587 -arangodb_client_connection_statistics_queue_time_bucket{le="0.2"} 587 -arangodb_client_connection_statistics_queue_time_bucket{le="0.5"} 587 -arangodb_client_connection_statistics_queue_time_bucket{le="1.0"} 587 -arangodb_client_connection_statistics_queue_time_bucket{le="5.0"} 587 -arangodb_client_connection_statistics_queue_time_bucket{le="15.0"} 587 -arangodb_client_connection_statistics_queue_time_bucket{le="30.0"} 587 -arangodb_client_connection_statistics_queue_time_bucket{le="+Inf"} 587 -arangodb_client_connection_statistics_queue_time_count 587 -arangodb_client_connection_statistics_queue_time_sum 0.004099 +arangodb_client_connection_statistics_queue_time_bucket{le="0.01"} 32805 +arangodb_client_connection_statistics_queue_time_bucket{le="0.05"} 32805 +arangodb_client_connection_statistics_queue_time_bucket{le="0.1"} 32805 +arangodb_client_connection_statistics_queue_time_bucket{le="0.2"} 32805 +arangodb_client_connection_statistics_queue_time_bucket{le="0.5"} 32805 +arangodb_client_connection_statistics_queue_time_bucket{le="1.0"} 32805 +arangodb_client_connection_statistics_queue_time_bucket{le="5.0"} 32805 +arangodb_client_connection_statistics_queue_time_bucket{le="15.0"} 32805 +arangodb_client_connection_statistics_queue_time_bucket{le="30.0"} 32805 +arangodb_client_connection_statistics_queue_time_bucket{le="+Inf"} 32805 +arangodb_client_connection_statistics_queue_time_count 32805 +arangodb_client_connection_statistics_queue_time_sum 0.340286 # HELP arangodb_client_connection_statistics_io_time Request time needed to answer a request # TYPE arangodb_client_connection_statistics_io_time histogram -arangodb_client_connection_statistics_io_time_bucket{le="0.01"} 587 -arangodb_client_connection_statistics_io_time_bucket{le="0.05"} 587 -arangodb_client_connection_statistics_io_time_bucket{le="0.1"} 587 -arangodb_client_connection_statistics_io_time_bucket{le="0.2"} 587 -arangodb_client_connection_statistics_io_time_bucket{le="0.5"} 587 -arangodb_client_connection_statistics_io_time_bucket{le="1.0"} 587 -arangodb_client_connection_statistics_io_time_bucket{le="5.0"} 587 -arangodb_client_connection_statistics_io_time_bucket{le="15.0"} 587 -arangodb_client_connection_statistics_io_time_bucket{le="30.0"} 587 -arangodb_client_connection_statistics_io_time_bucket{le="+Inf"} 587 -arangodb_client_connection_statistics_io_time_count 587 -arangodb_client_connection_statistics_io_time_sum 0.039034 +arangodb_client_connection_statistics_io_time_bucket{le="0.01"} 32805 +arangodb_client_connection_statistics_io_time_bucket{le="0.05"} 32805 +arangodb_client_connection_statistics_io_time_bucket{le="0.1"} 32805 +arangodb_client_connection_statistics_io_time_bucket{le="0.2"} 32805 +arangodb_client_connection_statistics_io_time_bucket{le="0.5"} 32805 +arangodb_client_connection_statistics_io_time_bucket{le="1.0"} 32805 +arangodb_client_connection_statistics_io_time_bucket{le="5.0"} 32805 +arangodb_client_connection_statistics_io_time_bucket{le="15.0"} 32805 +arangodb_client_connection_statistics_io_time_bucket{le="30.0"} 32805 +arangodb_client_connection_statistics_io_time_bucket{le="+Inf"} 32805 +arangodb_client_connection_statistics_io_time_count 32805 +arangodb_client_connection_statistics_io_time_sum 2.808333 # HELP arangodb_client_connection_statistics_bytes_sent Bytes sent for a request # TYPE arangodb_client_connection_statistics_bytes_sent histogram -arangodb_client_connection_statistics_bytes_sent_bucket{le="250"} 134 -arangodb_client_connection_statistics_bytes_sent_bucket{le="1000"} 464 -arangodb_client_connection_statistics_bytes_sent_bucket{le="2000"} 584 -arangodb_client_connection_statistics_bytes_sent_bucket{le="5000"} 586 -arangodb_client_connection_statistics_bytes_sent_bucket{le="10000"} 586 -arangodb_client_connection_statistics_bytes_sent_bucket{le="+Inf"} 587 -arangodb_client_connection_statistics_bytes_sent_count 587 -arangodb_client_connection_statistics_bytes_sent_sum 369333.000000 +arangodb_client_connection_statistics_bytes_sent_bucket{le="250"} 404 +arangodb_client_connection_statistics_bytes_sent_bucket{le="1000"} 32390 +arangodb_client_connection_statistics_bytes_sent_bucket{le="2000"} 32772 +arangodb_client_connection_statistics_bytes_sent_bucket{le="5000"} 32797 +arangodb_client_connection_statistics_bytes_sent_bucket{le="10000"} 32801 +arangodb_client_connection_statistics_bytes_sent_bucket{le="+Inf"} 32805 +arangodb_client_connection_statistics_bytes_sent_count 32805 +arangodb_client_connection_statistics_bytes_sent_sum 9853436.000000 # HELP arangodb_client_connection_statistics_bytes_received Bytes received for a request # TYPE arangodb_client_connection_statistics_bytes_received histogram -arangodb_client_connection_statistics_bytes_received_bucket{le="250"} 418 -arangodb_client_connection_statistics_bytes_received_bucket{le="1000"} 587 -arangodb_client_connection_statistics_bytes_received_bucket{le="2000"} 587 -arangodb_client_connection_statistics_bytes_received_bucket{le="5000"} 587 -arangodb_client_connection_statistics_bytes_received_bucket{le="10000"} 587 -arangodb_client_connection_statistics_bytes_received_bucket{le="+Inf"} 587 -arangodb_client_connection_statistics_bytes_received_count 587 -arangodb_client_connection_statistics_bytes_received_sum 125014.000000 +arangodb_client_connection_statistics_bytes_received_bucket{le="250"} 31695 +arangodb_client_connection_statistics_bytes_received_bucket{le="1000"} 32805 +arangodb_client_connection_statistics_bytes_received_bucket{le="2000"} 32805 +arangodb_client_connection_statistics_bytes_received_bucket{le="5000"} 32805 +arangodb_client_connection_statistics_bytes_received_bucket{le="10000"} 32805 +arangodb_client_connection_statistics_bytes_received_bucket{le="+Inf"} 32805 +arangodb_client_connection_statistics_bytes_received_count 32805 +arangodb_client_connection_statistics_bytes_received_sum 7670558.000000 # HELP arangodb_http_request_statistics_async_requests_total Number of asynchronously executed HTTP requests # TYPE arangodb_http_request_statistics_async_requests_total counter @@ -610,11 +626,11 @@ arangodb_http_request_statistics_async_requests_total 0 # HELP arangodb_http_request_statistics_http_delete_requests_total Number of HTTP DELETE requests # TYPE arangodb_http_request_statistics_http_delete_requests_total counter -arangodb_http_request_statistics_http_delete_requests_total 34 +arangodb_http_request_statistics_http_delete_requests_total 103 # HELP arangodb_http_request_statistics_http_get_requests_total Number of HTTP GET requests # TYPE arangodb_http_request_statistics_http_get_requests_total counter -arangodb_http_request_statistics_http_get_requests_total 273 +arangodb_http_request_statistics_http_get_requests_total 906 # HELP arangodb_http_request_statistics_http_head_requests_total Number of HTTP HEAD requests # TYPE arangodb_http_request_statistics_http_head_requests_total counter @@ -630,11 +646,11 @@ arangodb_http_request_statistics_http_patch_requests_total 2 # HELP arangodb_http_request_statistics_http_post_requests_total Number of HTTP POST requests # TYPE arangodb_http_request_statistics_http_post_requests_total counter -arangodb_http_request_statistics_http_post_requests_total 270 +arangodb_http_request_statistics_http_post_requests_total 31764 # HELP arangodb_http_request_statistics_http_put_requests_total Number of HTTP PUT requests # TYPE arangodb_http_request_statistics_http_put_requests_total counter -arangodb_http_request_statistics_http_put_requests_total 8 +arangodb_http_request_statistics_http_put_requests_total 30 # HELP arangodb_http_request_statistics_other_http_requests_total Number of other HTTP requests # TYPE arangodb_http_request_statistics_other_http_requests_total counter @@ -642,7 +658,7 @@ arangodb_http_request_statistics_other_http_requests_total 0 # HELP arangodb_http_request_statistics_total_requests_total Total number of HTTP requests # TYPE arangodb_http_request_statistics_total_requests_total counter -arangodb_http_request_statistics_total_requests_total 587 +arangodb_http_request_statistics_total_requests_total 32805 # HELP arangodb_http_request_statistics_superuser_requests_total Total number of HTTP requests executed by superuser/JWT # TYPE arangodb_http_request_statistics_superuser_requests_total counter @@ -650,11 +666,11 @@ arangodb_http_request_statistics_superuser_requests_total 0 # HELP arangodb_http_request_statistics_user_requests_total Total number of HTTP requests executed by clients # TYPE arangodb_http_request_statistics_user_requests_total counter -arangodb_http_request_statistics_user_requests_total 587 +arangodb_http_request_statistics_user_requests_total 32805 # HELP arangodb_v8_context_alive Number of V8 contexts currently alive # TYPE arangodb_v8_context_alive gauge -arangodb_v8_context_alive 1 +arangodb_v8_context_alive 2 # HELP arangodb_v8_context_busy Number of V8 contexts currently busy # TYPE arangodb_v8_context_busy gauge @@ -666,7 +682,7 @@ arangodb_v8_context_dirty 0 # HELP arangodb_v8_context_free Number of V8 contexts currently free # TYPE arangodb_v8_context_free gauge -arangodb_v8_context_free 1 +arangodb_v8_context_free 2 # HELP arangodb_v8_context_min Minimum number of concurrent V8 contexts # TYPE arangodb_v8_context_min gauge @@ -679,19 +695,19 @@ arangodb_v8_context_max 16 # HELP rocksdb_cache_allocated rocksdb_cache_allocated # TYPE rocksdb_cache_allocated gauge -rocksdb_cache_allocated 1355928 +rocksdb_cache_allocated 1356792 # HELP rocksdb_cache_hit_rate_lifetime rocksdb_cache_hit_rate_lifetime # TYPE rocksdb_cache_hit_rate_lifetime gauge -rocksdb_cache_hit_rate_lifetime 0 +rocksdb_cache_hit_rate_lifetime 4 # HELP rocksdb_cache_hit_rate_recent rocksdb_cache_hit_rate_recent # TYPE rocksdb_cache_hit_rate_recent gauge -rocksdb_cache_hit_rate_recent 0 +rocksdb_cache_hit_rate_recent 4 # HELP rocksdb_cache_limit rocksdb_cache_limit # TYPE rocksdb_cache_limit gauge -rocksdb_cache_limit 8053063680 +rocksdb_cache_limit 16341526528 # HELP rocksdb_actual_delayed_write_rate rocksdb_actual_delayed_write_rate # TYPE rocksdb_actual_delayed_write_rate gauge @@ -707,7 +723,7 @@ rocksdb_base_level 6 # HELP rocksdb_block_cache_capacity rocksdb_block_cache_capacity # TYPE rocksdb_block_cache_capacity gauge -rocksdb_block_cache_capacity 9663676416 +rocksdb_block_cache_capacity 19609831833 # HELP rocksdb_block_cache_pinned_usage rocksdb_block_cache_pinned_usage # TYPE rocksdb_block_cache_pinned_usage gauge @@ -719,7 +735,7 @@ rocksdb_block_cache_usage 0 # HELP rocksdb_compaction_pending rocksdb_compaction_pending # TYPE rocksdb_compaction_pending gauge -rocksdb_compaction_pending 0 +rocksdb_compaction_pending 5 # HELP rocksdb_compression_ratio_at_level0 rocksdb_compression_ratio_at_level0 # TYPE rocksdb_compression_ratio_at_level0 gauge @@ -747,23 +763,23 @@ rocksdb_compression_ratio_at_level5 0 # HELP rocksdb_compression_ratio_at_level6 rocksdb_compression_ratio_at_level6 # TYPE rocksdb_compression_ratio_at_level6 gauge -rocksdb_compression_ratio_at_level6 0 +rocksdb_compression_ratio_at_level6 4 # HELP rocksdb_cur_size_active_mem_table rocksdb_cur_size_active_mem_table # TYPE rocksdb_cur_size_active_mem_table gauge -rocksdb_cur_size_active_mem_table 67114088 +rocksdb_cur_size_active_mem_table 73405952 # HELP rocksdb_cur_size_all_mem_tables rocksdb_cur_size_all_mem_tables # TYPE rocksdb_cur_size_all_mem_tables gauge -rocksdb_cur_size_all_mem_tables 67114088 +rocksdb_cur_size_all_mem_tables 73405952 # HELP rocksdb_estimate_live_data_size rocksdb_estimate_live_data_size # TYPE rocksdb_estimate_live_data_size gauge -rocksdb_estimate_live_data_size 14428 +rocksdb_estimate_live_data_size 1508729 # HELP rocksdb_estimate_num_keys rocksdb_estimate_num_keys # TYPE rocksdb_estimate_num_keys gauge -rocksdb_estimate_num_keys 25 +rocksdb_estimate_num_keys 6 # HELP rocksdb_estimate_pending_compaction_bytes rocksdb_estimate_pending_compaction_bytes # TYPE rocksdb_estimate_pending_compaction_bytes gauge @@ -771,15 +787,15 @@ rocksdb_estimate_pending_compaction_bytes 0 # HELP rocksdb_estimate_table_readers_mem rocksdb_estimate_table_readers_mem # TYPE rocksdb_estimate_table_readers_mem gauge -rocksdb_estimate_table_readers_mem 919 +rocksdb_estimate_table_readers_mem 91488 # HELP rocksdb_free_disk_space rocksdb_free_disk_space # TYPE rocksdb_free_disk_space gauge -rocksdb_free_disk_space 52822649339904 +rocksdb_free_disk_space 365944205312 # HELP rocksdb_free_inodes rocksdb_free_inodes # TYPE rocksdb_free_inodes gauge -rocksdb_free_inodes 585049570 +rocksdb_free_inodes 27288645 # HELP rocksdb_is_file_deletions_enabled rocksdb_is_file_deletions_enabled # TYPE rocksdb_is_file_deletions_enabled gauge @@ -791,7 +807,7 @@ rocksdb_is_write_stopped 0 # HELP rocksdb_live_sst_files_size rocksdb_live_sst_files_size # TYPE rocksdb_live_sst_files_size gauge -rocksdb_live_sst_files_size 14428 +rocksdb_live_sst_files_size 1508729 # HELP rocksdb_mem_table_flush_pending rocksdb_mem_table_flush_pending # TYPE rocksdb_mem_table_flush_pending gauge @@ -811,7 +827,7 @@ rocksdb_num_deletes_imm_mem_tables 0 # HELP rocksdb_num_entries_active_mem_table rocksdb_num_entries_active_mem_table # TYPE rocksdb_num_entries_active_mem_table gauge -rocksdb_num_entries_active_mem_table 0 +rocksdb_num_entries_active_mem_table 6 # HELP rocksdb_num_entries_imm_mem_tables rocksdb_num_entries_imm_mem_tables # TYPE rocksdb_num_entries_imm_mem_tables gauge @@ -843,7 +859,7 @@ rocksdb_num_files_at_level5 0 # HELP rocksdb_num_files_at_level6 rocksdb_num_files_at_level6 # TYPE rocksdb_num_files_at_level6 gauge -rocksdb_num_files_at_level6 4 +rocksdb_num_files_at_level6 6 # HELP rocksdb_num_immutable_mem_table rocksdb_num_immutable_mem_table # TYPE rocksdb_num_immutable_mem_table gauge @@ -859,7 +875,7 @@ rocksdb_num_live_versions 7 # HELP rocksdb_num_running_compactions rocksdb_num_running_compactions # TYPE rocksdb_num_running_compactions gauge -rocksdb_num_running_compactions 0 +rocksdb_num_running_compactions 1 # HELP rocksdb_num_running_flushes rocksdb_num_running_flushes # TYPE rocksdb_num_running_flushes gauge @@ -873,25 +889,21 @@ rocksdb_num_snapshots 0 # TYPE rocksdb_oldest_snapshot_time gauge rocksdb_oldest_snapshot_time 0 -# HELP rocksdb_read_only rocksdb_read_only -# TYPE rocksdb_read_only gauge -rocksdb_read_only 0 - # HELP rocksdb_size_all_mem_tables rocksdb_size_all_mem_tables # TYPE rocksdb_size_all_mem_tables gauge -rocksdb_size_all_mem_tables 121149696 +rocksdb_size_all_mem_tables 142166152 # HELP rocksdb_total_disk_space rocksdb_total_disk_space # TYPE rocksdb_total_disk_space gauge -rocksdb_total_disk_space 127990572777472 +rocksdb_total_disk_space 502996557824 # HELP rocksdb_total_inodes rocksdb_total_inodes # TYPE rocksdb_total_inodes gauge -rocksdb_total_inodes 587485584 +rocksdb_total_inodes 31260672 # HELP rocksdb_total_sst_files_size rocksdb_total_sst_files_size # TYPE rocksdb_total_sst_files_size gauge -rocksdb_total_sst_files_size 14428 +rocksdb_total_sst_files_size 1508729 # HELP rocksdb_engine_throttle_bps rocksdb_engine_throttle_bps # TYPE rocksdb_engine_throttle_bps gauge diff --git a/3.9/generated/Examples/RestAdminStatistics1.generated b/3.9/generated/Examples/RestAdminStatistics1.generated index 2e768239df..95e245e58d 100644 --- a/3.9/generated/Examples/RestAdminStatistics1.generated +++ b/3.9/generated/Examples/RestAdminStatistics1.generated @@ -1,74 +1,74 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_admin/statistics +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_admin/statistics HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 2081 +content-length: 2240 server: ArangoDB x-content-type-options: nosniff { - "time" : 1628086045.893782, - "enabled" : true, - "system" : { - "minorPageFaults" : 51377, - "majorPageFaults" : 3515, - "userTime" : 0.489507, - "systemTime" : 0.198132, - "numberOfThreads" : 47, - "residentSize" : 215318528, - "residentSizePercent" : 0.006266593933105469, - "virtualSize" : 6194122752 + "time" : 1621938175.7288253, + "enabled" : true, + "system" : { + "minorPageFaults" : 76802, + "majorPageFaults" : 0, + "userTime" : 6.66, + "systemTime" : 3.05, + "numberOfThreads" : 51, + "residentSize" : 314568704, + "residentSizePercent" : 0.004975778076371543, + "virtualSize" : 1363283968 }, - "client" : { - "httpConnections" : 2, - "connectionTime" : { - "sum" : 0, - "count" : 0, - "counts" : [ + "client" : { + "httpConnections" : 2, + "connectionTime" : { + "sum" : 0, + "count" : 0, + "counts" : [ 0, 0, 0, 0 ] }, - "totalTime" : { - "sum" : 0.19780850410461426, - "count" : 587, - "counts" : [ - 586, + "totalTime" : { + "sum" : 6.609935283660889, + "count" : 32805, + "counts" : [ + 32799, + 4, 1, 0, 0, - 0, - 0, + 1, 0, 0, 0, 0 ] }, - "requestTime" : { - "sum" : 0.15467500686645508, - "count" : 587, - "counts" : [ - 586, + "requestTime" : { + "sum" : 3.635378360748291, + "count" : 32805, + "counts" : [ + 32799, + 4, 1, 0, 0, - 0, - 0, + 1, 0, 0, 0, 0 ] }, - "queueTime" : { - "sum" : 0.004099369049072266, - "count" : 587, - "counts" : [ - 587, + "queueTime" : { + "sum" : 0.9438483715057373, + "count" : 32805, + "counts" : [ + 32805, 0, 0, 0, @@ -80,11 +80,11 @@ x-content-type-options: nosniff 0 ] }, - "ioTime" : { - "sum" : 0.039034128189086914, - "count" : 587, - "counts" : [ - 587, + "ioTime" : { + "sum" : 2.0307085514068604, + "count" : 32805, + "counts" : [ + 32805, 0, 0, 0, @@ -96,24 +96,24 @@ x-content-type-options: nosniff 0 ] }, - "bytesSent" : { - "sum" : 369333, - "count" : 587, - "counts" : [ - 134, - 330, - 120, - 2, - 0, - 1 + "bytesSent" : { + "sum" : 9853578, + "count" : 32805, + "counts" : [ + 404, + 31986, + 382, + 25, + 4, + 4 ] }, - "bytesReceived" : { - "sum" : 125014, - "count" : 587, - "counts" : [ - 418, - 169, + "bytesReceived" : { + "sum" : 7670553, + "count" : 32805, + "counts" : [ + 31699, + 1106, 0, 0, 0, @@ -121,55 +121,55 @@ x-content-type-options: nosniff ] } }, - "clientUser" : { - "httpConnections" : 2, - "connectionTime" : { - "sum" : 0, - "count" : 0, - "counts" : [ + "clientUser" : { + "httpConnections" : 2, + "connectionTime" : { + "sum" : 0, + "count" : 0, + "counts" : [ 0, 0, 0, 0 ] }, - "totalTime" : { - "sum" : 0.19780850410461426, - "count" : 587, - "counts" : [ - 586, + "totalTime" : { + "sum" : 6.609935283660889, + "count" : 32805, + "counts" : [ + 32799, + 4, 1, 0, 0, - 0, - 0, + 1, 0, 0, 0, 0 ] }, - "requestTime" : { - "sum" : 0.15467500686645508, - "count" : 587, - "counts" : [ - 586, + "requestTime" : { + "sum" : 3.635378360748291, + "count" : 32805, + "counts" : [ + 32799, + 4, 1, 0, 0, - 0, - 0, + 1, 0, 0, 0, 0 ] }, - "queueTime" : { - "sum" : 0.004099369049072266, - "count" : 587, - "counts" : [ - 587, + "queueTime" : { + "sum" : 0.9438483715057373, + "count" : 32805, + "counts" : [ + 32805, 0, 0, 0, @@ -181,11 +181,11 @@ x-content-type-options: nosniff 0 ] }, - "ioTime" : { - "sum" : 0.039034128189086914, - "count" : 587, - "counts" : [ - 587, + "ioTime" : { + "sum" : 2.0307085514068604, + "count" : 32805, + "counts" : [ + 32805, 0, 0, 0, @@ -197,24 +197,24 @@ x-content-type-options: nosniff 0 ] }, - "bytesSent" : { - "sum" : 369333, - "count" : 587, - "counts" : [ - 134, - 330, - 120, - 2, - 0, - 1 + "bytesSent" : { + "sum" : 9853578, + "count" : 32805, + "counts" : [ + 404, + 31986, + 382, + 25, + 4, + 4 ] }, - "bytesReceived" : { - "sum" : 125014, - "count" : 587, - "counts" : [ - 418, - 169, + "bytesReceived" : { + "sum" : 7670553, + "count" : 32805, + "counts" : [ + 31699, + 1106, 0, 0, 0, @@ -222,55 +222,63 @@ x-content-type-options: nosniff ] } }, - "http" : { - "requestsTotal" : 587, - "requestsSuperuser" : 0, - "requestsUser" : 587, - "requestsAsync" : 0, - "requestsGet" : 273, - "requestsHead" : 0, - "requestsPost" : 270, - "requestsPut" : 8, - "requestsPatch" : 2, - "requestsDelete" : 34, - "requestsOptions" : 0, - "requestsOther" : 0 + "http" : { + "requestsTotal" : 32805, + "requestsSuperuser" : 0, + "requestsUser" : 32805, + "requestsAsync" : 0, + "requestsGet" : 906, + "requestsHead" : 0, + "requestsPost" : 31764, + "requestsPut" : 30, + "requestsPatch" : 2, + "requestsDelete" : 103, + "requestsOptions" : 0, + "requestsOther" : 0 }, - "server" : { - "uptime" : 1.5412790775299072, - "physicalMemory" : 34359738368, - "transactions" : { - "started" : 770, - "aborted" : 131, - "committed" : 639, - "intermediateCommits" : 0 + "server" : { + "uptime" : 14.747324705123901, + "physicalMemory" : 63220002816, + "transactions" : { + "started" : 33116, + "aborted" : 292, + "committed" : 32824, + "intermediateCommits" : 0 }, - "v8Context" : { - "available" : 1, - "busy" : 0, - "dirty" : 0, - "free" : 1, - "max" : 16, - "min" : 1, - "memory" : [ + "v8Context" : { + "available" : 2, + "busy" : 0, + "dirty" : 0, + "free" : 2, + "max" : 16, + "min" : 1, + "memory" : [ + { + "contextId" : 0, + "tMax" : 1621938161.3602166, + "countOfTimes" : 7, + "heapMax" : 12417728, + "heapMin" : 0, + "invocations" : 25 + }, { - "contextId" : 0, - "tMax" : 1628086044.701857, - "countOfTimes" : 8, - "heapMax" : 12784008, - "heapMin" : 0, - "invocations" : 8 + "contextId" : 1, + "tMax" : 1621938174.6807811, + "countOfTimes" : 7, + "heapMax" : 12417768, + "heapMin" : 0, + "invocations" : 3 } ] }, - "threads" : { - "scheduler-threads" : 4, - "blocked" : 0, - "queued" : 1, - "in-progress" : 1, - "direct-exec" : 0 + "threads" : { + "scheduler-threads" : 4, + "blocked" : 0, + "queued" : 1, + "in-progress" : 1, + "direct-exec" : 0 } }, - "error" : false, - "code" : 200 + "error" : false, + "code" : 200 } diff --git a/3.9/generated/Examples/RestAdminStatisticsDescription1.generated b/3.9/generated/Examples/RestAdminStatisticsDescription1.generated index fdf9095f8d..e744310116 100644 --- a/3.9/generated/Examples/RestAdminStatisticsDescription1.generated +++ b/3.9/generated/Examples/RestAdminStatisticsDescription1.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_admin/statistics-description +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_admin/statistics-description HTTP/1.1 200 OK content-type: application/json @@ -8,113 +8,113 @@ server: ArangoDB x-content-type-options: nosniff { - "groups" : [ + "groups" : [ { - "group" : "system", - "name" : "Process Statistics", - "description" : "Statistics about the ArangoDB process" + "group" : "system", + "name" : "Process Statistics", + "description" : "Statistics about the ArangoDB process" }, { - "group" : "client", - "name" : "Client Connection Statistics", - "description" : "Statistics about the connections." + "group" : "client", + "name" : "Client Connection Statistics", + "description" : "Statistics about the connections." }, { - "group" : "clientUser", - "name" : "Client User Connection Statistics", - "description" : "Statistics about the connections, only user traffic (ignoring superuser JWT traffic)." + "group" : "clientUser", + "name" : "Client User Connection Statistics", + "description" : "Statistics about the connections, only user traffic (ignoring superuser JWT traffic)." }, { - "group" : "http", - "name" : "HTTP Request Statistics", - "description" : "Statistics about the HTTP requests." + "group" : "http", + "name" : "HTTP Request Statistics", + "description" : "Statistics about the HTTP requests." }, { - "group" : "server", - "name" : "Server Statistics", - "description" : "Statistics about the ArangoDB server" + "group" : "server", + "name" : "Server Statistics", + "description" : "Statistics about the ArangoDB server" } ], - "figures" : [ - { - "group" : "system", - "identifier" : "userTime", - "name" : "User Time", - "description" : "Amount of time that this process has been scheduled in user mode, measured in seconds.", - "type" : "accumulated", - "units" : "seconds" - }, - { - "group" : "system", - "identifier" : "systemTime", - "name" : "System Time", - "description" : "Amount of time that this process has been scheduled in kernel mode, measured in seconds.", - "type" : "accumulated", - "units" : "seconds" - }, - { - "group" : "system", - "identifier" : "numberOfThreads", - "name" : "Number of Threads", - "description" : "Number of threads in the arangod process.", - "type" : "current", - "units" : "number" - }, - { - "group" : "system", - "identifier" : "residentSize", - "name" : "Resident Set Size", - "description" : "The total size of the number of pages the process has in real memory. This is just the pages which count toward text, data, or stack space. This does not include pages which have not been demand-loaded in, or which are swapped out. The resident set size is reported in bytes.", - "type" : "current", - "units" : "bytes" - }, - { - "group" : "system", - "identifier" : "residentSizePercent", - "name" : "Resident Set Size", - "description" : "The percentage of physical memory used by the process as resident set size.", - "type" : "current", - "units" : "percent" - }, - { - "group" : "system", - "identifier" : "virtualSize", - "name" : "Virtual Memory Size", - "description" : "On Windows, this figure contains the total amount of memory that the memory manager has committed for the arangod process. On other systems, this figure contains The size of the virtual memory the process is using.", - "type" : "current", - "units" : "bytes" - }, - { - "group" : "system", - "identifier" : "minorPageFaults", - "name" : "Minor Page Faults", - "description" : "The number of minor faults the process has made which have not required loading a memory page from disk. This figure is not reported on Windows.", - "type" : "accumulated", - "units" : "number" - }, - { - "group" : "system", - "identifier" : "majorPageFaults", - "name" : "Major Page Faults", - "description" : "On Windows, this figure contains the total number of page faults. On other system, this figure contains the number of major faults the process has made which have required loading a memory page from disk.", - "type" : "accumulated", - "units" : "number" - }, - { - "group" : "client", - "identifier" : "httpConnections", - "name" : "Client Connections", - "description" : "The number of connections that are currently open.", - "type" : "current", - "units" : "number" - }, - { - "group" : "client", - "identifier" : "totalTime", - "name" : "Total Time", - "description" : "Total time needed to answer a request.", - "type" : "distribution", - "cuts" : [ + "figures" : [ + { + "group" : "system", + "identifier" : "userTime", + "name" : "User Time", + "description" : "Amount of time that this process has been scheduled in user mode, measured in seconds.", + "type" : "accumulated", + "units" : "seconds" + }, + { + "group" : "system", + "identifier" : "systemTime", + "name" : "System Time", + "description" : "Amount of time that this process has been scheduled in kernel mode, measured in seconds.", + "type" : "accumulated", + "units" : "seconds" + }, + { + "group" : "system", + "identifier" : "numberOfThreads", + "name" : "Number of Threads", + "description" : "Number of threads in the arangod process.", + "type" : "current", + "units" : "number" + }, + { + "group" : "system", + "identifier" : "residentSize", + "name" : "Resident Set Size", + "description" : "The total size of the number of pages the process has in real memory. This is just the pages which count toward text, data, or stack space. This does not include pages which have not been demand-loaded in, or which are swapped out. The resident set size is reported in bytes.", + "type" : "current", + "units" : "bytes" + }, + { + "group" : "system", + "identifier" : "residentSizePercent", + "name" : "Resident Set Size", + "description" : "The percentage of physical memory used by the process as resident set size.", + "type" : "current", + "units" : "percent" + }, + { + "group" : "system", + "identifier" : "virtualSize", + "name" : "Virtual Memory Size", + "description" : "On Windows, this figure contains the total amount of memory that the memory manager has committed for the arangod process. On other systems, this figure contains The size of the virtual memory the process is using.", + "type" : "current", + "units" : "bytes" + }, + { + "group" : "system", + "identifier" : "minorPageFaults", + "name" : "Minor Page Faults", + "description" : "The number of minor faults the process has made which have not required loading a memory page from disk. This figure is not reported on Windows.", + "type" : "accumulated", + "units" : "number" + }, + { + "group" : "system", + "identifier" : "majorPageFaults", + "name" : "Major Page Faults", + "description" : "On Windows, this figure contains the total number of page faults. On other system, this figure contains the number of major faults the process has made which have required loading a memory page from disk.", + "type" : "accumulated", + "units" : "number" + }, + { + "group" : "client", + "identifier" : "httpConnections", + "name" : "Client Connections", + "description" : "The number of connections that are currently open.", + "type" : "current", + "units" : "number" + }, + { + "group" : "client", + "identifier" : "totalTime", + "name" : "Total Time", + "description" : "Total time needed to answer a request.", + "type" : "distribution", + "cuts" : [ 0.01, 0.05, 0.1, @@ -125,15 +125,15 @@ x-content-type-options: nosniff 15, 30 ], - "units" : "seconds" + "units" : "seconds" }, { - "group" : "client", - "identifier" : "requestTime", - "name" : "Request Time", - "description" : "Request time needed to answer a request.", - "type" : "distribution", - "cuts" : [ + "group" : "client", + "identifier" : "requestTime", + "name" : "Request Time", + "description" : "Request time needed to answer a request.", + "type" : "distribution", + "cuts" : [ 0.01, 0.05, 0.1, @@ -144,15 +144,15 @@ x-content-type-options: nosniff 15, 30 ], - "units" : "seconds" + "units" : "seconds" }, { - "group" : "client", - "identifier" : "queueTime", - "name" : "Queue Time", - "description" : "Queue time needed to answer a request.", - "type" : "distribution", - "cuts" : [ + "group" : "client", + "identifier" : "queueTime", + "name" : "Queue Time", + "description" : "Queue time needed to answer a request.", + "type" : "distribution", + "cuts" : [ 0.01, 0.05, 0.1, @@ -163,66 +163,66 @@ x-content-type-options: nosniff 15, 30 ], - "units" : "seconds" + "units" : "seconds" }, { - "group" : "client", - "identifier" : "bytesSent", - "name" : "Bytes Sent", - "description" : "Bytes sents for a request.", - "type" : "distribution", - "cuts" : [ + "group" : "client", + "identifier" : "bytesSent", + "name" : "Bytes Sent", + "description" : "Bytes sents for a request.", + "type" : "distribution", + "cuts" : [ 250, 1000, 2000, 5000, 10000 ], - "units" : "bytes" + "units" : "bytes" }, { - "group" : "client", - "identifier" : "bytesReceived", - "name" : "Bytes Received", - "description" : "Bytes received for a request.", - "type" : "distribution", - "cuts" : [ + "group" : "client", + "identifier" : "bytesReceived", + "name" : "Bytes Received", + "description" : "Bytes received for a request.", + "type" : "distribution", + "cuts" : [ 250, 1000, 2000, 5000, 10000 ], - "units" : "bytes" + "units" : "bytes" }, { - "group" : "client", - "identifier" : "connectionTime", - "name" : "Connection Time", - "description" : "Total connection time of a client.", - "type" : "distribution", - "cuts" : [ + "group" : "client", + "identifier" : "connectionTime", + "name" : "Connection Time", + "description" : "Total connection time of a client.", + "type" : "distribution", + "cuts" : [ 0.1, 1, 60 ], - "units" : "seconds" + "units" : "seconds" }, { - "group" : "clientUser", - "identifier" : "httpConnections", - "name" : "Client Connections", - "description" : "The number of connections that are currently open (only user traffic).", - "type" : "current", - "units" : "number" + "group" : "clientUser", + "identifier" : "httpConnections", + "name" : "Client Connections", + "description" : "The number of connections that are currently open (only user traffic).", + "type" : "current", + "units" : "number" }, { - "group" : "clientUser", - "identifier" : "totalTime", - "name" : "Total Time", - "description" : "Total time needed to answer a request (only user traffic).", - "type" : "distribution", - "cuts" : [ + "group" : "clientUser", + "identifier" : "totalTime", + "name" : "Total Time", + "description" : "Total time needed to answer a request (only user traffic).", + "type" : "distribution", + "cuts" : [ 0.01, 0.05, 0.1, @@ -233,15 +233,15 @@ x-content-type-options: nosniff 15, 30 ], - "units" : "seconds" + "units" : "seconds" }, { - "group" : "clientUser", - "identifier" : "requestTime", - "name" : "Request Time", - "description" : "Request time needed to answer a request (only user traffic).", - "type" : "distribution", - "cuts" : [ + "group" : "clientUser", + "identifier" : "requestTime", + "name" : "Request Time", + "description" : "Request time needed to answer a request (only user traffic).", + "type" : "distribution", + "cuts" : [ 0.01, 0.05, 0.1, @@ -252,15 +252,15 @@ x-content-type-options: nosniff 15, 30 ], - "units" : "seconds" + "units" : "seconds" }, { - "group" : "clientUser", - "identifier" : "queueTime", - "name" : "Queue Time", - "description" : "Queue time needed to answer a request (only user traffic).", - "type" : "distribution", - "cuts" : [ + "group" : "clientUser", + "identifier" : "queueTime", + "name" : "Queue Time", + "description" : "Queue time needed to answer a request (only user traffic).", + "type" : "distribution", + "cuts" : [ 0.01, 0.05, 0.1, @@ -271,164 +271,164 @@ x-content-type-options: nosniff 15, 30 ], - "units" : "seconds" + "units" : "seconds" }, { - "group" : "clientUser", - "identifier" : "bytesSent", - "name" : "Bytes Sent", - "description" : "Bytes sents for a request (only user traffic).", - "type" : "distribution", - "cuts" : [ + "group" : "clientUser", + "identifier" : "bytesSent", + "name" : "Bytes Sent", + "description" : "Bytes sents for a request (only user traffic).", + "type" : "distribution", + "cuts" : [ 250, 1000, 2000, 5000, 10000 ], - "units" : "bytes" + "units" : "bytes" }, { - "group" : "clientUser", - "identifier" : "bytesReceived", - "name" : "Bytes Received", - "description" : "Bytes received for a request (only user traffic).", - "type" : "distribution", - "cuts" : [ + "group" : "clientUser", + "identifier" : "bytesReceived", + "name" : "Bytes Received", + "description" : "Bytes received for a request (only user traffic).", + "type" : "distribution", + "cuts" : [ 250, 1000, 2000, 5000, 10000 ], - "units" : "bytes" + "units" : "bytes" }, { - "group" : "clientUser", - "identifier" : "connectionTime", - "name" : "Connection Time", - "description" : "Total connection time of a client (only user traffic).", - "type" : "distribution", - "cuts" : [ + "group" : "clientUser", + "identifier" : "connectionTime", + "name" : "Connection Time", + "description" : "Total connection time of a client (only user traffic).", + "type" : "distribution", + "cuts" : [ 0.1, 1, 60 ], - "units" : "seconds" + "units" : "seconds" }, { - "group" : "http", - "identifier" : "requestsTotal", - "name" : "Total requests", - "description" : "Total number of HTTP requests.", - "type" : "accumulated", - "units" : "number" + "group" : "http", + "identifier" : "requestsTotal", + "name" : "Total requests", + "description" : "Total number of HTTP requests.", + "type" : "accumulated", + "units" : "number" }, { - "group" : "http", - "identifier" : "requestsSuperuser", - "name" : "Total superuser requests", - "description" : "Total number of HTTP requests executed by superuser/JWT.", - "type" : "accumulated", - "units" : "number" + "group" : "http", + "identifier" : "requestsSuperuser", + "name" : "Total superuser requests", + "description" : "Total number of HTTP requests executed by superuser/JWT.", + "type" : "accumulated", + "units" : "number" }, { - "group" : "http", - "identifier" : "requestsUser", - "name" : "Total user requests", - "description" : "Total number of HTTP requests executed by clients.", - "type" : "accumulated", - "units" : "number" + "group" : "http", + "identifier" : "requestsUser", + "name" : "Total user requests", + "description" : "Total number of HTTP requests executed by clients.", + "type" : "accumulated", + "units" : "number" }, { - "group" : "http", - "identifier" : "requestsAsync", - "name" : "Async requests", - "description" : "Number of asynchronously executed HTTP requests.", - "type" : "accumulated", - "units" : "number" + "group" : "http", + "identifier" : "requestsAsync", + "name" : "Async requests", + "description" : "Number of asynchronously executed HTTP requests.", + "type" : "accumulated", + "units" : "number" }, { - "group" : "http", - "identifier" : "requestsGet", - "name" : "HTTP GET requests", - "description" : "Number of HTTP GET requests.", - "type" : "accumulated", - "units" : "number" + "group" : "http", + "identifier" : "requestsGet", + "name" : "HTTP GET requests", + "description" : "Number of HTTP GET requests.", + "type" : "accumulated", + "units" : "number" }, { - "group" : "http", - "identifier" : "requestsHead", - "name" : "HTTP HEAD requests", - "description" : "Number of HTTP HEAD requests.", - "type" : "accumulated", - "units" : "number" + "group" : "http", + "identifier" : "requestsHead", + "name" : "HTTP HEAD requests", + "description" : "Number of HTTP HEAD requests.", + "type" : "accumulated", + "units" : "number" }, { - "group" : "http", - "identifier" : "requestsPost", - "name" : "HTTP POST requests", - "description" : "Number of HTTP POST requests.", - "type" : "accumulated", - "units" : "number" + "group" : "http", + "identifier" : "requestsPost", + "name" : "HTTP POST requests", + "description" : "Number of HTTP POST requests.", + "type" : "accumulated", + "units" : "number" }, { - "group" : "http", - "identifier" : "requestsPut", - "name" : "HTTP PUT requests", - "description" : "Number of HTTP PUT requests.", - "type" : "accumulated", - "units" : "number" + "group" : "http", + "identifier" : "requestsPut", + "name" : "HTTP PUT requests", + "description" : "Number of HTTP PUT requests.", + "type" : "accumulated", + "units" : "number" }, { - "group" : "http", - "identifier" : "requestsPatch", - "name" : "HTTP PATCH requests", - "description" : "Number of HTTP PATCH requests.", - "type" : "accumulated", - "units" : "number" + "group" : "http", + "identifier" : "requestsPatch", + "name" : "HTTP PATCH requests", + "description" : "Number of HTTP PATCH requests.", + "type" : "accumulated", + "units" : "number" }, { - "group" : "http", - "identifier" : "requestsDelete", - "name" : "HTTP DELETE requests", - "description" : "Number of HTTP DELETE requests.", - "type" : "accumulated", - "units" : "number" + "group" : "http", + "identifier" : "requestsDelete", + "name" : "HTTP DELETE requests", + "description" : "Number of HTTP DELETE requests.", + "type" : "accumulated", + "units" : "number" }, { - "group" : "http", - "identifier" : "requestsOptions", - "name" : "HTTP OPTIONS requests", - "description" : "Number of HTTP OPTIONS requests.", - "type" : "accumulated", - "units" : "number" + "group" : "http", + "identifier" : "requestsOptions", + "name" : "HTTP OPTIONS requests", + "description" : "Number of HTTP OPTIONS requests.", + "type" : "accumulated", + "units" : "number" }, { - "group" : "http", - "identifier" : "requestsOther", - "name" : "other HTTP requests", - "description" : "Number of other HTTP requests.", - "type" : "accumulated", - "units" : "number" + "group" : "http", + "identifier" : "requestsOther", + "name" : "other HTTP requests", + "description" : "Number of other HTTP requests.", + "type" : "accumulated", + "units" : "number" }, { - "group" : "server", - "identifier" : "uptime", - "name" : "Server Uptime", - "description" : "Number of seconds elapsed since server start.", - "type" : "current", - "units" : "seconds" - }, + "group" : "server", + "identifier" : "uptime", + "name" : "Server Uptime", + "description" : "Number of seconds elapsed since server start.", + "type" : "current", + "units" : "seconds" + }, { - "group" : "server", - "identifier" : "physicalMemory", - "name" : "Physical Memory", - "description" : "Physical memory in bytes.", - "type" : "current", - "units" : "bytes" + "group" : "server", + "identifier" : "physicalMemory", + "name" : "Physical Memory", + "description" : "Physical memory in bytes.", + "type" : "current", + "units" : "bytes" } ], - "error" : false, - "code" : 200 + "error" : false, + "code" : 200 } diff --git a/3.9/generated/Examples/RestAnalyzerDelete.generated b/3.9/generated/Examples/RestAnalyzerDelete.generated index e3b26b3bea..f26b51d7eb 100644 --- a/3.9/generated/Examples/RestAnalyzerDelete.generated +++ b/3.9/generated/Examples/RestAnalyzerDelete.generated @@ -1,4 +1,4 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/analyzer/testAnalyzer +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/analyzer/testAnalyzer HTTP/1.1 200 OK content-type: application/json @@ -8,7 +8,7 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "name" : "_system::testAnalyzer" + "error" : false, + "code" : 200, + "name" : "_system::testAnalyzer" } diff --git a/3.9/generated/Examples/RestAnalyzerDeleteForce.generated b/3.9/generated/Examples/RestAnalyzerDeleteForce.generated index ef005452fa..b95f853c49 100644 --- a/3.9/generated/Examples/RestAnalyzerDeleteForce.generated +++ b/3.9/generated/Examples/RestAnalyzerDeleteForce.generated @@ -1,26 +1,26 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/collection <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/collection <<EOF { - "name" : "testCollection" + "name" : "testCollection" } EOF -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/view <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/view <<EOF { - "name" : "testView", - "type" : "arangosearch", - "links" : { - "testCollection" : { - "analyzers" : [ - "testAnalyzer" + "name" : "testView", + "type" : "arangosearch", + "links" : { + "testCollection" : { + "analyzers" : [ + "testAnalyzer" ] } } } EOF -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/analyzer/testAnalyzer?force=false +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/analyzer/testAnalyzer?force=false -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/analyzer/testAnalyzer?force=true +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/analyzer/testAnalyzer?force=true HTTP/1.1 200 OK content-type: application/json @@ -30,7 +30,7 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "name" : "_system::testAnalyzer" + "error" : false, + "code" : 200, + "name" : "_system::testAnalyzer" } diff --git a/3.9/generated/Examples/RestAnalyzerGet.generated b/3.9/generated/Examples/RestAnalyzerGet.generated index 6affa1507f..873723999c 100644 --- a/3.9/generated/Examples/RestAnalyzerGet.generated +++ b/3.9/generated/Examples/RestAnalyzerGet.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/analyzer/testAnalyzer +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/analyzer/testAnalyzer HTTP/1.1 200 OK content-type: application/json @@ -8,11 +8,11 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "type" : "identity", - "properties" : { + "error" : false, + "code" : 200, + "type" : "identity", + "properties" : { }, - "name" : "_system::testAnalyzer", - "features" : [ ] + "name" : "_system::testAnalyzer", + "features" : [ ] } diff --git a/3.9/generated/Examples/RestAnalyzerPost.generated b/3.9/generated/Examples/RestAnalyzerPost.generated index 0675de301c..fb596c976c 100644 --- a/3.9/generated/Examples/RestAnalyzerPost.generated +++ b/3.9/generated/Examples/RestAnalyzerPost.generated @@ -1,7 +1,7 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/analyzer <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/analyzer <<EOF { - "name" : "testAnalyzer", - "type" : "identity" + "name" : "testAnalyzer", + "type" : "identity" } EOF @@ -13,9 +13,9 @@ server: ArangoDB x-content-type-options: nosniff { - "name" : "_system::testAnalyzer", - "type" : "identity", - "properties" : { + "name" : "_system::testAnalyzer", + "type" : "identity", + "properties" : { }, - "features" : [ ] + "features" : [ ] } diff --git a/3.9/generated/Examples/RestAnalyzersGet.generated b/3.9/generated/Examples/RestAnalyzersGet.generated index c9f34d262a..b79d25867d 100644 --- a/3.9/generated/Examples/RestAnalyzersGet.generated +++ b/3.9/generated/Examples/RestAnalyzersGet.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/analyzer +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/analyzer HTTP/1.1 200 OK content-type: application/json @@ -8,209 +8,209 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "result" : [ + "error" : false, + "code" : 200, + "result" : [ { - "name" : "text_ru", - "type" : "text", - "properties" : { - "locale" : "ru.utf-8", - "case" : "lower", - "stopwords" : [ ], - "accent" : false, - "stemming" : true + "name" : "text_zh", + "type" : "text", + "properties" : { + "locale" : "zh.utf-8", + "case" : "lower", + "stopwords" : [ ], + "accent" : false, + "stemming" : true }, - "features" : [ - "frequency", - "norm", - "position" + "features" : [ + "frequency", + "norm", + "position" ] }, { - "name" : "text_sv", - "type" : "text", - "properties" : { - "locale" : "sv.utf-8", - "case" : "lower", - "stopwords" : [ ], - "accent" : false, - "stemming" : true + "name" : "text_sv", + "type" : "text", + "properties" : { + "locale" : "sv.utf-8", + "case" : "lower", + "stopwords" : [ ], + "accent" : false, + "stemming" : true }, - "features" : [ - "frequency", - "norm", - "position" + "features" : [ + "frequency", + "norm", + "position" ] }, { - "name" : "text_nl", - "type" : "text", - "properties" : { - "locale" : "nl.utf-8", - "case" : "lower", - "stopwords" : [ ], - "accent" : false, - "stemming" : true + "name" : "text_nl", + "type" : "text", + "properties" : { + "locale" : "nl.utf-8", + "case" : "lower", + "stopwords" : [ ], + "accent" : false, + "stemming" : true }, - "features" : [ - "frequency", - "norm", - "position" + "features" : [ + "frequency", + "norm", + "position" ] }, { - "name" : "text_no", - "type" : "text", - "properties" : { - "locale" : "no.utf-8", - "case" : "lower", - "stopwords" : [ ], - "accent" : false, - "stemming" : true + "name" : "text_it", + "type" : "text", + "properties" : { + "locale" : "it.utf-8", + "case" : "lower", + "stopwords" : [ ], + "accent" : false, + "stemming" : true }, - "features" : [ - "frequency", - "norm", - "position" + "features" : [ + "frequency", + "norm", + "position" ] }, { - "name" : "text_fr", - "type" : "text", - "properties" : { - "locale" : "fr.utf-8", - "case" : "lower", - "stopwords" : [ ], - "accent" : false, - "stemming" : true + "name" : "text_fr", + "type" : "text", + "properties" : { + "locale" : "fr.utf-8", + "case" : "lower", + "stopwords" : [ ], + "accent" : false, + "stemming" : true }, - "features" : [ - "frequency", - "norm", - "position" + "features" : [ + "frequency", + "norm", + "position" ] }, { - "name" : "text_pt", - "type" : "text", - "properties" : { - "locale" : "pt.utf-8", - "case" : "lower", - "stopwords" : [ ], - "accent" : false, - "stemming" : true + "name" : "text_pt", + "type" : "text", + "properties" : { + "locale" : "pt.utf-8", + "case" : "lower", + "stopwords" : [ ], + "accent" : false, + "stemming" : true }, - "features" : [ - "frequency", - "norm", - "position" + "features" : [ + "frequency", + "norm", + "position" ] }, { - "name" : "identity", - "type" : "identity", - "properties" : { + "name" : "text_no", + "type" : "text", + "properties" : { + "locale" : "no.utf-8", + "case" : "lower", + "stopwords" : [ ], + "accent" : false, + "stemming" : true }, - "features" : [ - "frequency", - "norm" + "features" : [ + "frequency", + "norm", + "position" ] }, { - "name" : "text_fi", - "type" : "text", - "properties" : { - "locale" : "fi.utf-8", - "case" : "lower", - "stopwords" : [ ], - "accent" : false, - "stemming" : true + "name" : "text_fi", + "type" : "text", + "properties" : { + "locale" : "fi.utf-8", + "case" : "lower", + "stopwords" : [ ], + "accent" : false, + "stemming" : true }, - "features" : [ - "frequency", - "norm", - "position" + "features" : [ + "frequency", + "norm", + "position" ] }, { - "name" : "text_zh", - "type" : "text", - "properties" : { - "locale" : "zh.utf-8", - "case" : "lower", - "stopwords" : [ ], - "accent" : false, - "stemming" : true + "name" : "text_es", + "type" : "text", + "properties" : { + "locale" : "es.utf-8", + "case" : "lower", + "stopwords" : [ ], + "accent" : false, + "stemming" : true }, - "features" : [ - "frequency", - "norm", - "position" + "features" : [ + "frequency", + "norm", + "position" ] }, { - "name" : "text_en", - "type" : "text", - "properties" : { - "locale" : "en.utf-8", - "case" : "lower", - "stopwords" : [ ], - "accent" : false, - "stemming" : true + "name" : "text_en", + "type" : "text", + "properties" : { + "locale" : "en.utf-8", + "case" : "lower", + "stopwords" : [ ], + "accent" : false, + "stemming" : true }, - "features" : [ - "frequency", - "norm", - "position" + "features" : [ + "frequency", + "norm", + "position" ] }, { - "name" : "text_es", - "type" : "text", - "properties" : { - "locale" : "es.utf-8", - "case" : "lower", - "stopwords" : [ ], - "accent" : false, - "stemming" : true + "name" : "text_ru", + "type" : "text", + "properties" : { + "locale" : "ru.utf-8", + "case" : "lower", + "stopwords" : [ ], + "accent" : false, + "stemming" : true }, - "features" : [ - "frequency", - "norm", - "position" + "features" : [ + "frequency", + "norm", + "position" ] }, { - "name" : "text_de", - "type" : "text", - "properties" : { - "locale" : "de.utf-8", - "case" : "lower", - "stopwords" : [ ], - "accent" : false, - "stemming" : true + "name" : "text_de", + "type" : "text", + "properties" : { + "locale" : "de.utf-8", + "case" : "lower", + "stopwords" : [ ], + "accent" : false, + "stemming" : true }, - "features" : [ - "frequency", - "norm", - "position" + "features" : [ + "frequency", + "norm", + "position" ] }, { - "name" : "text_it", - "type" : "text", - "properties" : { - "locale" : "it.utf-8", - "case" : "lower", - "stopwords" : [ ], - "accent" : false, - "stemming" : true + "name" : "identity", + "type" : "identity", + "properties" : { }, - "features" : [ - "frequency", - "norm", - "position" + "features" : [ + "frequency", + "norm" ] } ] diff --git a/3.9/generated/Examples/RestAqlfunctionCreate.generated b/3.9/generated/Examples/RestAqlfunctionCreate.generated index a41f803d49..db6f3f10fb 100644 --- a/3.9/generated/Examples/RestAqlfunctionCreate.generated +++ b/3.9/generated/Examples/RestAqlfunctionCreate.generated @@ -1,8 +1,8 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/aqlfunction <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/aqlfunction <<EOF { - "name" : "myfunctions::temperature::celsiustofahrenheit", - "code" : "function (celsius) { return celsius * 1.8 + 32; }", - "isDeterministic" : true + "name" : "myfunctions::temperature::celsiustofahrenheit", + "code" : "function (celsius) { return celsius * 1.8 + 32; }", + "isDeterministic" : true } EOF @@ -14,7 +14,7 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 201, - "isNewlyCreated" : true + "error" : false, + "code" : 201, + "isNewlyCreated" : true } diff --git a/3.9/generated/Examples/RestAqlfunctionDelete.generated b/3.9/generated/Examples/RestAqlfunctionDelete.generated index e3e44f0550..8d8f8e78d4 100644 --- a/3.9/generated/Examples/RestAqlfunctionDelete.generated +++ b/3.9/generated/Examples/RestAqlfunctionDelete.generated @@ -1,4 +1,4 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/aqlfunction/square::x::y +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/aqlfunction/square::x::y HTTP/1.1 200 OK content-type: application/json @@ -8,7 +8,7 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "deletedCount" : 1 + "error" : false, + "code" : 200, + "deletedCount" : 1 } diff --git a/3.9/generated/Examples/RestAqlfunctionDeleteFails.generated b/3.9/generated/Examples/RestAqlfunctionDeleteFails.generated index 727b46e5d2..a620252bc5 100644 --- a/3.9/generated/Examples/RestAqlfunctionDeleteFails.generated +++ b/3.9/generated/Examples/RestAqlfunctionDeleteFails.generated @@ -1,4 +1,4 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/aqlfunction/myfunction::x::y +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/aqlfunction/myfunction::x::y HTTP/1.1 404 Not Found content-type: application/json @@ -8,8 +8,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 404, - "error" : true, - "errorMessage" : "no AQL user function with name 'myfunction::x::y' found", - "errorNum" : 1582 + "code" : 404, + "error" : true, + "errorMessage" : "no AQL user function with name 'myfunction::x::y' found", + "errorNum" : 1582 } diff --git a/3.9/generated/Examples/RestAqlfunctionsGetAll.generated b/3.9/generated/Examples/RestAqlfunctionsGetAll.generated index e69a385252..8fbf8cbdd3 100644 --- a/3.9/generated/Examples/RestAqlfunctionsGetAll.generated +++ b/3.9/generated/Examples/RestAqlfunctionsGetAll.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/aqlfunction/test +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/aqlfunction/test HTTP/1.1 200 OK content-type: application/json @@ -8,7 +8,7 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "result" : [ ] + "error" : false, + "code" : 200, + "result" : [ ] } diff --git a/3.9/generated/Examples/RestBackupCreateBackup_rocksdb.generated b/3.9/generated/Examples/RestBackupCreateBackup_rocksdb.generated index 0dee989e26..a5ed08c099 100644 --- a/3.9/generated/Examples/RestBackupCreateBackup_rocksdb.generated +++ b/3.9/generated/Examples/RestBackupCreateBackup_rocksdb.generated @@ -1,6 +1,6 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_admin/backup/create <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_admin/backup/create <<EOF { - "label" : "foo" + "label" : "foo" } EOF @@ -12,14 +12,14 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 201, - "result" : { - "id" : "2021-08-04T14.07.25Z_foo", - "potentiallyInconsistent" : false, - "sizeInBytes" : 48128, - "datetime" : "2021-08-04T14:07:25Z", - "nrDBServers" : 1, - "nrFiles" : 23 + "error" : false, + "code" : 201, + "result" : { + "id" : "2021-05-25T10.22.55Z_foo", + "potentiallyInconsistent" : false, + "sizeInBytes" : 57951, + "datetime" : "2021-05-25T10:22:55Z", + "nrDBServers" : 1, + "nrFiles" : 23 } } diff --git a/3.9/generated/Examples/RestBackupDeleteBackup_rocksdb.generated b/3.9/generated/Examples/RestBackupDeleteBackup_rocksdb.generated index 088eae6974..236b4183b4 100644 --- a/3.9/generated/Examples/RestBackupDeleteBackup_rocksdb.generated +++ b/3.9/generated/Examples/RestBackupDeleteBackup_rocksdb.generated @@ -1,6 +1,6 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_admin/backup/delete <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_admin/backup/delete <<EOF { - "id" : "2021-08-04T14.07.26Z_c026c265-3d51-4447-8518-2d24c492d9ac" + "id" : "2021-05-25T10.22.55Z_ec9a5d32-1193-4e5c-bf55-c09bd4b2ae1d" } EOF @@ -12,8 +12,8 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "result" : { + "error" : false, + "code" : 200, + "result" : { } } diff --git a/3.9/generated/Examples/RestBackupDownloadBackupStarted_rocksdb.generated b/3.9/generated/Examples/RestBackupDownloadBackupStarted_rocksdb.generated index e79f9f1aea..53b86044d1 100644 --- a/3.9/generated/Examples/RestBackupDownloadBackupStarted_rocksdb.generated +++ b/3.9/generated/Examples/RestBackupDownloadBackupStarted_rocksdb.generated @@ -1,27 +1,27 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_admin/backup/download <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_admin/backup/download <<EOF { - "downloadId" : "1692" + "downloadId" : "66177" } EOF HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 223 +content-length: 224 server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "result" : { - "Timestamp" : "2021-08-04T14:07:41Z", - "DownloadId" : "1692", - "Cancelled" : false, - "BackupId" : "2021-08-04T14.07.26Z_ca7b63dc-7255-4056-81d2-88d06e31b702", - "DBServers" : { - "SNGL" : { - "Status" : "STARTED" + "error" : false, + "code" : 200, + "result" : { + "Timestamp" : "2021-05-25T10:23:11Z", + "DownloadId" : "66177", + "Cancelled" : false, + "BackupId" : "2021-05-25T10.22.55Z_70d87fb2-72d7-4859-827a-384c88fd3bac", + "DBServers" : { + "SNGL" : { + "Status" : "STARTED" } } } diff --git a/3.9/generated/Examples/RestBackupDownloadBackup_rocksdb.generated b/3.9/generated/Examples/RestBackupDownloadBackup_rocksdb.generated index a1056a640d..7c6868fc88 100644 --- a/3.9/generated/Examples/RestBackupDownloadBackup_rocksdb.generated +++ b/3.9/generated/Examples/RestBackupDownloadBackup_rocksdb.generated @@ -1,10 +1,10 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_admin/backup/download <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_admin/backup/download <<EOF { - "id" : "2021-08-04T14.07.41Z_e6c9a2fb-f7be-44c6-b6c1-f28d8b62e7dd", - "remoteRepository" : "local://tmp/backups", - "config" : { - "local" : { - "type" : "local" + "id" : "2021-05-25T10.23.11Z_ed0066f3-03c5-4fdc-83d6-3aaeb50b9dc3", + "remoteRepository" : "local://tmp/backups", + "config" : { + "local" : { + "type" : "local" } } } @@ -13,14 +13,14 @@ EOF HTTP/1.1 202 Accepted content-type: application/json connection: Keep-Alive -content-length: 57 +content-length: 58 server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 202, - "result" : { - "downloadId" : "1707" + "error" : false, + "code" : 202, + "result" : { + "downloadId" : "66186" } } diff --git a/3.9/generated/Examples/RestBackupListBackup_rocksdb.generated b/3.9/generated/Examples/RestBackupListBackup_rocksdb.generated index dbe60fab6f..b015212c6e 100644 --- a/3.9/generated/Examples/RestBackupListBackup_rocksdb.generated +++ b/3.9/generated/Examples/RestBackupListBackup_rocksdb.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_admin/backup/list <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_admin/backup/list <<EOF { } EOF @@ -11,46 +11,46 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "result" : { - "server" : "SNGL-58ec52b2-7cfb-496f-9665-d6788579e713", - "list" : { - "2021-08-04T14.07.57Z_c6793770-a9f3-4168-bad2-416b719cba05" : { - "id" : "2021-08-04T14.07.57Z_c6793770-a9f3-4168-bad2-416b719cba05", - "version" : "3.9.0-devel", - "datetime" : "2021-08-04T14:07:57Z", - "keys" : [ ], - "sizeInBytes" : 62979, - "nrFiles" : 27, - "nrDBServers" : 1, - "available" : true, - "nrPiecesPresent" : 1, - "potentiallyInconsistent" : false + "error" : false, + "code" : 200, + "result" : { + "server" : "SNGL-63851dfe-2440-4cc3-86f3-fd0360027880", + "list" : { + "2021-05-25T10.23.26Z_233111cf-de30-4ee3-b8f3-8de8c58d5617" : { + "id" : "2021-05-25T10.23.26Z_233111cf-de30-4ee3-b8f3-8de8c58d5617", + "version" : "3.9.0-devel", + "datetime" : "2021-05-25T10:23:26Z", + "keys" : [ ], + "sizeInBytes" : 70636, + "nrFiles" : 23, + "nrDBServers" : 1, + "available" : true, + "nrPiecesPresent" : 1, + "potentiallyInconsistent" : false }, - "2021-08-04T14.07.57Z_9ad3acac-e7be-4453-8397-81c622201db5" : { - "id" : "2021-08-04T14.07.57Z_9ad3acac-e7be-4453-8397-81c622201db5", - "version" : "3.9.0-devel", - "datetime" : "2021-08-04T14:07:57Z", - "keys" : [ ], - "sizeInBytes" : 61261, - "nrFiles" : 27, - "nrDBServers" : 1, - "available" : true, - "nrPiecesPresent" : 1, - "potentiallyInconsistent" : false + "2021-05-25T10.23.26Z_f5601620-b4df-414b-82ed-29e63abae9a0" : { + "id" : "2021-05-25T10.23.26Z_f5601620-b4df-414b-82ed-29e63abae9a0", + "version" : "3.9.0-devel", + "datetime" : "2021-05-25T10:23:26Z", + "keys" : [ ], + "sizeInBytes" : 73076, + "nrFiles" : 25, + "nrDBServers" : 1, + "available" : true, + "nrPiecesPresent" : 1, + "potentiallyInconsistent" : false }, - "2021-08-04T14.07.25Z_foo" : { - "id" : "2021-08-04T14.07.25Z_foo", - "version" : "3.9.0-devel", - "datetime" : "2021-08-04T14:07:25Z", - "keys" : [ ], - "sizeInBytes" : 48128, - "nrFiles" : 23, - "nrDBServers" : 1, - "available" : true, - "nrPiecesPresent" : 1, - "potentiallyInconsistent" : false + "2021-05-25T10.22.55Z_foo" : { + "id" : "2021-05-25T10.22.55Z_foo", + "version" : "3.9.0-devel", + "datetime" : "2021-05-25T10:22:55Z", + "keys" : [ ], + "sizeInBytes" : 57951, + "nrFiles" : 23, + "nrDBServers" : 1, + "available" : true, + "nrPiecesPresent" : 1, + "potentiallyInconsistent" : false } } } diff --git a/3.9/generated/Examples/RestBackupRestoreBackup_rocksdb.generated b/3.9/generated/Examples/RestBackupRestoreBackup_rocksdb.generated index c369515918..b90319122d 100644 --- a/3.9/generated/Examples/RestBackupRestoreBackup_rocksdb.generated +++ b/3.9/generated/Examples/RestBackupRestoreBackup_rocksdb.generated @@ -1,20 +1,20 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_admin/backup/restore <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_admin/backup/restore <<EOF { - "id" : "2021-08-04T14.07.57Z_244ef3a1-5838-46f6-9df2-8016158c69ca" + "id" : "2021-05-25T10.23.26Z_02b9d7ec-c7aa-4eb4-b4be-ca5354082001" } EOF HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 169 +content-length: 125 server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "result" : { - "previous" : "/var/folders/n5/67y4y1y94vl7t9382fkkls380000gn/T/arangosh_ZkqTKJ/rocksdb-clusterOrNot/data/backups/DIRECTORY_TO_DELETE" + "error" : false, + "code" : 200, + "result" : { + "previous" : "/tmp/arangosh_JbpaPj/rocksdb-clusterOrNot/data/backups/DIRECTORY_TO_DELETE" } } diff --git a/3.9/generated/Examples/RestBackupUploadBackupStarted_rocksdb.generated b/3.9/generated/Examples/RestBackupUploadBackupStarted_rocksdb.generated index b930dd3905..4aa3e06571 100644 --- a/3.9/generated/Examples/RestBackupUploadBackupStarted_rocksdb.generated +++ b/3.9/generated/Examples/RestBackupUploadBackupStarted_rocksdb.generated @@ -1,27 +1,27 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_admin/backup/upload <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_admin/backup/upload <<EOF { - "uploadId" : "1731" + "uploadId" : "66210" } EOF HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 221 +content-length: 222 server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "result" : { - "Timestamp" : "2021-08-04T14:08:07Z", - "UploadId" : "1731", - "Cancelled" : false, - "BackupId" : "2021-08-04T14.08.07Z_667e0e14-7748-4072-a4e1-d92b0cb4f6f2", - "DBServers" : { - "SNGL" : { - "Status" : "STARTED" + "error" : false, + "code" : 200, + "result" : { + "Timestamp" : "2021-05-25T10:23:37Z", + "UploadId" : "66210", + "Cancelled" : false, + "BackupId" : "2021-05-25T10.23.37Z_100c3892-93d6-4671-8a31-d0304d557f30", + "DBServers" : { + "SNGL" : { + "Status" : "STARTED" } } } diff --git a/3.9/generated/Examples/RestBackupUploadBackup_rocksdb.generated b/3.9/generated/Examples/RestBackupUploadBackup_rocksdb.generated index 3b4b0fbe42..594fd8efd3 100644 --- a/3.9/generated/Examples/RestBackupUploadBackup_rocksdb.generated +++ b/3.9/generated/Examples/RestBackupUploadBackup_rocksdb.generated @@ -1,10 +1,10 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_admin/backup/upload <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_admin/backup/upload <<EOF { - "id" : "2021-08-04T14.08.07Z_18ebabb3-c3ff-4c60-8ffa-ce22e39ad03b", - "remoteRepository" : "local://tmp/backups", - "config" : { - "local" : { - "type" : "local" + "id" : "2021-05-25T10.23.37Z_63f7443b-2574-4aa5-8582-a6b1cf4a1f6e", + "remoteRepository" : "local://tmp/backups", + "config" : { + "local" : { + "type" : "local" } } } @@ -13,14 +13,14 @@ EOF HTTP/1.1 202 Accepted content-type: application/json connection: Keep-Alive -content-length: 55 +content-length: 56 server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 202, - "result" : { - "uploadId" : "1733" + "error" : false, + "code" : 202, + "result" : { + "uploadId" : "66212" } } diff --git a/3.9/generated/Examples/RestBatchImplicitBoundary.generated b/3.9/generated/Examples/RestBatchImplicitBoundary.generated index cfd2db2c8c..1a21e628a8 100644 --- a/3.9/generated/Examples/RestBatchImplicitBoundary.generated +++ b/3.9/generated/Examples/RestBatchImplicitBoundary.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/batch <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/batch <<EOF --SomeBoundaryValue Content-Type: application/x-arango-batchpart @@ -30,10 +30,10 @@ Content-Type: application/json; charset=utf-8 Content-Length: 87 { - "code" : 404, - "error" : true, - "errorMessage" : "collection or view not found", - "errorNum" : 1203 + "code" : 404, + "error" : true, + "errorMessage" : "collection or view not found", + "errorNum" : 1203 }↩ --SomeBoundaryValue @@ -46,10 +46,10 @@ Content-Type: application/json; charset=utf-8 Content-Length: 101 { - "error" : true, - "code" : 404, - "errorNum" : 404, - "errorMessage" : "unknown path '_api/collection/notexisting2'" + "error" : true, + "code" : 404, + "errorNum" : 404, + "errorMessage" : "unknown path '_api/collection/notexisting2'" }↩ --SomeBoundaryValue-- diff --git a/3.9/generated/Examples/RestBatchMultipartHeader.generated b/3.9/generated/Examples/RestBatchMultipartHeader.generated index 20cd7cce06..9425b44cdc 100644 --- a/3.9/generated/Examples/RestBatchMultipartHeader.generated +++ b/3.9/generated/Examples/RestBatchMultipartHeader.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'Content-Type: multipart/form-data; boundary=SomeBoundaryValue' --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/batch <<EOF +shell> curl -X POST --header 'Content-Type: multipart/form-data; boundary=SomeBoundaryValue' --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/batch <<EOF --SomeBoundaryValue Content-Type: application/x-arango-batchpart Content-Id: myId1 @@ -37,7 +37,7 @@ EOF HTTP/1.1 200 OK content-type: multipart/form-data connection: Keep-Alive -content-length: 2299 +content-length: 2310 server: ArangoDB x-arango-errors: 1 x-content-type-options: nosniff @@ -53,9 +53,9 @@ Content-Type: application/json; charset=utf-8 Content-Length: 66 { - "server" : "arango", - "license" : "enterprise", - "version" : "3.9.0-devel" + "server" : "arango", + "license" : "enterprise", + "version" : "3.9.0-devel" }↩ --SomeBoundaryValue @@ -69,10 +69,10 @@ Content-Type: application/json; charset=utf-8 Content-Length: 87 { - "code" : 404, - "error" : true, - "errorMessage" : "collection or view not found", - "errorNum" : 1203 + "code" : 404, + "error" : true, + "errorMessage" : "collection or view not found", + "errorNum" : 1203 }↩ --SomeBoundaryValue @@ -83,33 +83,33 @@ HTTP/1.1 200 OK Server: Connection: Close Content-Type: application/json; charset=utf-8 -Content-Length: 440 +Content-Length: 445 { - "error" : false, - "code" : 200, - "waitForSync" : false, - "type" : 2, - "syncByRevision" : true, - "usesRevisionsAsDocumentIds" : true, - "statusString" : "loaded", - "writeConcern" : 1, - "name" : "products", - "keyOptions" : { - "allowUserKeys" : true, - "type" : "traditional", - "lastValue" : 0 + "error" : false, + "code" : 200, + "waitForSync" : false, + "writeConcern" : 1, + "syncByRevision" : true, + "status" : 3, + "globallyUniqueId" : "hABE4B0CCCE32/66216", + "isSystem" : false, + "isDisjoint" : false, + "id" : "66216", + "name" : "products", + "isSmartChild" : false, + "minRevision" : "_Zz3k4-----", + "type" : 2, + "objectId" : "66215", + "usesRevisionsAsDocumentIds" : true, + "schema" : null, + "cacheEnabled" : false, + "keyOptions" : { + "allowUserKeys" : true, + "type" : "traditional", + "lastValue" : 0 }, - "id" : "1737", - "isDisjoint" : false, - "schema" : null, - "isSmartChild" : false, - "isSystem" : false, - "internalValidatorType" : 0, - "status" : 3, - "objectId" : "1736", - "globallyUniqueId" : "h1F0FEB3590A8/1737", - "cacheEnabled" : false + "statusString" : "loaded" }↩ --SomeBoundaryValue @@ -121,44 +121,44 @@ Server: Location: /_api/collection/products/figures Connection: Close Content-Type: application/json; charset=utf-8 -Content-Length: 559 +Content-Length: 564 { - "error" : false, - "code" : 200, - "waitForSync" : false, - "type" : 2, - "syncByRevision" : true, - "usesRevisionsAsDocumentIds" : true, - "statusString" : "loaded", - "status" : 3, - "objectId" : "1736", - "keyOptions" : { - "allowUserKeys" : true, - "type" : "traditional", - "lastValue" : 0 - }, - "schema" : null, - "id" : "1737", - "isDisjoint" : false, - "isSmartChild" : false, - "isSystem" : false, - "internalValidatorType" : 0, - "count" : 0, - "figures" : { - "indexes" : { - "count" : 1, - "size" : 0 + "error" : false, + "code" : 200, + "waitForSync" : false, + "writeConcern" : 1, + "syncByRevision" : true, + "status" : 3, + "count" : 0, + "minRevision" : "_Zz3k4-----", + "globallyUniqueId" : "hABE4B0CCCE32/66216", + "isSystem" : false, + "isDisjoint" : false, + "id" : "66216", + "name" : "products", + "isSmartChild" : false, + "statusString" : "loaded", + "cacheEnabled" : false, + "figures" : { + "indexes" : { + "count" : 1, + "size" : 0 }, - "documentsSize" : 0, - "cacheInUse" : false, - "cacheSize" : 0, - "cacheUsage" : 0 + "documentsSize" : 0, + "cacheInUse" : false, + "cacheSize" : 0, + "cacheUsage" : 0 + }, + "keyOptions" : { + "allowUserKeys" : true, + "type" : "traditional", + "lastValue" : 0 }, - "globallyUniqueId" : "h1F0FEB3590A8/1737", - "writeConcern" : 1, - "name" : "products", - "cacheEnabled" : false + "type" : 2, + "objectId" : "66215", + "usesRevisionsAsDocumentIds" : true, + "schema" : null }↩ --SomeBoundaryValue @@ -169,12 +169,12 @@ HTTP/1.1 200 OK Server: Connection: Close Content-Type: application/json; charset=utf-8 -Content-Length: 38 +Content-Length: 39 { - "error" : false, - "code" : 200, - "id" : "1737" + "error" : false, + "code" : 200, + "id" : "66216" }↩ --SomeBoundaryValue-- diff --git a/3.9/generated/Examples/RestCollectionCreateCollection.generated b/3.9/generated/Examples/RestCollectionCreateCollection.generated index b45ef075da..1fcd0710da 100644 --- a/3.9/generated/Examples/RestCollectionCreateCollection.generated +++ b/3.9/generated/Examples/RestCollectionCreateCollection.generated @@ -1,79 +1,79 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/collection <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/collection <<EOF { - "name" : "testCollectionBasics" + "name" : "testCollectionBasics" } EOF HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 452 +content-length: 457 server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "waitForSync" : false, - "type" : 2, - "syncByRevision" : true, - "usesRevisionsAsDocumentIds" : true, - "statusString" : "loaded", - "writeConcern" : 1, - "name" : "testCollectionBasics", - "keyOptions" : { - "allowUserKeys" : true, - "type" : "traditional", - "lastValue" : 0 + "error" : false, + "code" : 200, + "waitForSync" : false, + "writeConcern" : 1, + "syncByRevision" : true, + "status" : 3, + "globallyUniqueId" : "hABE4B0CCCE32/66224", + "isSystem" : false, + "isDisjoint" : false, + "id" : "66224", + "name" : "testCollectionBasics", + "isSmartChild" : false, + "minRevision" : "_Zz3k4-----", + "type" : 2, + "objectId" : "66223", + "usesRevisionsAsDocumentIds" : true, + "schema" : null, + "cacheEnabled" : false, + "keyOptions" : { + "allowUserKeys" : true, + "type" : "traditional", + "lastValue" : 0 }, - "id" : "1745", - "isDisjoint" : false, - "schema" : null, - "isSmartChild" : false, - "isSystem" : false, - "internalValidatorType" : 0, - "status" : 3, - "objectId" : "1744", - "globallyUniqueId" : "h1F0FEB3590A8/1745", - "cacheEnabled" : false + "statusString" : "loaded" } -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/collection <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/collection <<EOF { - "name" : "testCollectionEdges", - "type" : 3 + "name" : "testCollectionEdges", + "type" : 3 } EOF HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 451 +content-length: 456 server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "waitForSync" : false, - "type" : 3, - "syncByRevision" : true, - "usesRevisionsAsDocumentIds" : true, - "statusString" : "loaded", - "writeConcern" : 1, - "name" : "testCollectionEdges", - "keyOptions" : { - "allowUserKeys" : true, - "type" : "traditional", - "lastValue" : 0 + "error" : false, + "code" : 200, + "waitForSync" : false, + "writeConcern" : 1, + "syncByRevision" : true, + "status" : 3, + "globallyUniqueId" : "hABE4B0CCCE32/66229", + "isSystem" : false, + "isDisjoint" : false, + "id" : "66229", + "name" : "testCollectionEdges", + "isSmartChild" : false, + "minRevision" : "_Zz3k4-----", + "type" : 3, + "objectId" : "66228", + "usesRevisionsAsDocumentIds" : true, + "schema" : null, + "cacheEnabled" : false, + "keyOptions" : { + "allowUserKeys" : true, + "type" : "traditional", + "lastValue" : 0 }, - "id" : "1750", - "isDisjoint" : false, - "schema" : null, - "isSmartChild" : false, - "isSystem" : false, - "internalValidatorType" : 0, - "status" : 3, - "objectId" : "1749", - "globallyUniqueId" : "h1F0FEB3590A8/1750", - "cacheEnabled" : false + "statusString" : "loaded" } diff --git a/3.9/generated/Examples/RestCollectionCreateKeyopt.generated b/3.9/generated/Examples/RestCollectionCreateKeyopt.generated index ad6ce48ce0..19f75df6c4 100644 --- a/3.9/generated/Examples/RestCollectionCreateKeyopt.generated +++ b/3.9/generated/Examples/RestCollectionCreateKeyopt.generated @@ -1,10 +1,10 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/collection <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/collection <<EOF { - "name" : "testCollectionUsers", - "keyOptions" : { - "type" : "autoincrement", - "increment" : 5, - "allowUserKeys" : true + "name" : "testCollectionUsers", + "keyOptions" : { + "type" : "autoincrement", + "increment" : 5, + "allowUserKeys" : true } } EOF @@ -12,35 +12,35 @@ EOF HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 478 +content-length: 483 server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "waitForSync" : false, - "type" : 2, - "syncByRevision" : true, - "usesRevisionsAsDocumentIds" : true, - "statusString" : "loaded", - "writeConcern" : 1, - "name" : "testCollectionUsers", - "keyOptions" : { - "allowUserKeys" : true, - "type" : "autoincrement", - "offset" : 0, - "increment" : 5, - "lastValue" : 0 + "error" : false, + "code" : 200, + "waitForSync" : false, + "writeConcern" : 1, + "syncByRevision" : true, + "status" : 3, + "globallyUniqueId" : "hABE4B0CCCE32/66239", + "isSystem" : false, + "isDisjoint" : false, + "id" : "66239", + "name" : "testCollectionUsers", + "isSmartChild" : false, + "minRevision" : "_Zz3k4-----", + "type" : 2, + "objectId" : "66238", + "usesRevisionsAsDocumentIds" : true, + "schema" : null, + "cacheEnabled" : false, + "keyOptions" : { + "allowUserKeys" : true, + "type" : "autoincrement", + "offset" : 0, + "increment" : 5, + "lastValue" : 0 }, - "id" : "1760", - "isDisjoint" : false, - "schema" : null, - "isSmartChild" : false, - "isSystem" : false, - "internalValidatorType" : 0, - "status" : 3, - "objectId" : "1759", - "globallyUniqueId" : "h1F0FEB3590A8/1760", - "cacheEnabled" : false + "statusString" : "loaded" } diff --git a/3.9/generated/Examples/RestCollectionDeleteCollectionIdentifier.generated b/3.9/generated/Examples/RestCollectionDeleteCollectionIdentifier.generated index a4f37a7527..1650e64a4b 100644 --- a/3.9/generated/Examples/RestCollectionDeleteCollectionIdentifier.generated +++ b/3.9/generated/Examples/RestCollectionDeleteCollectionIdentifier.generated @@ -1,14 +1,14 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/1767 +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/66246 HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 38 +content-length: 39 server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "id" : "1767" + "error" : false, + "code" : 200, + "id" : "66246" } diff --git a/3.9/generated/Examples/RestCollectionDeleteCollectionName.generated b/3.9/generated/Examples/RestCollectionDeleteCollectionName.generated index 0748ad7293..85d67284cd 100644 --- a/3.9/generated/Examples/RestCollectionDeleteCollectionName.generated +++ b/3.9/generated/Examples/RestCollectionDeleteCollectionName.generated @@ -1,14 +1,14 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products1 +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products1 HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 38 +content-length: 39 server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "id" : "1774" + "error" : false, + "code" : 200, + "id" : "66253" } diff --git a/3.9/generated/Examples/RestCollectionDeleteCollectionSystem.generated b/3.9/generated/Examples/RestCollectionDeleteCollectionSystem.generated index 3ff136bb70..d3a83ec0a1 100644 --- a/3.9/generated/Examples/RestCollectionDeleteCollectionSystem.generated +++ b/3.9/generated/Examples/RestCollectionDeleteCollectionSystem.generated @@ -1,14 +1,14 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/_example?isSystem=true +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/_example?isSystem=true HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 38 +content-length: 39 server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "id" : "1781" + "error" : false, + "code" : 200, + "id" : "66260" } diff --git a/3.9/generated/Examples/RestCollectionGetAllCollections.generated b/3.9/generated/Examples/RestCollectionGetAllCollections.generated index 5a5a4fdcd4..73d4a94836 100644 --- a/3.9/generated/Examples/RestCollectionGetAllCollections.generated +++ b/3.9/generated/Examples/RestCollectionGetAllCollections.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection HTTP/1.1 200 OK content-type: application/json @@ -8,120 +8,120 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "result" : [ + "error" : false, + "code" : 200, + "result" : [ { - "id" : "37", - "name" : "_frontend", - "status" : 3, - "type" : 2, - "isSystem" : true, - "globallyUniqueId" : "_frontend" + "id" : "85", + "name" : "demo", + "status" : 3, + "type" : 2, + "isSystem" : false, + "globallyUniqueId" : "hABE4B0CCCE32/85" }, { - "id" : "34", - "name" : "_appbundles", - "status" : 3, - "type" : 2, - "isSystem" : true, - "globallyUniqueId" : "_appbundles" + "id" : "91", + "name" : "animals", + "status" : 3, + "type" : 2, + "isSystem" : false, + "globallyUniqueId" : "hABE4B0CCCE32/91" }, { - "id" : "31", - "name" : "_apps", - "status" : 3, - "type" : 2, - "isSystem" : true, - "globallyUniqueId" : "_apps" + "id" : "4", + "name" : "_users", + "status" : 3, + "type" : 2, + "isSystem" : true, + "globallyUniqueId" : "_users" }, { - "id" : "28", - "name" : "_jobs", - "status" : 3, - "type" : 2, - "isSystem" : true, - "globallyUniqueId" : "_jobs" + "id" : "7", + "name" : "_graphs", + "status" : 3, + "type" : 2, + "isSystem" : true, + "globallyUniqueId" : "_graphs" }, { - "id" : "25", - "name" : "_queues", - "status" : 3, - "type" : 2, - "isSystem" : true, - "globallyUniqueId" : "_queues" + "id" : "10", + "name" : "_statistics", + "status" : 3, + "type" : 2, + "isSystem" : true, + "globallyUniqueId" : "_statistics" }, { - "id" : "91", - "name" : "animals", - "status" : 3, - "type" : 2, - "isSystem" : false, - "globallyUniqueId" : "h1F0FEB3590A8/91" + "id" : "13", + "name" : "_statistics15", + "status" : 3, + "type" : 2, + "isSystem" : true, + "globallyUniqueId" : "_statistics15" }, { - "id" : "22", - "name" : "_aqlfunctions", - "status" : 3, - "type" : 2, - "isSystem" : true, - "globallyUniqueId" : "_aqlfunctions" + "id" : "16", + "name" : "_statisticsRaw", + "status" : 3, + "type" : 2, + "isSystem" : true, + "globallyUniqueId" : "_statisticsRaw" }, { - "id" : "19", - "name" : "_analyzers", - "status" : 3, - "type" : 2, - "isSystem" : true, - "globallyUniqueId" : "_analyzers" + "id" : "19", + "name" : "_analyzers", + "status" : 3, + "type" : 2, + "isSystem" : true, + "globallyUniqueId" : "_analyzers" }, { - "id" : "85", - "name" : "demo", - "status" : 3, - "type" : 2, - "isSystem" : false, - "globallyUniqueId" : "h1F0FEB3590A8/85" + "id" : "22", + "name" : "_aqlfunctions", + "status" : 3, + "type" : 2, + "isSystem" : true, + "globallyUniqueId" : "_aqlfunctions" }, { - "id" : "16", - "name" : "_statisticsRaw", - "status" : 3, - "type" : 2, - "isSystem" : true, - "globallyUniqueId" : "_statisticsRaw" + "id" : "25", + "name" : "_queues", + "status" : 3, + "type" : 2, + "isSystem" : true, + "globallyUniqueId" : "_queues" }, { - "id" : "13", - "name" : "_statistics15", - "status" : 3, - "type" : 2, - "isSystem" : true, - "globallyUniqueId" : "_statistics15" + "id" : "28", + "name" : "_jobs", + "status" : 3, + "type" : 2, + "isSystem" : true, + "globallyUniqueId" : "_jobs" }, { - "id" : "7", - "name" : "_graphs", - "status" : 3, - "type" : 2, - "isSystem" : true, - "globallyUniqueId" : "_graphs" + "id" : "31", + "name" : "_apps", + "status" : 3, + "type" : 2, + "isSystem" : true, + "globallyUniqueId" : "_apps" }, { - "id" : "4", - "name" : "_users", - "status" : 3, - "type" : 2, - "isSystem" : true, - "globallyUniqueId" : "_users" + "id" : "34", + "name" : "_appbundles", + "status" : 3, + "type" : 2, + "isSystem" : true, + "globallyUniqueId" : "_appbundles" }, { - "id" : "10", - "name" : "_statistics", - "status" : 3, - "type" : 2, - "isSystem" : true, - "globallyUniqueId" : "_statistics" + "id" : "37", + "name" : "_frontend", + "status" : 3, + "type" : 2, + "isSystem" : true, + "globallyUniqueId" : "_frontend" } ] } diff --git a/3.9/generated/Examples/RestCollectionGetCollectionChecksum.generated b/3.9/generated/Examples/RestCollectionGetCollectionChecksum.generated index d94eefde2f..f65e8d85a0 100644 --- a/3.9/generated/Examples/RestCollectionGetCollectionChecksum.generated +++ b/3.9/generated/Examples/RestCollectionGetCollectionChecksum.generated @@ -1,22 +1,22 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/checksum +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/checksum HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 192 +content-length: 194 location: /_api/collection/products/checksum server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "globallyUniqueId" : "h1F0FEB3590A8/1788", - "isSystem" : false, - "type" : 2, - "name" : "products", - "checksum" : "15887503590665588994", - "revision" : "_cvD8J5G--_", - "status" : 3, - "id" : "1788" + "error" : false, + "code" : 200, + "globallyUniqueId" : "hABE4B0CCCE32/66267", + "isSystem" : false, + "type" : 2, + "status" : 3, + "name" : "products", + "id" : "66267", + "revision" : "_cYKLGSS--_", + "checksum" : "11507527057371401928" } diff --git a/3.9/generated/Examples/RestCollectionGetCollectionChecksumNoRev.generated b/3.9/generated/Examples/RestCollectionGetCollectionChecksumNoRev.generated index 3fd0ef2b6d..6a6ee48eeb 100644 --- a/3.9/generated/Examples/RestCollectionGetCollectionChecksumNoRev.generated +++ b/3.9/generated/Examples/RestCollectionGetCollectionChecksumNoRev.generated @@ -1,22 +1,22 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/checksum?withRevisions=false&withData=true +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/checksum?withRevisions=false&withData=true HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 191 +content-length: 194 location: /_api/collection/products/checksum server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "globallyUniqueId" : "h1F0FEB3590A8/1798", - "isSystem" : false, - "type" : 2, - "name" : "products", - "checksum" : "1524908583908951896", - "revision" : "_cvD8J5a---", - "status" : 3, - "id" : "1798" + "error" : false, + "code" : 200, + "globallyUniqueId" : "hABE4B0CCCE32/66277", + "isSystem" : false, + "type" : 2, + "status" : 3, + "name" : "products", + "id" : "66277", + "revision" : "_cYKLGSq--_", + "checksum" : "16857911189002827939" } diff --git a/3.9/generated/Examples/RestCollectionGetCollectionCount.generated b/3.9/generated/Examples/RestCollectionGetCollectionCount.generated index d5cd367eed..8bac946ec4 100644 --- a/3.9/generated/Examples/RestCollectionGetCollectionCount.generated +++ b/3.9/generated/Examples/RestCollectionGetCollectionCount.generated @@ -1,37 +1,37 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/count +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/count HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 454 +content-length: 460 location: /_api/collection/products/count server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "waitForSync" : true, - "type" : 2, - "syncByRevision" : true, - "usesRevisionsAsDocumentIds" : true, - "statusString" : "loaded", - "writeConcern" : 1, - "name" : "products", - "keyOptions" : { - "allowUserKeys" : true, - "type" : "traditional", - "lastValue" : 2011 + "error" : false, + "code" : 200, + "waitForSync" : true, + "writeConcern" : 1, + "syncByRevision" : true, + "status" : 3, + "count" : 100, + "minRevision" : "_Zz3k4-----", + "globallyUniqueId" : "hABE4B0CCCE32/66287", + "isSystem" : false, + "isDisjoint" : false, + "id" : "66287", + "name" : "products", + "isSmartChild" : false, + "statusString" : "loaded", + "cacheEnabled" : false, + "keyOptions" : { + "allowUserKeys" : true, + "type" : "traditional", + "lastValue" : 66490 }, - "schema" : null, - "id" : "1808", - "isDisjoint" : false, - "isSmartChild" : false, - "isSystem" : false, - "internalValidatorType" : 0, - "count" : 100, - "status" : 3, - "objectId" : "1807", - "globallyUniqueId" : "h1F0FEB3590A8/1808", - "cacheEnabled" : false + "type" : 2, + "objectId" : "66286", + "usesRevisionsAsDocumentIds" : true, + "schema" : null } diff --git a/3.9/generated/Examples/RestCollectionGetCollectionFigures.generated b/3.9/generated/Examples/RestCollectionGetCollectionFigures.generated index acb84bd7ea..27994920fc 100644 --- a/3.9/generated/Examples/RestCollectionGetCollectionFigures.generated +++ b/3.9/generated/Examples/RestCollectionGetCollectionFigures.generated @@ -1,47 +1,47 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/figures +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/figures HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 565 +content-length: 570 location: /_api/collection/products/figures server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "waitForSync" : false, - "type" : 2, - "syncByRevision" : true, - "usesRevisionsAsDocumentIds" : true, - "statusString" : "loaded", - "status" : 3, - "objectId" : "2015", - "keyOptions" : { - "allowUserKeys" : true, - "type" : "traditional", - "lastValue" : 2021 - }, - "schema" : null, - "id" : "2016", - "isDisjoint" : false, - "isSmartChild" : false, - "isSystem" : false, - "internalValidatorType" : 0, - "count" : 1, - "figures" : { - "indexes" : { - "count" : 1, - "size" : 450 + "error" : false, + "code" : 200, + "waitForSync" : false, + "writeConcern" : 1, + "syncByRevision" : true, + "status" : 3, + "count" : 1, + "minRevision" : "_Zz3k4-----", + "globallyUniqueId" : "hABE4B0CCCE32/66495", + "isSystem" : false, + "isDisjoint" : false, + "id" : "66495", + "name" : "products", + "isSmartChild" : false, + "statusString" : "loaded", + "cacheEnabled" : false, + "figures" : { + "indexes" : { + "count" : 1, + "size" : 31 }, - "documentsSize" : 84, - "cacheInUse" : false, - "cacheSize" : 0, - "cacheUsage" : 0 + "documentsSize" : 84, + "cacheInUse" : false, + "cacheSize" : 0, + "cacheUsage" : 0 + }, + "keyOptions" : { + "allowUserKeys" : true, + "type" : "traditional", + "lastValue" : 66500 }, - "globallyUniqueId" : "h1F0FEB3590A8/2016", - "writeConcern" : 1, - "name" : "products", - "cacheEnabled" : false + "type" : 2, + "objectId" : "66494", + "usesRevisionsAsDocumentIds" : true, + "schema" : null } diff --git a/3.9/generated/Examples/RestCollectionGetCollectionFiguresDetails.generated b/3.9/generated/Examples/RestCollectionGetCollectionFiguresDetails.generated index 93a1bc52db..ce38add0cb 100644 --- a/3.9/generated/Examples/RestCollectionGetCollectionFiguresDetails.generated +++ b/3.9/generated/Examples/RestCollectionGetCollectionFiguresDetails.generated @@ -1,57 +1,57 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/figures?details=true +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/figures?details=true HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 637 +content-length: 643 location: /_api/collection/products/figures server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "waitForSync" : false, - "type" : 2, - "syncByRevision" : true, - "usesRevisionsAsDocumentIds" : true, - "statusString" : "loaded", - "status" : 3, - "objectId" : "2025", - "keyOptions" : { - "allowUserKeys" : true, - "type" : "traditional", - "lastValue" : 2031 - }, - "schema" : null, - "id" : "2026", - "isDisjoint" : false, - "isSmartChild" : false, - "isSystem" : false, - "internalValidatorType" : 0, - "count" : 1, - "figures" : { - "indexes" : { - "count" : 1, - "size" : 30 + "error" : false, + "code" : 200, + "waitForSync" : false, + "writeConcern" : 1, + "syncByRevision" : true, + "status" : 3, + "count" : 1, + "minRevision" : "_Zz3k4-----", + "globallyUniqueId" : "hABE4B0CCCE32/66505", + "isSystem" : false, + "isDisjoint" : false, + "id" : "66505", + "name" : "products", + "isSmartChild" : false, + "statusString" : "loaded", + "cacheEnabled" : false, + "figures" : { + "indexes" : { + "count" : 1, + "size" : 31 }, - "documentsSize" : 86, - "cacheInUse" : false, - "cacheSize" : 0, - "cacheUsage" : 0, - "engine" : { - "documents" : 1, - "indexes" : [ + "documentsSize" : 87, + "cacheInUse" : false, + "cacheSize" : 0, + "cacheUsage" : 0, + "engine" : { + "documents" : 1, + "indexes" : [ { - "type" : "primary", - "id" : 0, - "count" : 1 + "type" : "primary", + "id" : 0, + "count" : 1 } ] } }, - "globallyUniqueId" : "h1F0FEB3590A8/2026", - "writeConcern" : 1, - "name" : "products", - "cacheEnabled" : false + "keyOptions" : { + "allowUserKeys" : true, + "type" : "traditional", + "lastValue" : 66510 + }, + "type" : 2, + "objectId" : "66504", + "usesRevisionsAsDocumentIds" : true, + "schema" : null } diff --git a/3.9/generated/Examples/RestCollectionGetCollectionIdentifier.generated b/3.9/generated/Examples/RestCollectionGetCollectionIdentifier.generated index 591f137905..b730dac97b 100644 --- a/3.9/generated/Examples/RestCollectionGetCollectionIdentifier.generated +++ b/3.9/generated/Examples/RestCollectionGetCollectionIdentifier.generated @@ -1,36 +1,36 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/2036/properties +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/66515/properties HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 439 -location: /_api/collection/2036/properties +content-length: 444 +location: /_api/collection/66515/properties server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "waitForSync" : true, - "type" : 2, - "syncByRevision" : true, - "usesRevisionsAsDocumentIds" : true, - "statusString" : "loaded", - "writeConcern" : 1, - "name" : "products", - "keyOptions" : { - "allowUserKeys" : true, - "type" : "traditional", - "lastValue" : 0 + "error" : false, + "code" : 200, + "waitForSync" : true, + "writeConcern" : 1, + "syncByRevision" : true, + "status" : 3, + "globallyUniqueId" : "hABE4B0CCCE32/66515", + "isSystem" : false, + "isDisjoint" : false, + "id" : "66515", + "name" : "products", + "isSmartChild" : false, + "minRevision" : "_Zz3k4-----", + "type" : 2, + "objectId" : "66514", + "usesRevisionsAsDocumentIds" : true, + "schema" : null, + "cacheEnabled" : false, + "keyOptions" : { + "allowUserKeys" : true, + "type" : "traditional", + "lastValue" : 0 }, - "id" : "2036", - "isDisjoint" : false, - "schema" : null, - "isSmartChild" : false, - "isSystem" : false, - "internalValidatorType" : 0, - "status" : 3, - "objectId" : "2035", - "globallyUniqueId" : "h1F0FEB3590A8/2036", - "cacheEnabled" : false + "statusString" : "loaded" } diff --git a/3.9/generated/Examples/RestCollectionGetCollectionName.generated b/3.9/generated/Examples/RestCollectionGetCollectionName.generated index e487e666c5..7300fac79f 100644 --- a/3.9/generated/Examples/RestCollectionGetCollectionName.generated +++ b/3.9/generated/Examples/RestCollectionGetCollectionName.generated @@ -1,36 +1,36 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/properties +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/properties HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 439 +content-length: 444 location: /_api/collection/products/properties server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "waitForSync" : true, - "type" : 2, - "syncByRevision" : true, - "usesRevisionsAsDocumentIds" : true, - "statusString" : "loaded", - "writeConcern" : 1, - "name" : "products", - "keyOptions" : { - "allowUserKeys" : true, - "type" : "traditional", - "lastValue" : 0 + "error" : false, + "code" : 200, + "waitForSync" : true, + "writeConcern" : 1, + "syncByRevision" : true, + "status" : 3, + "globallyUniqueId" : "hABE4B0CCCE32/66523", + "isSystem" : false, + "isDisjoint" : false, + "id" : "66523", + "name" : "products", + "isSmartChild" : false, + "minRevision" : "_Zz3k4-----", + "type" : 2, + "objectId" : "66522", + "usesRevisionsAsDocumentIds" : true, + "schema" : null, + "cacheEnabled" : false, + "keyOptions" : { + "allowUserKeys" : true, + "type" : "traditional", + "lastValue" : 0 }, - "id" : "2044", - "isDisjoint" : false, - "schema" : null, - "isSmartChild" : false, - "isSystem" : false, - "internalValidatorType" : 0, - "status" : 3, - "objectId" : "2043", - "globallyUniqueId" : "h1F0FEB3590A8/2044", - "cacheEnabled" : false + "statusString" : "loaded" } diff --git a/3.9/generated/Examples/RestCollectionGetCollectionRevision.generated b/3.9/generated/Examples/RestCollectionGetCollectionRevision.generated index 17058daed7..9f572aff81 100644 --- a/3.9/generated/Examples/RestCollectionGetCollectionRevision.generated +++ b/3.9/generated/Examples/RestCollectionGetCollectionRevision.generated @@ -1,37 +1,37 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/revision +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/revision HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 456 +content-length: 461 location: /_api/collection/products/revision server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "waitForSync" : false, - "syncByRevision" : true, - "usesRevisionsAsDocumentIds" : true, - "statusString" : "loaded", - "keyOptions" : { - "allowUserKeys" : true, - "type" : "traditional", - "lastValue" : 0 + "error" : false, + "code" : 200, + "waitForSync" : false, + "usesRevisionsAsDocumentIds" : true, + "schema" : null, + "writeConcern" : 1, + "syncByRevision" : true, + "revision" : "54", + "id" : "66531", + "name" : "products", + "isDisjoint" : false, + "status" : 3, + "globallyUniqueId" : "hABE4B0CCCE32/66531", + "isSystem" : false, + "isSmartChild" : false, + "statusString" : "loaded", + "cacheEnabled" : false, + "keyOptions" : { + "allowUserKeys" : true, + "type" : "traditional", + "lastValue" : 0 }, - "schema" : null, - "id" : "2052", - "isDisjoint" : false, - "isSmartChild" : false, - "globallyUniqueId" : "h1F0FEB3590A8/2052", - "cacheEnabled" : false, - "writeConcern" : 1, - "name" : "products", - "revision" : "54", - "isSystem" : false, - "type" : 2, - "internalValidatorType" : 0, - "objectId" : "2051", - "status" : 3 + "minRevision" : "_Zz3k4-----", + "type" : 2, + "objectId" : "66530" } diff --git a/3.9/generated/Examples/RestCollectionIdentifierLoad.generated b/3.9/generated/Examples/RestCollectionIdentifierLoad.generated index 84f1280f32..635c7f9838 100644 --- a/3.9/generated/Examples/RestCollectionIdentifierLoad.generated +++ b/3.9/generated/Examples/RestCollectionIdentifierLoad.generated @@ -1,21 +1,21 @@ -shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/load +shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/load HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 143 +content-length: 145 location: /_api/collection/products/load server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "status" : 3, - "count" : 0, - "id" : "2060", - "name" : "products", - "globallyUniqueId" : "h1F0FEB3590A8/2060", - "type" : 2, - "isSystem" : false + "error" : false, + "code" : 200, + "type" : 2, + "status" : 3, + "name" : "products", + "id" : "66539", + "isSystem" : false, + "globallyUniqueId" : "hABE4B0CCCE32/66539", + "count" : 0 } diff --git a/3.9/generated/Examples/RestCollectionIdentifierLoadIndexesIntoMemory.generated b/3.9/generated/Examples/RestCollectionIdentifierLoadIndexesIntoMemory.generated index 4b457c959d..53b9b03285 100644 --- a/3.9/generated/Examples/RestCollectionIdentifierLoadIndexesIntoMemory.generated +++ b/3.9/generated/Examples/RestCollectionIdentifierLoadIndexesIntoMemory.generated @@ -1,4 +1,4 @@ -shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/loadIndexesIntoMemory +shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/loadIndexesIntoMemory HTTP/1.1 200 OK content-type: application/json @@ -9,7 +9,7 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "result" : true + "error" : false, + "code" : 200, + "result" : true } diff --git a/3.9/generated/Examples/RestCollectionIdentifierPropertiesSync.generated b/3.9/generated/Examples/RestCollectionIdentifierPropertiesSync.generated index 61f2ff7938..7fdfa36619 100644 --- a/3.9/generated/Examples/RestCollectionIdentifierPropertiesSync.generated +++ b/3.9/generated/Examples/RestCollectionIdentifierPropertiesSync.generated @@ -1,40 +1,40 @@ -shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/collection/products/properties <<EOF +shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/collection/products/properties <<EOF { - "waitForSync" : true + "waitForSync" : true } EOF HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 439 +content-length: 444 location: /_api/collection/products/properties server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "waitForSync" : true, - "type" : 2, - "syncByRevision" : true, - "usesRevisionsAsDocumentIds" : true, - "statusString" : "loaded", - "writeConcern" : 1, - "name" : "products", - "keyOptions" : { - "allowUserKeys" : true, - "type" : "traditional", - "lastValue" : 0 + "error" : false, + "code" : 200, + "waitForSync" : true, + "writeConcern" : 1, + "syncByRevision" : true, + "status" : 3, + "globallyUniqueId" : "hABE4B0CCCE32/66556", + "isSystem" : false, + "isDisjoint" : false, + "id" : "66556", + "name" : "products", + "isSmartChild" : false, + "minRevision" : "_Zz3k4-----", + "type" : 2, + "objectId" : "66555", + "usesRevisionsAsDocumentIds" : true, + "schema" : null, + "cacheEnabled" : false, + "keyOptions" : { + "allowUserKeys" : true, + "type" : "traditional", + "lastValue" : 0 }, - "id" : "2077", - "isDisjoint" : false, - "schema" : null, - "isSmartChild" : false, - "isSystem" : false, - "internalValidatorType" : 0, - "status" : 3, - "objectId" : "2076", - "globallyUniqueId" : "h1F0FEB3590A8/2077", - "cacheEnabled" : false + "statusString" : "loaded" } diff --git a/3.9/generated/Examples/RestCollectionIdentifierRename.generated b/3.9/generated/Examples/RestCollectionIdentifierRename.generated index 9cca2fafc9..e703cb8d3e 100644 --- a/3.9/generated/Examples/RestCollectionIdentifierRename.generated +++ b/3.9/generated/Examples/RestCollectionIdentifierRename.generated @@ -1,24 +1,24 @@ -shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/collection/products1/rename <<EOF +shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/collection/products1/rename <<EOF { - "name" : "newname" + "name" : "newname" } EOF HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 132 +content-length: 134 location: /_api/collection/products1/rename server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "type" : 2, - "isSystem" : false, - "status" : 3, - "id" : "2086", - "name" : "newname", - "globallyUniqueId" : "h1F0FEB3590A8/2086" + "error" : false, + "code" : 200, + "type" : 2, + "status" : 3, + "name" : "newname", + "id" : "66565", + "isSystem" : false, + "globallyUniqueId" : "hABE4B0CCCE32/66565" } diff --git a/3.9/generated/Examples/RestCollectionIdentifierTruncate.generated b/3.9/generated/Examples/RestCollectionIdentifierTruncate.generated index 4d5c4777bc..dd8bd6f624 100644 --- a/3.9/generated/Examples/RestCollectionIdentifierTruncate.generated +++ b/3.9/generated/Examples/RestCollectionIdentifierTruncate.generated @@ -1,20 +1,20 @@ -shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/truncate +shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/truncate HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 133 +content-length: 135 location: /_api/collection/products/truncate server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "type" : 2, - "isSystem" : false, - "status" : 3, - "id" : "2095", - "name" : "products", - "globallyUniqueId" : "h1F0FEB3590A8/2095" + "error" : false, + "code" : 200, + "type" : 2, + "status" : 3, + "name" : "products", + "id" : "66574", + "isSystem" : false, + "globallyUniqueId" : "hABE4B0CCCE32/66574" } diff --git a/3.9/generated/Examples/RestCollectionIdentifierUnload.generated b/3.9/generated/Examples/RestCollectionIdentifierUnload.generated index 3246ce72a4..65a893da0b 100644 --- a/3.9/generated/Examples/RestCollectionIdentifierUnload.generated +++ b/3.9/generated/Examples/RestCollectionIdentifierUnload.generated @@ -1,20 +1,20 @@ -shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/unload +shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/products/unload HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 133 +content-length: 135 location: /_api/collection/products/unload server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "type" : 2, - "isSystem" : false, - "status" : 2, - "id" : "2103", - "name" : "products", - "globallyUniqueId" : "h1F0FEB3590A8/2103" + "error" : false, + "code" : 200, + "type" : 2, + "status" : 2, + "name" : "products", + "id" : "66582", + "isSystem" : false, + "globallyUniqueId" : "hABE4B0CCCE32/66582" } diff --git a/3.9/generated/Examples/RestCreateUser.generated b/3.9/generated/Examples/RestCreateUser.generated index 6242769110..922aa55909 100644 --- a/3.9/generated/Examples/RestCreateUser.generated +++ b/3.9/generated/Examples/RestCreateUser.generated @@ -1,7 +1,7 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/user <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/user <<EOF { - "user" : "admin@example", - "passwd" : "secure" + "user" : "admin@example", + "passwd" : "secure" } EOF @@ -13,10 +13,10 @@ server: ArangoDB x-content-type-options: nosniff { - "user" : "admin@example", - "active" : true, - "extra" : { + "user" : "admin@example", + "active" : true, + "extra" : { }, - "error" : false, - "code" : 201 + "error" : false, + "code" : 201 } diff --git a/3.9/generated/Examples/RestCursorCreateCursorForLimitReturn.generated b/3.9/generated/Examples/RestCursorCreateCursorForLimitReturn.generated index 71c76f39d1..383074ff88 100644 --- a/3.9/generated/Examples/RestCursorCreateCursorForLimitReturn.generated +++ b/3.9/generated/Examples/RestCursorCreateCursorForLimitReturn.generated @@ -1,50 +1,50 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF { - "query" : "FOR p IN products LIMIT 5 RETURN p", - "count" : true, - "batchSize" : 2 + "query" : "FOR p IN products LIMIT 5 RETURN p", + "count" : true, + "batchSize" : 2 } EOF HTTP/1.1 201 Created content-type: application/json connection: Keep-Alive -content-length: 434 +content-length: 440 server: ArangoDB x-content-type-options: nosniff { - "result" : [ + "result" : [ { - "_key" : "2119", - "_id" : "products/2119", - "_rev" : "_cvD8K-q--_", - "hello1" : "world1" + "_key" : "66598", + "_id" : "products/66598", + "_rev" : "_cYKLGpm--_", + "hello1" : "world1" }, { - "_key" : "2121", - "_id" : "products/2121", - "_rev" : "_cvD8K-q--A", - "hello2" : "world1" + "_key" : "66600", + "_id" : "products/66600", + "_rev" : "_cYKLGpq---", + "hello2" : "world1" } ], - "hasMore" : true, - "id" : "2130", - "count" : 5, - "extra" : { - "warnings" : [ ], - "stats" : { - "writesExecuted" : 0, - "writesIgnored" : 0, - "scannedFull" : 5, - "scannedIndex" : 0, - "filtered" : 0, - "httpRequests" : 0, - "executionTime" : 0.0002903849817812443, - "peakMemoryUsage" : 0 + "hasMore" : true, + "id" : "66609", + "count" : 5, + "extra" : { + "warnings" : [ ], + "stats" : { + "writesExecuted" : 0, + "writesIgnored" : 0, + "scannedFull" : 5, + "scannedIndex" : 0, + "filtered" : 0, + "httpRequests" : 0, + "executionTime" : 0.00021878000006836373, + "peakMemoryUsage" : 0 } }, - "cached" : false, - "error" : false, - "code" : 201 + "cached" : false, + "error" : false, + "code" : 201 } diff --git a/3.9/generated/Examples/RestCursorCreateCursorForLimitReturnSingle.generated b/3.9/generated/Examples/RestCursorCreateCursorForLimitReturnSingle.generated index c5abaed456..068a5264e3 100644 --- a/3.9/generated/Examples/RestCursorCreateCursorForLimitReturnSingle.generated +++ b/3.9/generated/Examples/RestCursorCreateCursorForLimitReturnSingle.generated @@ -1,49 +1,49 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF { - "query" : "FOR p IN products LIMIT 2 RETURN p", - "count" : true, - "batchSize" : 2 + "query" : "FOR p IN products LIMIT 2 RETURN p", + "count" : true, + "batchSize" : 2 } EOF HTTP/1.1 201 Created content-type: application/json connection: Keep-Alive -content-length: 422 +content-length: 427 server: ArangoDB x-content-type-options: nosniff { - "result" : [ + "result" : [ { - "_key" : "2139", - "_id" : "products/2139", - "_rev" : "_cvD8K_---_", - "hello1" : "world1" + "_key" : "66618", + "_id" : "products/66618", + "_rev" : "_cYKLGqK---", + "hello1" : "world1" }, { - "_key" : "2141", - "_id" : "products/2141", - "_rev" : "_cvD8K_---A", - "hello2" : "world1" + "_key" : "66620", + "_id" : "products/66620", + "_rev" : "_cYKLGqK--_", + "hello2" : "world1" } ], - "hasMore" : false, - "count" : 2, - "cached" : false, - "extra" : { - "warnings" : [ ], - "stats" : { - "writesExecuted" : 0, - "writesIgnored" : 0, - "scannedFull" : 2, - "scannedIndex" : 0, - "filtered" : 0, - "httpRequests" : 0, - "executionTime" : 0.000271574012003839, - "peakMemoryUsage" : 0 + "hasMore" : false, + "count" : 2, + "cached" : false, + "extra" : { + "warnings" : [ ], + "stats" : { + "writesExecuted" : 0, + "writesIgnored" : 0, + "scannedFull" : 2, + "scannedIndex" : 0, + "filtered" : 0, + "httpRequests" : 0, + "executionTime" : 0.0001831420004236861, + "peakMemoryUsage" : 0 } }, - "error" : false, - "code" : 201 + "error" : false, + "code" : 201 } diff --git a/3.9/generated/Examples/RestCursorCreateCursorMissingBody.generated b/3.9/generated/Examples/RestCursorCreateCursorMissingBody.generated index 7b25d132e6..cc86d930e4 100644 --- a/3.9/generated/Examples/RestCursorCreateCursorMissingBody.generated +++ b/3.9/generated/Examples/RestCursorCreateCursorMissingBody.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --dump - http://localhost:8529/_api/cursor +shell> curl -X POST --header 'accept: application/json' --dump - http://localhost:8529/_api/cursor HTTP/1.1 400 Bad Request content-type: application/json @@ -8,8 +8,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 400, - "error" : true, - "errorMessage" : "query is empty", - "errorNum" : 1502 + "code" : 400, + "error" : true, + "errorMessage" : "query is empty", + "errorNum" : 1502 } diff --git a/3.9/generated/Examples/RestCursorCreateCursorOption.generated b/3.9/generated/Examples/RestCursorCreateCursorOption.generated index da04a8aacd..b1a15d530b 100644 --- a/3.9/generated/Examples/RestCursorCreateCursorOption.generated +++ b/3.9/generated/Examples/RestCursorCreateCursorOption.generated @@ -1,9 +1,9 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF { - "query" : "FOR i IN 1..1000 FILTER i > 500 LIMIT 10 RETURN i", - "count" : true, - "options" : { - "fullCount" : true + "query" : "FOR i IN 1..1000 FILTER i > 500 LIMIT 10 RETURN i", + "count" : true, + "options" : { + "fullCount" : true } } EOF @@ -16,7 +16,7 @@ server: ArangoDB x-content-type-options: nosniff { - "result" : [ + "result" : [ 501, 502, 503, @@ -28,23 +28,23 @@ x-content-type-options: nosniff 509, 510 ], - "hasMore" : false, - "count" : 10, - "cached" : false, - "extra" : { - "warnings" : [ ], - "stats" : { - "writesExecuted" : 0, - "writesIgnored" : 0, - "scannedFull" : 0, - "scannedIndex" : 0, - "filtered" : 500, - "httpRequests" : 0, - "fullCount" : 500, - "executionTime" : 0.0010033069993369281, - "peakMemoryUsage" : 32768 + "hasMore" : false, + "count" : 10, + "cached" : false, + "extra" : { + "warnings" : [ ], + "stats" : { + "writesExecuted" : 0, + "writesIgnored" : 0, + "scannedFull" : 0, + "scannedIndex" : 0, + "filtered" : 500, + "httpRequests" : 0, + "fullCount" : 500, + "executionTime" : 0.00047628100037400145, + "peakMemoryUsage" : 32768 } }, - "error" : false, - "code" : 201 + "error" : false, + "code" : 201 } diff --git a/3.9/generated/Examples/RestCursorCreateCursorUnknownCollection.generated b/3.9/generated/Examples/RestCursorCreateCursorUnknownCollection.generated index 883320a25e..d94454aeb6 100644 --- a/3.9/generated/Examples/RestCursorCreateCursorUnknownCollection.generated +++ b/3.9/generated/Examples/RestCursorCreateCursorUnknownCollection.generated @@ -1,8 +1,8 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF { - "query" : "FOR u IN unknowncoll LIMIT 2 RETURN u", - "count" : true, - "batchSize" : 2 + "query" : "FOR u IN unknowncoll LIMIT 2 RETURN u", + "count" : true, + "batchSize" : 2 } EOF @@ -14,8 +14,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 404, - "error" : true, - "errorMessage" : "AQL: collection or view not found: unknowncoll (while parsing)", - "errorNum" : 1203 + "code" : 404, + "error" : true, + "errorMessage" : "AQL: collection or view not found: unknowncoll (while parsing)", + "errorNum" : 1203 } diff --git a/3.9/generated/Examples/RestCursorDelete.generated b/3.9/generated/Examples/RestCursorDelete.generated index 30e416285f..4dd9db77ef 100644 --- a/3.9/generated/Examples/RestCursorDelete.generated +++ b/3.9/generated/Examples/RestCursorDelete.generated @@ -1,52 +1,52 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF { - "query" : "FOR p IN products LIMIT 5 RETURN p", - "count" : true, - "batchSize" : 2 + "query" : "FOR p IN products LIMIT 5 RETURN p", + "count" : true, + "batchSize" : 2 } EOF HTTP/1.1 201 Created content-type: application/json connection: Keep-Alive -content-length: 435 +content-length: 440 server: ArangoDB x-content-type-options: nosniff { - "result" : [ + "result" : [ { - "_key" : "2159", - "_id" : "products/2159", - "_rev" : "_cvD8K_6---", - "hello1" : "world1" + "_key" : "66638", + "_id" : "products/66638", + "_rev" : "_cYKLGrG--_", + "hello1" : "world1" }, { - "_key" : "2161", - "_id" : "products/2161", - "_rev" : "_cvD8K_6--_", - "hello2" : "world1" + "_key" : "66640", + "_id" : "products/66640", + "_rev" : "_cYKLGrK---", + "hello2" : "world1" } ], - "hasMore" : true, - "id" : "2170", - "count" : 5, - "extra" : { - "warnings" : [ ], - "stats" : { - "writesExecuted" : 0, - "writesIgnored" : 0, - "scannedFull" : 5, - "scannedIndex" : 0, - "filtered" : 0, - "httpRequests" : 0, - "executionTime" : 0.00030855595832690597, - "peakMemoryUsage" : 0 + "hasMore" : true, + "id" : "66649", + "count" : 5, + "extra" : { + "warnings" : [ ], + "stats" : { + "writesExecuted" : 0, + "writesIgnored" : 0, + "scannedFull" : 5, + "scannedIndex" : 0, + "filtered" : 0, + "httpRequests" : 0, + "executionTime" : 0.00018850400010705926, + "peakMemoryUsage" : 0 } }, - "cached" : false, - "error" : false, - "code" : 201 + "cached" : false, + "error" : false, + "code" : 201 } -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/cursor/2170 +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/cursor/66649 diff --git a/3.9/generated/Examples/RestCursorDeleteIgnore.generated b/3.9/generated/Examples/RestCursorDeleteIgnore.generated index 0a4a465c55..7f54775b62 100644 --- a/3.9/generated/Examples/RestCursorDeleteIgnore.generated +++ b/3.9/generated/Examples/RestCursorDeleteIgnore.generated @@ -1,33 +1,33 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF { - "query" : "REMOVE 'bar' IN products OPTIONS { ignoreErrors: true }" + "query" : "REMOVE 'bar' IN products OPTIONS { ignoreErrors: true }" } EOF HTTP/1.1 201 Created content-type: application/json connection: Keep-Alive -content-length: 260 +content-length: 261 server: ArangoDB x-content-type-options: nosniff { - "result" : [ ], - "hasMore" : false, - "cached" : false, - "extra" : { - "warnings" : [ ], - "stats" : { - "writesExecuted" : 0, - "writesIgnored" : 1, - "scannedFull" : 0, - "scannedIndex" : 0, - "filtered" : 0, - "httpRequests" : 0, - "executionTime" : 0.0002747550024650991, - "peakMemoryUsage" : 0 + "result" : [ ], + "hasMore" : false, + "cached" : false, + "extra" : { + "warnings" : [ ], + "stats" : { + "writesExecuted" : 0, + "writesIgnored" : 1, + "scannedFull" : 0, + "scannedIndex" : 0, + "filtered" : 0, + "httpRequests" : 0, + "executionTime" : 0.00021284200010995846, + "peakMemoryUsage" : 0 } }, - "error" : false, - "code" : 201 + "error" : false, + "code" : 201 } diff --git a/3.9/generated/Examples/RestCursorDeleteQuery.generated b/3.9/generated/Examples/RestCursorDeleteQuery.generated index 336e822b5c..4ba491f256 100644 --- a/3.9/generated/Examples/RestCursorDeleteQuery.generated +++ b/3.9/generated/Examples/RestCursorDeleteQuery.generated @@ -1,33 +1,33 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF { - "query" : "FOR p IN products REMOVE p IN products" + "query" : "FOR p IN products REMOVE p IN products" } EOF HTTP/1.1 201 Created content-type: application/json connection: Keep-Alive -content-length: 260 +content-length: 261 server: ArangoDB x-content-type-options: nosniff { - "result" : [ ], - "hasMore" : false, - "cached" : false, - "extra" : { - "warnings" : [ ], - "stats" : { - "writesExecuted" : 2, - "writesIgnored" : 0, - "scannedFull" : 0, - "scannedIndex" : 2, - "filtered" : 0, - "httpRequests" : 0, - "executionTime" : 0.0004102770471945405, - "peakMemoryUsage" : 0 + "result" : [ ], + "hasMore" : false, + "cached" : false, + "extra" : { + "warnings" : [ ], + "stats" : { + "writesExecuted" : 2, + "writesIgnored" : 0, + "scannedFull" : 0, + "scannedIndex" : 2, + "filtered" : 0, + "httpRequests" : 0, + "executionTime" : 0.00033830599932116456, + "peakMemoryUsage" : 0 } }, - "error" : false, - "code" : 201 + "error" : false, + "code" : 201 } diff --git a/3.9/generated/Examples/RestCursorDeleteQueryFail.generated b/3.9/generated/Examples/RestCursorDeleteQueryFail.generated index e2fe6a5ddb..76f2d00c11 100644 --- a/3.9/generated/Examples/RestCursorDeleteQueryFail.generated +++ b/3.9/generated/Examples/RestCursorDeleteQueryFail.generated @@ -1,6 +1,6 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF { - "query" : "REMOVE 'foo' IN products" + "query" : "REMOVE 'foo' IN products" } EOF @@ -12,8 +12,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 404, - "error" : true, - "errorMessage" : "AQL: document not found (while executing)", - "errorNum" : 1202 + "code" : 404, + "error" : true, + "errorMessage" : "AQL: document not found (while executing)", + "errorNum" : 1202 } diff --git a/3.9/generated/Examples/RestCursorForLimitReturnCont.generated b/3.9/generated/Examples/RestCursorForLimitReturnCont.generated index e9fc0156df..2fac4e7db2 100644 --- a/3.9/generated/Examples/RestCursorForLimitReturnCont.generated +++ b/3.9/generated/Examples/RestCursorForLimitReturnCont.generated @@ -1,52 +1,52 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF { - "query" : "FOR p IN products LIMIT 5 RETURN p", - "count" : true, - "batchSize" : 2 + "query" : "FOR p IN products LIMIT 5 RETURN p", + "count" : true, + "batchSize" : 2 } EOF -shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/cursor/2223 +shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/cursor/66702 HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 435 +content-length: 440 server: ArangoDB x-content-type-options: nosniff { - "result" : [ + "result" : [ { - "_key" : "2216", - "_id" : "products/2216", - "_rev" : "_cvD8KBC---", - "hello3" : "world1" + "_key" : "66695", + "_id" : "products/66695", + "_rev" : "_cYKLGs6---", + "hello3" : "world1" }, { - "_key" : "2218", - "_id" : "products/2218", - "_rev" : "_cvD8KBC--_", - "hello4" : "world1" + "_key" : "66697", + "_id" : "products/66697", + "_rev" : "_cYKLGs6--_", + "hello4" : "world1" } ], - "hasMore" : true, - "id" : "2223", - "count" : 5, - "extra" : { - "warnings" : [ ], - "stats" : { - "writesExecuted" : 0, - "writesIgnored" : 0, - "scannedFull" : 5, - "scannedIndex" : 0, - "filtered" : 0, - "httpRequests" : 0, - "executionTime" : 0.00046674098121002316, - "peakMemoryUsage" : 0 + "hasMore" : true, + "id" : "66702", + "count" : 5, + "extra" : { + "warnings" : [ ], + "stats" : { + "writesExecuted" : 0, + "writesIgnored" : 0, + "scannedFull" : 5, + "scannedIndex" : 0, + "filtered" : 0, + "httpRequests" : 0, + "executionTime" : 0.00019918599991797237, + "peakMemoryUsage" : 0 } }, - "cached" : false, - "error" : false, - "code" : 200 + "cached" : false, + "error" : false, + "code" : 200 } diff --git a/3.9/generated/Examples/RestCursorInvalidCursorIdentifier.generated b/3.9/generated/Examples/RestCursorInvalidCursorIdentifier.generated index e66fae498b..5cf5d1f12a 100644 --- a/3.9/generated/Examples/RestCursorInvalidCursorIdentifier.generated +++ b/3.9/generated/Examples/RestCursorInvalidCursorIdentifier.generated @@ -1,4 +1,4 @@ -shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/cursor/123123 +shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/cursor/123123 HTTP/1.1 404 Not Found content-type: application/json @@ -8,8 +8,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 404, - "error" : true, - "errorMessage" : "cursor not found", - "errorNum" : 1600 + "code" : 404, + "error" : true, + "errorMessage" : "cursor not found", + "errorNum" : 1600 } diff --git a/3.9/generated/Examples/RestCursorMissingCursorIdentifier.generated b/3.9/generated/Examples/RestCursorMissingCursorIdentifier.generated index 30bb23418f..deb14232ef 100644 --- a/3.9/generated/Examples/RestCursorMissingCursorIdentifier.generated +++ b/3.9/generated/Examples/RestCursorMissingCursorIdentifier.generated @@ -1,4 +1,4 @@ -shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/cursor +shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/cursor HTTP/1.1 400 Bad Request content-type: application/json @@ -8,8 +8,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 400, - "error" : true, - "errorMessage" : "expecting POST /_api/cursor/<cursor-id>", - "errorNum" : 400 + "code" : 400, + "error" : true, + "errorMessage" : "expecting POST /_api/cursor/<cursor-id>", + "errorNum" : 400 } diff --git a/3.9/generated/Examples/RestCursorOptimizerRules.generated b/3.9/generated/Examples/RestCursorOptimizerRules.generated index 8aa557e37d..e1f2b0f31c 100644 --- a/3.9/generated/Examples/RestCursorOptimizerRules.generated +++ b/3.9/generated/Examples/RestCursorOptimizerRules.generated @@ -1,13 +1,13 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF { - "query" : "FOR i IN 1..10 LET a = 1 LET b = 2 FILTER a + b == 3 RETURN i", - "count" : true, - "options" : { - "maxPlans" : 1, - "optimizer" : { - "rules" : [ - "-all", - "+remove-unnecessary-filters" + "query" : "FOR i IN 1..10 LET a = 1 LET b = 2 FILTER a + b == 3 RETURN i", + "count" : true, + "options" : { + "maxPlans" : 1, + "optimizer" : { + "rules" : [ + "-all", + "+remove-unnecessary-filters" ] } } @@ -22,7 +22,7 @@ server: ArangoDB x-content-type-options: nosniff { - "result" : [ + "result" : [ 1, 2, 3, @@ -34,22 +34,22 @@ x-content-type-options: nosniff 9, 10 ], - "hasMore" : false, - "count" : 10, - "cached" : false, - "extra" : { - "warnings" : [ ], - "stats" : { - "writesExecuted" : 0, - "writesIgnored" : 0, - "scannedFull" : 0, - "scannedIndex" : 0, - "filtered" : 0, - "httpRequests" : 0, - "executionTime" : 0.00030999601585790515, - "peakMemoryUsage" : 0 + "hasMore" : false, + "count" : 10, + "cached" : false, + "extra" : { + "warnings" : [ ], + "stats" : { + "writesExecuted" : 0, + "writesIgnored" : 0, + "scannedFull" : 0, + "scannedIndex" : 0, + "filtered" : 0, + "httpRequests" : 0, + "executionTime" : 0.00018327099951420678, + "peakMemoryUsage" : 0 } }, - "error" : false, - "code" : 201 + "error" : false, + "code" : 201 } diff --git a/3.9/generated/Examples/RestCursorPostForLimitReturnCont.generated b/3.9/generated/Examples/RestCursorPostForLimitReturnCont.generated index 82db29a2bf..a015ee11cd 100644 --- a/3.9/generated/Examples/RestCursorPostForLimitReturnCont.generated +++ b/3.9/generated/Examples/RestCursorPostForLimitReturnCont.generated @@ -1,52 +1,52 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF { - "query" : "FOR p IN products LIMIT 5 RETURN p", - "count" : true, - "batchSize" : 2 + "query" : "FOR p IN products LIMIT 5 RETURN p", + "count" : true, + "batchSize" : 2 } EOF -shell> curl -X POST --header 'accept: application/json' --dump - http://localhost:8529/_api/cursor/2248 +shell> curl -X POST --header 'accept: application/json' --dump - http://localhost:8529/_api/cursor/66727 HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 434 +content-length: 438 server: ArangoDB x-content-type-options: nosniff { - "result" : [ + "result" : [ { - "_key" : "2241", - "_id" : "products/2241", - "_rev" : "_cvD8KC---A", - "hello3" : "world1" + "_key" : "66720", + "_id" : "products/66720", + "_rev" : "_cYKLGt6--_", + "hello3" : "world1" }, { - "_key" : "2243", - "_id" : "products/2243", - "_rev" : "_cvD8KC---B", - "hello4" : "world1" + "_key" : "66722", + "_id" : "products/66722", + "_rev" : "_cYKLGu----", + "hello4" : "world1" } ], - "hasMore" : true, - "id" : "2248", - "count" : 5, - "extra" : { - "warnings" : [ ], - "stats" : { - "writesExecuted" : 0, - "writesIgnored" : 0, - "scannedFull" : 5, - "scannedIndex" : 0, - "filtered" : 0, - "httpRequests" : 0, - "executionTime" : 0.0003103489871136844, - "peakMemoryUsage" : 0 + "hasMore" : true, + "id" : "66727", + "count" : 5, + "extra" : { + "warnings" : [ ], + "stats" : { + "writesExecuted" : 0, + "writesIgnored" : 0, + "scannedFull" : 5, + "scannedIndex" : 0, + "filtered" : 0, + "httpRequests" : 0, + "executionTime" : 0.000193004999346158, + "peakMemoryUsage" : 0 } }, - "cached" : false, - "error" : false, - "code" : 200 + "cached" : false, + "error" : false, + "code" : 200 } diff --git a/3.9/generated/Examples/RestCursorPostInvalidCursorIdentifier.generated b/3.9/generated/Examples/RestCursorPostInvalidCursorIdentifier.generated index 90c0352c68..c3d9509bcb 100644 --- a/3.9/generated/Examples/RestCursorPostInvalidCursorIdentifier.generated +++ b/3.9/generated/Examples/RestCursorPostInvalidCursorIdentifier.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --dump - http://localhost:8529/_api/cursor/123123 +shell> curl -X POST --header 'accept: application/json' --dump - http://localhost:8529/_api/cursor/123123 HTTP/1.1 404 Not Found content-type: application/json @@ -8,8 +8,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 404, - "error" : true, - "errorMessage" : "cursor not found", - "errorNum" : 1600 + "code" : 404, + "error" : true, + "errorMessage" : "cursor not found", + "errorNum" : 1600 } diff --git a/3.9/generated/Examples/RestCursorPostMissingCursorIdentifier.generated b/3.9/generated/Examples/RestCursorPostMissingCursorIdentifier.generated index 7b25d132e6..cc86d930e4 100644 --- a/3.9/generated/Examples/RestCursorPostMissingCursorIdentifier.generated +++ b/3.9/generated/Examples/RestCursorPostMissingCursorIdentifier.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --dump - http://localhost:8529/_api/cursor +shell> curl -X POST --header 'accept: application/json' --dump - http://localhost:8529/_api/cursor HTTP/1.1 400 Bad Request content-type: application/json @@ -8,8 +8,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 400, - "error" : true, - "errorMessage" : "query is empty", - "errorNum" : 1502 + "code" : 400, + "error" : true, + "errorMessage" : "query is empty", + "errorNum" : 1502 } diff --git a/3.9/generated/Examples/RestCursorProfileQuery.generated b/3.9/generated/Examples/RestCursorProfileQuery.generated index 71262c9244..41f0081eb3 100644 --- a/3.9/generated/Examples/RestCursorProfileQuery.generated +++ b/3.9/generated/Examples/RestCursorProfileQuery.generated @@ -1,9 +1,9 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF { - "query" : "LET s = SLEEP(0.25) LET t = SLEEP(0.5) RETURN 1", - "count" : true, - "options" : { - "profile" : 2 + "query" : "LET s = SLEEP(0.25) LET t = SLEEP(0.5) RETURN 1", + "count" : true, + "options" : { + "profile" : 2 } } EOF @@ -11,220 +11,220 @@ EOF HTTP/1.1 201 Created content-type: application/json connection: Keep-Alive -content-length: 2535 +content-length: 2531 server: ArangoDB x-content-type-options: nosniff { - "result" : [ + "result" : [ 1 ], - "hasMore" : false, - "count" : 1, - "cached" : false, - "extra" : { - "warnings" : [ ], - "stats" : { - "writesExecuted" : 0, - "writesIgnored" : 0, - "scannedFull" : 0, - "scannedIndex" : 0, - "filtered" : 0, - "httpRequests" : 0, - "executionTime" : 0.7625498989946209, - "peakMemoryUsage" : 0, - "nodes" : [ + "hasMore" : false, + "count" : 1, + "cached" : false, + "extra" : { + "warnings" : [ ], + "stats" : { + "writesExecuted" : 0, + "writesIgnored" : 0, + "scannedFull" : 0, + "scannedIndex" : 0, + "filtered" : 0, + "httpRequests" : 0, + "executionTime" : 0.759612081999876, + "peakMemoryUsage" : 0, + "nodes" : [ { - "id" : 1, - "calls" : 1, - "items" : 1, - "runtime" : 0.000021465006284415722 + "id" : 1, + "calls" : 1, + "items" : 1, + "runtime" : 0.000004721000550489407 }, { - "id" : 2, - "calls" : 1, - "items" : 1, - "runtime" : 0.2543703129631467 + "id" : 2, + "calls" : 1, + "items" : 1, + "runtime" : 0.252990891999616 }, { - "id" : 3, - "calls" : 1, - "items" : 1, - "runtime" : 0.7621839129715227 + "id" : 3, + "calls" : 1, + "items" : 1, + "runtime" : 0.7593427829997381 }, { - "id" : 4, - "calls" : 1, - "items" : 1, - "runtime" : 0.0000404100283049047 + "id" : 4, + "calls" : 1, + "items" : 1, + "runtime" : 0.000006963000487303361 }, { - "id" : 5, - "calls" : 1, - "items" : 1, - "runtime" : 0.7622333120089024 + "id" : 5, + "calls" : 1, + "items" : 1, + "runtime" : 0.7593579260001206 } ] }, - "plan" : { - "nodes" : [ + "plan" : { + "nodes" : [ { - "type" : "SingletonNode", - "dependencies" : [ ], - "id" : 1, - "estimatedCost" : 1, - "estimatedNrItems" : 1 + "type" : "SingletonNode", + "dependencies" : [ ], + "id" : 1, + "estimatedCost" : 1, + "estimatedNrItems" : 1 }, { - "type" : "CalculationNode", - "dependencies" : [ + "type" : "CalculationNode", + "dependencies" : [ 1 ], - "id" : 4, - "estimatedCost" : 2, - "estimatedNrItems" : 1, - "expression" : { - "type" : "value", - "typeID" : 40, - "value" : 1, - "vType" : "int", - "vTypeID" : 2 + "id" : 4, + "estimatedCost" : 2, + "estimatedNrItems" : 1, + "expression" : { + "type" : "value", + "typeID" : 40, + "value" : 1, + "vType" : "int", + "vTypeID" : 2 }, - "outVariable" : { - "id" : 3, - "name" : "2", - "isDataFromCollection" : false, - "constantValue" : 1 + "outVariable" : { + "id" : 3, + "name" : "2", + "isDataFromCollection" : false, + "constantValue" : 1 }, - "canThrow" : false, - "expressionType" : "json" + "canThrow" : false, + "expressionType" : "json" }, { - "type" : "CalculationNode", - "dependencies" : [ + "type" : "CalculationNode", + "dependencies" : [ 4 ], - "id" : 2, - "estimatedCost" : 3, - "estimatedNrItems" : 1, - "expression" : { - "type" : "function call", - "typeID" : 47, - "name" : "SLEEP", - "subNodes" : [ + "id" : 2, + "estimatedCost" : 3, + "estimatedNrItems" : 1, + "expression" : { + "type" : "function call", + "typeID" : 47, + "name" : "SLEEP", + "subNodes" : [ { - "type" : "array", - "typeID" : 41, - "subNodes" : [ + "type" : "array", + "typeID" : 41, + "subNodes" : [ { - "type" : "value", - "typeID" : 40, - "value" : 0.25, - "vType" : "double", - "vTypeID" : 3 + "type" : "value", + "typeID" : 40, + "value" : 0.25, + "vType" : "double", + "vTypeID" : 3 } ] } ] }, - "outVariable" : { - "id" : 0, - "name" : "s", - "isDataFromCollection" : false + "outVariable" : { + "id" : 0, + "name" : "s", + "isDataFromCollection" : false }, - "canThrow" : false, - "expressionType" : "simple" + "canThrow" : false, + "expressionType" : "simple" }, { - "type" : "CalculationNode", - "dependencies" : [ + "type" : "CalculationNode", + "dependencies" : [ 2 ], - "id" : 3, - "estimatedCost" : 4, - "estimatedNrItems" : 1, - "expression" : { - "type" : "function call", - "typeID" : 47, - "name" : "SLEEP", - "subNodes" : [ + "id" : 3, + "estimatedCost" : 4, + "estimatedNrItems" : 1, + "expression" : { + "type" : "function call", + "typeID" : 47, + "name" : "SLEEP", + "subNodes" : [ { - "type" : "array", - "typeID" : 41, - "subNodes" : [ + "type" : "array", + "typeID" : 41, + "subNodes" : [ { - "type" : "value", - "typeID" : 40, - "value" : 0.5, - "vType" : "double", - "vTypeID" : 3 + "type" : "value", + "typeID" : 40, + "value" : 0.5, + "vType" : "double", + "vTypeID" : 3 } ] } ] }, - "outVariable" : { - "id" : 1, - "name" : "t", - "isDataFromCollection" : false + "outVariable" : { + "id" : 1, + "name" : "t", + "isDataFromCollection" : false }, - "canThrow" : false, - "expressionType" : "simple" + "canThrow" : false, + "expressionType" : "simple" }, { - "type" : "ReturnNode", - "dependencies" : [ + "type" : "ReturnNode", + "dependencies" : [ 3 ], - "id" : 5, - "estimatedCost" : 5, - "estimatedNrItems" : 1, - "inVariable" : { - "id" : 3, - "name" : "2", - "isDataFromCollection" : false, - "constantValue" : 1 + "id" : 5, + "estimatedCost" : 5, + "estimatedNrItems" : 1, + "inVariable" : { + "id" : 3, + "name" : "2", + "isDataFromCollection" : false, + "constantValue" : 1 }, - "count" : true + "count" : true } ], - "rules" : [ - "move-calculations-up" + "rules" : [ + "move-calculations-up" ], - "collections" : [ ], - "variables" : [ + "collections" : [ ], + "variables" : [ { - "id" : 3, - "name" : "2", - "isDataFromCollection" : false, - "constantValue" : 1 + "id" : 3, + "name" : "2", + "isDataFromCollection" : false, + "constantValue" : 1 }, { - "id" : 1, - "name" : "t", - "isDataFromCollection" : false + "id" : 1, + "name" : "t", + "isDataFromCollection" : false }, { - "id" : 0, - "name" : "s", - "isDataFromCollection" : false + "id" : 0, + "name" : "s", + "isDataFromCollection" : false } ], - "estimatedCost" : 5, - "estimatedNrItems" : 1, - "isModificationQuery" : false + "estimatedCost" : 5, + "estimatedNrItems" : 1, + "isModificationQuery" : false }, - "profile" : { - "initializing" : 0.000004494970198720694, - "parsing" : 0.00004972703754901886, - "optimizing ast" : 0.0000058639561757445335, - "loading collections" : 0.000005412031896412373, - "instantiating plan" : 0.000016306003089994192, - "optimizing plan" : 0.00017665699124336243, - "executing" : 0.7622538629802875, - "finalizing" : 0.00005228404188528657 + "profile" : { + "initializing" : 0.000003268000000389293, + "parsing" : 0.00006929699975444237, + "optimizing ast" : 0.000004878000254393555, + "loading collections" : 0.000004677999640989583, + "instantiating plan" : 0.00001777200031938264, + "optimizing plan" : 0.00011536700003489386, + "executing" : 0.7593716759993185, + "finalizing" : 0.00004911500036541838 } }, - "error" : false, - "code" : 201 + "error" : false, + "code" : 201 } diff --git a/3.9/generated/Examples/RestDatabaseCreate.generated b/3.9/generated/Examples/RestDatabaseCreate.generated index afe761739e..b9bb5ead71 100644 --- a/3.9/generated/Examples/RestDatabaseCreate.generated +++ b/3.9/generated/Examples/RestDatabaseCreate.generated @@ -1,9 +1,9 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/database <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/database <<EOF { - "name" : "example", - "options" : { - "sharding" : "flexible", - "replicationFactor" : 3 + "name" : "example", + "options" : { + "sharding" : "flexible", + "replicationFactor" : 3 } } EOF @@ -16,7 +16,7 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 201, - "result" : true + "error" : false, + "code" : 201, + "result" : true } diff --git a/3.9/generated/Examples/RestDatabaseCreateUsers.generated b/3.9/generated/Examples/RestDatabaseCreateUsers.generated index 9c8ee517ff..082a0227b1 100644 --- a/3.9/generated/Examples/RestDatabaseCreateUsers.generated +++ b/3.9/generated/Examples/RestDatabaseCreateUsers.generated @@ -1,16 +1,16 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/database <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/database <<EOF { - "name" : "mydb", - "users" : [ + "name" : "mydb", + "users" : [ { - "username" : "admin", - "passwd" : "secret", - "active" : true + "username" : "admin", + "passwd" : "secret", + "active" : true }, { - "username" : "tester", - "passwd" : "test001", - "active" : false + "username" : "tester", + "passwd" : "test001", + "active" : false } ] } @@ -24,7 +24,7 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 201, - "result" : true + "error" : false, + "code" : 201, + "result" : true } diff --git a/3.9/generated/Examples/RestDatabaseDrop.generated b/3.9/generated/Examples/RestDatabaseDrop.generated index 2fdf384eed..9f70c659f0 100644 --- a/3.9/generated/Examples/RestDatabaseDrop.generated +++ b/3.9/generated/Examples/RestDatabaseDrop.generated @@ -1,4 +1,4 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/database/example +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/database/example HTTP/1.1 200 OK content-type: application/json @@ -8,7 +8,7 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "result" : true + "error" : false, + "code" : 200, + "result" : true } diff --git a/3.9/generated/Examples/RestDatabaseGet.generated b/3.9/generated/Examples/RestDatabaseGet.generated index 3d2acd30f4..7e1dc4c228 100644 --- a/3.9/generated/Examples/RestDatabaseGet.generated +++ b/3.9/generated/Examples/RestDatabaseGet.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/database +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/database HTTP/1.1 200 OK content-type: application/json @@ -8,9 +8,9 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "result" : [ - "_system" + "error" : false, + "code" : 200, + "result" : [ + "_system" ] } diff --git a/3.9/generated/Examples/RestDatabaseGetInfo.generated b/3.9/generated/Examples/RestDatabaseGetInfo.generated index cacb3c1613..28c0cf11d8 100644 --- a/3.9/generated/Examples/RestDatabaseGetInfo.generated +++ b/3.9/generated/Examples/RestDatabaseGetInfo.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/database/current +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/database/current HTTP/1.1 200 OK content-type: application/json @@ -8,12 +8,12 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "result" : { - "id" : "1", - "name" : "_system", - "isSystem" : true, - "path" : "none" + "error" : false, + "code" : 200, + "result" : { + "id" : "1", + "name" : "_system", + "isSystem" : true, + "path" : "none" } } diff --git a/3.9/generated/Examples/RestDatabaseGetUser.generated b/3.9/generated/Examples/RestDatabaseGetUser.generated index 2d538a458b..70953b47f6 100644 --- a/3.9/generated/Examples/RestDatabaseGetUser.generated +++ b/3.9/generated/Examples/RestDatabaseGetUser.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/database/user +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/database/user HTTP/1.1 200 OK content-type: application/json @@ -8,9 +8,9 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "result" : [ - "_system" + "error" : false, + "code" : 200, + "result" : [ + "_system" ] } diff --git a/3.9/generated/Examples/RestDeleteUser.generated b/3.9/generated/Examples/RestDeleteUser.generated index aa8f124ad5..932289e38a 100644 --- a/3.9/generated/Examples/RestDeleteUser.generated +++ b/3.9/generated/Examples/RestDeleteUser.generated @@ -1,4 +1,4 @@ -shell> curl -X DELETE --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/user/userToDelete@myapp <<EOF +shell> curl -X DELETE --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/user/userToDelete@myapp <<EOF { } EOF @@ -11,6 +11,6 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 202 + "error" : false, + "code" : 202 } diff --git a/3.9/generated/Examples/RestDocumentHandlerDeleteDocument.generated b/3.9/generated/Examples/RestDocumentHandlerDeleteDocument.generated index 32005d3a17..c31dc11a4b 100644 --- a/3.9/generated/Examples/RestDocumentHandlerDeleteDocument.generated +++ b/3.9/generated/Examples/RestDocumentHandlerDeleteDocument.generated @@ -1,16 +1,16 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/2396 +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/66874 HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 58 -etag: "_cvD8K6W---" -location: /_db/_system/_api/document/products/2396 +content-length: 60 +etag: "_cYKLHji---" +location: /_db/_system/_api/document/products/66874 server: ArangoDB x-content-type-options: nosniff { - "_id" : "products/2396", - "_key" : "2396", - "_rev" : "_cvD8K6W---" + "_id" : "products/66874", + "_key" : "66874", + "_rev" : "_cYKLHji---" } diff --git a/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentIdentifierMulti.generated b/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentIdentifierMulti.generated index c987141b95..ed067b46a9 100644 --- a/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentIdentifierMulti.generated +++ b/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentIdentifierMulti.generated @@ -1,7 +1,7 @@ -shell> curl -X DELETE --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products <<EOF +shell> curl -X DELETE --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products <<EOF [ - "products/1", - "products/2" + "products/1", + "products/2" ] EOF @@ -14,13 +14,13 @@ x-content-type-options: nosniff [ { - "_id" : "products/1", - "_key" : "1", - "_rev" : "_cvD8K6u---" + "_id" : "products/1", + "_key" : "1", + "_rev" : "_cYKLHkW--_" }, { - "_id" : "products/2", - "_key" : "2", - "_rev" : "_cvD8K6u--_" + "_id" : "products/2", + "_key" : "2", + "_rev" : "_cYKLHkW--A" } ] diff --git a/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentIfMatchOther.generated b/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentIfMatchOther.generated index 172ab05e1c..8143e27582 100644 --- a/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentIfMatchOther.generated +++ b/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentIfMatchOther.generated @@ -1,19 +1,19 @@ -shell> curl -X DELETE --header 'If-Match: "_cvD8K66--A"' --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/2415 +shell> curl -X DELETE --header 'If-Match: "_cYKLHlK---"' --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/66893 HTTP/1.1 412 Precondition Failed content-type: application/json connection: Keep-Alive -content-length: 150 -etag: "_cvD8K66--_" +content-length: 152 +etag: "_cYKLHlG---" server: ArangoDB x-content-type-options: nosniff { - "error" : true, - "code" : 412, - "errorNum" : 1200, - "errorMessage" : "conflict, _rev values do not match", - "_id" : "products/2415", - "_key" : "2415", - "_rev" : "_cvD8K66--_" + "error" : true, + "code" : 412, + "errorNum" : 1200, + "errorMessage" : "conflict, _rev values do not match", + "_id" : "products/66893", + "_key" : "66893", + "_rev" : "_cYKLHlG---" } diff --git a/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentKeyMulti.generated b/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentKeyMulti.generated index 00e6e0a509..6c0e1cfc0c 100644 --- a/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentKeyMulti.generated +++ b/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentKeyMulti.generated @@ -1,7 +1,7 @@ -shell> curl -X DELETE --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products <<EOF +shell> curl -X DELETE --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products <<EOF [ - "1", - "2" + "1", + "2" ] EOF @@ -14,13 +14,13 @@ x-content-type-options: nosniff [ { - "_id" : "products/1", - "_key" : "1", - "_rev" : "_cvD8K7G--_" + "_id" : "products/1", + "_key" : "1", + "_rev" : "_cYKLHle---" }, { - "_id" : "products/2", - "_key" : "2", - "_rev" : "_cvD8K7G--A" + "_id" : "products/2", + "_key" : "2", + "_rev" : "_cYKLHle--_" } ] diff --git a/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentObjectMulti.generated b/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentObjectMulti.generated index 603d83dfa3..4d686becfa 100644 --- a/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentObjectMulti.generated +++ b/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentObjectMulti.generated @@ -1,10 +1,10 @@ -shell> curl -X DELETE --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products <<EOF +shell> curl -X DELETE --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products <<EOF [ { - "_key" : "1" + "_key" : "1" }, { - "_key" : "2" + "_key" : "2" } ] EOF @@ -18,13 +18,13 @@ x-content-type-options: nosniff [ { - "_id" : "products/1", - "_key" : "1", - "_rev" : "_cvD8K7W---" + "_id" : "products/1", + "_key" : "1", + "_rev" : "_cYKLHmG---" }, { - "_id" : "products/2", - "_key" : "2", - "_rev" : "_cvD8K7W--_" + "_id" : "products/2", + "_key" : "2", + "_rev" : "_cYKLHmG--_" } ] diff --git a/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentRevConflictMulti.generated b/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentRevConflictMulti.generated index b31f36fbe3..cd4b038d95 100644 --- a/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentRevConflictMulti.generated +++ b/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentRevConflictMulti.generated @@ -1,12 +1,12 @@ -shell> curl -X DELETE --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products?ignoreRevs=false <<EOF +shell> curl -X DELETE --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products?ignoreRevs=false <<EOF [ { - "_key" : "1", - "_rev" : "non-matching revision" + "_key" : "1", + "_rev" : "non-matching revision" }, { - "_key" : "2", - "_rev" : "non-matching revision" + "_key" : "2", + "_rev" : "non-matching revision" } ] EOF @@ -16,18 +16,18 @@ content-type: application/json connection: Keep-Alive content-length: 167 server: ArangoDB -x-arango-error-codes: {"1200":2} +x-arango-error-codes: {"1200":2} x-content-type-options: nosniff [ { - "error" : true, - "errorNum" : 1200, - "errorMessage" : "conflict, _rev values do not match" + "error" : true, + "errorNum" : 1200, + "errorMessage" : "conflict, _rev values do not match" }, { - "error" : true, - "errorNum" : 1200, - "errorMessage" : "conflict, _rev values do not match" + "error" : true, + "errorNum" : 1200, + "errorMessage" : "conflict, _rev values do not match" } ] diff --git a/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentRevMulti.generated b/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentRevMulti.generated index 04b7c97698..b1801ffeea 100644 --- a/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentRevMulti.generated +++ b/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentRevMulti.generated @@ -1,12 +1,12 @@ -shell> curl -X DELETE --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products?ignoreRevs=false <<EOF +shell> curl -X DELETE --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products?ignoreRevs=false <<EOF [ { - "_key" : "1", - "_rev" : "_cvD8K7y---" + "_key" : "1", + "_rev" : "_cYKLHnO---" }, { - "_key" : "2", - "_rev" : "_cvD8K7y--_" + "_key" : "2", + "_rev" : "_cYKLHnO--_" } ] EOF @@ -20,13 +20,13 @@ x-content-type-options: nosniff [ { - "_id" : "products/1", - "_key" : "1", - "_rev" : "_cvD8K7y---" + "_id" : "products/1", + "_key" : "1", + "_rev" : "_cYKLHnO---" }, { - "_id" : "products/2", - "_key" : "2", - "_rev" : "_cvD8K7y--_" + "_id" : "products/2", + "_key" : "2", + "_rev" : "_cYKLHnO--_" } ] diff --git a/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentUnknownHandle.generated b/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentUnknownHandle.generated index 31ef2591fd..2da55c918a 100644 --- a/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentUnknownHandle.generated +++ b/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentUnknownHandle.generated @@ -1,4 +1,4 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/2464 +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/66942 HTTP/1.1 404 Not Found content-type: application/json @@ -8,8 +8,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 404, - "error" : true, - "errorMessage" : "document not found", - "errorNum" : 1202 + "code" : 404, + "error" : true, + "errorMessage" : "document not found", + "errorNum" : 1202 } diff --git a/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentUnknownMulti.generated b/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentUnknownMulti.generated index a66aba3eb4..81c4f43a60 100644 --- a/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentUnknownMulti.generated +++ b/3.9/generated/Examples/RestDocumentHandlerDeleteDocumentUnknownMulti.generated @@ -1,7 +1,7 @@ -shell> curl -X DELETE --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products <<EOF +shell> curl -X DELETE --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products <<EOF [ - "1", - "other/2" + "1", + "other/2" ] EOF @@ -10,18 +10,18 @@ content-type: application/json connection: Keep-Alive content-length: 135 server: ArangoDB -x-arango-error-codes: {"1202":2} +x-arango-error-codes: {"1202":2} x-content-type-options: nosniff [ { - "error" : true, - "errorNum" : 1202, - "errorMessage" : "document not found" + "error" : true, + "errorNum" : 1202, + "errorMessage" : "document not found" }, { - "error" : true, - "errorNum" : 1202, - "errorMessage" : "document not found" + "error" : true, + "errorNum" : 1202, + "errorMessage" : "document not found" } ] diff --git a/3.9/generated/Examples/RestDocumentHandlerPatchDocument.generated b/3.9/generated/Examples/RestDocumentHandlerPatchDocument.generated index e98a621521..b3b5a8b868 100644 --- a/3.9/generated/Examples/RestDocumentHandlerPatchDocument.generated +++ b/3.9/generated/Examples/RestDocumentHandlerPatchDocument.generated @@ -1,31 +1,31 @@ -shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/2492 <<EOF +shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/66970 <<EOF { - "hello" : "world" + "hello" : "world" } EOF HTTP/1.1 202 Accepted content-type: application/json connection: Keep-Alive -content-length: 82 -etag: "_cvD8K8y--_" -location: /_db/_system/_api/document/products/2492 +content-length: 84 +etag: "_cYKLHpe---" +location: /_db/_system/_api/document/products/66970 server: ArangoDB x-content-type-options: nosniff { - "_id" : "products/2492", - "_key" : "2492", - "_rev" : "_cvD8K8y--_", - "_oldRev" : "_cvD8K8y---" + "_id" : "products/66970", + "_key" : "66970", + "_rev" : "_cYKLHpe---", + "_oldRev" : "_cYKLHpa--_" } -shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/2492 <<EOF +shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/66970 <<EOF { - "numbers" : { - "one" : 1, - "two" : 2, - "three" : 3, - "empty" : null + "numbers" : { + "one" : 1, + "two" : 2, + "three" : 3, + "empty" : null } } EOF @@ -33,46 +33,46 @@ EOF HTTP/1.1 202 Accepted content-type: application/json connection: Keep-Alive -content-length: 82 -etag: "_cvD8K86---" -location: /_db/_system/_api/document/products/2492 +content-length: 84 +etag: "_cYKLHpm---" +location: /_db/_system/_api/document/products/66970 server: ArangoDB x-content-type-options: nosniff { - "_id" : "products/2492", - "_key" : "2492", - "_rev" : "_cvD8K86---", - "_oldRev" : "_cvD8K8y--_" + "_id" : "products/66970", + "_key" : "66970", + "_rev" : "_cYKLHpm---", + "_oldRev" : "_cYKLHpe---" } -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/2492 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/66970 HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 139 -etag: "_cvD8K86---" +content-length: 141 +etag: "_cYKLHpm---" server: ArangoDB x-content-type-options: nosniff { - "_key" : "2492", - "_id" : "products/2492", - "_rev" : "_cvD8K86---", - "one" : "world", - "hello" : "world", - "numbers" : { - "one" : 1, - "two" : 2, - "three" : 3, - "empty" : null + "_key" : "66970", + "_id" : "products/66970", + "_rev" : "_cYKLHpm---", + "one" : "world", + "hello" : "world", + "numbers" : { + "one" : 1, + "two" : 2, + "three" : 3, + "empty" : null } } -shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/2492?keepNull=false <<EOF +shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/66970?keepNull=false <<EOF { - "hello" : null, - "numbers" : { - "four" : 4 + "hello" : null, + "numbers" : { + "four" : 4 } } EOF @@ -80,38 +80,38 @@ EOF HTTP/1.1 202 Accepted content-type: application/json connection: Keep-Alive -content-length: 82 -etag: "_cvD8K9C---" -location: /_db/_system/_api/document/products/2492 +content-length: 84 +etag: "_cYKLHpy---" +location: /_db/_system/_api/document/products/66970 server: ArangoDB x-content-type-options: nosniff { - "_id" : "products/2492", - "_key" : "2492", - "_rev" : "_cvD8K9C---", - "_oldRev" : "_cvD8K86---" + "_id" : "products/66970", + "_key" : "66970", + "_rev" : "_cYKLHpy---", + "_oldRev" : "_cYKLHpm---" } -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/2492 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/66970 HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 132 -etag: "_cvD8K9C---" +content-length: 134 +etag: "_cYKLHpy---" server: ArangoDB x-content-type-options: nosniff { - "_key" : "2492", - "_id" : "products/2492", - "_rev" : "_cvD8K9C---", - "one" : "world", - "numbers" : { - "empty" : null, - "one" : 1, - "three" : 3, - "two" : 2, - "four" : 4 + "_key" : "66970", + "_id" : "products/66970", + "_rev" : "_cYKLHpy---", + "one" : "world", + "numbers" : { + "empty" : null, + "one" : 1, + "three" : 3, + "two" : 2, + "four" : 4 } } diff --git a/3.9/generated/Examples/RestDocumentHandlerPatchDocumentMerge.generated b/3.9/generated/Examples/RestDocumentHandlerPatchDocumentMerge.generated index ac53f070a0..61e21e123e 100644 --- a/3.9/generated/Examples/RestDocumentHandlerPatchDocumentMerge.generated +++ b/3.9/generated/Examples/RestDocumentHandlerPatchDocumentMerge.generated @@ -1,58 +1,58 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/2506 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/66984 HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 128 -etag: "_cvD8K9W---" +content-length: 130 +etag: "_cYKLHqO---" server: ArangoDB x-content-type-options: nosniff { - "_key" : "2506", - "_id" : "products/2506", - "_rev" : "_cvD8K9W---", - "inhabitants" : { - "china" : 1366980000, - "india" : 1263590000, - "usa" : 319220000 + "_key" : "66984", + "_id" : "products/66984", + "_rev" : "_cYKLHqO---", + "inhabitants" : { + "china" : 1366980000, + "india" : 1263590000, + "usa" : 319220000 } } -shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/2506?mergeObjects=true <<EOF +shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/66984?mergeObjects=true <<EOF { - "inhabitants" : { - "indonesia" : 252164800, - "brazil" : 203553000 + "inhabitants" : { + "indonesia" : 252164800, + "brazil" : 203553000 } } EOF -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/2506 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/66984 HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 169 -etag: "_cvD8K9a---" +content-length: 171 +etag: "_cYKLHqW---" server: ArangoDB x-content-type-options: nosniff { - "_key" : "2506", - "_id" : "products/2506", - "_rev" : "_cvD8K9a---", - "inhabitants" : { - "china" : 1366980000, - "india" : 1263590000, - "usa" : 319220000, - "indonesia" : 252164800, - "brazil" : 203553000 + "_key" : "66984", + "_id" : "products/66984", + "_rev" : "_cYKLHqW---", + "inhabitants" : { + "china" : 1366980000, + "india" : 1263590000, + "usa" : 319220000, + "indonesia" : 252164800, + "brazil" : 203553000 } } -shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/2506?mergeObjects=false <<EOF +shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/66984?mergeObjects=false <<EOF { - "inhabitants" : { - "pakistan" : 188346000 + "inhabitants" : { + "pakistan" : 188346000 } } EOF @@ -60,33 +60,33 @@ EOF HTTP/1.1 202 Accepted content-type: application/json connection: Keep-Alive -content-length: 82 -etag: "_cvD8K9i---" -location: /_db/_system/_api/document/products/2506 +content-length: 84 +etag: "_cYKLHqe---" +location: /_db/_system/_api/document/products/66984 server: ArangoDB x-content-type-options: nosniff { - "_id" : "products/2506", - "_key" : "2506", - "_rev" : "_cvD8K9i---", - "_oldRev" : "_cvD8K9a---" + "_id" : "products/66984", + "_key" : "66984", + "_rev" : "_cYKLHqe---", + "_oldRev" : "_cYKLHqW---" } -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/2506 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/66984 HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 95 -etag: "_cvD8K9i---" +content-length: 97 +etag: "_cYKLHqe---" server: ArangoDB x-content-type-options: nosniff { - "_key" : "2506", - "_id" : "products/2506", - "_rev" : "_cvD8K9i---", - "inhabitants" : { - "pakistan" : 188346000 + "_key" : "66984", + "_id" : "products/66984", + "_rev" : "_cYKLHqe---", + "inhabitants" : { + "pakistan" : 188346000 } } diff --git a/3.9/generated/Examples/RestDocumentHandlerPostAccept1.generated b/3.9/generated/Examples/RestDocumentHandlerPostAccept1.generated index 8e547accb8..246b25ad52 100644 --- a/3.9/generated/Examples/RestDocumentHandlerPostAccept1.generated +++ b/3.9/generated/Examples/RestDocumentHandlerPostAccept1.generated @@ -1,18 +1,18 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products <<EOF { "Hello": "World" } EOF HTTP/1.1 202 Accepted content-type: application/json connection: Keep-Alive -content-length: 58 -etag: "_cvD8K9u--_" -location: /_db/_system/_api/document/products/2520 +content-length: 60 +etag: "_cYKLHq2---" +location: /_db/_system/_api/document/products/66998 server: ArangoDB x-content-type-options: nosniff { - "_id" : "products/2520", - "_key" : "2520", - "_rev" : "_cvD8K9u--_" + "_id" : "products/66998", + "_key" : "66998", + "_rev" : "_cYKLHq2---" } diff --git a/3.9/generated/Examples/RestDocumentHandlerPostBadJson1.generated b/3.9/generated/Examples/RestDocumentHandlerPostBadJson1.generated index 8632619ab8..a1bb4f152f 100644 --- a/3.9/generated/Examples/RestDocumentHandlerPostBadJson1.generated +++ b/3.9/generated/Examples/RestDocumentHandlerPostBadJson1.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products <<EOF { 1: "World" } EOF @@ -10,8 +10,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 400, - "error" : true, - "errorMessage" : "VPackError error: Expecting '\"' or '}'", - "errorNum" : 600 + "code" : 400, + "error" : true, + "errorMessage" : "VPackError error: Expecting '\"' or '}'", + "errorNum" : 600 } diff --git a/3.9/generated/Examples/RestDocumentHandlerPostBadJsonMulti.generated b/3.9/generated/Examples/RestDocumentHandlerPostBadJsonMulti.generated index cbb22e1ac5..e41ff59ed5 100644 --- a/3.9/generated/Examples/RestDocumentHandlerPostBadJsonMulti.generated +++ b/3.9/generated/Examples/RestDocumentHandlerPostBadJsonMulti.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products <<EOF [{ "_key": 111 }, {"_key":"abc"}] EOF @@ -7,18 +7,18 @@ content-type: application/json connection: Keep-Alive content-length: 127 server: ArangoDB -x-arango-error-codes: {"1221":1} +x-arango-error-codes: {"1221":1} x-content-type-options: nosniff [ { - "error" : true, - "errorNum" : 1221, - "errorMessage" : "illegal document key" + "error" : true, + "errorNum" : 1221, + "errorMessage" : "illegal document key" }, { - "_id" : "products/abc", - "_key" : "abc", - "_rev" : "_cvD8L-K--_" + "_id" : "products/abc", + "_key" : "abc", + "_rev" : "_cYKLHra--_" } ] diff --git a/3.9/generated/Examples/RestDocumentHandlerPostCreate1.generated b/3.9/generated/Examples/RestDocumentHandlerPostCreate1.generated index d98fef1a99..3f5b19d938 100644 --- a/3.9/generated/Examples/RestDocumentHandlerPostCreate1.generated +++ b/3.9/generated/Examples/RestDocumentHandlerPostCreate1.generated @@ -1,18 +1,18 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products <<EOF { "Hello": "World" } EOF HTTP/1.1 201 Created content-type: application/json connection: Keep-Alive -content-length: 58 -etag: "_cvD8L-a--_" -location: /_db/_system/_api/document/products/2544 +content-length: 60 +etag: "_cYKLHr2---" +location: /_db/_system/_api/document/products/67022 server: ArangoDB x-content-type-options: nosniff { - "_id" : "products/2544", - "_key" : "2544", - "_rev" : "_cvD8L-a--_" + "_id" : "products/67022", + "_key" : "67022", + "_rev" : "_cYKLHr2---" } diff --git a/3.9/generated/Examples/RestDocumentHandlerPostMulti1.generated b/3.9/generated/Examples/RestDocumentHandlerPostMulti1.generated index 7402648bb7..c97fdce8b9 100644 --- a/3.9/generated/Examples/RestDocumentHandlerPostMulti1.generated +++ b/3.9/generated/Examples/RestDocumentHandlerPostMulti1.generated @@ -1,28 +1,28 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products <<EOF [{"Hello":"Earth"}, {"Hello":"Venus"}, {"Hello":"Mars"}] EOF HTTP/1.1 202 Accepted content-type: application/json connection: Keep-Alive -content-length: 178 +content-length: 184 server: ArangoDB x-content-type-options: nosniff [ { - "_id" : "products/2553", - "_key" : "2553", - "_rev" : "_cvD8L-m---" + "_id" : "products/67031", + "_key" : "67031", + "_rev" : "_cYKLHsa---" }, { - "_id" : "products/2554", - "_key" : "2554", - "_rev" : "_cvD8L-m--_" + "_id" : "products/67032", + "_key" : "67032", + "_rev" : "_cYKLHsa--_" }, { - "_id" : "products/2555", - "_key" : "2555", - "_rev" : "_cvD8L-m--A" + "_id" : "products/67033", + "_key" : "67033", + "_rev" : "_cYKLHsa--A" } ] diff --git a/3.9/generated/Examples/RestDocumentHandlerPostMulti2.generated b/3.9/generated/Examples/RestDocumentHandlerPostMulti2.generated index 8c9e215675..9997e38945 100644 --- a/3.9/generated/Examples/RestDocumentHandlerPostMulti2.generated +++ b/3.9/generated/Examples/RestDocumentHandlerPostMulti2.generated @@ -1,46 +1,46 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products?returnNew=true <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products?returnNew=true <<EOF [{"Hello":"Earth"}, {"Hello":"Venus"}, {"Hello":"Mars"}] EOF HTTP/1.1 202 Accepted content-type: application/json connection: Keep-Alive -content-length: 420 +content-length: 432 server: ArangoDB x-content-type-options: nosniff [ { - "_id" : "products/2564", - "_key" : "2564", - "_rev" : "_cvD8L-u--_", - "new" : { - "_key" : "2564", - "_id" : "products/2564", - "_rev" : "_cvD8L-u--_", - "Hello" : "Earth" + "_id" : "products/67042", + "_key" : "67042", + "_rev" : "_cYKLHs6---", + "new" : { + "_key" : "67042", + "_id" : "products/67042", + "_rev" : "_cYKLHs6---", + "Hello" : "Earth" } }, { - "_id" : "products/2565", - "_key" : "2565", - "_rev" : "_cvD8L-u--A", - "new" : { - "_key" : "2565", - "_id" : "products/2565", - "_rev" : "_cvD8L-u--A", - "Hello" : "Venus" + "_id" : "products/67043", + "_key" : "67043", + "_rev" : "_cYKLHs6--_", + "new" : { + "_key" : "67043", + "_id" : "products/67043", + "_rev" : "_cYKLHs6--_", + "Hello" : "Venus" } }, { - "_id" : "products/2566", - "_key" : "2566", - "_rev" : "_cvD8L-u--B", - "new" : { - "_key" : "2566", - "_id" : "products/2566", - "_rev" : "_cvD8L-u--B", - "Hello" : "Mars" + "_id" : "products/67044", + "_key" : "67044", + "_rev" : "_cYKLHs6--A", + "new" : { + "_key" : "67044", + "_id" : "products/67044", + "_rev" : "_cYKLHs6--A", + "Hello" : "Mars" } } ] diff --git a/3.9/generated/Examples/RestDocumentHandlerPostOverwrite.generated b/3.9/generated/Examples/RestDocumentHandlerPostOverwrite.generated index b1a1c251c8..bc171fe511 100644 --- a/3.9/generated/Examples/RestDocumentHandlerPostOverwrite.generated +++ b/3.9/generated/Examples/RestDocumentHandlerPostOverwrite.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products <<EOF { "Hello": "World", "_key" : "lock" } EOF @@ -6,17 +6,17 @@ HTTP/1.1 201 C content-type: application/json connection: Keep-Alive content-length: 58 -etag: "_cvD8L_----" +etag: "_cYKLHtS---" location: /_db/_system/_api/document/products/lock server: ArangoDB x-content-type-options: nosniff { - "_id" : "products/lock", - "_key" : "lock", - "_rev" : "_cvD8L_----" + "_id" : "products/lock", + "_key" : "lock", + "_rev" : "_cYKLHtS---" } -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products?overwrite=true <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products?overwrite=true <<EOF { "Hello": "Universe", "_key" : "lock" } EOF @@ -24,14 +24,14 @@ HTTP/1.1 201 C content-type: application/json connection: Keep-Alive content-length: 82 -etag: "_cvD8L_C---" +etag: "_cYKLHtm---" location: /_db/_system/_api/document/products/lock server: ArangoDB x-content-type-options: nosniff { - "_id" : "products/lock", - "_key" : "lock", - "_rev" : "_cvD8L_C---", - "_oldRev" : "_cvD8L_----" + "_id" : "products/lock", + "_key" : "lock", + "_rev" : "_cYKLHtm---", + "_oldRev" : "_cYKLHtS---" } diff --git a/3.9/generated/Examples/RestDocumentHandlerPostReturnNew.generated b/3.9/generated/Examples/RestDocumentHandlerPostReturnNew.generated index 038e431bdb..bbcc6d959d 100644 --- a/3.9/generated/Examples/RestDocumentHandlerPostReturnNew.generated +++ b/3.9/generated/Examples/RestDocumentHandlerPostReturnNew.generated @@ -1,24 +1,24 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products?returnNew=true <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products?returnNew=true <<EOF {"Hello":"World"} EOF HTTP/1.1 202 Accepted content-type: application/json connection: Keep-Alive -content-length: 139 -etag: "_cvD8L_O---" -location: /_db/_system/_api/document/products/2584 +content-length: 143 +etag: "_cYKLHuC--_" +location: /_db/_system/_api/document/products/67062 server: ArangoDB x-content-type-options: nosniff { - "_id" : "products/2584", - "_key" : "2584", - "_rev" : "_cvD8L_O---", - "new" : { - "_key" : "2584", - "_id" : "products/2584", - "_rev" : "_cvD8L_O---", - "Hello" : "World" + "_id" : "products/67062", + "_key" : "67062", + "_rev" : "_cYKLHuC--_", + "new" : { + "_key" : "67062", + "_id" : "products/67062", + "_rev" : "_cYKLHuC--_", + "Hello" : "World" } } diff --git a/3.9/generated/Examples/RestDocumentHandlerPostUnknownCollection1.generated b/3.9/generated/Examples/RestDocumentHandlerPostUnknownCollection1.generated index 98aea21144..ab2c290ac7 100644 --- a/3.9/generated/Examples/RestDocumentHandlerPostUnknownCollection1.generated +++ b/3.9/generated/Examples/RestDocumentHandlerPostUnknownCollection1.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products <<EOF { "Hello": "World" } EOF @@ -10,8 +10,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 404, - "error" : true, - "errorMessage" : "collection or view not found: products", - "errorNum" : 1203 + "code" : 404, + "error" : true, + "errorMessage" : "collection or view not found: products", + "errorNum" : 1203 } diff --git a/3.9/generated/Examples/RestDocumentHandlerPostWait1.generated b/3.9/generated/Examples/RestDocumentHandlerPostWait1.generated index 1dc4f17a2f..b44c4f9e54 100644 --- a/3.9/generated/Examples/RestDocumentHandlerPostWait1.generated +++ b/3.9/generated/Examples/RestDocumentHandlerPostWait1.generated @@ -1,18 +1,18 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products?waitForSync=true <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products?waitForSync=true <<EOF { "Hello": "World" } EOF HTTP/1.1 201 Created content-type: application/json connection: Keep-Alive -content-length: 58 -etag: "_cvD8L_q---" -location: /_db/_system/_api/document/products/2595 +content-length: 60 +etag: "_cYKLHui---" +location: /_db/_system/_api/document/products/67073 server: ArangoDB x-content-type-options: nosniff { - "_id" : "products/2595", - "_key" : "2595", - "_rev" : "_cvD8L_q---" + "_id" : "products/67073", + "_key" : "67073", + "_rev" : "_cYKLHui---" } diff --git a/3.9/generated/Examples/RestDocumentHandlerReadDocument.generated b/3.9/generated/Examples/RestDocumentHandlerReadDocument.generated index d4b096f6af..9c8d5a8c45 100644 --- a/3.9/generated/Examples/RestDocumentHandlerReadDocument.generated +++ b/3.9/generated/Examples/RestDocumentHandlerReadDocument.generated @@ -1,16 +1,16 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/2604 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/67082 HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 74 -etag: "_cvD8LA---_" +content-length: 76 +etag: "_cYKLHv---_" server: ArangoDB x-content-type-options: nosniff { - "_key" : "2604", - "_id" : "products/2604", - "_rev" : "_cvD8LA---_", - "hello" : "world" + "_key" : "67082", + "_id" : "products/67082", + "_rev" : "_cYKLHv---_", + "hello" : "world" } diff --git a/3.9/generated/Examples/RestDocumentHandlerReadDocumentHead.generated b/3.9/generated/Examples/RestDocumentHandlerReadDocumentHead.generated index 0e5883fbbf..4669dd807e 100644 --- a/3.9/generated/Examples/RestDocumentHandlerReadDocumentHead.generated +++ b/3.9/generated/Examples/RestDocumentHandlerReadDocumentHead.generated @@ -1,2 +1,2 @@ -shell> curl -X HEAD --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/2614 +shell> curl -X HEAD --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/67092 diff --git a/3.9/generated/Examples/RestDocumentHandlerReadDocumentIfNoneMatch.generated b/3.9/generated/Examples/RestDocumentHandlerReadDocumentIfNoneMatch.generated index 2977b67730..06334c45ab 100644 --- a/3.9/generated/Examples/RestDocumentHandlerReadDocumentIfNoneMatch.generated +++ b/3.9/generated/Examples/RestDocumentHandlerReadDocumentIfNoneMatch.generated @@ -1,2 +1,2 @@ -shell> curl --header 'If-None-Match: "_cvD8LAa--_"' --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/2624 +shell> curl --header 'If-None-Match: "_cYKLHvm---"' --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/67102 diff --git a/3.9/generated/Examples/RestDocumentHandlerReadDocumentUnknownHandle.generated b/3.9/generated/Examples/RestDocumentHandlerReadDocumentUnknownHandle.generated index 2e60d69eba..c7abab427b 100644 --- a/3.9/generated/Examples/RestDocumentHandlerReadDocumentUnknownHandle.generated +++ b/3.9/generated/Examples/RestDocumentHandlerReadDocumentUnknownHandle.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/unknown-identifier +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/unknown-identifier HTTP/1.1 404 Not Found content-type: application/json @@ -8,8 +8,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 404, - "error" : true, - "errorMessage" : "collection or view not found: products", - "errorNum" : 1203 + "code" : 404, + "error" : true, + "errorMessage" : "collection or view not found: products", + "errorNum" : 1203 } diff --git a/3.9/generated/Examples/RestDocumentHandlerReadMultiDocument.generated b/3.9/generated/Examples/RestDocumentHandlerReadMultiDocument.generated index 6f9fc4e311..015ac2a736 100644 --- a/3.9/generated/Examples/RestDocumentHandlerReadMultiDocument.generated +++ b/3.9/generated/Examples/RestDocumentHandlerReadMultiDocument.generated @@ -1,4 +1,4 @@ -shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products?onlyget=true <<EOF +shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products?onlyget=true <<EOF ["doc1", {"_key":"doc2"}] EOF @@ -11,15 +11,15 @@ x-content-type-options: nosniff [ { - "_key" : "doc1", - "_id" : "products/doc1", - "_rev" : "_cvD8LAq--_", - "hello" : "world" + "_key" : "doc1", + "_id" : "products/doc1", + "_rev" : "_cYKLHwC---", + "hello" : "world" }, { - "_key" : "doc2", - "_id" : "products/doc2", - "_rev" : "_cvD8LAu---", - "say" : "hi to mom" + "_key" : "doc2", + "_id" : "products/doc2", + "_rev" : "_cYKLHwC--_", + "say" : "hi to mom" } ] diff --git a/3.9/generated/Examples/RestDocumentHandlerUpdateDocument.generated b/3.9/generated/Examples/RestDocumentHandlerUpdateDocument.generated index 5692086045..188d709a72 100644 --- a/3.9/generated/Examples/RestDocumentHandlerUpdateDocument.generated +++ b/3.9/generated/Examples/RestDocumentHandlerUpdateDocument.generated @@ -1,19 +1,19 @@ -shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/2646 <<EOF +shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/67124 <<EOF {"Hello": "you"} EOF HTTP/1.1 202 Accepted content-type: application/json connection: Keep-Alive -content-length: 82 -etag: "_cvD8LA6--A" -location: /_db/_system/_api/document/products/2646 +content-length: 84 +etag: "_cYKLHwW--_" +location: /_db/_system/_api/document/products/67124 server: ArangoDB x-content-type-options: nosniff { - "_id" : "products/2646", - "_key" : "2646", - "_rev" : "_cvD8LA6--A", - "_oldRev" : "_cvD8LA6--_" + "_id" : "products/67124", + "_key" : "67124", + "_rev" : "_cYKLHwW--_", + "_oldRev" : "_cYKLHwW---" } diff --git a/3.9/generated/Examples/RestDocumentHandlerUpdateDocumentIfMatchOther.generated b/3.9/generated/Examples/RestDocumentHandlerUpdateDocumentIfMatchOther.generated index 242380828d..d07ace315a 100644 --- a/3.9/generated/Examples/RestDocumentHandlerUpdateDocumentIfMatchOther.generated +++ b/3.9/generated/Examples/RestDocumentHandlerUpdateDocumentIfMatchOther.generated @@ -1,21 +1,21 @@ -shell> curl -X PUT --header 'If-Match: "_cvD8LBG--A"' --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/2656 <<EOF +shell> curl -X PUT --header 'If-Match: "_cYKLHwq--_"' --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/67134 <<EOF {"other":"content"} EOF HTTP/1.1 412 Precondition Failed content-type: application/json connection: Keep-Alive -content-length: 150 -etag: "_cvD8LBG--_" +content-length: 152 +etag: "_cYKLHwq---" server: ArangoDB x-content-type-options: nosniff { - "error" : true, - "code" : 412, - "errorNum" : 1200, - "errorMessage" : "conflict, _rev values do not match", - "_id" : "products/2656", - "_key" : "2656", - "_rev" : "_cvD8LBG--_" + "error" : true, + "code" : 412, + "errorNum" : 1200, + "errorMessage" : "conflict, _rev values do not match", + "_id" : "products/67134", + "_key" : "67134", + "_rev" : "_cYKLHwq---" } diff --git a/3.9/generated/Examples/RestDocumentHandlerUpdateDocumentUnknownHandle.generated b/3.9/generated/Examples/RestDocumentHandlerUpdateDocumentUnknownHandle.generated index 1b0943da69..7f48075685 100644 --- a/3.9/generated/Examples/RestDocumentHandlerUpdateDocumentUnknownHandle.generated +++ b/3.9/generated/Examples/RestDocumentHandlerUpdateDocumentUnknownHandle.generated @@ -1,4 +1,4 @@ -shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/2669 <<EOF +shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/67147 <<EOF {} EOF @@ -10,8 +10,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 404, - "error" : true, - "errorMessage" : "document not found", - "errorNum" : 1202 + "code" : 404, + "error" : true, + "errorMessage" : "document not found", + "errorNum" : 1202 } diff --git a/3.9/generated/Examples/RestEdgesReadEdgesAny.generated b/3.9/generated/Examples/RestEdgesReadEdgesAny.generated index d47d00baa5..4ff0665005 100644 --- a/3.9/generated/Examples/RestEdgesReadEdgesAny.generated +++ b/3.9/generated/Examples/RestEdgesReadEdgesAny.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/edges/edges?vertex=vertices/1 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/edges/edges?vertex=vertices/1 HTTP/1.1 200 OK content-type: application/json @@ -8,42 +8,42 @@ server: ArangoDB x-content-type-options: nosniff { - "edges" : [ + "edges" : [ { - "_key" : "5", - "_id" : "edges/5", - "_from" : "vertices/1", - "_to" : "vertices/3", - "_rev" : "_cvD8LBm--A", - "$label" : "v1 -> v3" + "_key" : "5", + "_id" : "edges/5", + "_from" : "vertices/1", + "_to" : "vertices/3", + "_rev" : "_cYKLHxa--_", + "$label" : "v1 -> v3" }, { - "_key" : "6", - "_id" : "edges/6", - "_from" : "vertices/2", - "_to" : "vertices/1", - "_rev" : "_cvD8LBm--B", - "$label" : "v2 -> v1" + "_key" : "6", + "_id" : "edges/6", + "_from" : "vertices/2", + "_to" : "vertices/1", + "_rev" : "_cYKLHxa--A", + "$label" : "v2 -> v1" }, { - "_key" : "7", - "_id" : "edges/7", - "_from" : "vertices/4", - "_to" : "vertices/1", - "_rev" : "_cvD8LBm--C", - "$label" : "v4 -> v1" + "_key" : "7", + "_id" : "edges/7", + "_from" : "vertices/4", + "_to" : "vertices/1", + "_rev" : "_cYKLHxe---", + "$label" : "v4 -> v1" } ], - "error" : false, - "code" : 200, - "stats" : { - "writesExecuted" : 0, - "writesIgnored" : 0, - "scannedFull" : 0, - "scannedIndex" : 3, - "filtered" : 0, - "httpRequests" : 0, - "executionTime" : 0.0004129770095460117, - "peakMemoryUsage" : 32768 + "error" : false, + "code" : 200, + "stats" : { + "writesExecuted" : 0, + "writesIgnored" : 0, + "scannedFull" : 0, + "scannedIndex" : 3, + "filtered" : 0, + "httpRequests" : 0, + "executionTime" : 0.0003663160005089594, + "peakMemoryUsage" : 32768 } } diff --git a/3.9/generated/Examples/RestEdgesReadEdgesIn.generated b/3.9/generated/Examples/RestEdgesReadEdgesIn.generated index 700a2cf119..2622bbc9c4 100644 --- a/3.9/generated/Examples/RestEdgesReadEdgesIn.generated +++ b/3.9/generated/Examples/RestEdgesReadEdgesIn.generated @@ -1,41 +1,41 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/edges/edges?vertex=vertices/1&direction=in +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/edges/edges?vertex=vertices/1&direction=in HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 422 +content-length: 424 server: ArangoDB x-content-type-options: nosniff { - "edges" : [ + "edges" : [ { - "_key" : "6", - "_id" : "edges/6", - "_from" : "vertices/2", - "_to" : "vertices/1", - "_rev" : "_cvD8LC---C", - "$label" : "v2 -> v1" + "_key" : "6", + "_id" : "edges/6", + "_from" : "vertices/2", + "_to" : "vertices/1", + "_rev" : "_cYKLHyG--_", + "$label" : "v2 -> v1" }, { - "_key" : "7", - "_id" : "edges/7", - "_from" : "vertices/4", - "_to" : "vertices/1", - "_rev" : "_cvD8LCC---", - "$label" : "v4 -> v1" + "_key" : "7", + "_id" : "edges/7", + "_from" : "vertices/4", + "_to" : "vertices/1", + "_rev" : "_cYKLHyK---", + "$label" : "v4 -> v1" } ], - "error" : false, - "code" : 200, - "stats" : { - "writesExecuted" : 0, - "writesIgnored" : 0, - "scannedFull" : 0, - "scannedIndex" : 2, - "filtered" : 0, - "httpRequests" : 0, - "executionTime" : 0.000343533989507705, - "peakMemoryUsage" : 0 + "error" : false, + "code" : 200, + "stats" : { + "writesExecuted" : 0, + "writesIgnored" : 0, + "scannedFull" : 0, + "scannedIndex" : 2, + "filtered" : 0, + "httpRequests" : 0, + "executionTime" : 0.00026894899929175153, + "peakMemoryUsage" : 0 } } diff --git a/3.9/generated/Examples/RestEdgesReadEdgesOut.generated b/3.9/generated/Examples/RestEdgesReadEdgesOut.generated index 2eb2436441..2a02c1a0c6 100644 --- a/3.9/generated/Examples/RestEdgesReadEdgesOut.generated +++ b/3.9/generated/Examples/RestEdgesReadEdgesOut.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/edges/edges?vertex=vertices/1&direction=out +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/edges/edges?vertex=vertices/1&direction=out HTTP/1.1 200 OK content-type: application/json @@ -8,26 +8,26 @@ server: ArangoDB x-content-type-options: nosniff { - "edges" : [ + "edges" : [ { - "_key" : "5", - "_id" : "edges/5", - "_from" : "vertices/1", - "_to" : "vertices/3", - "_rev" : "_cvD8LCe---", - "$label" : "v1 -> v3" + "_key" : "5", + "_id" : "edges/5", + "_from" : "vertices/1", + "_to" : "vertices/3", + "_rev" : "_cYKLHyy--_", + "$label" : "v1 -> v3" } ], - "error" : false, - "code" : 200, - "stats" : { - "writesExecuted" : 0, - "writesIgnored" : 0, - "scannedFull" : 0, - "scannedIndex" : 1, - "filtered" : 0, - "httpRequests" : 0, - "executionTime" : 0.0005834340117871761, - "peakMemoryUsage" : 0 + "error" : false, + "code" : 200, + "stats" : { + "writesExecuted" : 0, + "writesIgnored" : 0, + "scannedFull" : 0, + "scannedIndex" : 1, + "filtered" : 0, + "httpRequests" : 0, + "executionTime" : 0.0002968680000776658, + "peakMemoryUsage" : 0 } } diff --git a/3.9/generated/Examples/RestEndpointGet.generated b/3.9/generated/Examples/RestEndpointGet.generated index 3572b7bde7..b0d3aa4d4c 100644 --- a/3.9/generated/Examples/RestEndpointGet.generated +++ b/3.9/generated/Examples/RestEndpointGet.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/endpoint +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/endpoint HTTP/1.1 200 OK content-type: application/json @@ -9,6 +9,6 @@ x-content-type-options: nosniff [ { - "endpoint" : "http://127.0.0.1:10443" + "endpoint" : "http://127.0.0.1:26454" } ] diff --git a/3.9/generated/Examples/RestEngine_rocksdb.generated b/3.9/generated/Examples/RestEngine_rocksdb.generated index 34bb409218..cf19ba1fbd 100644 --- a/3.9/generated/Examples/RestEngine_rocksdb.generated +++ b/3.9/generated/Examples/RestEngine_rocksdb.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/engine +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/engine HTTP/1.1 200 OK content-type: application/json @@ -8,23 +8,23 @@ server: ArangoDB x-content-type-options: nosniff { - "name" : "rocksdb", - "supports" : { - "dfdb" : false, - "indexes" : [ - "primary", - "edge", - "hash", - "skiplist", - "ttl", - "persistent", - "geo", - "fulltext" + "name" : "rocksdb", + "supports" : { + "dfdb" : false, + "indexes" : [ + "primary", + "edge", + "hash", + "skiplist", + "ttl", + "persistent", + "geo", + "fulltext" ], - "aliases" : { - "indexes" : { - "skiplist" : "persistent", - "hash" : "persistent" + "aliases" : { + "indexes" : { + "skiplist" : "persistent", + "hash" : "persistent" } } } diff --git a/3.9/generated/Examples/RestExplainAllPlans.generated b/3.9/generated/Examples/RestExplainAllPlans.generated index 07529eea55..489cd3e15a 100644 --- a/3.9/generated/Examples/RestExplainAllPlans.generated +++ b/3.9/generated/Examples/RestExplainAllPlans.generated @@ -1,8 +1,8 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/explain <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/explain <<EOF { - "query" : "FOR p IN products FILTER p.id == 25 RETURN p", - "options" : { - "allPlans" : true + "query" : "FOR p IN products FILTER p.id == 25 RETURN p", + "options" : { + "allPlans" : true } } EOF @@ -10,91 +10,91 @@ EOF HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 1667 +content-length: 1668 server: ArangoDB x-content-type-options: nosniff { - "plans" : [ + "plans" : [ { - "nodes" : [ + "nodes" : [ { - "type" : "SingletonNode", - "dependencies" : [ ], - "id" : 1, - "estimatedCost" : 1, - "estimatedNrItems" : 1 + "type" : "SingletonNode", + "dependencies" : [ ], + "id" : 1, + "estimatedCost" : 1, + "estimatedNrItems" : 1 }, { - "type" : "IndexNode", - "dependencies" : [ + "type" : "IndexNode", + "dependencies" : [ 1 ], - "id" : 6, - "estimatedCost" : 1, - "estimatedNrItems" : 0, - "outVariable" : { - "id" : 0, - "name" : "p", - "isDataFromCollection" : true + "id" : 6, + "estimatedCost" : 1, + "estimatedNrItems" : 0, + "outVariable" : { + "id" : 0, + "name" : "p", + "isDataFromCollection" : true }, - "projections" : [ ], - "count" : false, - "producesResult" : true, - "database" : "_system", - "collection" : "products", - "satellite" : false, - "isSatellite" : false, - "isSatelliteOf" : null, - "needsGatherNodeSort" : false, - "indexCoversProjections" : false, - "indexes" : [ + "projections" : [ ], + "count" : false, + "producesResult" : true, + "database" : "_system", + "collection" : "products", + "satellite" : false, + "isSatellite" : false, + "isSatelliteOf" : null, + "needsGatherNodeSort" : false, + "indexCoversProjections" : false, + "indexes" : [ { - "id" : "2754", - "type" : "hash", - "name" : "idx_1707171998636965889", - "fields" : [ - "id" + "id" : "67232", + "type" : "hash", + "name" : "idx_1700725489760468993", + "fields" : [ + "id" ], - "selectivityEstimate" : 1, - "unique" : false, - "sparse" : false, - "deduplicate" : true, - "estimates" : true + "selectivityEstimate" : 1, + "unique" : false, + "sparse" : false, + "deduplicate" : true, + "estimates" : true } ], - "condition" : { - "type" : "n-ary or", - "typeID" : 63, - "subNodes" : [ + "condition" : { + "type" : "n-ary or", + "typeID" : 63, + "subNodes" : [ { - "type" : "n-ary and", - "typeID" : 62, - "subNodes" : [ + "type" : "n-ary and", + "typeID" : 62, + "subNodes" : [ { - "type" : "compare ==", - "typeID" : 25, - "excludesNull" : false, - "subNodes" : [ + "type" : "compare ==", + "typeID" : 25, + "excludesNull" : false, + "subNodes" : [ { - "type" : "attribute access", - "typeID" : 35, - "name" : "id", - "subNodes" : [ + "type" : "attribute access", + "typeID" : 35, + "name" : "id", + "subNodes" : [ { - "type" : "reference", - "typeID" : 45, - "name" : "p", - "id" : 0 + "type" : "reference", + "typeID" : 45, + "name" : "p", + "id" : 0 } ] }, { - "type" : "value", - "typeID" : 40, - "value" : 25, - "vType" : "int", - "vTypeID" : 2 + "type" : "value", + "typeID" : 40, + "value" : 25, + "vType" : "int", + "vTypeID" : 2 } ] } @@ -102,62 +102,62 @@ x-content-type-options: nosniff } ] }, - "sorted" : true, - "ascending" : true, - "reverse" : false, - "evalFCalls" : true, - "limit" : 0 + "sorted" : true, + "ascending" : true, + "reverse" : false, + "evalFCalls" : true, + "limit" : 0 }, { - "type" : "ReturnNode", - "dependencies" : [ + "type" : "ReturnNode", + "dependencies" : [ 6 ], - "id" : 5, - "estimatedCost" : 1, - "estimatedNrItems" : 0, - "inVariable" : { - "id" : 0, - "name" : "p", - "isDataFromCollection" : true + "id" : 5, + "estimatedCost" : 1, + "estimatedNrItems" : 0, + "inVariable" : { + "id" : 0, + "name" : "p", + "isDataFromCollection" : true }, - "count" : true + "count" : true } ], - "rules" : [ - "use-indexes", - "remove-filter-covered-by-index", - "remove-unnecessary-calculations-2" + "rules" : [ + "use-indexes", + "remove-filter-covered-by-index", + "remove-unnecessary-calculations-2" ], - "collections" : [ + "collections" : [ { - "name" : "products", - "type" : "read" + "name" : "products", + "type" : "read" } ], - "variables" : [ + "variables" : [ { - "id" : 2, - "name" : "1", - "isDataFromCollection" : false + "id" : 2, + "name" : "1", + "isDataFromCollection" : false }, { - "id" : 0, - "name" : "p", - "isDataFromCollection" : true + "id" : 0, + "name" : "p", + "isDataFromCollection" : true } ], - "estimatedCost" : 1, - "estimatedNrItems" : 0, - "isModificationQuery" : false + "estimatedCost" : 1, + "estimatedNrItems" : 0, + "isModificationQuery" : false } ], - "warnings" : [ ], - "stats" : { - "rulesExecuted" : 41, - "rulesSkipped" : 0, - "plansCreated" : 1 + "warnings" : [ ], + "stats" : { + "rulesExecuted" : 41, + "rulesSkipped" : 0, + "plansCreated" : 1 }, - "error" : false, - "code" : 200 + "error" : false, + "code" : 200 } diff --git a/3.9/generated/Examples/RestExplainEmpty.generated b/3.9/generated/Examples/RestExplainEmpty.generated index 97275f0d7d..9697fe0979 100644 --- a/3.9/generated/Examples/RestExplainEmpty.generated +++ b/3.9/generated/Examples/RestExplainEmpty.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/explain <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/explain <<EOF { "query" : "FOR i IN [ 1, 2, 3 ] FILTER 1 == 2 RETURN i" } EOF @@ -10,142 +10,142 @@ server: ArangoDB x-content-type-options: nosniff { - "plan" : { - "nodes" : [ + "plan" : { + "nodes" : [ { - "type" : "SingletonNode", - "dependencies" : [ ], - "id" : 1, - "estimatedCost" : 1, - "estimatedNrItems" : 1 + "type" : "SingletonNode", + "dependencies" : [ ], + "id" : 1, + "estimatedCost" : 1, + "estimatedNrItems" : 1 }, { - "type" : "CalculationNode", - "dependencies" : [ + "type" : "CalculationNode", + "dependencies" : [ 1 ], - "id" : 2, - "estimatedCost" : 2, - "estimatedNrItems" : 1, - "expression" : { - "type" : "array", - "typeID" : 41, - "subNodes" : [ + "id" : 2, + "estimatedCost" : 2, + "estimatedNrItems" : 1, + "expression" : { + "type" : "array", + "typeID" : 41, + "subNodes" : [ { - "type" : "value", - "typeID" : 40, - "value" : 1, - "vType" : "int", - "vTypeID" : 2 + "type" : "value", + "typeID" : 40, + "value" : 1, + "vType" : "int", + "vTypeID" : 2 }, { - "type" : "value", - "typeID" : 40, - "value" : 2, - "vType" : "int", - "vTypeID" : 2 + "type" : "value", + "typeID" : 40, + "value" : 2, + "vType" : "int", + "vTypeID" : 2 }, { - "type" : "value", - "typeID" : 40, - "value" : 3, - "vType" : "int", - "vTypeID" : 2 + "type" : "value", + "typeID" : 40, + "value" : 3, + "vType" : "int", + "vTypeID" : 2 } ] }, - "outVariable" : { - "id" : 2, - "name" : "1", - "isDataFromCollection" : false, - "constantValue" : [ + "outVariable" : { + "id" : 2, + "name" : "1", + "isDataFromCollection" : false, + "constantValue" : [ 1, 2, 3 ] }, - "canThrow" : false, - "expressionType" : "json" + "canThrow" : false, + "expressionType" : "json" }, { - "type" : "EnumerateListNode", - "dependencies" : [ + "type" : "EnumerateListNode", + "dependencies" : [ 2 ], - "id" : 3, - "estimatedCost" : 5, - "estimatedNrItems" : 3, - "inVariable" : { - "id" : 2, - "name" : "1", - "isDataFromCollection" : false, - "constantValue" : [ + "id" : 3, + "estimatedCost" : 5, + "estimatedNrItems" : 3, + "inVariable" : { + "id" : 2, + "name" : "1", + "isDataFromCollection" : false, + "constantValue" : [ 1, 2, 3 ] }, - "outVariable" : { - "id" : 0, - "name" : "i", - "isDataFromCollection" : false + "outVariable" : { + "id" : 0, + "name" : "i", + "isDataFromCollection" : false } }, { - "type" : "NoResultsNode", - "dependencies" : [ + "type" : "NoResultsNode", + "dependencies" : [ 3 ], - "id" : 4, - "estimatedCost" : 0.5, - "estimatedNrItems" : 0 + "id" : 4, + "estimatedCost" : 0.5, + "estimatedNrItems" : 0 }, { - "type" : "ReturnNode", - "dependencies" : [ + "type" : "ReturnNode", + "dependencies" : [ 4 ], - "id" : 5, - "estimatedCost" : 0.5, - "estimatedNrItems" : 0, - "inVariable" : { - "id" : 0, - "name" : "i", - "isDataFromCollection" : false + "id" : 5, + "estimatedCost" : 0.5, + "estimatedNrItems" : 0, + "inVariable" : { + "id" : 0, + "name" : "i", + "isDataFromCollection" : false }, - "count" : true + "count" : true } ], - "rules" : [ ], - "collections" : [ ], - "variables" : [ + "rules" : [ ], + "collections" : [ ], + "variables" : [ { - "id" : 2, - "name" : "1", - "isDataFromCollection" : false, - "constantValue" : [ + "id" : 2, + "name" : "1", + "isDataFromCollection" : false, + "constantValue" : [ 1, 2, 3 ] }, { - "id" : 0, - "name" : "i", - "isDataFromCollection" : false + "id" : 0, + "name" : "i", + "isDataFromCollection" : false } ], - "estimatedCost" : 0.5, - "estimatedNrItems" : 0, - "isModificationQuery" : false + "estimatedCost" : 0.5, + "estimatedNrItems" : 0, + "isModificationQuery" : false }, - "cacheable" : true, - "warnings" : [ ], - "stats" : { - "rulesExecuted" : 41, - "rulesSkipped" : 0, - "plansCreated" : 1 + "cacheable" : true, + "warnings" : [ ], + "stats" : { + "rulesExecuted" : 41, + "rulesSkipped" : 0, + "plansCreated" : 1 }, - "error" : false, - "code" : 200 + "error" : false, + "code" : 200 } diff --git a/3.9/generated/Examples/RestExplainInvalid.generated b/3.9/generated/Examples/RestExplainInvalid.generated index 2e9460ca33..fd0b1fa952 100644 --- a/3.9/generated/Examples/RestExplainInvalid.generated +++ b/3.9/generated/Examples/RestExplainInvalid.generated @@ -1,6 +1,6 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/explain <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/explain <<EOF { - "query" : "FOR p IN products FILTER p.id == @id LIMIT 2 RETURN p.n" + "query" : "FOR p IN products FILTER p.id == @id LIMIT 2 RETURN p.n" } EOF @@ -12,8 +12,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 400, - "error" : true, - "errorMessage" : "no value specified for declared bind parameter 'id' (while parsing)", - "errorNum" : 1551 + "code" : 400, + "error" : true, + "errorMessage" : "no value specified for declared bind parameter 'id' (while parsing)", + "errorNum" : 1551 } diff --git a/3.9/generated/Examples/RestExplainOptimizerRules.generated b/3.9/generated/Examples/RestExplainOptimizerRules.generated index 989d897a9f..d4146c7e59 100644 --- a/3.9/generated/Examples/RestExplainOptimizerRules.generated +++ b/3.9/generated/Examples/RestExplainOptimizerRules.generated @@ -1,98 +1,98 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/explain <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/explain <<EOF { - "query" : "FOR p IN products LET a = p.id FILTER a == 4 LET name = p.name SORT p.id LIMIT 1 RETURN name" + "query" : "FOR p IN products LET a = p.id FILTER a == 4 LET name = p.name SORT p.id LIMIT 1 RETURN name" } EOF HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 2585 +content-length: 2586 server: ArangoDB x-content-type-options: nosniff { - "plan" : { - "nodes" : [ + "plan" : { + "nodes" : [ { - "type" : "SingletonNode", - "dependencies" : [ ], - "id" : 1, - "estimatedCost" : 1, - "estimatedNrItems" : 1 + "type" : "SingletonNode", + "dependencies" : [ ], + "id" : 1, + "estimatedCost" : 1, + "estimatedNrItems" : 1 }, { - "type" : "IndexNode", - "dependencies" : [ + "type" : "IndexNode", + "dependencies" : [ 1 ], - "id" : 11, - "estimatedCost" : 4.3719280948873624, - "estimatedNrItems" : 1, - "outVariable" : { - "id" : 0, - "name" : "p", - "isDataFromCollection" : true + "id" : 11, + "estimatedCost" : 4.3719280948873624, + "estimatedNrItems" : 1, + "outVariable" : { + "id" : 0, + "name" : "p", + "isDataFromCollection" : true }, - "projections" : [ - "name" + "projections" : [ + "name" ], - "count" : false, - "producesResult" : true, - "database" : "_system", - "collection" : "products", - "satellite" : false, - "isSatellite" : false, - "isSatelliteOf" : null, - "needsGatherNodeSort" : true, - "indexCoversProjections" : false, - "indexes" : [ + "count" : false, + "producesResult" : true, + "database" : "_system", + "collection" : "products", + "satellite" : false, + "isSatellite" : false, + "isSatelliteOf" : null, + "needsGatherNodeSort" : true, + "indexCoversProjections" : false, + "indexes" : [ { - "id" : "2785", - "type" : "skiplist", - "name" : "idx_1707171998651645953", - "fields" : [ - "id" + "id" : "67263", + "type" : "skiplist", + "name" : "idx_1700725489786683392", + "fields" : [ + "id" ], - "selectivityEstimate" : 1, - "unique" : false, - "sparse" : false, - "deduplicate" : true, - "estimates" : true + "selectivityEstimate" : 1, + "unique" : false, + "sparse" : false, + "deduplicate" : true, + "estimates" : true } ], - "condition" : { - "type" : "n-ary or", - "typeID" : 63, - "subNodes" : [ + "condition" : { + "type" : "n-ary or", + "typeID" : 63, + "subNodes" : [ { - "type" : "n-ary and", - "typeID" : 62, - "subNodes" : [ + "type" : "n-ary and", + "typeID" : 62, + "subNodes" : [ { - "type" : "compare ==", - "typeID" : 25, - "excludesNull" : false, - "subNodes" : [ + "type" : "compare ==", + "typeID" : 25, + "excludesNull" : false, + "subNodes" : [ { - "type" : "attribute access", - "typeID" : 35, - "name" : "id", - "subNodes" : [ + "type" : "attribute access", + "typeID" : 35, + "name" : "id", + "subNodes" : [ { - "type" : "reference", - "typeID" : 45, - "name" : "p", - "id" : 0 + "type" : "reference", + "typeID" : 45, + "name" : "p", + "id" : 0 } ] }, { - "type" : "value", - "typeID" : 40, - "value" : 4, - "vType" : "int", - "vTypeID" : 2 + "type" : "value", + "typeID" : 40, + "value" : 4, + "vType" : "int", + "vTypeID" : 2 } ] } @@ -100,125 +100,125 @@ x-content-type-options: nosniff } ] }, - "sorted" : true, - "ascending" : true, - "reverse" : false, - "evalFCalls" : true, - "limit" : 0 + "sorted" : true, + "ascending" : true, + "reverse" : false, + "evalFCalls" : true, + "limit" : 0 }, { - "type" : "LimitNode", - "dependencies" : [ + "type" : "LimitNode", + "dependencies" : [ 11 ], - "id" : 9, - "estimatedCost" : 5.3719280948873624, - "estimatedNrItems" : 1, - "offset" : 0, - "limit" : 1, - "fullCount" : false + "id" : 9, + "estimatedCost" : 5.3719280948873624, + "estimatedNrItems" : 1, + "offset" : 0, + "limit" : 1, + "fullCount" : false }, { - "type" : "CalculationNode", - "dependencies" : [ + "type" : "CalculationNode", + "dependencies" : [ 9 ], - "id" : 6, - "estimatedCost" : 6.3719280948873624, - "estimatedNrItems" : 1, - "expression" : { - "type" : "attribute access", - "typeID" : 35, - "name" : "name", - "subNodes" : [ + "id" : 6, + "estimatedCost" : 6.3719280948873624, + "estimatedNrItems" : 1, + "expression" : { + "type" : "attribute access", + "typeID" : 35, + "name" : "name", + "subNodes" : [ { - "type" : "reference", - "typeID" : 45, - "name" : "p", - "id" : 0 + "type" : "reference", + "typeID" : 45, + "name" : "p", + "id" : 0 } ] }, - "outVariable" : { - "id" : 2, - "name" : "name", - "isDataFromCollection" : false + "outVariable" : { + "id" : 2, + "name" : "name", + "isDataFromCollection" : false }, - "canThrow" : false, - "expressionType" : "attribute" + "canThrow" : false, + "expressionType" : "attribute" }, { - "type" : "ReturnNode", - "dependencies" : [ + "type" : "ReturnNode", + "dependencies" : [ 6 ], - "id" : 10, - "estimatedCost" : 7.3719280948873624, - "estimatedNrItems" : 1, - "inVariable" : { - "id" : 2, - "name" : "name", - "isDataFromCollection" : false + "id" : 10, + "estimatedCost" : 7.3719280948873624, + "estimatedNrItems" : 1, + "inVariable" : { + "id" : 2, + "name" : "name", + "isDataFromCollection" : false }, - "count" : true + "count" : true } ], - "rules" : [ - "move-calculations-up", - "remove-redundant-calculations", - "remove-unnecessary-calculations", - "move-calculations-up-2", - "use-indexes", - "remove-filter-covered-by-index", - "use-index-for-sort", - "remove-unnecessary-calculations-2", - "move-calculations-down", - "reduce-extraction-to-projection" + "rules" : [ + "move-calculations-up", + "remove-redundant-calculations", + "remove-unnecessary-calculations", + "move-calculations-up-2", + "use-indexes", + "remove-filter-covered-by-index", + "use-index-for-sort", + "remove-unnecessary-calculations-2", + "move-calculations-down", + "reduce-extraction-to-projection" ], - "collections" : [ + "collections" : [ { - "name" : "products", - "type" : "read" + "name" : "products", + "type" : "read" } ], - "variables" : [ + "variables" : [ { - "id" : 6, - "name" : "5", - "isDataFromCollection" : false + "id" : 6, + "name" : "5", + "isDataFromCollection" : false }, { - "id" : 4, - "name" : "3", - "isDataFromCollection" : false + "id" : 4, + "name" : "3", + "isDataFromCollection" : false }, { - "id" : 2, - "name" : "name", - "isDataFromCollection" : false + "id" : 2, + "name" : "name", + "isDataFromCollection" : false }, { - "id" : 1, - "name" : "a", - "isDataFromCollection" : false + "id" : 1, + "name" : "a", + "isDataFromCollection" : false }, { - "id" : 0, - "name" : "p", - "isDataFromCollection" : true + "id" : 0, + "name" : "p", + "isDataFromCollection" : true } ], - "estimatedCost" : 7.3719280948873624, - "estimatedNrItems" : 1, - "isModificationQuery" : false + "estimatedCost" : 7.3719280948873624, + "estimatedNrItems" : 1, + "isModificationQuery" : false }, - "cacheable" : true, - "warnings" : [ ], - "stats" : { - "rulesExecuted" : 43, - "rulesSkipped" : 0, - "plansCreated" : 1 + "cacheable" : true, + "warnings" : [ ], + "stats" : { + "rulesExecuted" : 43, + "rulesSkipped" : 0, + "plansCreated" : 1 }, - "error" : false, - "code" : 200 + "error" : false, + "code" : 200 } diff --git a/3.9/generated/Examples/RestExplainOptions.generated b/3.9/generated/Examples/RestExplainOptions.generated index fe2936d957..d1d2246a1b 100644 --- a/3.9/generated/Examples/RestExplainOptions.generated +++ b/3.9/generated/Examples/RestExplainOptions.generated @@ -1,14 +1,14 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/explain <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/explain <<EOF { - "query" : "FOR p IN products LET a = p.id FILTER a == 4 LET name = p.name SORT p.id LIMIT 1 RETURN name", - "options" : { - "maxNumberOfPlans" : 2, - "allPlans" : true, - "optimizer" : { - "rules" : [ - "-all", - "+use-index-for-sort", - "+use-index-range" + "query" : "FOR p IN products LET a = p.id FILTER a == 4 LET name = p.name SORT p.id LIMIT 1 RETURN name", + "options" : { + "maxNumberOfPlans" : 2, + "allPlans" : true, + "optimizer" : { + "rules" : [ + "-all", + "+use-index-for-sort", + "+use-index-range" ] } } @@ -18,279 +18,279 @@ EOF HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 3106 +content-length: 3107 server: ArangoDB x-content-type-options: nosniff { - "plans" : [ + "plans" : [ { - "nodes" : [ + "nodes" : [ { - "type" : "SingletonNode", - "dependencies" : [ ], - "id" : 1, - "estimatedCost" : 1, - "estimatedNrItems" : 1 + "type" : "SingletonNode", + "dependencies" : [ ], + "id" : 1, + "estimatedCost" : 1, + "estimatedNrItems" : 1 }, { - "type" : "IndexNode", - "dependencies" : [ + "type" : "IndexNode", + "dependencies" : [ 1 ], - "id" : 11, - "estimatedCost" : 11, - "estimatedNrItems" : 10, - "outVariable" : { - "id" : 0, - "name" : "p", - "isDataFromCollection" : true + "id" : 11, + "estimatedCost" : 11, + "estimatedNrItems" : 10, + "outVariable" : { + "id" : 0, + "name" : "p", + "isDataFromCollection" : true }, - "projections" : [ ], - "count" : false, - "producesResult" : true, - "database" : "_system", - "collection" : "products", - "satellite" : false, - "isSatellite" : false, - "isSatelliteOf" : null, - "needsGatherNodeSort" : true, - "indexCoversProjections" : false, - "indexes" : [ + "projections" : [ ], + "count" : false, + "producesResult" : true, + "database" : "_system", + "collection" : "products", + "satellite" : false, + "isSatellite" : false, + "isSatelliteOf" : null, + "needsGatherNodeSort" : true, + "indexCoversProjections" : false, + "indexes" : [ { - "id" : "2818", - "type" : "skiplist", - "name" : "idx_1707171998661083136", - "fields" : [ - "id" + "id" : "67296", + "type" : "skiplist", + "name" : "idx_1700725489802412032", + "fields" : [ + "id" ], - "selectivityEstimate" : 1, - "unique" : false, - "sparse" : false, - "deduplicate" : true, - "estimates" : true + "selectivityEstimate" : 1, + "unique" : false, + "sparse" : false, + "deduplicate" : true, + "estimates" : true } ], - "condition" : { + "condition" : { }, - "sorted" : true, - "ascending" : true, - "reverse" : false, - "evalFCalls" : true, - "limit" : 0 + "sorted" : true, + "ascending" : true, + "reverse" : false, + "evalFCalls" : true, + "limit" : 0 }, { - "type" : "CalculationNode", - "dependencies" : [ + "type" : "CalculationNode", + "dependencies" : [ 11 ], - "id" : 3, - "estimatedCost" : 21, - "estimatedNrItems" : 10, - "expression" : { - "type" : "attribute access", - "typeID" : 35, - "name" : "id", - "subNodes" : [ + "id" : 3, + "estimatedCost" : 21, + "estimatedNrItems" : 10, + "expression" : { + "type" : "attribute access", + "typeID" : 35, + "name" : "id", + "subNodes" : [ { - "type" : "reference", - "typeID" : 45, - "name" : "p", - "id" : 0 + "type" : "reference", + "typeID" : 45, + "name" : "p", + "id" : 0 } ] }, - "outVariable" : { - "id" : 1, - "name" : "a", - "isDataFromCollection" : false + "outVariable" : { + "id" : 1, + "name" : "a", + "isDataFromCollection" : false }, - "canThrow" : false, - "expressionType" : "attribute" + "canThrow" : false, + "expressionType" : "attribute" }, { - "type" : "CalculationNode", - "dependencies" : [ + "type" : "CalculationNode", + "dependencies" : [ 3 ], - "id" : 4, - "estimatedCost" : 31, - "estimatedNrItems" : 10, - "expression" : { - "type" : "compare ==", - "typeID" : 25, - "excludesNull" : false, - "subNodes" : [ + "id" : 4, + "estimatedCost" : 31, + "estimatedNrItems" : 10, + "expression" : { + "type" : "compare ==", + "typeID" : 25, + "excludesNull" : false, + "subNodes" : [ { - "type" : "reference", - "typeID" : 45, - "name" : "a", - "id" : 1 + "type" : "reference", + "typeID" : 45, + "name" : "a", + "id" : 1 }, { - "type" : "value", - "typeID" : 40, - "value" : 4, - "vType" : "int", - "vTypeID" : 2 + "type" : "value", + "typeID" : 40, + "value" : 4, + "vType" : "int", + "vTypeID" : 2 } ] }, - "outVariable" : { - "id" : 4, - "name" : "3", - "isDataFromCollection" : false + "outVariable" : { + "id" : 4, + "name" : "3", + "isDataFromCollection" : false }, - "canThrow" : false, - "expressionType" : "simple" + "canThrow" : false, + "expressionType" : "simple" }, { - "type" : "FilterNode", - "dependencies" : [ + "type" : "FilterNode", + "dependencies" : [ 4 ], - "id" : 5, - "estimatedCost" : 41, - "estimatedNrItems" : 10, - "inVariable" : { - "id" : 4, - "name" : "3", - "isDataFromCollection" : false + "id" : 5, + "estimatedCost" : 41, + "estimatedNrItems" : 10, + "inVariable" : { + "id" : 4, + "name" : "3", + "isDataFromCollection" : false } }, { - "type" : "CalculationNode", - "dependencies" : [ + "type" : "CalculationNode", + "dependencies" : [ 5 ], - "id" : 6, - "estimatedCost" : 51, - "estimatedNrItems" : 10, - "expression" : { - "type" : "attribute access", - "typeID" : 35, - "name" : "name", - "subNodes" : [ + "id" : 6, + "estimatedCost" : 51, + "estimatedNrItems" : 10, + "expression" : { + "type" : "attribute access", + "typeID" : 35, + "name" : "name", + "subNodes" : [ { - "type" : "reference", - "typeID" : 45, - "name" : "p", - "id" : 0 + "type" : "reference", + "typeID" : 45, + "name" : "p", + "id" : 0 } ] }, - "outVariable" : { - "id" : 2, - "name" : "name", - "isDataFromCollection" : false + "outVariable" : { + "id" : 2, + "name" : "name", + "isDataFromCollection" : false }, - "canThrow" : false, - "expressionType" : "attribute" + "canThrow" : false, + "expressionType" : "attribute" }, { - "type" : "CalculationNode", - "dependencies" : [ + "type" : "CalculationNode", + "dependencies" : [ 6 ], - "id" : 7, - "estimatedCost" : 61, - "estimatedNrItems" : 10, - "expression" : { - "type" : "attribute access", - "typeID" : 35, - "name" : "id", - "subNodes" : [ + "id" : 7, + "estimatedCost" : 61, + "estimatedNrItems" : 10, + "expression" : { + "type" : "attribute access", + "typeID" : 35, + "name" : "id", + "subNodes" : [ { - "type" : "reference", - "typeID" : 45, - "name" : "p", - "id" : 0 + "type" : "reference", + "typeID" : 45, + "name" : "p", + "id" : 0 } ] }, - "outVariable" : { - "id" : 6, - "name" : "5", - "isDataFromCollection" : false + "outVariable" : { + "id" : 6, + "name" : "5", + "isDataFromCollection" : false }, - "canThrow" : false, - "expressionType" : "attribute" + "canThrow" : false, + "expressionType" : "attribute" }, { - "type" : "LimitNode", - "dependencies" : [ + "type" : "LimitNode", + "dependencies" : [ 7 ], - "id" : 9, - "estimatedCost" : 62, - "estimatedNrItems" : 1, - "offset" : 0, - "limit" : 1, - "fullCount" : false + "id" : 9, + "estimatedCost" : 62, + "estimatedNrItems" : 1, + "offset" : 0, + "limit" : 1, + "fullCount" : false }, { - "type" : "ReturnNode", - "dependencies" : [ + "type" : "ReturnNode", + "dependencies" : [ 9 ], - "id" : 10, - "estimatedCost" : 63, - "estimatedNrItems" : 1, - "inVariable" : { - "id" : 2, - "name" : "name", - "isDataFromCollection" : false + "id" : 10, + "estimatedCost" : 63, + "estimatedNrItems" : 1, + "inVariable" : { + "id" : 2, + "name" : "name", + "isDataFromCollection" : false }, - "count" : true + "count" : true } ], - "rules" : [ - "use-index-for-sort" + "rules" : [ + "use-index-for-sort" ], - "collections" : [ + "collections" : [ { - "name" : "products", - "type" : "read" + "name" : "products", + "type" : "read" } ], - "variables" : [ + "variables" : [ { - "id" : 6, - "name" : "5", - "isDataFromCollection" : false + "id" : 6, + "name" : "5", + "isDataFromCollection" : false }, { - "id" : 4, - "name" : "3", - "isDataFromCollection" : false + "id" : 4, + "name" : "3", + "isDataFromCollection" : false }, { - "id" : 2, - "name" : "name", - "isDataFromCollection" : false + "id" : 2, + "name" : "name", + "isDataFromCollection" : false }, { - "id" : 1, - "name" : "a", - "isDataFromCollection" : false + "id" : 1, + "name" : "a", + "isDataFromCollection" : false }, { - "id" : 0, - "name" : "p", - "isDataFromCollection" : true + "id" : 0, + "name" : "p", + "isDataFromCollection" : true } ], - "estimatedCost" : 63, - "estimatedNrItems" : 1, - "isModificationQuery" : false + "estimatedCost" : 63, + "estimatedNrItems" : 1, + "isModificationQuery" : false } ], - "warnings" : [ ], - "stats" : { - "rulesExecuted" : 4, - "rulesSkipped" : 37, - "plansCreated" : 1 + "warnings" : [ ], + "stats" : { + "rulesExecuted" : 4, + "rulesSkipped" : 37, + "plansCreated" : 1 }, - "error" : false, - "code" : 200 + "error" : false, + "code" : 200 } diff --git a/3.9/generated/Examples/RestExplainValid.generated b/3.9/generated/Examples/RestExplainValid.generated index 1747d0142d..9b7e0531d5 100644 --- a/3.9/generated/Examples/RestExplainValid.generated +++ b/3.9/generated/Examples/RestExplainValid.generated @@ -1,6 +1,6 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/explain <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/explain <<EOF { - "query" : "FOR p IN products RETURN p" + "query" : "FOR p IN products RETURN p" } EOF @@ -12,83 +12,83 @@ server: ArangoDB x-content-type-options: nosniff { - "plan" : { - "nodes" : [ + "plan" : { + "nodes" : [ { - "type" : "SingletonNode", - "dependencies" : [ ], - "id" : 1, - "estimatedCost" : 1, - "estimatedNrItems" : 1 + "type" : "SingletonNode", + "dependencies" : [ ], + "id" : 1, + "estimatedCost" : 1, + "estimatedNrItems" : 1 }, { - "type" : "EnumerateCollectionNode", - "dependencies" : [ + "type" : "EnumerateCollectionNode", + "dependencies" : [ 1 ], - "id" : 2, - "estimatedCost" : 12, - "estimatedNrItems" : 10, - "random" : false, - "indexHint" : { - "forced" : false, - "type" : "none" + "id" : 2, + "estimatedCost" : 12, + "estimatedNrItems" : 10, + "random" : false, + "indexHint" : { + "forced" : false, + "type" : "none" }, - "outVariable" : { - "id" : 0, - "name" : "p", - "isDataFromCollection" : true + "outVariable" : { + "id" : 0, + "name" : "p", + "isDataFromCollection" : true }, - "projections" : [ ], - "count" : false, - "producesResult" : true, - "database" : "_system", - "collection" : "products", - "satellite" : false, - "isSatellite" : false, - "isSatelliteOf" : null + "projections" : [ ], + "count" : false, + "producesResult" : true, + "database" : "_system", + "collection" : "products", + "satellite" : false, + "isSatellite" : false, + "isSatelliteOf" : null }, { - "type" : "ReturnNode", - "dependencies" : [ + "type" : "ReturnNode", + "dependencies" : [ 2 ], - "id" : 3, - "estimatedCost" : 22, - "estimatedNrItems" : 10, - "inVariable" : { - "id" : 0, - "name" : "p", - "isDataFromCollection" : true + "id" : 3, + "estimatedCost" : 22, + "estimatedNrItems" : 10, + "inVariable" : { + "id" : 0, + "name" : "p", + "isDataFromCollection" : true }, - "count" : true + "count" : true } ], - "rules" : [ ], - "collections" : [ + "rules" : [ ], + "collections" : [ { - "name" : "products", - "type" : "read" + "name" : "products", + "type" : "read" } ], - "variables" : [ + "variables" : [ { - "id" : 0, - "name" : "p", - "isDataFromCollection" : true + "id" : 0, + "name" : "p", + "isDataFromCollection" : true } ], - "estimatedCost" : 22, - "estimatedNrItems" : 10, - "isModificationQuery" : false + "estimatedCost" : 22, + "estimatedNrItems" : 10, + "isModificationQuery" : false }, - "cacheable" : true, - "warnings" : [ ], - "stats" : { - "rulesExecuted" : 41, - "rulesSkipped" : 0, - "plansCreated" : 1 + "cacheable" : true, + "warnings" : [ ], + "stats" : { + "rulesExecuted" : 41, + "rulesSkipped" : 0, + "plansCreated" : 1 }, - "error" : false, - "code" : 200 + "error" : false, + "code" : 200 } diff --git a/3.9/generated/Examples/RestExplainWarning.generated b/3.9/generated/Examples/RestExplainWarning.generated index 26ef77496f..8b237a4e7e 100644 --- a/3.9/generated/Examples/RestExplainWarning.generated +++ b/3.9/generated/Examples/RestExplainWarning.generated @@ -1,6 +1,6 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/explain <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/explain <<EOF { - "query" : "FOR i IN 1..10 RETURN 1 / 0" + "query" : "FOR i IN 1..10 RETURN 1 / 0" } EOF @@ -12,150 +12,150 @@ server: ArangoDB x-content-type-options: nosniff { - "plan" : { - "nodes" : [ + "plan" : { + "nodes" : [ { - "type" : "SingletonNode", - "dependencies" : [ ], - "id" : 1, - "estimatedCost" : 1, - "estimatedNrItems" : 1 + "type" : "SingletonNode", + "dependencies" : [ ], + "id" : 1, + "estimatedCost" : 1, + "estimatedNrItems" : 1 }, { - "type" : "CalculationNode", - "dependencies" : [ + "type" : "CalculationNode", + "dependencies" : [ 1 ], - "id" : 2, - "estimatedCost" : 2, - "estimatedNrItems" : 1, - "expression" : { - "type" : "range", - "typeID" : 49, - "subNodes" : [ + "id" : 2, + "estimatedCost" : 2, + "estimatedNrItems" : 1, + "expression" : { + "type" : "range", + "typeID" : 49, + "subNodes" : [ { - "type" : "value", - "typeID" : 40, - "value" : 1, - "vType" : "int", - "vTypeID" : 2 + "type" : "value", + "typeID" : 40, + "value" : 1, + "vType" : "int", + "vTypeID" : 2 }, { - "type" : "value", - "typeID" : 40, - "value" : 10, - "vType" : "int", - "vTypeID" : 2 + "type" : "value", + "typeID" : 40, + "value" : 10, + "vType" : "int", + "vTypeID" : 2 } ] }, - "outVariable" : { - "id" : 2, - "name" : "1", - "isDataFromCollection" : false + "outVariable" : { + "id" : 2, + "name" : "1", + "isDataFromCollection" : false }, - "canThrow" : false, - "expressionType" : "simple" + "canThrow" : false, + "expressionType" : "simple" }, { - "type" : "CalculationNode", - "dependencies" : [ + "type" : "CalculationNode", + "dependencies" : [ 2 ], - "id" : 4, - "estimatedCost" : 3, - "estimatedNrItems" : 1, - "expression" : { - "type" : "value", - "typeID" : 40, - "value" : null, - "vType" : "null", - "vTypeID" : 0 + "id" : 4, + "estimatedCost" : 3, + "estimatedNrItems" : 1, + "expression" : { + "type" : "value", + "typeID" : 40, + "value" : null, + "vType" : "null", + "vTypeID" : 0 }, - "outVariable" : { - "id" : 4, - "name" : "3", - "isDataFromCollection" : false, - "constantValue" : null + "outVariable" : { + "id" : 4, + "name" : "3", + "isDataFromCollection" : false, + "constantValue" : null }, - "canThrow" : false, - "expressionType" : "json" + "canThrow" : false, + "expressionType" : "json" }, { - "type" : "EnumerateListNode", - "dependencies" : [ + "type" : "EnumerateListNode", + "dependencies" : [ 4 ], - "id" : 3, - "estimatedCost" : 13, - "estimatedNrItems" : 10, - "inVariable" : { - "id" : 2, - "name" : "1", - "isDataFromCollection" : false + "id" : 3, + "estimatedCost" : 13, + "estimatedNrItems" : 10, + "inVariable" : { + "id" : 2, + "name" : "1", + "isDataFromCollection" : false }, - "outVariable" : { - "id" : 0, - "name" : "i", - "isDataFromCollection" : false + "outVariable" : { + "id" : 0, + "name" : "i", + "isDataFromCollection" : false } }, { - "type" : "ReturnNode", - "dependencies" : [ + "type" : "ReturnNode", + "dependencies" : [ 3 ], - "id" : 5, - "estimatedCost" : 23, - "estimatedNrItems" : 10, - "inVariable" : { - "id" : 4, - "name" : "3", - "isDataFromCollection" : false, - "constantValue" : null + "id" : 5, + "estimatedCost" : 23, + "estimatedNrItems" : 10, + "inVariable" : { + "id" : 4, + "name" : "3", + "isDataFromCollection" : false, + "constantValue" : null }, - "count" : true + "count" : true } ], - "rules" : [ - "move-calculations-up", - "move-calculations-up-2" + "rules" : [ + "move-calculations-up", + "move-calculations-up-2" ], - "collections" : [ ], - "variables" : [ + "collections" : [ ], + "variables" : [ { - "id" : 4, - "name" : "3", - "isDataFromCollection" : false, - "constantValue" : null + "id" : 4, + "name" : "3", + "isDataFromCollection" : false, + "constantValue" : null }, { - "id" : 2, - "name" : "1", - "isDataFromCollection" : false + "id" : 2, + "name" : "1", + "isDataFromCollection" : false }, { - "id" : 0, - "name" : "i", - "isDataFromCollection" : false + "id" : 0, + "name" : "i", + "isDataFromCollection" : false } ], - "estimatedCost" : 23, - "estimatedNrItems" : 10, - "isModificationQuery" : false + "estimatedCost" : 23, + "estimatedNrItems" : 10, + "isModificationQuery" : false }, - "cacheable" : false, - "warnings" : [ + "cacheable" : false, + "warnings" : [ { - "code" : 1562, - "message" : "division by zero" + "code" : 1562, + "message" : "division by zero" } ], - "stats" : { - "rulesExecuted" : 41, - "rulesSkipped" : 0, - "plansCreated" : 1 + "stats" : { + "rulesExecuted" : 41, + "rulesSkipped" : 0, + "plansCreated" : 1 }, - "error" : false, - "code" : 200 + "error" : false, + "code" : 200 } diff --git a/3.9/generated/Examples/RestFetchAllUser.generated b/3.9/generated/Examples/RestFetchAllUser.generated index 15c2f9d050..a3da11cc52 100644 --- a/3.9/generated/Examples/RestFetchAllUser.generated +++ b/3.9/generated/Examples/RestFetchAllUser.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/user +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/user HTTP/1.1 200 OK content-type: application/json @@ -8,25 +8,25 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "result" : [ + "error" : false, + "code" : 200, + "result" : [ { - "user" : "admin", - "active" : true, - "extra" : { + "user" : "tester", + "active" : false, + "extra" : { } }, { - "user" : "tester", - "active" : false, - "extra" : { + "user" : "admin", + "active" : true, + "extra" : { } }, { - "user" : "root", - "active" : true, - "extra" : { + "user" : "root", + "active" : true, + "extra" : { } } ] diff --git a/3.9/generated/Examples/RestFetchUser.generated b/3.9/generated/Examples/RestFetchUser.generated index 3dc6b0b602..7314ad8fa8 100644 --- a/3.9/generated/Examples/RestFetchUser.generated +++ b/3.9/generated/Examples/RestFetchUser.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/user/admin@myapp +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/user/admin@myapp HTTP/1.1 200 OK content-type: application/json @@ -8,10 +8,10 @@ server: ArangoDB x-content-type-options: nosniff { - "user" : "admin@myapp", - "active" : true, - "extra" : { + "user" : "admin@myapp", + "active" : true, + "extra" : { }, - "error" : false, - "code" : 200 + "error" : false, + "code" : 200 } diff --git a/3.9/generated/Examples/RestFetchUserCollectionPermission.generated b/3.9/generated/Examples/RestFetchUserCollectionPermission.generated index c0727d0bdc..17ee0c4e95 100644 --- a/3.9/generated/Examples/RestFetchUserCollectionPermission.generated +++ b/3.9/generated/Examples/RestFetchUserCollectionPermission.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/user/anotherAdmin@secapp/database/_system/_users +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/user/anotherAdmin@secapp/database/_system/_users HTTP/1.1 200 OK content-type: application/json @@ -8,7 +8,7 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "result" : "none" + "error" : false, + "code" : 200, + "result" : "none" } diff --git a/3.9/generated/Examples/RestFetchUserDatabaseList.generated b/3.9/generated/Examples/RestFetchUserDatabaseList.generated index 8e99698d99..b5df938dea 100644 --- a/3.9/generated/Examples/RestFetchUserDatabaseList.generated +++ b/3.9/generated/Examples/RestFetchUserDatabaseList.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/user/anotherAdmin@secapp/database/ +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/user/anotherAdmin@secapp/database/ HTTP/1.1 200 OK content-type: application/json @@ -8,9 +8,9 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "result" : { - "_system" : "rw" + "error" : false, + "code" : 200, + "result" : { + "_system" : "rw" } } diff --git a/3.9/generated/Examples/RestFetchUserDatabaseListFull.generated b/3.9/generated/Examples/RestFetchUserDatabaseListFull.generated index 793e130b9e..8494ff90f0 100644 --- a/3.9/generated/Examples/RestFetchUserDatabaseListFull.generated +++ b/3.9/generated/Examples/RestFetchUserDatabaseListFull.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/user/anotherAdmin@secapp/database?full=true +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/user/anotherAdmin@secapp/database?full=true HTTP/1.1 200 OK content-type: application/json @@ -8,31 +8,31 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "result" : { - "_system" : { - "permission" : "rw", - "collections" : { - "_frontend" : "undefined", - "_appbundles" : "undefined", - "_apps" : "undefined", - "_jobs" : "undefined", - "_queues" : "undefined", - "animals" : "undefined", - "_aqlfunctions" : "undefined", - "_analyzers" : "undefined", - "demo" : "undefined", - "_statisticsRaw" : "undefined", - "_statistics15" : "undefined", - "_graphs" : "undefined", - "_users" : "undefined", - "_statistics" : "undefined", - "*" : "undefined" + "error" : false, + "code" : 200, + "result" : { + "_system" : { + "permission" : "rw", + "collections" : { + "demo" : "undefined", + "animals" : "undefined", + "_users" : "undefined", + "_graphs" : "undefined", + "_statistics" : "undefined", + "_statistics15" : "undefined", + "_statisticsRaw" : "undefined", + "_analyzers" : "undefined", + "_aqlfunctions" : "undefined", + "_queues" : "undefined", + "_jobs" : "undefined", + "_apps" : "undefined", + "_appbundles" : "undefined", + "_frontend" : "undefined", + "*" : "undefined" } }, - "*" : { - "permission" : "none" + "*" : { + "permission" : "none" } } } diff --git a/3.9/generated/Examples/RestFetchUserDatabasePermission.generated b/3.9/generated/Examples/RestFetchUserDatabasePermission.generated index 54a3035807..9a29a05b58 100644 --- a/3.9/generated/Examples/RestFetchUserDatabasePermission.generated +++ b/3.9/generated/Examples/RestFetchUserDatabasePermission.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/user/anotherAdmin@secapp/database/_system +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/user/anotherAdmin@secapp/database/_system HTTP/1.1 200 OK content-type: application/json @@ -8,7 +8,7 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "result" : "rw" + "error" : false, + "code" : 200, + "result" : "rw" } diff --git a/3.9/generated/Examples/RestGetResponsibleShardExample_cluster.generated b/3.9/generated/Examples/RestGetResponsibleShardExample_cluster.generated index 3d9c74bcee..bec05d6a54 100644 --- a/3.9/generated/Examples/RestGetResponsibleShardExample_cluster.generated +++ b/3.9/generated/Examples/RestGetResponsibleShardExample_cluster.generated @@ -1,4 +1,4 @@ -shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/collection/testCollection/responsibleShard <<EOF +shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/collection/testCollection/responsibleShard <<EOF {"_key":"testkey","value":23} EOF @@ -11,7 +11,7 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "shardId" : "s10048" + "error" : false, + "code" : 200, + "shardId" : "s10044" } diff --git a/3.9/generated/Examples/RestGetShardsWithDetails_cluster.generated b/3.9/generated/Examples/RestGetShardsWithDetails_cluster.generated index 2251804496..bbc5cac7a8 100644 --- a/3.9/generated/Examples/RestGetShardsWithDetails_cluster.generated +++ b/3.9/generated/Examples/RestGetShardsWithDetails_cluster.generated @@ -1,11 +1,11 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/testCollection/shards?details=true +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/testCollection/shards?details=true HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 841 +content-length: 843 location: /_api/collection/testCollection/shards server: ArangoDB x-content-type-options: nosniff -"{\"error\":false,\"code\":200,\"shards\":{\"s10050\":[\"PRMR-fa4fa176-dfb0-41aa-9a1c-52c238355ab4\",\"PRMR-a4d4125b-83d4-425b-a7af-1c3ac36a7370\"],\"s10051\":[\"PRMR-a4d4125b-83d4-425b-a7af-1c3ac36a7370\",\"PRMR-fa4fa176-dfb0-41aa-9a1c-52c238355ab4\"],\"s10052\":[\"PRMR-fa4fa176-dfb0-41aa-9a1c-52c238355ab4\",\"PRMR-a4d4125b-83d4-425b-a7af-1c3ac36a7370\"]},\"id\":\"10049\",\"waitForSync\":false,\"syncByRevision\":true,\"replicationFactor\":2,\"usesRevisionsAsDocumentIds\":true,\"statusString\":\"loaded\",\"numberOfShards\":3,\"shardingStrategy\":\"hash\",\"internalValidatorType\":0,\"minReplicationFactor\":1,\"keyOptions\":{\"allowUserKeys\":true,\"type\":\"traditional\"},\"schema\":null,\"isDisjoint\":false,\"name\":\"testCollection\",\"isSmartChild\":false,\"isSmart\":false,\"globallyUniqueId\":\"c10049/\",\"cacheEnabled\":false,\"writeConcern\":1,\"isSystem\":false,\"type\":2,\"shardKeys\":[\"_key\"],\"status\":3}" +"{\"error\":false,\"code\":200,\"waitForSync\":false,\"shards\":{\"s10046\":[\"PRMR-4d8adaf4-2013-4880-a728-dda30484cdcb\",\"PRMR-53725bb7-efe6-4712-9a45-1419a21d7931\"],\"s10047\":[\"PRMR-53725bb7-efe6-4712-9a45-1419a21d7931\",\"PRMR-4d8adaf4-2013-4880-a728-dda30484cdcb\"],\"s10048\":[\"PRMR-4d8adaf4-2013-4880-a728-dda30484cdcb\",\"PRMR-53725bb7-efe6-4712-9a45-1419a21d7931\"]},\"shardingStrategy\":\"hash\",\"shardKeys\":[\"_key\"],\"usesRevisionsAsDocumentIds\":true,\"schema\":null,\"writeConcern\":1,\"syncByRevision\":true,\"replicationFactor\":2,\"numberOfShards\":3,\"id\":\"10045\",\"name\":\"testCollection\",\"isDisjoint\":false,\"minReplicationFactor\":1,\"status\":3,\"type\":2,\"globallyUniqueId\":\"c10045/\",\"isSmart\":false,\"isSystem\":false,\"isSmartChild\":false,\"statusString\":\"loaded\",\"cacheEnabled\":false,\"keyOptions\":{\"allowUserKeys\":true,\"type\":\"traditional\"},\"minRevision\":\"_Zz3k4-----\"}" diff --git a/3.9/generated/Examples/RestGetShards_cluster.generated b/3.9/generated/Examples/RestGetShards_cluster.generated index 0c88a47f57..ffbcf41795 100644 --- a/3.9/generated/Examples/RestGetShards_cluster.generated +++ b/3.9/generated/Examples/RestGetShards_cluster.generated @@ -1,11 +1,11 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/testCollection/shards +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/testCollection/shards HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 571 +content-length: 573 location: /_api/collection/testCollection/shards server: ArangoDB x-content-type-options: nosniff -"{\"error\":false,\"code\":200,\"shards\":[\"s10054\",\"s10055\",\"s10056\"],\"id\":\"10053\",\"waitForSync\":false,\"syncByRevision\":true,\"replicationFactor\":2,\"usesRevisionsAsDocumentIds\":true,\"statusString\":\"loaded\",\"numberOfShards\":3,\"shardingStrategy\":\"hash\",\"internalValidatorType\":0,\"minReplicationFactor\":1,\"keyOptions\":{\"allowUserKeys\":true,\"type\":\"traditional\"},\"schema\":null,\"isDisjoint\":false,\"name\":\"testCollection\",\"isSmartChild\":false,\"isSmart\":false,\"globallyUniqueId\":\"c10053/\",\"cacheEnabled\":false,\"writeConcern\":1,\"isSystem\":false,\"type\":2,\"shardKeys\":[\"_key\"],\"status\":3}" +"{\"error\":false,\"code\":200,\"waitForSync\":false,\"shards\":[\"s10050\",\"s10051\",\"s10052\"],\"shardingStrategy\":\"hash\",\"shardKeys\":[\"_key\"],\"usesRevisionsAsDocumentIds\":true,\"schema\":null,\"writeConcern\":1,\"syncByRevision\":true,\"replicationFactor\":2,\"numberOfShards\":3,\"id\":\"10049\",\"name\":\"testCollection\",\"isDisjoint\":false,\"minReplicationFactor\":1,\"status\":3,\"type\":2,\"globallyUniqueId\":\"c10049/\",\"isSmart\":false,\"isSystem\":false,\"isSmartChild\":false,\"statusString\":\"loaded\",\"cacheEnabled\":false,\"keyOptions\":{\"allowUserKeys\":true,\"type\":\"traditional\"},\"minRevision\":\"_Zz3k4-----\"}" diff --git a/3.9/generated/Examples/RestGrantCollection.generated b/3.9/generated/Examples/RestGrantCollection.generated index 084460d7bb..d92b623c64 100644 --- a/3.9/generated/Examples/RestGrantCollection.generated +++ b/3.9/generated/Examples/RestGrantCollection.generated @@ -1,6 +1,6 @@ -shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/user/admin@myapp/database/_system/reports <<EOF +shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/user/admin@myapp/database/_system/reports <<EOF { - "grant" : "rw" + "grant" : "rw" } EOF @@ -12,7 +12,7 @@ server: ArangoDB x-content-type-options: nosniff { - "_system/reports" : "rw", - "error" : false, - "code" : 200 + "_system/reports" : "rw", + "error" : false, + "code" : 200 } diff --git a/3.9/generated/Examples/RestGrantDatabase.generated b/3.9/generated/Examples/RestGrantDatabase.generated index f64bd2188b..bfe2bc7cef 100644 --- a/3.9/generated/Examples/RestGrantDatabase.generated +++ b/3.9/generated/Examples/RestGrantDatabase.generated @@ -1,6 +1,6 @@ -shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/user/admin@myapp/database/_system <<EOF +shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/user/admin@myapp/database/_system <<EOF { - "grant" : "rw" + "grant" : "rw" } EOF @@ -12,7 +12,7 @@ server: ArangoDB x-content-type-options: nosniff { - "_system" : "rw", - "error" : false, - "code" : 200 + "_system" : "rw", + "error" : false, + "code" : 200 } diff --git a/3.9/generated/Examples/RestImportCsvEdge.generated b/3.9/generated/Examples/RestImportCsvEdge.generated index 8df95600fe..b92ed2af42 100644 --- a/3.9/generated/Examples/RestImportCsvEdge.generated +++ b/3.9/generated/Examples/RestImportCsvEdge.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=links <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=links <<EOF [ "_from", "_to", "name" ] [ "products/123","products/234", "some name" ] [ "products/332", "products/abc", "other name" ] @@ -12,10 +12,10 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "created" : 2, - "errors" : 0, - "empty" : 0, - "updated" : 0, - "ignored" : 0 + "error" : false, + "created" : 2, + "errors" : 0, + "empty" : 0, + "updated" : 0, + "ignored" : 0 } diff --git a/3.9/generated/Examples/RestImportCsvEdgeInvalid.generated b/3.9/generated/Examples/RestImportCsvEdgeInvalid.generated index ff6e6192d1..25458adc54 100644 --- a/3.9/generated/Examples/RestImportCsvEdgeInvalid.generated +++ b/3.9/generated/Examples/RestImportCsvEdgeInvalid.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=links&details=true <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=links&details=true <<EOF [ "name" ] [ "some name" ] [ "other name" ] @@ -12,14 +12,14 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "created" : 0, - "errors" : 2, - "empty" : 0, - "updated" : 0, - "ignored" : 0, - "details" : [ - "at position 1: missing '_from' or '_to' attribute, offending document: {\"name\":\"some name\"}", - "at position 2: missing '_from' or '_to' attribute, offending document: {\"name\":\"other name\"}" + "error" : false, + "created" : 0, + "errors" : 2, + "empty" : 0, + "updated" : 0, + "ignored" : 0, + "details" : [ + "at position 1: missing '_from' or '_to' attribute, offending document: {\"name\":\"some name\"}", + "at position 2: missing '_from' or '_to' attribute, offending document: {\"name\":\"other name\"}" ] } diff --git a/3.9/generated/Examples/RestImportCsvExample.generated b/3.9/generated/Examples/RestImportCsvExample.generated index c7551fc8ce..357e96871a 100644 --- a/3.9/generated/Examples/RestImportCsvExample.generated +++ b/3.9/generated/Examples/RestImportCsvExample.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products <<EOF [ "_key", "value1", "value2" ] [ "abc", 25, "test" ] @@ -13,10 +13,10 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "created" : 2, - "errors" : 0, - "empty" : 1, - "updated" : 0, - "ignored" : 0 + "error" : false, + "created" : 2, + "errors" : 0, + "empty" : 1, + "updated" : 0, + "ignored" : 0 } diff --git a/3.9/generated/Examples/RestImportCsvInvalidBody.generated b/3.9/generated/Examples/RestImportCsvInvalidBody.generated index 220bc9fcb0..4677a9c54b 100644 --- a/3.9/generated/Examples/RestImportCsvInvalidBody.generated +++ b/3.9/generated/Examples/RestImportCsvInvalidBody.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products <<EOF { "_key": "foo", "value1": "bar" } EOF @@ -10,8 +10,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 400, - "error" : true, - "errorMessage" : "no JSON array found in second line", - "errorNum" : 400 + "code" : 400, + "error" : true, + "errorMessage" : "no JSON array found in second line", + "errorNum" : 400 } diff --git a/3.9/generated/Examples/RestImportCsvInvalidCollection.generated b/3.9/generated/Examples/RestImportCsvInvalidCollection.generated index 0fa393a916..ac358b41bb 100644 --- a/3.9/generated/Examples/RestImportCsvInvalidCollection.generated +++ b/3.9/generated/Examples/RestImportCsvInvalidCollection.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products <<EOF [ "_key", "value1", "value2" ] [ "abc", 25, "test" ] ["foo", "bar", "baz" ] @@ -12,8 +12,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 404, - "error" : true, - "errorMessage" : "collection or view not found: products", - "errorNum" : 1203 + "code" : 404, + "error" : true, + "errorMessage" : "collection or view not found: products", + "errorNum" : 1203 } diff --git a/3.9/generated/Examples/RestImportCsvUniqueContinue.generated b/3.9/generated/Examples/RestImportCsvUniqueContinue.generated index e2d15f175b..1b756ad253 100644 --- a/3.9/generated/Examples/RestImportCsvUniqueContinue.generated +++ b/3.9/generated/Examples/RestImportCsvUniqueContinue.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products&details=true <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products&details=true <<EOF [ "_key", "value1", "value2" ] [ "abc", 25, "test" ] ["abc", "bar", "baz" ] @@ -12,13 +12,13 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "created" : 1, - "errors" : 1, - "empty" : 0, - "updated" : 0, - "ignored" : 0, - "details" : [ - "at position 1: creating document failed with error 'unique constraint violated', offending document: {\"_key\":\"abc\",\"value1\":\"bar\",\"value2\":\"baz\"}" + "error" : false, + "created" : 1, + "errors" : 1, + "empty" : 0, + "updated" : 0, + "ignored" : 0, + "details" : [ + "at position 1: creating document failed with error 'unique constraint violated', offending document: {\"_key\":\"abc\",\"value1\":\"bar\",\"value2\":\"baz\"}" ] } diff --git a/3.9/generated/Examples/RestImportCsvUniqueFail.generated b/3.9/generated/Examples/RestImportCsvUniqueFail.generated index 133899d820..0fb0fd883f 100644 --- a/3.9/generated/Examples/RestImportCsvUniqueFail.generated +++ b/3.9/generated/Examples/RestImportCsvUniqueFail.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products&complete=true <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products&complete=true <<EOF [ "_key", "value1", "value2" ] [ "abc", 25, "test" ] ["abc", "bar", "baz" ] @@ -12,8 +12,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 409, - "error" : true, - "errorMessage" : "unique constraint violated", - "errorNum" : 1210 + "code" : 409, + "error" : true, + "errorMessage" : "unique constraint violated", + "errorNum" : 1210 } diff --git a/3.9/generated/Examples/RestImportJsonEdge.generated b/3.9/generated/Examples/RestImportJsonEdge.generated index b24789bc6d..2a3fd74c35 100644 --- a/3.9/generated/Examples/RestImportJsonEdge.generated +++ b/3.9/generated/Examples/RestImportJsonEdge.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=links&type=documents <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=links&type=documents <<EOF { "_from": "products/123", "_to": "products/234" } {"_from": "products/332", "_to": "products/abc", "name": "other name" } EOF @@ -11,10 +11,10 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "created" : 2, - "errors" : 0, - "empty" : 0, - "updated" : 0, - "ignored" : 0 + "error" : false, + "created" : 2, + "errors" : 0, + "empty" : 0, + "updated" : 0, + "ignored" : 0 } diff --git a/3.9/generated/Examples/RestImportJsonEdgeInvalid.generated b/3.9/generated/Examples/RestImportJsonEdgeInvalid.generated index 0585cd52cc..7adba9368e 100644 --- a/3.9/generated/Examples/RestImportJsonEdgeInvalid.generated +++ b/3.9/generated/Examples/RestImportJsonEdgeInvalid.generated @@ -1,7 +1,7 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=links&type=list&details=true <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=links&type=list&details=true <<EOF [ { - "name" : "some name" + "name" : "some name" } ] EOF @@ -14,13 +14,13 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "created" : 0, - "errors" : 1, - "empty" : 0, - "updated" : 0, - "ignored" : 0, - "details" : [ - "at position 1: missing '_from' or '_to' attribute, offending document: {\"name\":\"some name\"}" + "error" : false, + "created" : 0, + "errors" : 1, + "empty" : 0, + "updated" : 0, + "ignored" : 0, + "details" : [ + "at position 1: missing '_from' or '_to' attribute, offending document: {\"name\":\"some name\"}" ] } diff --git a/3.9/generated/Examples/RestImportJsonInvalidBody.generated b/3.9/generated/Examples/RestImportJsonInvalidBody.generated index d5adbf7ee5..45a50bd772 100644 --- a/3.9/generated/Examples/RestImportJsonInvalidBody.generated +++ b/3.9/generated/Examples/RestImportJsonInvalidBody.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products&type=list <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products&type=list <<EOF { } EOF @@ -10,8 +10,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 400, - "error" : true, - "errorMessage" : "expecting a JSON array in the request", - "errorNum" : 400 + "code" : 400, + "error" : true, + "errorMessage" : "expecting a JSON array in the request", + "errorNum" : 400 } diff --git a/3.9/generated/Examples/RestImportJsonInvalidCollection.generated b/3.9/generated/Examples/RestImportJsonInvalidCollection.generated index b8cf6d8726..a8d0555242 100644 --- a/3.9/generated/Examples/RestImportJsonInvalidCollection.generated +++ b/3.9/generated/Examples/RestImportJsonInvalidCollection.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products&type=documents <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products&type=documents <<EOF { "name": "test" } EOF @@ -10,8 +10,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 404, - "error" : true, - "errorMessage" : "collection or view not found: products", - "errorNum" : 1203 + "code" : 404, + "error" : true, + "errorMessage" : "collection or view not found: products", + "errorNum" : 1203 } diff --git a/3.9/generated/Examples/RestImportJsonLines.generated b/3.9/generated/Examples/RestImportJsonLines.generated index d07356cfb3..955c42ec7b 100644 --- a/3.9/generated/Examples/RestImportJsonLines.generated +++ b/3.9/generated/Examples/RestImportJsonLines.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products&type=documents <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products&type=documents <<EOF { "_key": "abc", "value1": 25, "value2": "test","allowed": true } { "_key": "foo", "name": "baz" } @@ -14,10 +14,10 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "created" : 3, - "errors" : 0, - "empty" : 1, - "updated" : 0, - "ignored" : 0 + "error" : false, + "created" : 3, + "errors" : 0, + "empty" : 1, + "updated" : 0, + "ignored" : 0 } diff --git a/3.9/generated/Examples/RestImportJsonList.generated b/3.9/generated/Examples/RestImportJsonList.generated index d2e81cbcdf..29ba70ab85 100644 --- a/3.9/generated/Examples/RestImportJsonList.generated +++ b/3.9/generated/Examples/RestImportJsonList.generated @@ -1,19 +1,19 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products&type=list <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products&type=list <<EOF [ { - "_key" : "abc", - "value1" : 25, - "value2" : "test", - "allowed" : true + "_key" : "abc", + "value1" : 25, + "value2" : "test", + "allowed" : true }, { - "_key" : "foo", - "name" : "baz" + "_key" : "foo", + "name" : "baz" }, { - "name" : { - "detailed" : "detailed name", - "short" : "short name" + "name" : { + "detailed" : "detailed name", + "short" : "short name" } } ] @@ -27,10 +27,10 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "created" : 3, - "errors" : 0, - "empty" : 0, - "updated" : 0, - "ignored" : 0 + "error" : false, + "created" : 3, + "errors" : 0, + "empty" : 0, + "updated" : 0, + "ignored" : 0 } diff --git a/3.9/generated/Examples/RestImportJsonType.generated b/3.9/generated/Examples/RestImportJsonType.generated index 150a96c0df..2793820a30 100644 --- a/3.9/generated/Examples/RestImportJsonType.generated +++ b/3.9/generated/Examples/RestImportJsonType.generated @@ -1,19 +1,19 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products&type=auto <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products&type=auto <<EOF [ { - "_key" : "abc", - "value1" : 25, - "value2" : "test", - "allowed" : true + "_key" : "abc", + "value1" : 25, + "value2" : "test", + "allowed" : true }, { - "_key" : "foo", - "name" : "baz" + "_key" : "foo", + "name" : "baz" }, { - "name" : { - "detailed" : "detailed name", - "short" : "short name" + "name" : { + "detailed" : "detailed name", + "short" : "short name" } } ] @@ -27,10 +27,10 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "created" : 3, - "errors" : 0, - "empty" : 0, - "updated" : 0, - "ignored" : 0 + "error" : false, + "created" : 3, + "errors" : 0, + "empty" : 0, + "updated" : 0, + "ignored" : 0 } diff --git a/3.9/generated/Examples/RestImportJsonUniqueContinue.generated b/3.9/generated/Examples/RestImportJsonUniqueContinue.generated index ff573c05e5..ec2b9862e4 100644 --- a/3.9/generated/Examples/RestImportJsonUniqueContinue.generated +++ b/3.9/generated/Examples/RestImportJsonUniqueContinue.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products&type=documents&details=true <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products&type=documents&details=true <<EOF { "_key": "abc", "value1": 25, "value2": "test" } { "_key": "abc", "value1": "bar", "value2": "baz" } EOF @@ -11,13 +11,13 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "created" : 1, - "errors" : 1, - "empty" : 0, - "updated" : 0, - "ignored" : 0, - "details" : [ - "at position 1: creating document failed with error 'unique constraint violated', offending document: {\"_key\":\"abc\",\"value1\":\"bar\",\"value2\":\"baz\"}" + "error" : false, + "created" : 1, + "errors" : 1, + "empty" : 0, + "updated" : 0, + "ignored" : 0, + "details" : [ + "at position 1: creating document failed with error 'unique constraint violated', offending document: {\"_key\":\"abc\",\"value1\":\"bar\",\"value2\":\"baz\"}" ] } diff --git a/3.9/generated/Examples/RestImportJsonUniqueFail.generated b/3.9/generated/Examples/RestImportJsonUniqueFail.generated index b6eb800eb8..9308bfe6cf 100644 --- a/3.9/generated/Examples/RestImportJsonUniqueFail.generated +++ b/3.9/generated/Examples/RestImportJsonUniqueFail.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products&type=documents&complete=true <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/import?collection=products&type=documents&complete=true <<EOF { "_key": "abc", "value1": 25, "value2": "test" } { "_key": "abc", "value1": "bar", "value2": "baz" } EOF @@ -11,8 +11,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 409, - "error" : true, - "errorMessage" : "unique constraint violated", - "errorNum" : 1210 + "code" : 409, + "error" : true, + "errorMessage" : "unique constraint violated", + "errorNum" : 1210 } diff --git a/3.9/generated/Examples/RestIndexAllIndexes.generated b/3.9/generated/Examples/RestIndexAllIndexes.generated index beb9a53ce3..4cd19016d2 100644 --- a/3.9/generated/Examples/RestIndexAllIndexes.generated +++ b/3.9/generated/Examples/RestIndexAllIndexes.generated @@ -1,91 +1,91 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/index?collection=products +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/index?collection=products HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 1069 +content-length: 1075 server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "indexes" : [ + "error" : false, + "code" : 200, + "indexes" : [ { - "fields" : [ - "_key" + "fields" : [ + "_key" ], - "id" : "products/0", - "name" : "primary", - "selectivityEstimate" : 1, - "sparse" : false, - "type" : "primary", - "unique" : true + "id" : "products/0", + "name" : "primary", + "selectivityEstimate" : 1, + "sparse" : false, + "type" : "primary", + "unique" : true }, { - "deduplicate" : true, - "estimates" : true, - "fields" : [ - "name" + "deduplicate" : true, + "estimates" : true, + "fields" : [ + "name" ], - "id" : "products/3069", - "name" : "idx_1707171998762795008", - "selectivityEstimate" : 1, - "sparse" : false, - "type" : "hash", - "unique" : false + "id" : "products/67547", + "name" : "idx_1700725489956552704", + "selectivityEstimate" : 1, + "sparse" : false, + "type" : "hash", + "unique" : false }, { - "deduplicate" : true, - "estimates" : true, - "fields" : [ - "price" + "deduplicate" : true, + "estimates" : true, + "fields" : [ + "price" ], - "id" : "products/3073", - "name" : "idx_1707171998762795009", - "selectivityEstimate" : 1, - "sparse" : true, - "type" : "skiplist", - "unique" : false + "id" : "products/67551", + "name" : "idx_1700725489956552705", + "selectivityEstimate" : 1, + "sparse" : true, + "type" : "skiplist", + "unique" : false } ], - "identifiers" : { - "products/0" : { - "fields" : [ - "_key" + "identifiers" : { + "products/0" : { + "fields" : [ + "_key" ], - "id" : "products/0", - "name" : "primary", - "selectivityEstimate" : 1, - "sparse" : false, - "type" : "primary", - "unique" : true + "id" : "products/0", + "name" : "primary", + "selectivityEstimate" : 1, + "sparse" : false, + "type" : "primary", + "unique" : true }, - "products/3069" : { - "deduplicate" : true, - "estimates" : true, - "fields" : [ - "name" + "products/67547" : { + "deduplicate" : true, + "estimates" : true, + "fields" : [ + "name" ], - "id" : "products/3069", - "name" : "idx_1707171998762795008", - "selectivityEstimate" : 1, - "sparse" : false, - "type" : "hash", - "unique" : false + "id" : "products/67547", + "name" : "idx_1700725489956552704", + "selectivityEstimate" : 1, + "sparse" : false, + "type" : "hash", + "unique" : false }, - "products/3073" : { - "deduplicate" : true, - "estimates" : true, - "fields" : [ - "price" + "products/67551" : { + "deduplicate" : true, + "estimates" : true, + "fields" : [ + "price" ], - "id" : "products/3073", - "name" : "idx_1707171998762795009", - "selectivityEstimate" : 1, - "sparse" : true, - "type" : "skiplist", - "unique" : false + "id" : "products/67551", + "name" : "idx_1700725489956552705", + "selectivityEstimate" : 1, + "sparse" : true, + "type" : "skiplist", + "unique" : false } } } diff --git a/3.9/generated/Examples/RestIndexCreateGeoLatitudeLongitude.generated b/3.9/generated/Examples/RestIndexCreateGeoLatitudeLongitude.generated index 2144a28e5d..0ddce1f305 100644 --- a/3.9/generated/Examples/RestIndexCreateGeoLatitudeLongitude.generated +++ b/3.9/generated/Examples/RestIndexCreateGeoLatitudeLongitude.generated @@ -1,9 +1,9 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/index?collection=products <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/index?collection=products <<EOF { - "type" : "geo", - "fields" : [ - "e", - "f" + "type" : "geo", + "fields" : [ + "e", + "f" ] } EOF @@ -11,25 +11,25 @@ EOF HTTP/1.1 201 Created content-type: application/json connection: Keep-Alive -content-length: 244 +content-length: 245 server: ArangoDB x-content-type-options: nosniff { - "bestIndexedLevel" : 17, - "fields" : [ - "e", - "f" + "bestIndexedLevel" : 17, + "fields" : [ + "e", + "f" ], - "geoJson" : false, - "id" : "products/3085", - "isNewlyCreated" : true, - "maxNumCoverCells" : 8, - "name" : "idx_1707171998766989313", - "sparse" : true, - "type" : "geo", - "unique" : false, - "worstIndexedLevel" : 4, - "error" : false, - "code" : 201 + "geoJson" : false, + "id" : "products/67563", + "isNewlyCreated" : true, + "maxNumCoverCells" : 8, + "name" : "idx_1700725489962844161", + "sparse" : true, + "type" : "geo", + "unique" : false, + "worstIndexedLevel" : 4, + "error" : false, + "code" : 201 } diff --git a/3.9/generated/Examples/RestIndexCreateGeoLocation.generated b/3.9/generated/Examples/RestIndexCreateGeoLocation.generated index d0ba6c4d39..e7681c514d 100644 --- a/3.9/generated/Examples/RestIndexCreateGeoLocation.generated +++ b/3.9/generated/Examples/RestIndexCreateGeoLocation.generated @@ -1,8 +1,8 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/index?collection=products <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/index?collection=products <<EOF { - "type" : "geo", - "fields" : [ - "b" + "type" : "geo", + "fields" : [ + "b" ] } EOF @@ -10,24 +10,24 @@ EOF HTTP/1.1 201 Created content-type: application/json connection: Keep-Alive -content-length: 240 +content-length: 241 server: ArangoDB x-content-type-options: nosniff { - "bestIndexedLevel" : 17, - "fields" : [ - "b" + "bestIndexedLevel" : 17, + "fields" : [ + "b" ], - "geoJson" : false, - "id" : "products/3096", - "isNewlyCreated" : true, - "maxNumCoverCells" : 8, - "name" : "idx_1707171998769086465", - "sparse" : true, - "type" : "geo", - "unique" : false, - "worstIndexedLevel" : 4, - "error" : false, - "code" : 201 + "geoJson" : false, + "id" : "products/67574", + "isNewlyCreated" : true, + "maxNumCoverCells" : 8, + "name" : "idx_1700725489968087041", + "sparse" : true, + "type" : "geo", + "unique" : false, + "worstIndexedLevel" : 4, + "error" : false, + "code" : 201 } diff --git a/3.9/generated/Examples/RestIndexCreateNewFulltext.generated b/3.9/generated/Examples/RestIndexCreateNewFulltext.generated index 4b247efcad..7ad1f7db80 100644 --- a/3.9/generated/Examples/RestIndexCreateNewFulltext.generated +++ b/3.9/generated/Examples/RestIndexCreateNewFulltext.generated @@ -1,8 +1,8 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/index?collection=products <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/index?collection=products <<EOF { - "type" : "fulltext", - "fields" : [ - "text" + "type" : "fulltext", + "fields" : [ + "text" ] } EOF @@ -10,21 +10,21 @@ EOF HTTP/1.1 201 Created content-type: application/json connection: Keep-Alive -content-length: 181 +content-length: 182 server: ArangoDB x-content-type-options: nosniff { - "fields" : [ - "text" + "fields" : [ + "text" ], - "id" : "products/3107", - "isNewlyCreated" : true, - "minLength" : 2, - "name" : "idx_1707171998772232193", - "sparse" : true, - "type" : "fulltext", - "unique" : false, - "error" : false, - "code" : 201 + "id" : "products/67585", + "isNewlyCreated" : true, + "minLength" : 2, + "name" : "idx_1700725489972281345", + "sparse" : true, + "type" : "fulltext", + "unique" : false, + "error" : false, + "code" : 201 } diff --git a/3.9/generated/Examples/RestIndexCreateNewHashIndex.generated b/3.9/generated/Examples/RestIndexCreateNewHashIndex.generated index 95b5677292..205fb42a66 100644 --- a/3.9/generated/Examples/RestIndexCreateNewHashIndex.generated +++ b/3.9/generated/Examples/RestIndexCreateNewHashIndex.generated @@ -1,10 +1,10 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/index?collection=products <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/index?collection=products <<EOF { - "type" : "hash", - "unique" : false, - "fields" : [ - "a", - "b" + "type" : "hash", + "unique" : false, + "fields" : [ + "a", + "b" ] } EOF @@ -12,24 +12,24 @@ EOF HTTP/1.1 201 Created content-type: application/json connection: Keep-Alive -content-length: 225 +content-length: 226 server: ArangoDB x-content-type-options: nosniff { - "deduplicate" : true, - "estimates" : true, - "fields" : [ - "a", - "b" + "deduplicate" : true, + "estimates" : true, + "fields" : [ + "a", + "b" ], - "id" : "products/3118", - "isNewlyCreated" : true, - "name" : "idx_1707171998775377920", - "selectivityEstimate" : 1, - "sparse" : false, - "type" : "hash", - "unique" : false, - "error" : false, - "code" : 201 + "id" : "products/67596", + "isNewlyCreated" : true, + "name" : "idx_1700725489977524224", + "selectivityEstimate" : 1, + "sparse" : false, + "type" : "hash", + "unique" : false, + "error" : false, + "code" : 201 } diff --git a/3.9/generated/Examples/RestIndexCreateNewPersistent.generated b/3.9/generated/Examples/RestIndexCreateNewPersistent.generated index c52f0fd3f3..94675d62de 100644 --- a/3.9/generated/Examples/RestIndexCreateNewPersistent.generated +++ b/3.9/generated/Examples/RestIndexCreateNewPersistent.generated @@ -1,10 +1,10 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/index?collection=products <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/index?collection=products <<EOF { - "type" : "persistent", - "unique" : false, - "fields" : [ - "a", - "b" + "type" : "persistent", + "unique" : false, + "fields" : [ + "a", + "b" ] } EOF @@ -12,24 +12,24 @@ EOF HTTP/1.1 201 Created content-type: application/json connection: Keep-Alive -content-length: 231 +content-length: 232 server: ArangoDB x-content-type-options: nosniff { - "deduplicate" : true, - "estimates" : true, - "fields" : [ - "a", - "b" + "deduplicate" : true, + "estimates" : true, + "fields" : [ + "a", + "b" ], - "id" : "products/3129", - "isNewlyCreated" : true, - "name" : "idx_1707171998778523648", - "selectivityEstimate" : 1, - "sparse" : false, - "type" : "persistent", - "unique" : false, - "error" : false, - "code" : 201 + "id" : "products/67607", + "isNewlyCreated" : true, + "name" : "idx_1700725489981718529", + "selectivityEstimate" : 1, + "sparse" : false, + "type" : "persistent", + "unique" : false, + "error" : false, + "code" : 201 } diff --git a/3.9/generated/Examples/RestIndexCreateNewSkiplist.generated b/3.9/generated/Examples/RestIndexCreateNewSkiplist.generated index ac8820d21b..63f13521bd 100644 --- a/3.9/generated/Examples/RestIndexCreateNewSkiplist.generated +++ b/3.9/generated/Examples/RestIndexCreateNewSkiplist.generated @@ -1,10 +1,10 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/index?collection=products <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/index?collection=products <<EOF { - "type" : "skiplist", - "unique" : false, - "fields" : [ - "a", - "b" + "type" : "skiplist", + "unique" : false, + "fields" : [ + "a", + "b" ] } EOF @@ -12,24 +12,24 @@ EOF HTTP/1.1 201 Created content-type: application/json connection: Keep-Alive -content-length: 229 +content-length: 230 server: ArangoDB x-content-type-options: nosniff { - "deduplicate" : true, - "estimates" : true, - "fields" : [ - "a", - "b" + "deduplicate" : true, + "estimates" : true, + "fields" : [ + "a", + "b" ], - "id" : "products/3140", - "isNewlyCreated" : true, - "name" : "idx_1707171998781669377", - "selectivityEstimate" : 1, - "sparse" : false, - "type" : "skiplist", - "unique" : false, - "error" : false, - "code" : 201 + "id" : "products/67618", + "isNewlyCreated" : true, + "name" : "idx_1700725489988009985", + "selectivityEstimate" : 1, + "sparse" : false, + "type" : "skiplist", + "unique" : false, + "error" : false, + "code" : 201 } diff --git a/3.9/generated/Examples/RestIndexCreateNewTtlIndex.generated b/3.9/generated/Examples/RestIndexCreateNewTtlIndex.generated index 5660520939..1323116a4d 100644 --- a/3.9/generated/Examples/RestIndexCreateNewTtlIndex.generated +++ b/3.9/generated/Examples/RestIndexCreateNewTtlIndex.generated @@ -1,9 +1,9 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/index?collection=sessions <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/index?collection=sessions <<EOF { - "type" : "ttl", - "expireAfter" : 3600, - "fields" : [ - "createdAt" + "type" : "ttl", + "expireAfter" : 3600, + "fields" : [ + "createdAt" ] } EOF @@ -11,21 +11,21 @@ EOF HTTP/1.1 201 Created content-type: application/json connection: Keep-Alive -content-length: 186 +content-length: 187 server: ArangoDB x-content-type-options: nosniff { - "expireAfter" : 3600, - "fields" : [ - "createdAt" + "expireAfter" : 3600, + "fields" : [ + "createdAt" ], - "id" : "sessions/3151", - "isNewlyCreated" : true, - "name" : "idx_1707171998786912256", - "sparse" : true, - "type" : "ttl", - "unique" : false, - "error" : false, - "code" : 201 + "id" : "sessions/67629", + "isNewlyCreated" : true, + "name" : "idx_1700725489996398592", + "sparse" : true, + "type" : "ttl", + "unique" : false, + "error" : false, + "code" : 201 } diff --git a/3.9/generated/Examples/RestIndexCreateNewUniqueConstraint.generated b/3.9/generated/Examples/RestIndexCreateNewUniqueConstraint.generated index b6e73d7e1a..a6ef8cc71c 100644 --- a/3.9/generated/Examples/RestIndexCreateNewUniqueConstraint.generated +++ b/3.9/generated/Examples/RestIndexCreateNewUniqueConstraint.generated @@ -1,10 +1,10 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/index?collection=products <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/index?collection=products <<EOF { - "type" : "hash", - "unique" : true, - "fields" : [ - "a", - "b" + "type" : "hash", + "unique" : true, + "fields" : [ + "a", + "b" ] } EOF @@ -12,24 +12,24 @@ EOF HTTP/1.1 201 Created content-type: application/json connection: Keep-Alive -content-length: 224 +content-length: 225 server: ArangoDB x-content-type-options: nosniff { - "deduplicate" : true, - "estimates" : true, - "fields" : [ - "a", - "b" + "deduplicate" : true, + "estimates" : true, + "fields" : [ + "a", + "b" ], - "id" : "products/3162", - "isNewlyCreated" : true, - "name" : "idx_1707171998791106561", - "selectivityEstimate" : 1, - "sparse" : false, - "type" : "hash", - "unique" : true, - "error" : false, - "code" : 201 + "id" : "products/67640", + "isNewlyCreated" : true, + "name" : "idx_1700725490001641472", + "selectivityEstimate" : 1, + "sparse" : false, + "type" : "hash", + "unique" : true, + "error" : false, + "code" : 201 } diff --git a/3.9/generated/Examples/RestIndexCreateSparseHashIndex.generated b/3.9/generated/Examples/RestIndexCreateSparseHashIndex.generated index aeebbc44fa..56366efb6c 100644 --- a/3.9/generated/Examples/RestIndexCreateSparseHashIndex.generated +++ b/3.9/generated/Examples/RestIndexCreateSparseHashIndex.generated @@ -1,10 +1,10 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/index?collection=products <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/index?collection=products <<EOF { - "type" : "hash", - "unique" : false, - "sparse" : true, - "fields" : [ - "a" + "type" : "hash", + "unique" : false, + "sparse" : true, + "fields" : [ + "a" ] } EOF @@ -12,23 +12,23 @@ EOF HTTP/1.1 201 Created content-type: application/json connection: Keep-Alive -content-length: 220 +content-length: 221 server: ArangoDB x-content-type-options: nosniff { - "deduplicate" : true, - "estimates" : true, - "fields" : [ - "a" + "deduplicate" : true, + "estimates" : true, + "fields" : [ + "a" ], - "id" : "products/3173", - "isNewlyCreated" : true, - "name" : "idx_1707171998795300865", - "selectivityEstimate" : 1, - "sparse" : true, - "type" : "hash", - "unique" : false, - "error" : false, - "code" : 201 + "id" : "products/67651", + "isNewlyCreated" : true, + "name" : "idx_1700725490006884352", + "selectivityEstimate" : 1, + "sparse" : true, + "type" : "hash", + "unique" : false, + "error" : false, + "code" : 201 } diff --git a/3.9/generated/Examples/RestIndexCreateSparsePersistent.generated b/3.9/generated/Examples/RestIndexCreateSparsePersistent.generated index 019e812e32..0b53a0696c 100644 --- a/3.9/generated/Examples/RestIndexCreateSparsePersistent.generated +++ b/3.9/generated/Examples/RestIndexCreateSparsePersistent.generated @@ -1,10 +1,10 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/index?collection=products <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/index?collection=products <<EOF { - "type" : "persistent", - "unique" : false, - "sparse" : true, - "fields" : [ - "a" + "type" : "persistent", + "unique" : false, + "sparse" : true, + "fields" : [ + "a" ] } EOF @@ -12,23 +12,23 @@ EOF HTTP/1.1 201 Created content-type: application/json connection: Keep-Alive -content-length: 226 +content-length: 227 server: ArangoDB x-content-type-options: nosniff { - "deduplicate" : true, - "estimates" : true, - "fields" : [ - "a" + "deduplicate" : true, + "estimates" : true, + "fields" : [ + "a" ], - "id" : "products/3184", - "isNewlyCreated" : true, - "name" : "idx_1707171998799495168", - "selectivityEstimate" : 1, - "sparse" : true, - "type" : "persistent", - "unique" : false, - "error" : false, - "code" : 201 + "id" : "products/67662", + "isNewlyCreated" : true, + "name" : "idx_1700725490013175808", + "selectivityEstimate" : 1, + "sparse" : true, + "type" : "persistent", + "unique" : false, + "error" : false, + "code" : 201 } diff --git a/3.9/generated/Examples/RestIndexCreateSparseSkiplist.generated b/3.9/generated/Examples/RestIndexCreateSparseSkiplist.generated index 93dfed8d95..9b1dd9c304 100644 --- a/3.9/generated/Examples/RestIndexCreateSparseSkiplist.generated +++ b/3.9/generated/Examples/RestIndexCreateSparseSkiplist.generated @@ -1,10 +1,10 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/index?collection=products <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/index?collection=products <<EOF { - "type" : "skiplist", - "unique" : false, - "sparse" : true, - "fields" : [ - "a" + "type" : "skiplist", + "unique" : false, + "sparse" : true, + "fields" : [ + "a" ] } EOF @@ -12,23 +12,23 @@ EOF HTTP/1.1 201 Created content-type: application/json connection: Keep-Alive -content-length: 224 +content-length: 225 server: ArangoDB x-content-type-options: nosniff { - "deduplicate" : true, - "estimates" : true, - "fields" : [ - "a" + "deduplicate" : true, + "estimates" : true, + "fields" : [ + "a" ], - "id" : "products/3195", - "isNewlyCreated" : true, - "name" : "idx_1707171998802640896", - "selectivityEstimate" : 1, - "sparse" : true, - "type" : "skiplist", - "unique" : false, - "error" : false, - "code" : 201 + "id" : "products/67673", + "isNewlyCreated" : true, + "name" : "idx_1700725490018418688", + "selectivityEstimate" : 1, + "sparse" : true, + "type" : "skiplist", + "unique" : false, + "error" : false, + "code" : 201 } diff --git a/3.9/generated/Examples/RestIndexDeleteUniqueSkiplist.generated b/3.9/generated/Examples/RestIndexDeleteUniqueSkiplist.generated index 9950730fad..434b03878d 100644 --- a/3.9/generated/Examples/RestIndexDeleteUniqueSkiplist.generated +++ b/3.9/generated/Examples/RestIndexDeleteUniqueSkiplist.generated @@ -1,14 +1,14 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/index/products/3206 +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/index/products/67684 HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 47 +content-length: 48 server: ArangoDB x-content-type-options: nosniff { - "id" : "products/3206", - "error" : false, - "code" : 200 + "id" : "products/67684", + "error" : false, + "code" : 200 } diff --git a/3.9/generated/Examples/RestIndexPrimaryIndex.generated b/3.9/generated/Examples/RestIndexPrimaryIndex.generated index 8f6de466a0..02797d04fe 100644 --- a/3.9/generated/Examples/RestIndexPrimaryIndex.generated +++ b/3.9/generated/Examples/RestIndexPrimaryIndex.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/index/products/0 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/index/products/0 HTTP/1.1 200 OK content-type: application/json @@ -8,14 +8,14 @@ server: ArangoDB x-content-type-options: nosniff { - "fields" : [ - "_key" + "fields" : [ + "_key" ], - "id" : "products/0", - "name" : "primary", - "sparse" : false, - "type" : "primary", - "unique" : true, - "error" : false, - "code" : 200 + "id" : "products/0", + "name" : "primary", + "sparse" : false, + "type" : "primary", + "unique" : true, + "error" : false, + "code" : 200 } diff --git a/3.9/generated/Examples/RestPregelCancelConnectedComponents.generated b/3.9/generated/Examples/RestPregelCancelConnectedComponents.generated index 899237a884..4fa1c63f47 100644 --- a/3.9/generated/Examples/RestPregelCancelConnectedComponents.generated +++ b/3.9/generated/Examples/RestPregelCancelConnectedComponents.generated @@ -1,4 +1,4 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/control_pregel/3348 +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/control_pregel/67826 HTTP/1.1 200 OK content-type: application/json @@ -7,4 +7,4 @@ content-length: 2 server: ArangoDB x-content-type-options: nosniff -"" +"" diff --git a/3.9/generated/Examples/RestPregelStartConnectedComponents.generated b/3.9/generated/Examples/RestPregelStartConnectedComponents.generated index 4cf254ca71..d64fc377f2 100644 --- a/3.9/generated/Examples/RestPregelStartConnectedComponents.generated +++ b/3.9/generated/Examples/RestPregelStartConnectedComponents.generated @@ -1,10 +1,10 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/control_pregel <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/control_pregel <<EOF { - "algorithm" : "wcc", - "graphName" : "connectedComponentsGraph", - "params" : { - "maxGSS" : 36, - "resultField" : "component" + "algorithm" : "wcc", + "graphName" : "connectedComponentsGraph", + "params" : { + "maxGSS" : 36, + "resultField" : "component" } } EOF @@ -12,8 +12,8 @@ EOF HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 6 +content-length: 7 server: ArangoDB x-content-type-options: nosniff -"3494" +"67972" diff --git a/3.9/generated/Examples/RestPregelStatusConnectedComponents.generated b/3.9/generated/Examples/RestPregelStatusConnectedComponents.generated index ad35d61b83..e2a24fc0d2 100644 --- a/3.9/generated/Examples/RestPregelStatusConnectedComponents.generated +++ b/3.9/generated/Examples/RestPregelStatusConnectedComponents.generated @@ -1,30 +1,25 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/control_pregel/3641 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/control_pregel/68119 HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 394 +content-length: 315 server: ArangoDB x-content-type-options: nosniff { - "id" : "3641", - "database" : "_system", - "algorithm" : "WCC", - "created" : "2021-08-04T14:08:09Z", - "expires" : "2021-08-04T14:18:09Z", - "ttl" : 600, - "state" : "done", - "gss" : 11, - "totalRuntime" : 0.0021059513092041016, - "startupTime" : 0.0003509521484375, - "computationTime" : 0.0010118484497070312, - "storageTime" : 0.0007450580596923828, - "aggregators" : { + "state" : "done", + "gss" : 36, + "totalRuntime" : 0.0024285316467285156, + "startupTime" : 0.0004892349243164062, + "computationTime" : 0.001180410385131836, + "storageTime" : 0.0007607936859130859, + "aggregators" : { }, - "sendCount" : 370, - "receivedCount" : 370, - "reports" : [ ], - "vertexCount" : 36, - "edgeCount" : 36 + "sendCount" : 487, + "receivedCount" : 483, + "reports" : [ ], + "vertexCount" : 36, + "edgeCount" : 36, + "parallelism" : "(non-representable type none)" } diff --git a/3.9/generated/Examples/RestQueryInvalid.generated b/3.9/generated/Examples/RestQueryInvalid.generated index f3a109910e..3777ddb947 100644 --- a/3.9/generated/Examples/RestQueryInvalid.generated +++ b/3.9/generated/Examples/RestQueryInvalid.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/query <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/query <<EOF { "query" : "FOR i IN 1..100 FILTER i = 1 LIMIT 2 RETURN i * 3" } EOF @@ -10,8 +10,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 400, - "error" : true, - "errorMessage" : "syntax error, unexpected assignment near '= 1 LIMIT 2 RETURN i * 3' at position 1:26", - "errorNum" : 1501 + "code" : 400, + "error" : true, + "errorMessage" : "syntax error, unexpected assignment near '= 1 LIMIT 2 RETURN i * 3' at position 1:26", + "errorNum" : 1501 } diff --git a/3.9/generated/Examples/RestQueryValid.generated b/3.9/generated/Examples/RestQueryValid.generated index 07ed3c5576..21dce8966f 100644 --- a/3.9/generated/Examples/RestQueryValid.generated +++ b/3.9/generated/Examples/RestQueryValid.generated @@ -1,4 +1,4 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/query <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/query <<EOF { "query" : "FOR i IN 1..100 FILTER i > 10 LIMIT 2 RETURN i * 3" } EOF @@ -10,87 +10,87 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "parsed" : true, - "collections" : [ ], - "bindVars" : [ ], - "ast" : [ + "error" : false, + "code" : 200, + "parsed" : true, + "collections" : [ ], + "bindVars" : [ ], + "ast" : [ { - "type" : "root", - "subNodes" : [ + "type" : "root", + "subNodes" : [ { - "type" : "for", - "subNodes" : [ + "type" : "for", + "subNodes" : [ { - "type" : "variable", - "name" : "i", - "id" : 0 + "type" : "variable", + "name" : "i", + "id" : 0 }, { - "type" : "range", - "subNodes" : [ + "type" : "range", + "subNodes" : [ { - "type" : "value", - "value" : 1 + "type" : "value", + "value" : 1 }, { - "type" : "value", - "value" : 100 + "type" : "value", + "value" : 100 } ] }, { - "type" : "no-op" + "type" : "no-op" } ] }, { - "type" : "filter", - "subNodes" : [ + "type" : "filter", + "subNodes" : [ { - "type" : "compare >", - "subNodes" : [ + "type" : "compare >", + "subNodes" : [ { - "type" : "reference", - "name" : "i", - "id" : 0 + "type" : "reference", + "name" : "i", + "id" : 0 }, { - "type" : "value", - "value" : 10 + "type" : "value", + "value" : 10 } ] } ] }, { - "type" : "limit", - "subNodes" : [ + "type" : "limit", + "subNodes" : [ { - "type" : "value", - "value" : 0 + "type" : "value", + "value" : 0 }, { - "type" : "value", - "value" : 2 + "type" : "value", + "value" : 2 } ] }, { - "type" : "return", - "subNodes" : [ + "type" : "return", + "subNodes" : [ { - "type" : "times", - "subNodes" : [ + "type" : "times", + "subNodes" : [ { - "type" : "reference", - "name" : "i", - "id" : 0 + "type" : "reference", + "name" : "i", + "id" : 0 }, { - "type" : "value", - "value" : 3 + "type" : "value", + "value" : 3 } ] } diff --git a/3.9/generated/Examples/RestReplaceUser.generated b/3.9/generated/Examples/RestReplaceUser.generated index 6173374ca8..e08f4e1d4f 100644 --- a/3.9/generated/Examples/RestReplaceUser.generated +++ b/3.9/generated/Examples/RestReplaceUser.generated @@ -1,6 +1,6 @@ -shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/user/admin@myapp <<EOF +shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/user/admin@myapp <<EOF { - "passwd" : "secure" + "passwd" : "secure" } EOF @@ -12,10 +12,10 @@ server: ArangoDB x-content-type-options: nosniff { - "user" : "admin@myapp", - "active" : true, - "extra" : { + "user" : "admin@myapp", + "active" : true, + "extra" : { }, - "error" : false, - "code" : 200 + "error" : false, + "code" : 200 } diff --git a/3.9/generated/Examples/RestReplicationApplierGetConfig.generated b/3.9/generated/Examples/RestReplicationApplierGetConfig.generated index 5947121879..c4236f37b5 100644 --- a/3.9/generated/Examples/RestReplicationApplierGetConfig.generated +++ b/3.9/generated/Examples/RestReplicationApplierGetConfig.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/applier-config +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/applier-config HTTP/1.1 200 OK content-type: application/json @@ -8,28 +8,28 @@ server: ArangoDB x-content-type-options: nosniff { - "requestTimeout" : 600, - "connectTimeout" : 10, - "ignoreErrors" : 0, - "maxConnectRetries" : 100, - "lockTimeoutRetries" : 0, - "sslProtocol" : 0, - "chunkSize" : 0, - "skipCreateDrop" : false, - "autoStart" : false, - "adaptivePolling" : true, - "autoResync" : false, - "autoResyncRetries" : 2, - "maxPacketSize" : 536870912, - "includeSystem" : true, - "includeFoxxQueues" : false, - "requireFromPresent" : true, - "verbose" : false, - "incremental" : false, - "restrictType" : "", - "restrictCollections" : [ ], - "connectionRetryWaitTime" : 15, - "initialSyncMaxWaitTime" : 300, - "idleMinWaitTime" : 1, - "idleMaxWaitTime" : 2.5 + "requestTimeout" : 600, + "connectTimeout" : 10, + "ignoreErrors" : 0, + "maxConnectRetries" : 100, + "lockTimeoutRetries" : 0, + "sslProtocol" : 0, + "chunkSize" : 0, + "skipCreateDrop" : false, + "autoStart" : false, + "adaptivePolling" : true, + "autoResync" : false, + "autoResyncRetries" : 2, + "maxPacketSize" : 536870912, + "includeSystem" : true, + "includeFoxxQueues" : false, + "requireFromPresent" : true, + "verbose" : false, + "incremental" : false, + "restrictType" : "", + "restrictCollections" : [ ], + "connectionRetryWaitTime" : 15, + "initialSyncMaxWaitTime" : 300, + "idleMinWaitTime" : 1, + "idleMaxWaitTime" : 2.5 } diff --git a/3.9/generated/Examples/RestReplicationApplierSetConfig.generated b/3.9/generated/Examples/RestReplicationApplierSetConfig.generated index 974c4a8153..67231ad9e0 100644 --- a/3.9/generated/Examples/RestReplicationApplierSetConfig.generated +++ b/3.9/generated/Examples/RestReplicationApplierSetConfig.generated @@ -1,11 +1,11 @@ -shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/replication/applier-config <<EOF +shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/replication/applier-config <<EOF { - "endpoint" : "tcp://127.0.0.1:8529", - "username" : "replicationApplier", - "password" : "applier1234@foxx", - "chunkSize" : 4194304, - "autoStart" : false, - "adaptivePolling" : true + "endpoint" : "tcp://127.0.0.1:8529", + "username" : "replicationApplier", + "password" : "applier1234@foxx", + "chunkSize" : 4194304, + "autoStart" : false, + "adaptivePolling" : true } EOF @@ -17,31 +17,31 @@ server: ArangoDB x-content-type-options: nosniff { - "endpoint" : "tcp://127.0.0.1:8529", - "database" : "_system", - "username" : "replicationApplier", - "requestTimeout" : 600, - "connectTimeout" : 10, - "ignoreErrors" : 0, - "maxConnectRetries" : 100, - "lockTimeoutRetries" : 0, - "sslProtocol" : 0, - "chunkSize" : 4194304, - "skipCreateDrop" : false, - "autoStart" : false, - "adaptivePolling" : true, - "autoResync" : false, - "autoResyncRetries" : 2, - "maxPacketSize" : 536870912, - "includeSystem" : true, - "includeFoxxQueues" : false, - "requireFromPresent" : true, - "verbose" : false, - "incremental" : false, - "restrictType" : "", - "restrictCollections" : [ ], - "connectionRetryWaitTime" : 15, - "initialSyncMaxWaitTime" : 300, - "idleMinWaitTime" : 1, - "idleMaxWaitTime" : 2.5 + "endpoint" : "tcp://127.0.0.1:8529", + "database" : "_system", + "username" : "replicationApplier", + "requestTimeout" : 600, + "connectTimeout" : 10, + "ignoreErrors" : 0, + "maxConnectRetries" : 100, + "lockTimeoutRetries" : 0, + "sslProtocol" : 0, + "chunkSize" : 4194304, + "skipCreateDrop" : false, + "autoStart" : false, + "adaptivePolling" : true, + "autoResync" : false, + "autoResyncRetries" : 2, + "maxPacketSize" : 536870912, + "includeSystem" : true, + "includeFoxxQueues" : false, + "requireFromPresent" : true, + "verbose" : false, + "incremental" : false, + "restrictType" : "", + "restrictCollections" : [ ], + "connectionRetryWaitTime" : 15, + "initialSyncMaxWaitTime" : 300, + "idleMinWaitTime" : 1, + "idleMaxWaitTime" : 2.5 } diff --git a/3.9/generated/Examples/RestReplicationApplierStart.generated b/3.9/generated/Examples/RestReplicationApplierStart.generated index 62362ec6fe..0a07473a41 100644 --- a/3.9/generated/Examples/RestReplicationApplierStart.generated +++ b/3.9/generated/Examples/RestReplicationApplierStart.generated @@ -1,47 +1,47 @@ -shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/applier-start +shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/applier-start HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 716 +content-length: 717 server: ArangoDB x-content-type-options: nosniff { - "state" : { - "started" : "", - "running" : true, - "phase" : "running", - "lastAppliedContinuousTick" : null, - "lastProcessedContinuousTick" : null, - "lastAvailableContinuousTick" : null, - "safeResumeTick" : null, - "ticksBehind" : 0, - "progress" : { - "time" : "2021-08-04T14:07:59Z", - "message" : "applier initially created for database '_system'", - "failedConnects" : 0 + "state" : { + "started" : "", + "running" : true, + "phase" : "running", + "lastAppliedContinuousTick" : null, + "lastProcessedContinuousTick" : null, + "lastAvailableContinuousTick" : null, + "safeResumeTick" : null, + "ticksBehind" : 0, + "progress" : { + "time" : "2021-05-25T10:23:29Z", + "message" : "applier initially created for database '_system'", + "failedConnects" : 0 }, - "totalRequests" : 0, - "totalFailedConnects" : 0, - "totalEvents" : 0, - "totalDocuments" : 0, - "totalRemovals" : 0, - "totalResyncs" : 0, - "totalOperationsExcluded" : 0, - "totalApplyTime" : 0, - "averageApplyTime" : 0, - "totalFetchTime" : 0, - "averageFetchTime" : 0, - "lastError" : { - "errorNum" : 0 + "totalRequests" : 0, + "totalFailedConnects" : 0, + "totalEvents" : 0, + "totalDocuments" : 0, + "totalRemovals" : 0, + "totalResyncs" : 0, + "totalOperationsExcluded" : 0, + "totalApplyTime" : 0, + "averageApplyTime" : 0, + "totalFetchTime" : 0, + "averageFetchTime" : 0, + "lastError" : { + "errorNum" : 0 }, - "time" : "2021-08-04T14:08:10Z" + "time" : "2021-05-25T10:23:40Z" }, - "server" : { - "version" : "3.9.0-devel", - "serverId" : "34153231126696" + "server" : { + "version" : "3.9.0-devel", + "serverId" : "188998707105330" }, - "endpoint" : "tcp://127.0.0.1:8529", - "database" : "_system" + "endpoint" : "tcp://127.0.0.1:8529", + "database" : "_system" } diff --git a/3.9/generated/Examples/RestReplicationApplierStateNotRunning.generated b/3.9/generated/Examples/RestReplicationApplierStateNotRunning.generated index b8c77d10f9..e971bec226 100644 --- a/3.9/generated/Examples/RestReplicationApplierStateNotRunning.generated +++ b/3.9/generated/Examples/RestReplicationApplierStateNotRunning.generated @@ -1,46 +1,46 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/applier-state +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/applier-state HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 691 +content-length: 692 server: ArangoDB x-content-type-options: nosniff { - "state" : { - "started" : "2021-08-04T14:08:10Z", - "running" : false, - "phase" : "inactive", - "lastAppliedContinuousTick" : null, - "lastProcessedContinuousTick" : null, - "lastAvailableContinuousTick" : null, - "safeResumeTick" : null, - "progress" : { - "time" : "2021-08-04T14:08:10Z", - "message" : "applier shut down", - "failedConnects" : 0 + "state" : { + "started" : "2021-05-25T10:23:40Z", + "running" : false, + "phase" : "inactive", + "lastAppliedContinuousTick" : null, + "lastProcessedContinuousTick" : null, + "lastAvailableContinuousTick" : null, + "safeResumeTick" : null, + "progress" : { + "time" : "2021-05-25T10:23:40Z", + "message" : "applier shut down", + "failedConnects" : 1 }, - "totalRequests" : 1, - "totalFailedConnects" : 0, - "totalEvents" : 0, - "totalDocuments" : 0, - "totalRemovals" : 0, - "totalResyncs" : 0, - "totalOperationsExcluded" : 0, - "totalApplyTime" : 0, - "averageApplyTime" : 0, - "totalFetchTime" : 0, - "averageFetchTime" : 0, - "lastError" : { - "errorNum" : 0 + "totalRequests" : 2, + "totalFailedConnects" : 1, + "totalEvents" : 0, + "totalDocuments" : 0, + "totalRemovals" : 0, + "totalResyncs" : 0, + "totalOperationsExcluded" : 0, + "totalApplyTime" : 0, + "averageApplyTime" : 0, + "totalFetchTime" : 0, + "averageFetchTime" : 0, + "lastError" : { + "errorNum" : 0 }, - "time" : "2021-08-04T14:08:10Z" + "time" : "2021-05-25T10:23:40Z" }, - "server" : { - "version" : "3.9.0-devel", - "serverId" : "34153231126696" + "server" : { + "version" : "3.9.0-devel", + "serverId" : "188998707105330" }, - "endpoint" : "tcp://127.0.0.1:8529", - "database" : "_system" + "endpoint" : "tcp://127.0.0.1:8529", + "database" : "_system" } diff --git a/3.9/generated/Examples/RestReplicationApplierStateRunning.generated b/3.9/generated/Examples/RestReplicationApplierStateRunning.generated index 70b6b82973..c1e6ad79e3 100644 --- a/3.9/generated/Examples/RestReplicationApplierStateRunning.generated +++ b/3.9/generated/Examples/RestReplicationApplierStateRunning.generated @@ -1,47 +1,47 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/applier-state +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/applier-state HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 721 +content-length: 722 server: ArangoDB x-content-type-options: nosniff { - "state" : { - "started" : "2021-08-04T14:08:10Z", - "running" : true, - "phase" : "running", - "lastAppliedContinuousTick" : null, - "lastProcessedContinuousTick" : null, - "lastAvailableContinuousTick" : null, - "safeResumeTick" : null, - "ticksBehind" : 0, - "progress" : { - "time" : "2021-08-04T14:08:10Z", - "message" : "fetching leader state information", - "failedConnects" : 0 + "state" : { + "started" : "2021-05-25T10:23:40Z", + "running" : true, + "phase" : "running", + "lastAppliedContinuousTick" : null, + "lastProcessedContinuousTick" : null, + "lastAvailableContinuousTick" : null, + "safeResumeTick" : null, + "ticksBehind" : 0, + "progress" : { + "time" : "2021-05-25T10:23:40Z", + "message" : "fetching leader state information", + "failedConnects" : 0 }, - "totalRequests" : 1, - "totalFailedConnects" : 0, - "totalEvents" : 0, - "totalDocuments" : 0, - "totalRemovals" : 0, - "totalResyncs" : 0, - "totalOperationsExcluded" : 0, - "totalApplyTime" : 0, - "averageApplyTime" : 0, - "totalFetchTime" : 0, - "averageFetchTime" : 0, - "lastError" : { - "errorNum" : 0 + "totalRequests" : 2, + "totalFailedConnects" : 1, + "totalEvents" : 0, + "totalDocuments" : 0, + "totalRemovals" : 0, + "totalResyncs" : 0, + "totalOperationsExcluded" : 0, + "totalApplyTime" : 0, + "averageApplyTime" : 0, + "totalFetchTime" : 0, + "averageFetchTime" : 0, + "lastError" : { + "errorNum" : 0 }, - "time" : "2021-08-04T14:08:10Z" + "time" : "2021-05-25T10:23:40Z" }, - "server" : { - "version" : "3.9.0-devel", - "serverId" : "34153231126696" + "server" : { + "version" : "3.9.0-devel", + "serverId" : "188998707105330" }, - "endpoint" : "tcp://127.0.0.1:8529", - "database" : "_system" + "endpoint" : "tcp://127.0.0.1:8529", + "database" : "_system" } diff --git a/3.9/generated/Examples/RestReplicationApplierStop.generated b/3.9/generated/Examples/RestReplicationApplierStop.generated index 7203913525..be0df27837 100644 --- a/3.9/generated/Examples/RestReplicationApplierStop.generated +++ b/3.9/generated/Examples/RestReplicationApplierStop.generated @@ -1,46 +1,46 @@ -shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/applier-stop +shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/applier-stop HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 691 +content-length: 692 server: ArangoDB x-content-type-options: nosniff { - "state" : { - "started" : "2021-08-04T14:08:10Z", - "running" : false, - "phase" : "inactive", - "lastAppliedContinuousTick" : null, - "lastProcessedContinuousTick" : null, - "lastAvailableContinuousTick" : null, - "safeResumeTick" : null, - "progress" : { - "time" : "2021-08-04T14:08:10Z", - "message" : "applier shut down", - "failedConnects" : 0 + "state" : { + "started" : "2021-05-25T10:23:40Z", + "running" : false, + "phase" : "inactive", + "lastAppliedContinuousTick" : null, + "lastProcessedContinuousTick" : null, + "lastAvailableContinuousTick" : null, + "safeResumeTick" : null, + "progress" : { + "time" : "2021-05-25T10:23:41Z", + "message" : "applier shut down", + "failedConnects" : 0 }, - "totalRequests" : 3, - "totalFailedConnects" : 0, - "totalEvents" : 0, - "totalDocuments" : 0, - "totalRemovals" : 0, - "totalResyncs" : 0, - "totalOperationsExcluded" : 0, - "totalApplyTime" : 0, - "averageApplyTime" : 0, - "totalFetchTime" : 0, - "averageFetchTime" : 0, - "lastError" : { - "errorNum" : 0 + "totalRequests" : 6, + "totalFailedConnects" : 3, + "totalEvents" : 0, + "totalDocuments" : 0, + "totalRemovals" : 0, + "totalResyncs" : 0, + "totalOperationsExcluded" : 0, + "totalApplyTime" : 0, + "averageApplyTime" : 0, + "totalFetchTime" : 0, + "averageFetchTime" : 0, + "lastError" : { + "errorNum" : 0 }, - "time" : "2021-08-04T14:08:10Z" + "time" : "2021-05-25T10:23:41Z" }, - "server" : { - "version" : "3.9.0-devel", - "serverId" : "34153231126696" + "server" : { + "version" : "3.9.0-devel", + "serverId" : "188998707105330" }, - "endpoint" : "tcp://127.0.0.1:8529", - "database" : "_system" + "endpoint" : "tcp://127.0.0.1:8529", + "database" : "_system" } diff --git a/3.9/generated/Examples/RestReplicationLoggerFirstTick.generated b/3.9/generated/Examples/RestReplicationLoggerFirstTick.generated index 0ccccac6d0..47c217d66b 100644 --- a/3.9/generated/Examples/RestReplicationLoggerFirstTick.generated +++ b/3.9/generated/Examples/RestReplicationLoggerFirstTick.generated @@ -1,12 +1,12 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/logger-first-tick +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/logger-first-tick HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 20 +content-length: 22 server: ArangoDB x-content-type-options: nosniff { - "firstTick" : "2769" + "firstTick" : "174322" } diff --git a/3.9/generated/Examples/RestReplicationLoggerFollowBufferLimit.generated b/3.9/generated/Examples/RestReplicationLoggerFollowBufferLimit.generated index e668400c86..017f47516e 100644 --- a/3.9/generated/Examples/RestReplicationLoggerFollowBufferLimit.generated +++ b/3.9/generated/Examples/RestReplicationLoggerFollowBufferLimit.generated @@ -1,88 +1,88 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/logger-follow?from=7392&chunkSize=400 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/logger-follow?from=178949&chunkSize=400 HTTP/1.1 200 OK content-type: application/x-arango-dump connection: Keep-Alive -content-length: 771 +content-length: 773 server: ArangoDB x-arango-replication-active: true x-arango-replication-checkmore: true x-arango-replication-frompresent: true -x-arango-replication-lastincluded: 7397 -x-arango-replication-lastscanned: 7394 -x-arango-replication-lasttick: 7418 +x-arango-replication-lastincluded: 178954 +x-arango-replication-lastscanned: 178951 +x-arango-replication-lasttick: 178975 x-content-type-options: nosniff { - "tick" : "7395", - "type" : 2300, - "database" : "1", - "tid" : "0", - "cid" : "4", - "cname" : "_users", - "data" : { - "_key" : "83", - "_id" : "_users/83", - "_rev" : "_cvD8Mdi---", - "user" : "root", - "source" : "LOCAL", - "authData" : { - "active" : true, - "simple" : { - "hash" : "53e263c31cd24d729ab74b308cf3e1f6b6a3a06a8df48b4c71d1fe23c7ea35ad", - "salt" : "5c92fa8b", - "method" : "sha256" + "tick" : "178952", + "type" : 2300, + "database" : "1", + "tid" : "0", + "cid" : "4", + "cname" : "_users", + "data" : { + "_key" : "83", + "_id" : "_users/83", + "_rev" : "_cYKLK2a---", + "user" : "root", + "source" : "LOCAL", + "authData" : { + "active" : true, + "simple" : { + "hash" : "e5928e28e200c17e4899c2100f44e0d06ea185c6b7cd90286567a527e85d81c3", + "salt" : "883aa003", + "method" : "sha256" } }, - "databases" : { - "_system" : { - "permissions" : { - "read" : true, - "write" : true + "databases" : { + "*" : { + "permissions" : { + "read" : true, + "write" : true }, - "collections" : { - "products" : { - "permissions" : { - "read" : true, - "write" : true + "collections" : { + "*" : { + "permissions" : { + "read" : true, + "write" : true } - }, - "demo" : { - "permissions" : { - "read" : true, - "write" : true + } + } + }, + "_system" : { + "permissions" : { + "read" : true, + "write" : true + }, + "collections" : { + "products" : { + "permissions" : { + "read" : true, + "write" : true } }, - "animals" : { - "permissions" : { - "read" : true, - "write" : true + "products1" : { + "permissions" : { + "read" : true, + "write" : true } }, - "*" : { - "permissions" : { - "read" : true, - "write" : true + "animals" : { + "permissions" : { + "read" : true, + "write" : true } }, - "products1" : { - "permissions" : { - "read" : true, - "write" : true + "*" : { + "permissions" : { + "read" : true, + "write" : true } - } - } - }, - "*" : { - "permissions" : { - "read" : true, - "write" : true - }, - "collections" : { - "*" : { - "permissions" : { - "read" : true, - "write" : true + }, + "demo" : { + "permissions" : { + "read" : true, + "write" : true } } } diff --git a/3.9/generated/Examples/RestReplicationLoggerFollowEmpty.generated b/3.9/generated/Examples/RestReplicationLoggerFollowEmpty.generated index a93b45fdf0..7cf7a49e15 100644 --- a/3.9/generated/Examples/RestReplicationLoggerFollowEmpty.generated +++ b/3.9/generated/Examples/RestReplicationLoggerFollowEmpty.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/logger-follow?from=7418 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/logger-follow?from=178975 HTTP/1.1 204 No Content content-type: application/x-arango-dump @@ -9,7 +9,7 @@ x-arango-replication-active: true x-arango-replication-checkmore: false x-arango-replication-frompresent: true x-arango-replication-lastincluded: 0 -x-arango-replication-lastscanned: 7415 -x-arango-replication-lasttick: 7418 +x-arango-replication-lastscanned: 178972 +x-arango-replication-lasttick: 178975 x-content-type-options: nosniff diff --git a/3.9/generated/Examples/RestReplicationLoggerFollowSome.generated b/3.9/generated/Examples/RestReplicationLoggerFollowSome.generated index 8c7e911f90..6850ccc338 100644 --- a/3.9/generated/Examples/RestReplicationLoggerFollowSome.generated +++ b/3.9/generated/Examples/RestReplicationLoggerFollowSome.generated @@ -1,88 +1,88 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/logger-follow?from=7418 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/logger-follow?from=178975 HTTP/1.1 200 OK content-type: application/x-arango-dump connection: Keep-Alive -content-length: 1603 +content-length: 1612 server: ArangoDB x-arango-replication-active: true x-arango-replication-checkmore: false x-arango-replication-frompresent: true -x-arango-replication-lastincluded: 7449 -x-arango-replication-lastscanned: 7449 -x-arango-replication-lasttick: 7449 +x-arango-replication-lastincluded: 179001 +x-arango-replication-lastscanned: 178998 +x-arango-replication-lasttick: 179001 x-content-type-options: nosniff { - "tick" : "7421", - "type" : 2300, - "database" : "1", - "tid" : "0", - "cid" : "4", - "cname" : "_users", - "data" : { - "_key" : "83", - "_id" : "_users/83", - "_rev" : "_cvD8Ndq---", - "user" : "root", - "source" : "LOCAL", - "authData" : { - "active" : true, - "simple" : { - "hash" : "53e263c31cd24d729ab74b308cf3e1f6b6a3a06a8df48b4c71d1fe23c7ea35ad", - "salt" : "5c92fa8b", - "method" : "sha256" + "tick" : "178978", + "type" : 2300, + "database" : "1", + "tid" : "0", + "cid" : "4", + "cname" : "_users", + "data" : { + "_key" : "83", + "_id" : "_users/83", + "_rev" : "_cYKLL22---", + "user" : "root", + "source" : "LOCAL", + "authData" : { + "active" : true, + "simple" : { + "hash" : "e5928e28e200c17e4899c2100f44e0d06ea185c6b7cd90286567a527e85d81c3", + "salt" : "883aa003", + "method" : "sha256" } }, - "databases" : { - "_system" : { - "permissions" : { - "read" : true, - "write" : true + "databases" : { + "*" : { + "permissions" : { + "read" : true, + "write" : true }, - "collections" : { - "products" : { - "permissions" : { - "read" : true, - "write" : true + "collections" : { + "*" : { + "permissions" : { + "read" : true, + "write" : true } - }, - "demo" : { - "permissions" : { - "read" : true, - "write" : true + } + } + }, + "_system" : { + "permissions" : { + "read" : true, + "write" : true + }, + "collections" : { + "products" : { + "permissions" : { + "read" : true, + "write" : true } }, - "animals" : { - "permissions" : { - "read" : true, - "write" : true + "products1" : { + "permissions" : { + "read" : true, + "write" : true } }, - "*" : { - "permissions" : { - "read" : true, - "write" : true + "animals" : { + "permissions" : { + "read" : true, + "write" : true } }, - "products1" : { - "permissions" : { - "read" : true, - "write" : true + "*" : { + "permissions" : { + "read" : true, + "write" : true } - } - } - }, - "*" : { - "permissions" : { - "read" : true, - "write" : true - }, - "collections" : { - "*" : { - "permissions" : { - "read" : true, - "write" : true + }, + "demo" : { + "permissions" : { + "read" : true, + "write" : true } } } @@ -91,80 +91,80 @@ x-content-type-options: nosniff } }↩ { - "tick" : "7434", - "type" : 2001, - "database" : "1", - "cuid" : "h1F0FEB3590A8/3693", - "cid" : "3693", - "data" : { - "id" : "3693", - "name" : "" + "tick" : "178991", + "type" : 2001, + "database" : "1", + "cuid" : "hABE4B0CCCE32/68171", + "cid" : "68171", + "data" : { + "id" : "68171", + "name" : "" } }↩ { - "tick" : "7442", - "type" : 2300, - "database" : "1", - "tid" : "0", - "cid" : "4", - "cname" : "_users", - "data" : { - "_key" : "83", - "_id" : "_users/83", - "_rev" : "_cvD8Ndy--_", - "user" : "root", - "source" : "LOCAL", - "authData" : { - "active" : true, - "simple" : { - "hash" : "53e263c31cd24d729ab74b308cf3e1f6b6a3a06a8df48b4c71d1fe23c7ea35ad", - "salt" : "5c92fa8b", - "method" : "sha256" + "tick" : "178999", + "type" : 2300, + "database" : "1", + "tid" : "0", + "cid" : "4", + "cname" : "_users", + "data" : { + "_key" : "83", + "_id" : "_users/83", + "_rev" : "_cYKLL3C---", + "user" : "root", + "source" : "LOCAL", + "authData" : { + "active" : true, + "simple" : { + "hash" : "e5928e28e200c17e4899c2100f44e0d06ea185c6b7cd90286567a527e85d81c3", + "salt" : "883aa003", + "method" : "sha256" } }, - "databases" : { - "_system" : { - "permissions" : { - "read" : true, - "write" : true + "databases" : { + "_system" : { + "permissions" : { + "read" : true, + "write" : true }, - "collections" : { - "demo" : { - "permissions" : { - "read" : true, - "write" : true + "collections" : { + "demo" : { + "permissions" : { + "read" : true, + "write" : true } }, - "animals" : { - "permissions" : { - "read" : true, - "write" : true + "*" : { + "permissions" : { + "read" : true, + "write" : true } }, - "*" : { - "permissions" : { - "read" : true, - "write" : true + "animals" : { + "permissions" : { + "read" : true, + "write" : true } }, - "products1" : { - "permissions" : { - "read" : true, - "write" : true + "products1" : { + "permissions" : { + "read" : true, + "write" : true } } } }, - "*" : { - "permissions" : { - "read" : true, - "write" : true + "*" : { + "permissions" : { + "read" : true, + "write" : true }, - "collections" : { - "*" : { - "permissions" : { - "read" : true, - "write" : true + "collections" : { + "*" : { + "permissions" : { + "read" : true, + "write" : true } } } diff --git a/3.9/generated/Examples/RestReplicationLoggerStateActive.generated b/3.9/generated/Examples/RestReplicationLoggerStateActive.generated index d9e37b0c62..cc1eed221b 100644 --- a/3.9/generated/Examples/RestReplicationLoggerStateActive.generated +++ b/3.9/generated/Examples/RestReplicationLoggerStateActive.generated @@ -1,24 +1,24 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/logger-state +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/logger-state HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 223 +content-length: 230 server: ArangoDB x-content-type-options: nosniff { - "state" : { - "running" : true, - "lastLogTick" : "7449", - "lastUncommittedLogTick" : "7449", - "totalEvents" : 7449, - "time" : "2021-08-04T14:08:12Z" + "state" : { + "running" : true, + "lastLogTick" : "179001", + "lastUncommittedLogTick" : "179001", + "totalEvents" : 179001, + "time" : "2021-05-25T10:23:44Z" }, - "server" : { - "version" : "3.9.0-devel", - "serverId" : "34153231126696", - "engine" : "rocksdb" + "server" : { + "version" : "3.9.0-devel", + "serverId" : "188998707105330", + "engine" : "rocksdb" }, - "clients" : [ ] + "clients" : [ ] } diff --git a/3.9/generated/Examples/RestReplicationLoggerTickRanges.generated b/3.9/generated/Examples/RestReplicationLoggerTickRanges.generated index 26c5e60751..ab2604bb83 100644 --- a/3.9/generated/Examples/RestReplicationLoggerTickRanges.generated +++ b/3.9/generated/Examples/RestReplicationLoggerTickRanges.generated @@ -1,29 +1,29 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/logger-tick-ranges +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/logger-tick-ranges HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 258 +content-length: 270 server: ArangoDB x-content-type-options: nosniff [ { - "datafile" : "/archive/000075.log", - "status" : "collected", - "tickMin" : "2769", - "tickMax" : "2812" + "datafile" : "/archive/000076.log", + "status" : "collected", + "tickMin" : "174322", + "tickMax" : "174365" }, { - "datafile" : "/archive/000095.log", - "status" : "collected", - "tickMin" : "2812", - "tickMax" : "2841" + "datafile" : "/archive/000096.log", + "status" : "collected", + "tickMin" : "174365", + "tickMax" : "174394" }, { - "datafile" : "/000102.log", - "status" : "open", - "tickMin" : "2841", - "tickMax" : "7449" + "datafile" : "/000103.log", + "status" : "open", + "tickMin" : "174394", + "tickMax" : "179001" } ] diff --git a/3.9/generated/Examples/RestReplicationServerId.generated b/3.9/generated/Examples/RestReplicationServerId.generated index 9e3fa956c1..acf67c2b4d 100644 --- a/3.9/generated/Examples/RestReplicationServerId.generated +++ b/3.9/generated/Examples/RestReplicationServerId.generated @@ -1,12 +1,12 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/server-id +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/server-id HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 29 +content-length: 30 server: ArangoDB x-content-type-options: nosniff { - "serverId" : "34153231126696" + "serverId" : "188998707105330" } diff --git a/3.9/generated/Examples/RestRevokeCollection.generated b/3.9/generated/Examples/RestRevokeCollection.generated index 5cbf4c4a1f..ced344127f 100644 --- a/3.9/generated/Examples/RestRevokeCollection.generated +++ b/3.9/generated/Examples/RestRevokeCollection.generated @@ -1,4 +1,4 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/user/admin@myapp/database/_system/reports +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/user/admin@myapp/database/_system/reports HTTP/1.1 202 Accepted content-type: application/json @@ -8,6 +8,6 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 202 + "error" : false, + "code" : 202 } diff --git a/3.9/generated/Examples/RestRevokeDatabase.generated b/3.9/generated/Examples/RestRevokeDatabase.generated index 4148a0a3f5..cdad49ee50 100644 --- a/3.9/generated/Examples/RestRevokeDatabase.generated +++ b/3.9/generated/Examples/RestRevokeDatabase.generated @@ -1,4 +1,4 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/user/admin@myapp/database/_system +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/user/admin@myapp/database/_system HTTP/1.1 202 Accepted content-type: application/json @@ -8,6 +8,6 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 202 + "error" : false, + "code" : 202 } diff --git a/3.9/generated/Examples/RestTasksCreate.generated b/3.9/generated/Examples/RestTasksCreate.generated index f9f6dba83b..b050631e55 100644 --- a/3.9/generated/Examples/RestTasksCreate.generated +++ b/3.9/generated/Examples/RestTasksCreate.generated @@ -1,31 +1,31 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/tasks/ <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/tasks/ <<EOF { - "name" : "SampleTask", - "command" : "(function(params) { require('@arangodb').print(params); })(params)", - "params" : { - "foo" : "bar", - "bar" : "foo" + "name" : "SampleTask", + "command" : "(function(params) { require('@arangodb').print(params); })(params)", + "params" : { + "foo" : "bar", + "bar" : "foo" }, - "period" : 2 + "period" : 2 } EOF HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 234 +content-length: 240 server: ArangoDB x-content-type-options: nosniff { - "id" : "3724", - "name" : "SampleTask", - "created" : 1628086092.30673, - "type" : "periodic", - "period" : 2, - "offset" : 0, - "command" : "(function (params) { (function(params) { require('@arangodb').print(params); })(params) } )(params);", - "database" : "_system" + "id" : "68202", + "name" : "SampleTask", + "created" : 1621938224.0407248, + "type" : "periodic", + "period" : 2, + "offset" : 0, + "command" : "(function (params) { (function(params) { require('@arangodb').print(params); })(params) } )(params);", + "database" : "_system" } -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/tasks/3724 +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/tasks/68202 diff --git a/3.9/generated/Examples/RestTasksDelete.generated b/3.9/generated/Examples/RestTasksDelete.generated index 2538e63cd8..448d8e9b08 100644 --- a/3.9/generated/Examples/RestTasksDelete.generated +++ b/3.9/generated/Examples/RestTasksDelete.generated @@ -1,4 +1,4 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/tasks/SampleTask +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/tasks/SampleTask HTTP/1.1 200 OK content-type: application/json @@ -8,6 +8,6 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200 + "error" : false, + "code" : 200 } diff --git a/3.9/generated/Examples/RestTasksDeleteFail.generated b/3.9/generated/Examples/RestTasksDeleteFail.generated index 54449b3147..a453848627 100644 --- a/3.9/generated/Examples/RestTasksDeleteFail.generated +++ b/3.9/generated/Examples/RestTasksDeleteFail.generated @@ -1,4 +1,4 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/tasks/NoTaskWithThatName +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/tasks/NoTaskWithThatName HTTP/1.1 404 Not Found content-type: application/json @@ -8,8 +8,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 404, - "error" : true, - "errorMessage" : "task not found", - "errorNum" : 1852 + "code" : 404, + "error" : true, + "errorMessage" : "task not found", + "errorNum" : 1852 } diff --git a/3.9/generated/Examples/RestTasksListAll.generated b/3.9/generated/Examples/RestTasksListAll.generated index 2f6db9b78e..14aaf2773e 100644 --- a/3.9/generated/Examples/RestTasksListAll.generated +++ b/3.9/generated/Examples/RestTasksListAll.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/tasks +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/tasks HTTP/1.1 200 OK content-type: application/json diff --git a/3.9/generated/Examples/RestTasksListNonExisting.generated b/3.9/generated/Examples/RestTasksListNonExisting.generated index 8fb5d7b0c1..332070f9c2 100644 --- a/3.9/generated/Examples/RestTasksListNonExisting.generated +++ b/3.9/generated/Examples/RestTasksListNonExisting.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/tasks/non-existing-task +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/tasks/non-existing-task HTTP/1.1 404 Not Found content-type: application/json @@ -8,8 +8,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 404, - "error" : true, - "errorMessage" : "task not found", - "errorNum" : 1852 + "code" : 404, + "error" : true, + "errorMessage" : "task not found", + "errorNum" : 1852 } diff --git a/3.9/generated/Examples/RestTasksListOne.generated b/3.9/generated/Examples/RestTasksListOne.generated index 60737bc6dd..29d291fcec 100644 --- a/3.9/generated/Examples/RestTasksListOne.generated +++ b/3.9/generated/Examples/RestTasksListOne.generated @@ -1,22 +1,22 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/tasks <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/tasks <<EOF {"id":"testTask","command":"console.log('Hello from task!');","offset":10000} EOF -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/tasks/testTask +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/tasks/testTask HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 202 +content-length: 206 server: ArangoDB x-content-type-options: nosniff { - "id" : "testTask", - "name" : "user-defined task", - "created" : 1628086092.318082, - "type" : "timed", - "offset" : 10000, - "command" : "(function (params) { console.log('Hello from task!'); } )(params);", - "database" : "_system" + "id" : "testTask", + "name" : "user-defined task", + "created" : 1621938224.0581188, + "type" : "timed", + "offset" : 10000, + "command" : "(function (params) { console.log('Hello from task!'); } )(params);", + "database" : "_system" } diff --git a/3.9/generated/Examples/RestTasksPutWithId.generated b/3.9/generated/Examples/RestTasksPutWithId.generated index 76aecad60f..0e967ca8df 100644 --- a/3.9/generated/Examples/RestTasksPutWithId.generated +++ b/3.9/generated/Examples/RestTasksPutWithId.generated @@ -1,30 +1,30 @@ -shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/tasks/sampleTask <<EOF +shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/tasks/sampleTask <<EOF { - "id" : "SampleTask", - "name" : "SampleTask", - "command" : "(function(params) { require('@arangodb').print(params); })(params)", - "params" : { - "foo" : "bar", - "bar" : "foo" + "id" : "SampleTask", + "name" : "SampleTask", + "command" : "(function(params) { require('@arangodb').print(params); })(params)", + "params" : { + "foo" : "bar", + "bar" : "foo" }, - "period" : 2 + "period" : 2 } EOF HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 240 +content-length: 245 server: ArangoDB x-content-type-options: nosniff { - "id" : "sampleTask", - "name" : "SampleTask", - "created" : 1628086092.32105, - "type" : "periodic", - "period" : 2, - "offset" : 0, - "command" : "(function (params) { (function(params) { require('@arangodb').print(params); })(params) } )(params);", - "database" : "_system" + "id" : "sampleTask", + "name" : "SampleTask", + "created" : 1621938224.0630865, + "type" : "periodic", + "period" : 2, + "offset" : 0, + "command" : "(function (params) { (function(params) { require('@arangodb').print(params); })(params) } )(params);", + "database" : "_system" } diff --git a/3.9/generated/Examples/RestTransactionAbort.generated b/3.9/generated/Examples/RestTransactionAbort.generated index 99e2395f68..7214cd1a10 100644 --- a/3.9/generated/Examples/RestTransactionAbort.generated +++ b/3.9/generated/Examples/RestTransactionAbort.generated @@ -1,9 +1,9 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/transaction <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/transaction <<EOF { - "collections" : { - "read" : "products" + "collections" : { + "read" : "products" }, - "action" : "function () { throw 'doh!'; }" + "action" : "function () { throw 'doh!'; }" } EOF @@ -15,8 +15,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 500, - "error" : true, - "errorMessage" : "doh!", - "errorNum" : 1650 + "code" : 500, + "error" : true, + "errorMessage" : "doh!", + "errorNum" : 1650 } diff --git a/3.9/generated/Examples/RestTransactionAbortInternal.generated b/3.9/generated/Examples/RestTransactionAbortInternal.generated index d9708feff7..7b399e5ca9 100644 --- a/3.9/generated/Examples/RestTransactionAbortInternal.generated +++ b/3.9/generated/Examples/RestTransactionAbortInternal.generated @@ -1,9 +1,9 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/transaction <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/transaction <<EOF { - "collections" : { - "write" : "products" + "collections" : { + "write" : "products" }, - "action" : "function () {var db = require('@arangodb').db;db.products.save({ _key: 'abc'});db.products.save({ _key: 'abc'});}" + "action" : "function () {var db = require('@arangodb').db;db.products.save({ _key: 'abc'});db.products.save({ _key: 'abc'});}" } EOF @@ -15,8 +15,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 409, - "error" : true, - "errorMessage" : "unique constraint violated - in index primary of type primary over '_key'; conflicting key: abc", - "errorNum" : 1210 + "code" : 409, + "error" : true, + "errorMessage" : "unique constraint violated - in index primary of type primary over '_key'; conflicting key: abc", + "errorNum" : 1210 } diff --git a/3.9/generated/Examples/RestTransactionBeginAbort.generated b/3.9/generated/Examples/RestTransactionBeginAbort.generated index 0b6d5f397f..9e79c7e14e 100644 --- a/3.9/generated/Examples/RestTransactionBeginAbort.generated +++ b/3.9/generated/Examples/RestTransactionBeginAbort.generated @@ -1,17 +1,17 @@ -shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/transaction/3756 +shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/transaction/68234 HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 70 +content-length: 71 server: ArangoDB x-content-type-options: nosniff { - "code" : 200, - "error" : false, - "result" : { - "id" : "3756", - "status" : "committed" + "code" : 200, + "error" : false, + "result" : { + "id" : "68234", + "status" : "committed" } } diff --git a/3.9/generated/Examples/RestTransactionBeginCommit.generated b/3.9/generated/Examples/RestTransactionBeginCommit.generated index cb1fc5a549..f4bd718c18 100644 --- a/3.9/generated/Examples/RestTransactionBeginCommit.generated +++ b/3.9/generated/Examples/RestTransactionBeginCommit.generated @@ -1,17 +1,17 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/transaction/3764 +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/transaction/68242 HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 68 +content-length: 69 server: ArangoDB x-content-type-options: nosniff { - "code" : 200, - "error" : false, - "result" : { - "id" : "3764", - "status" : "aborted" + "code" : 200, + "error" : false, + "result" : { + "id" : "68242", + "status" : "aborted" } } diff --git a/3.9/generated/Examples/RestTransactionBeginNonExisting.generated b/3.9/generated/Examples/RestTransactionBeginNonExisting.generated index 3b1992c92a..3717f3bcc6 100644 --- a/3.9/generated/Examples/RestTransactionBeginNonExisting.generated +++ b/3.9/generated/Examples/RestTransactionBeginNonExisting.generated @@ -1,7 +1,7 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/transaction/begin <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/transaction/begin <<EOF { - "collections" : { - "read" : "products" + "collections" : { + "read" : "products" } } EOF @@ -14,8 +14,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 404, - "error" : true, - "errorMessage" : "collection or view not found: products", - "errorNum" : 1203 + "code" : 404, + "error" : true, + "errorMessage" : "collection or view not found: products", + "errorNum" : 1203 } diff --git a/3.9/generated/Examples/RestTransactionBeginSingle.generated b/3.9/generated/Examples/RestTransactionBeginSingle.generated index dea4fc1c89..460b9168bd 100644 --- a/3.9/generated/Examples/RestTransactionBeginSingle.generated +++ b/3.9/generated/Examples/RestTransactionBeginSingle.generated @@ -1,7 +1,7 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/transaction/begin <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/transaction/begin <<EOF { - "collections" : { - "write" : "products" + "collections" : { + "write" : "products" } } EOF @@ -9,15 +9,15 @@ EOF HTTP/1.1 201 Created content-type: application/json connection: Keep-Alive -content-length: 68 +content-length: 69 server: ArangoDB x-content-type-options: nosniff { - "code" : 201, - "error" : false, - "result" : { - "id" : "3774", - "status" : "running" + "code" : 201, + "error" : false, + "result" : { + "id" : "68252", + "status" : "running" } } diff --git a/3.9/generated/Examples/RestTransactionGet.generated b/3.9/generated/Examples/RestTransactionGet.generated index 70bc78f631..ab75e9a706 100644 --- a/3.9/generated/Examples/RestTransactionGet.generated +++ b/3.9/generated/Examples/RestTransactionGet.generated @@ -1,17 +1,17 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/transaction/3782 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/transaction/68260 HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 68 +content-length: 69 server: ArangoDB x-content-type-options: nosniff { - "code" : 200, - "error" : false, - "result" : { - "id" : "3782", - "status" : "running" + "code" : 200, + "error" : false, + "result" : { + "id" : "68260", + "status" : "running" } } diff --git a/3.9/generated/Examples/RestTransactionMulti.generated b/3.9/generated/Examples/RestTransactionMulti.generated index f3e62e8413..f368408f8f 100644 --- a/3.9/generated/Examples/RestTransactionMulti.generated +++ b/3.9/generated/Examples/RestTransactionMulti.generated @@ -1,12 +1,12 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/transaction <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/transaction <<EOF { - "collections" : { - "write" : [ - "products", - "materials" + "collections" : { + "write" : [ + "products", + "materials" ] }, - "action" : "function () {var db = require('@arangodb').db;db.products.save({});db.materials.save({});return 'worked!';}" + "action" : "function () {var db = require('@arangodb').db;db.products.save({});db.materials.save({});return 'worked!';}" } EOF @@ -18,7 +18,7 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "result" : "worked!" + "error" : false, + "code" : 200, + "result" : "worked!" } diff --git a/3.9/generated/Examples/RestTransactionNonExisting.generated b/3.9/generated/Examples/RestTransactionNonExisting.generated index bd7c246a19..001df6258d 100644 --- a/3.9/generated/Examples/RestTransactionNonExisting.generated +++ b/3.9/generated/Examples/RestTransactionNonExisting.generated @@ -1,9 +1,9 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/transaction <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/transaction <<EOF { - "collections" : { - "read" : "products" + "collections" : { + "read" : "products" }, - "action" : "function () { return true; }" + "action" : "function () { return true; }" } EOF @@ -15,8 +15,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 404, - "error" : true, - "errorMessage" : "collection or view not found: products", - "errorNum" : 1203 + "code" : 404, + "error" : true, + "errorMessage" : "collection or view not found: products", + "errorNum" : 1203 } diff --git a/3.9/generated/Examples/RestTransactionSingle.generated b/3.9/generated/Examples/RestTransactionSingle.generated index 67f2a6305a..90d25cfab0 100644 --- a/3.9/generated/Examples/RestTransactionSingle.generated +++ b/3.9/generated/Examples/RestTransactionSingle.generated @@ -1,9 +1,9 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/transaction <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/transaction <<EOF { - "collections" : { - "write" : "products" + "collections" : { + "write" : "products" }, - "action" : "function () { var db = require('@arangodb').db; db.products.save({}); return db.products.count(); }" + "action" : "function () { var db = require('@arangodb').db; db.products.save({}); return db.products.count(); }" } EOF @@ -15,7 +15,7 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "result" : 1 + "error" : false, + "code" : 200, + "result" : 1 } diff --git a/3.9/generated/Examples/RestTransactionsGet.generated b/3.9/generated/Examples/RestTransactionsGet.generated index b10687e7df..62acaff3bc 100644 --- a/3.9/generated/Examples/RestTransactionsGet.generated +++ b/3.9/generated/Examples/RestTransactionsGet.generated @@ -1,17 +1,17 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/transaction +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/transaction HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 50 +content-length: 51 server: ArangoDB x-content-type-options: nosniff { - "transactions" : [ + "transactions" : [ { - "id" : "3821", - "state" : "running" + "id" : "68299", + "state" : "running" } ] } diff --git a/3.9/generated/Examples/RestUpdateUser.generated b/3.9/generated/Examples/RestUpdateUser.generated index 7804d4b087..815db475ba 100644 --- a/3.9/generated/Examples/RestUpdateUser.generated +++ b/3.9/generated/Examples/RestUpdateUser.generated @@ -1,6 +1,6 @@ -shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/user/admin@myapp <<EOF +shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/user/admin@myapp <<EOF { - "passwd" : "secure" + "passwd" : "secure" } EOF @@ -12,10 +12,10 @@ server: ArangoDB x-content-type-options: nosniff { - "user" : "admin@myapp", - "active" : true, - "extra" : { + "user" : "admin@myapp", + "active" : true, + "extra" : { }, - "error" : false, - "code" : 200 + "error" : false, + "code" : 200 } diff --git a/3.9/generated/Examples/RestVersion.generated b/3.9/generated/Examples/RestVersion.generated index 56e1bed610..02bdfd94e7 100644 --- a/3.9/generated/Examples/RestVersion.generated +++ b/3.9/generated/Examples/RestVersion.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/version +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/version HTTP/1.1 200 OK content-type: application/json @@ -8,7 +8,7 @@ server: ArangoDB x-content-type-options: nosniff { - "server" : "arango", - "license" : "enterprise", - "version" : "3.9.0-devel" + "server" : "arango", + "license" : "enterprise", + "version" : "3.9.0-devel" } diff --git a/3.9/generated/Examples/RestVersionDetails.generated b/3.9/generated/Examples/RestVersionDetails.generated index b25d97907d..35bc3c8322 100644 --- a/3.9/generated/Examples/RestVersionDetails.generated +++ b/3.9/generated/Examples/RestVersionDetails.generated @@ -1,67 +1,67 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/version?details=true +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/version?details=true HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 1836 +content-length: 1813 server: ArangoDB x-content-type-options: nosniff { - "server" : "arango", - "license" : "enterprise", - "version" : "3.9.0-devel", - "details" : { - "architecture" : "64bit", - "arm" : "false", - "asan" : "false", - "asm-crc32" : "true", - "assertions" : "true", - "avx" : "true", - "avx2" : "true", - "boost-version" : "1.71.0", - "build-date" : "2021-07-26 10:12:03", - "build-repository" : "heads/feature/hybrid-smart-graph-0-g724809bd95", - "compiler" : "clang [Apple LLVM 12.0.5 (clang-1205.0.22.11)]", - "cplusplus" : "201703", - "curl-version" : "none", - "debug" : "false", - "endianness" : "little", - "enterprise-build-repository" : "heads/feature/hybrid-smart-graph-0-g724809bd95", - "enterprise-version" : "enterprise", - "failure-tests" : "true", - "fd-client-event-handler" : "poll", - "fd-setsize" : "1024", - "full-version-string" : "ArangoDB 3.9.0-devel enterprise [darwin] 64bit maintainer mode, using build heads/feature/hybrid-smart-graph-0-g724809bd95, VPack 0.1.35, RocksDB 6.8.0, ICU 64.2, V8 7.9.317, OpenSSL 1.1.1k 25 Mar 2021", - "icu-version" : "64.2", - "ipo" : "false", - "iresearch-version" : "1.0.0.0", - "jemalloc" : "false", - "libunwind" : "false", - "license" : "enterprise", - "maintainer-mode" : "true", - "memory-profiler" : "false", - "ndebug" : "true", - "openssl-version-compile-time" : "OpenSSL 1.1.1k 25 Mar 2021", - "openssl-version-run-time" : "OpenSSL 1.1.1k 25 Mar 2021", - "optimization-flags" : "-march=skylake -msse2 -msse3 -mssse3 -msse4.1 -msse4.2 -mavx -mfma -mbmi2 -mavx2 -mno-sse4a -mno-xop -mno-fma4 -mno-avx512f -mno-avx512vl -mno-avx512pf -mno-avx512er -mno-avx512cd -mno-avx512dq -mno-avx512bw -mno-avx512ifma -mno-avx512vbmi", - "pic" : "2", - "pie" : "none", - "platform" : "darwin", - "reactor-type" : "kqueue", - "rocksdb-version" : "6.8.0", - "server-version" : "3.9.0-devel", - "sizeof int" : "4", - "sizeof long" : "8", - "sizeof void*" : "8", - "sse42" : "true", - "tsan" : "false", - "unaligned-access" : "true", - "v8-version" : "7.9.317", - "vpack-version" : "0.1.35", - "zlib-version" : "1.2.11", - "mode" : "server", - "role" : "SINGLE", - "host" : "881abbbb973856bd8121db712a8a523b" + "server" : "arango", + "license" : "enterprise", + "version" : "3.9.0-devel", + "details" : { + "architecture" : "64bit", + "arm" : "false", + "asan" : "false", + "asm-crc32" : "true", + "assertions" : "false", + "avx" : "true", + "avx2" : "false", + "boost-version" : "1.71.0", + "build-date" : "2021-05-25 10:10:13", + "build-repository" : "heads/documentation-3.9/remove-old-docs-0-g76090cab8e", + "compiler" : "gcc [10.2.1 20201203]", + "cplusplus" : "201703", + "curl-version" : "none", + "debug" : "false", + "endianness" : "little", + "enterprise-build-repository" : "heads/documentation-3.9/remove-old-docs-0-g76090cab8e", + "enterprise-version" : "enterprise", + "failure-tests" : "false", + "fd-client-event-handler" : "poll", + "fd-setsize" : "1024", + "full-version-string" : "ArangoDB 3.9.0-devel enterprise [linux] 64bit, using jemalloc, build heads/documentation-3.9/remove-old-docs-0-g76090cab8e, VPack 0.1.35, RocksDB 6.8.0, ICU 64.2, V8 7.9.317, OpenSSL 1.1.1k 25 Mar 2021", + "icu-version" : "64.2", + "ipo" : "false", + "iresearch-version" : "1.0.0.0", + "jemalloc" : "true", + "libunwind" : "true", + "license" : "enterprise", + "maintainer-mode" : "false", + "memory-profiler" : "false", + "ndebug" : "true", + "openssl-version-compile-time" : "OpenSSL 1.1.1k 25 Mar 2021", + "openssl-version-run-time" : "OpenSSL 1.1.1k 25 Mar 2021", + "optimization-flags" : "-march=sandybridge -msse2 -msse3 -mssse3 -msse4.1 -msse4.2 -mavx -mno-sse4a -mno-fma -mno-bmi2 -mno-avx2 -mno-xop -mno-fma4 -mno-avx512f -mno-avx512vl -mno-avx512pf -mno-avx512er -mno-avx512cd -mno-avx512dq -mno-avx512bw -mno-avx512ifma -mno-avx512vbmi", + "pic" : "2", + "pie" : "2", + "platform" : "linux", + "reactor-type" : "epoll", + "rocksdb-version" : "6.8.0", + "server-version" : "3.9.0-devel", + "sizeof int" : "4", + "sizeof long" : "8", + "sizeof void*" : "8", + "sse42" : "true", + "tsan" : "false", + "unaligned-access" : "true", + "v8-version" : "7.9.317", + "vpack-version" : "0.1.35", + "zlib-version" : "1.2.11", + "mode" : "server", + "role" : "SINGLE", + "host" : "gce-04ghcq" } } diff --git a/3.9/generated/Examples/RestViewDeleteViewIdentifierArangoSearch.generated b/3.9/generated/Examples/RestViewDeleteViewIdentifierArangoSearch.generated index 2eb43395bc..9b3b1472a7 100644 --- a/3.9/generated/Examples/RestViewDeleteViewIdentifierArangoSearch.generated +++ b/3.9/generated/Examples/RestViewDeleteViewIdentifierArangoSearch.generated @@ -1,4 +1,4 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/view/3831 +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/view/68309 HTTP/1.1 200 OK content-type: application/json @@ -8,7 +8,7 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "result" : true + "error" : false, + "code" : 200, + "result" : true } diff --git a/3.9/generated/Examples/RestViewDeleteViewNameArangoSearch.generated b/3.9/generated/Examples/RestViewDeleteViewNameArangoSearch.generated index 25ac8f4db7..c1771c9790 100644 --- a/3.9/generated/Examples/RestViewDeleteViewNameArangoSearch.generated +++ b/3.9/generated/Examples/RestViewDeleteViewNameArangoSearch.generated @@ -1,4 +1,4 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/view/testView +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/view/testView HTTP/1.1 200 OK content-type: application/json @@ -8,7 +8,7 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "result" : true + "error" : false, + "code" : 200, + "result" : true } diff --git a/3.9/generated/Examples/RestViewGetAllViews.generated b/3.9/generated/Examples/RestViewGetAllViews.generated index cc8cadcfbd..b5b3eca6c4 100644 --- a/3.9/generated/Examples/RestViewGetAllViews.generated +++ b/3.9/generated/Examples/RestViewGetAllViews.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/view +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/view HTTP/1.1 200 OK content-type: application/json @@ -8,14 +8,14 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "result" : [ + "error" : false, + "code" : 200, + "result" : [ { - "globallyUniqueId" : "h1F0FEB3590A8/95", - "id" : "95", - "name" : "demoView", - "type" : "arangosearch" + "globallyUniqueId" : "hABE4B0CCCE32/95", + "id" : "95", + "name" : "demoView", + "type" : "arangosearch" } ] } diff --git a/3.9/generated/Examples/RestViewGetViewIdentifierArangoSearch.generated b/3.9/generated/Examples/RestViewGetViewIdentifierArangoSearch.generated index 0821235a2e..c42bfb1fcb 100644 --- a/3.9/generated/Examples/RestViewGetViewIdentifierArangoSearch.generated +++ b/3.9/generated/Examples/RestViewGetViewIdentifierArangoSearch.generated @@ -1,17 +1,17 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/view/3841 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/view/68319 HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 118 +content-length: 120 server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "type" : "arangosearch", - "id" : "3841", - "name" : "testView", - "globallyUniqueId" : "h1F0FEB3590A8/3841" + "error" : false, + "code" : 200, + "type" : "arangosearch", + "name" : "testView", + "id" : "68319", + "globallyUniqueId" : "hABE4B0CCCE32/68319" } diff --git a/3.9/generated/Examples/RestViewGetViewNameArangoSearch.generated b/3.9/generated/Examples/RestViewGetViewNameArangoSearch.generated index 0a3decf1cf..e9e49c6135 100644 --- a/3.9/generated/Examples/RestViewGetViewNameArangoSearch.generated +++ b/3.9/generated/Examples/RestViewGetViewNameArangoSearch.generated @@ -1,17 +1,17 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/view/testView +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/view/testView HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 118 +content-length: 120 server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "type" : "arangosearch", - "id" : "3846", - "name" : "testView", - "globallyUniqueId" : "h1F0FEB3590A8/3846" + "error" : false, + "code" : 200, + "type" : "arangosearch", + "name" : "testView", + "id" : "68324", + "globallyUniqueId" : "hABE4B0CCCE32/68324" } diff --git a/3.9/generated/Examples/RestViewGetViewPropertiesIdentifierArangoSearch.generated b/3.9/generated/Examples/RestViewGetViewPropertiesIdentifierArangoSearch.generated index 321c3deac7..218e8d22d6 100644 --- a/3.9/generated/Examples/RestViewGetViewPropertiesIdentifierArangoSearch.generated +++ b/3.9/generated/Examples/RestViewGetViewPropertiesIdentifierArangoSearch.generated @@ -1,36 +1,36 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/view/3851/properties +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/view/68329/properties HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 494 +content-length: 496 server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "writebufferSizeMax" : 33554432, - "type" : "arangosearch", - "primarySort" : [ ], - "name" : "products", - "writebufferIdle" : 64, - "writebufferActive" : 0, - "links" : { + "error" : false, + "code" : 200, + "writebufferSizeMax" : 33554432, + "writebufferIdle" : 64, + "cleanupIntervalStep" : 2, + "commitIntervalMsec" : 1000, + "consolidationIntervalMsec" : 1000, + "consolidationPolicy" : { + "type" : "tier", + "segmentsBytesFloor" : 2097152, + "segmentsBytesMax" : 5368709120, + "segmentsMax" : 10, + "segmentsMin" : 1, + "minScore" : 0 }, - "consolidationIntervalMsec" : 1000, - "primarySortCompression" : "lz4", - "globallyUniqueId" : "h1F0FEB3590A8/3851", - "storedValues" : [ ], - "consolidationPolicy" : { - "type" : "tier", - "segmentsBytesFloor" : 2097152, - "segmentsBytesMax" : 5368709120, - "segmentsMax" : 10, - "segmentsMin" : 1, - "minScore" : 0 + "primarySortCompression" : "lz4", + "writebufferActive" : 0, + "links" : { }, - "id" : "3851", - "commitIntervalMsec" : 1000, - "cleanupIntervalStep" : 2 + "globallyUniqueId" : "hABE4B0CCCE32/68329", + "name" : "products", + "id" : "68329", + "storedValues" : [ ], + "primarySort" : [ ], + "type" : "arangosearch" } diff --git a/3.9/generated/Examples/RestViewGetViewPropertiesNameArangoSearch.generated b/3.9/generated/Examples/RestViewGetViewPropertiesNameArangoSearch.generated index fcb3c48f48..97be53058d 100644 --- a/3.9/generated/Examples/RestViewGetViewPropertiesNameArangoSearch.generated +++ b/3.9/generated/Examples/RestViewGetViewPropertiesNameArangoSearch.generated @@ -1,36 +1,36 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/view/products/properties +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/view/products/properties HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 494 +content-length: 496 server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "writebufferSizeMax" : 33554432, - "type" : "arangosearch", - "primarySort" : [ ], - "name" : "products", - "writebufferIdle" : 64, - "writebufferActive" : 0, - "links" : { + "error" : false, + "code" : 200, + "writebufferSizeMax" : 33554432, + "writebufferIdle" : 64, + "cleanupIntervalStep" : 2, + "commitIntervalMsec" : 1000, + "consolidationIntervalMsec" : 1000, + "consolidationPolicy" : { + "type" : "tier", + "segmentsBytesFloor" : 2097152, + "segmentsBytesMax" : 5368709120, + "segmentsMax" : 10, + "segmentsMin" : 1, + "minScore" : 0 }, - "consolidationIntervalMsec" : 1000, - "primarySortCompression" : "lz4", - "globallyUniqueId" : "h1F0FEB3590A8/3857", - "storedValues" : [ ], - "consolidationPolicy" : { - "type" : "tier", - "segmentsBytesFloor" : 2097152, - "segmentsBytesMax" : 5368709120, - "segmentsMax" : 10, - "segmentsMin" : 1, - "minScore" : 0 + "primarySortCompression" : "lz4", + "writebufferActive" : 0, + "links" : { }, - "id" : "3857", - "commitIntervalMsec" : 1000, - "cleanupIntervalStep" : 2 + "globallyUniqueId" : "hABE4B0CCCE32/68335", + "name" : "products", + "id" : "68335", + "storedValues" : [ ], + "primarySort" : [ ], + "type" : "arangosearch" } diff --git a/3.9/generated/Examples/RestViewPatchPropertiesArangoSearch.generated b/3.9/generated/Examples/RestViewPatchPropertiesArangoSearch.generated index 5b714ed26f..b39790b0b5 100644 --- a/3.9/generated/Examples/RestViewPatchPropertiesArangoSearch.generated +++ b/3.9/generated/Examples/RestViewPatchPropertiesArangoSearch.generated @@ -1,38 +1,38 @@ -shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/view/products/properties <<EOF +shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/view/products/properties <<EOF { - "locale" : "en" + "locale" : "en" } EOF HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 469 +content-length: 471 server: ArangoDB x-content-type-options: nosniff { - "globallyUniqueId" : "h1F0FEB3590A8/3863", - "id" : "3863", - "name" : "products", - "type" : "arangosearch", - "cleanupIntervalStep" : 2, - "commitIntervalMsec" : 1000, - "consolidationIntervalMsec" : 1000, - "consolidationPolicy" : { - "type" : "tier", - "segmentsBytesFloor" : 2097152, - "segmentsBytesMax" : 5368709120, - "segmentsMax" : 10, - "segmentsMin" : 1, - "minScore" : 0 + "globallyUniqueId" : "hABE4B0CCCE32/68341", + "id" : "68341", + "name" : "products", + "type" : "arangosearch", + "cleanupIntervalStep" : 2, + "commitIntervalMsec" : 1000, + "consolidationIntervalMsec" : 1000, + "consolidationPolicy" : { + "type" : "tier", + "segmentsBytesFloor" : 2097152, + "segmentsBytesMax" : 5368709120, + "segmentsMax" : 10, + "segmentsMin" : 1, + "minScore" : 0 }, - "primarySort" : [ ], - "primarySortCompression" : "lz4", - "storedValues" : [ ], - "writebufferActive" : 0, - "writebufferIdle" : 64, - "writebufferSizeMax" : 33554432, - "links" : { + "primarySort" : [ ], + "primarySortCompression" : "lz4", + "storedValues" : [ ], + "writebufferActive" : 0, + "writebufferIdle" : 64, + "writebufferSizeMax" : 33554432, + "links" : { } } diff --git a/3.9/generated/Examples/RestViewPostViewArangoSearch.generated b/3.9/generated/Examples/RestViewPostViewArangoSearch.generated index f9e85e383a..25e777dde1 100644 --- a/3.9/generated/Examples/RestViewPostViewArangoSearch.generated +++ b/3.9/generated/Examples/RestViewPostViewArangoSearch.generated @@ -1,39 +1,39 @@ -shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/view <<EOF +shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/view <<EOF { - "name" : "testViewBasics", - "type" : "arangosearch" + "name" : "testViewBasics", + "type" : "arangosearch" } EOF HTTP/1.1 201 Created content-type: application/json connection: Keep-Alive -content-length: 475 +content-length: 477 server: ArangoDB x-content-type-options: nosniff { - "globallyUniqueId" : "h1F0FEB3590A8/3869", - "id" : "3869", - "name" : "testViewBasics", - "type" : "arangosearch", - "cleanupIntervalStep" : 2, - "commitIntervalMsec" : 1000, - "consolidationIntervalMsec" : 1000, - "consolidationPolicy" : { - "type" : "tier", - "segmentsBytesFloor" : 2097152, - "segmentsBytesMax" : 5368709120, - "segmentsMax" : 10, - "segmentsMin" : 1, - "minScore" : 0 + "globallyUniqueId" : "hABE4B0CCCE32/68347", + "id" : "68347", + "name" : "testViewBasics", + "type" : "arangosearch", + "cleanupIntervalStep" : 2, + "commitIntervalMsec" : 1000, + "consolidationIntervalMsec" : 1000, + "consolidationPolicy" : { + "type" : "tier", + "segmentsBytesFloor" : 2097152, + "segmentsBytesMax" : 5368709120, + "segmentsMax" : 10, + "segmentsMin" : 1, + "minScore" : 0 }, - "primarySort" : [ ], - "primarySortCompression" : "lz4", - "storedValues" : [ ], - "writebufferActive" : 0, - "writebufferIdle" : 64, - "writebufferSizeMax" : 33554432, - "links" : { + "primarySort" : [ ], + "primarySortCompression" : "lz4", + "storedValues" : [ ], + "writebufferActive" : 0, + "writebufferIdle" : 64, + "writebufferSizeMax" : 33554432, + "links" : { } } diff --git a/3.9/generated/Examples/RestViewPutPropertiesArangoSearch.generated b/3.9/generated/Examples/RestViewPutPropertiesArangoSearch.generated index b436f76c19..e8c2a29814 100644 --- a/3.9/generated/Examples/RestViewPutPropertiesArangoSearch.generated +++ b/3.9/generated/Examples/RestViewPutPropertiesArangoSearch.generated @@ -1,38 +1,38 @@ -shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/view/products/properties <<EOF +shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/view/products/properties <<EOF { - "locale" : "en" + "locale" : "en" } EOF HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 469 +content-length: 471 server: ArangoDB x-content-type-options: nosniff { - "globallyUniqueId" : "h1F0FEB3590A8/3874", - "id" : "3874", - "name" : "products", - "type" : "arangosearch", - "cleanupIntervalStep" : 2, - "commitIntervalMsec" : 1000, - "consolidationIntervalMsec" : 1000, - "consolidationPolicy" : { - "type" : "tier", - "segmentsBytesFloor" : 2097152, - "segmentsBytesMax" : 5368709120, - "segmentsMax" : 10, - "segmentsMin" : 1, - "minScore" : 0 + "globallyUniqueId" : "hABE4B0CCCE32/68352", + "id" : "68352", + "name" : "products", + "type" : "arangosearch", + "cleanupIntervalStep" : 2, + "commitIntervalMsec" : 1000, + "consolidationIntervalMsec" : 1000, + "consolidationPolicy" : { + "type" : "tier", + "segmentsBytesFloor" : 2097152, + "segmentsBytesMax" : 5368709120, + "segmentsMax" : 10, + "segmentsMin" : 1, + "minScore" : 0 }, - "primarySort" : [ ], - "primarySortCompression" : "lz4", - "storedValues" : [ ], - "writebufferActive" : 0, - "writebufferIdle" : 64, - "writebufferSizeMax" : 33554432, - "links" : { + "primarySort" : [ ], + "primarySortCompression" : "lz4", + "storedValues" : [ ], + "writebufferActive" : 0, + "writebufferIdle" : 64, + "writebufferSizeMax" : 33554432, + "links" : { } } diff --git a/3.9/generated/Examples/RestViewPutRename.generated b/3.9/generated/Examples/RestViewPutRename.generated index b7336fc43b..f4c97363f5 100644 --- a/3.9/generated/Examples/RestViewPutRename.generated +++ b/3.9/generated/Examples/RestViewPutRename.generated @@ -1,21 +1,21 @@ -shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/view/products1/rename <<EOF +shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/view/products1/rename <<EOF { - "name" : "viewNewName" + "name" : "viewNewName" } EOF HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 121 +content-length: 123 server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "type" : "arangosearch", - "id" : "3881", - "name" : "viewNewName", - "globallyUniqueId" : "h1F0FEB3590A8/3881" + "error" : false, + "code" : 200, + "type" : "arangosearch", + "name" : "viewNewName", + "id" : "68359", + "globallyUniqueId" : "hABE4B0CCCE32/68359" } diff --git a/3.9/generated/Examples/RestWalAccessFirstTick.generated b/3.9/generated/Examples/RestWalAccessFirstTick.generated index 15e1457906..2078d2e6c8 100644 --- a/3.9/generated/Examples/RestWalAccessFirstTick.generated +++ b/3.9/generated/Examples/RestWalAccessFirstTick.generated @@ -1,17 +1,17 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/wal/lastTick +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/wal/lastTick HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 108 +content-length: 111 server: ArangoDB x-content-type-options: nosniff { - "time" : "2021-08-04T14:08:12Z", - "tick" : "7695", - "server" : { - "version" : "3.9.0-devel", - "serverId" : "34153231126696" + "time" : "2021-05-25T10:23:44Z", + "tick" : "179250", + "server" : { + "version" : "3.9.0-devel", + "serverId" : "188998707105330" } } diff --git a/3.9/generated/Examples/RestWalAccessTailingBufferLimit.generated b/3.9/generated/Examples/RestWalAccessTailingBufferLimit.generated index f17345f754..317f9a8c80 100644 --- a/3.9/generated/Examples/RestWalAccessTailingBufferLimit.generated +++ b/3.9/generated/Examples/RestWalAccessTailingBufferLimit.generated @@ -1,20 +1,20 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/wal/tail?from=7695&chunkSize=400 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/wal/tail?from=179250&chunkSize=400 HTTP/1.1 200 OK content-type: application/x-arango-dump connection: Keep-Alive -content-length: 71 +content-length: 74 server: ArangoDB x-arango-replication-checkmore: true x-arango-replication-frompresent: true -x-arango-replication-lastincluded: 7711 -x-arango-replication-lastscanned: 7721 -x-arango-replication-lasttick: 7721 +x-arango-replication-lastincluded: 179266 +x-arango-replication-lastscanned: 179276 +x-arango-replication-lasttick: 179276 x-content-type-options: nosniff { - "tick" : "7711", - "type" : 2001, - "db" : "_system", - "cuid" : "h1F0FEB3590A8/3890" + "tick" : "179266", + "type" : 2001, + "db" : "_system", + "cuid" : "hABE4B0CCCE32/68368" } diff --git a/3.9/generated/Examples/RestWalAccessTailingEmpty.generated b/3.9/generated/Examples/RestWalAccessTailingEmpty.generated index 1a07898a1c..174cef8d5b 100644 --- a/3.9/generated/Examples/RestWalAccessTailingEmpty.generated +++ b/3.9/generated/Examples/RestWalAccessTailingEmpty.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/wal/tail?from=7721 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/wal/tail?from=179276 HTTP/1.1 204 No Content content-type: application/x-arango-dump @@ -8,7 +8,7 @@ server: ArangoDB x-arango-replication-checkmore: false x-arango-replication-frompresent: true x-arango-replication-lastincluded: 0 -x-arango-replication-lastscanned: 7718 -x-arango-replication-lasttick: 7721 +x-arango-replication-lastscanned: 179273 +x-arango-replication-lasttick: 179276 x-content-type-options: nosniff diff --git a/3.9/generated/Examples/RestWalAccessTailingSome.generated b/3.9/generated/Examples/RestWalAccessTailingSome.generated index 21d52e59e2..1a394fc95d 100644 --- a/3.9/generated/Examples/RestWalAccessTailingSome.generated +++ b/3.9/generated/Examples/RestWalAccessTailingSome.generated @@ -1,20 +1,20 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/wal/tail?from=7721 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/wal/tail?from=179276 HTTP/1.1 200 OK content-type: application/x-arango-dump connection: Keep-Alive -content-length: 71 +content-length: 74 server: ArangoDB x-arango-replication-checkmore: true x-arango-replication-frompresent: true -x-arango-replication-lastincluded: 7737 -x-arango-replication-lastscanned: 7750 -x-arango-replication-lasttick: 7750 +x-arango-replication-lastincluded: 179292 +x-arango-replication-lastscanned: 179302 +x-arango-replication-lasttick: 179302 x-content-type-options: nosniff { - "tick" : "7737", - "type" : 2001, - "db" : "_system", - "cuid" : "h1F0FEB3590A8/3902" + "tick" : "179292", + "type" : 2001, + "db" : "_system", + "cuid" : "hABE4B0CCCE32/68380" }↩ diff --git a/3.9/generated/Examples/RestWalAccessTickRange.generated b/3.9/generated/Examples/RestWalAccessTickRange.generated index 3c8eca882b..c8490e820c 100644 --- a/3.9/generated/Examples/RestWalAccessTickRange.generated +++ b/3.9/generated/Examples/RestWalAccessTickRange.generated @@ -1,18 +1,18 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/wal/range +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/wal/range HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 128 +content-length: 133 server: ArangoDB x-content-type-options: nosniff { - "time" : "2021-08-04T14:08:14Z", - "tickMin" : "2769", - "tickMax" : "7750", - "server" : { - "version" : "3.9.0-devel", - "serverId" : "34153231126696" + "time" : "2021-05-25T10:23:46Z", + "tickMin" : "174322", + "tickMax" : "179302", + "server" : { + "version" : "3.9.0-devel", + "serverId" : "188998707105330" } } diff --git a/3.9/generated/Examples/arangobackup.json b/3.9/generated/Examples/arangobackup.json deleted file mode 100644 index 9a13168eeb..0000000000 --- a/3.9/generated/Examples/arangobackup.json +++ /dev/null @@ -1,1116 +0,0 @@ -{ - "abort" : { - "category" : "command", - "deprecatedIn" : null, - "description" : "abort transfer with given status-id (upload/download operation)", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "allow-inconsistent" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "whether to attempt to continue in face of errors; may result in inconsistent backup state (create operation)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "check-configuration" : { - "category" : "command", - "deprecatedIn" : null, - "description" : "check the configuration and exit", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "config" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "the configuration file or 'none'", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "configuration" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "the configuration file or 'none'", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "define" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "define key=value for a @key@ entry in config file", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string..." - }, - "dump-dependencies" : { - "category" : "command", - "deprecatedIn" : null, - "description" : "dump dependency graph", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "dump-options" : { - "category" : "command", - "deprecatedIn" : null, - "description" : "dump configuration options in JSON format", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "force" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "abort transactions if needed to ensure a consistent snapshot. This option can destroy the atomicity of your transactions in the presence of intermediate commits! Use it with great care and only if you really need a consistent backup at all costs (create operation)", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "identifier" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "a unique identifier for a backup (restore/upload/download operation)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "ignore-version" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "ignore stored version of a backup. Restore may not work if versions mismatch (restore operation)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "label" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "an additional label to add to the backup identifier (create operation)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "log" : { - "category" : "option", - "default" : [ - "info" - ], - "deprecatedIn" : [ - "v3.5.0" - ], - "description" : "the global or topic-specific log level", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string..." - }, - "log.color" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "use colors for TTY logging", - "dynamic" : true, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.escape" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "escape characters when logging", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.file" : { - "category" : "option", - "default" : "-", - "deprecatedIn" : null, - "description" : "shortcut for '--log.output file://'", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.file-group" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "group to use for new log file, user must be a member of this group", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.4.5" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.file-mode" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "mode to use for new log file, umask will be applied as well", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.4.5" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.force-direct" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "do not start a seperate thread for logging", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.foreground-tty" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "also log to tty if backgrounded", - "dynamic" : true, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.hostname" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "hostname to use in log message (empty for none, use 'auto' to automatically figure out hostname)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.ids" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "log unique message ids", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.level" : { - "category" : "option", - "default" : [ - "info" - ], - "deprecatedIn" : null, - "description" : "the global or topic-specific log level", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string..." - }, - "log.line-number" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "include the function name, file name and line number of the source code that issues the log message. Format: `[func@FileName.cpp:123]`", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.max-entry-length" : { - "category" : "option", - "default" : 134217728, - "deprecatedIn" : null, - "description" : "maximum length of a log entry (in bytes)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.7.9" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "uint32" - }, - "log.output" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "log destination(s), e.g. file:///path/to/file (any '$PID' will be replaced with the process id)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string..." - }, - "log.performance" : { - "category" : "option", - "default" : false, - "deprecatedIn" : [ - "v3.5.0" - ], - "description" : "shortcut for '--log.level performance=trace'", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.prefix" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "prefix log message with this string", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.process" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "show process identifier (pid) in log message", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.request-parameters" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "include full URLs and HTTP request parameters in trace logs", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.role" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "log server role", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.shorten-filenames" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "shorten filenames in log output (use with --log.line-number)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.thread" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "show thread identifier in log message", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.thread-name" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "show thread name in log message", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.time-format" : { - "category" : "option", - "default" : "utc-datestring", - "deprecatedIn" : null, - "description" : "time format to use in logs", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string", - "values" : "Possible values: \"local-datestring\", \"timestamp\", \"timestamp-micros\", \"timestamp-millis\", \"uptime\", \"uptime-micros\", \"uptime-millis\", \"utc-datestring\", \"utc-datestring-millis\"" - }, - "log.use-json-format" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "use json output format", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.use-local-time" : { - "category" : "option", - "default" : false, - "deprecatedIn" : [ - "v3.5.0" - ], - "description" : "use local timezone instead of UTC", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.use-microtime" : { - "category" : "option", - "default" : false, - "deprecatedIn" : [ - "v3.5.0" - ], - "description" : "use microtime instead", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "max-wait-for-lock" : { - "category" : "option", - "default" : 60, - "deprecatedIn" : null, - "description" : "maximum time to wait in seconds to acquire a lock on all necessary resources (create operation)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "double" - }, - "max-wait-for-restart" : { - "category" : "option", - "default" : 0, - "deprecatedIn" : null, - "description" : "maximum time to wait in seconds for the server to restart after a restore operation before reporting an error; if zero, arangobackup will not wait to check that the server restarts and will simply return the result of the restore request (restore operation)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "double" - }, - "operation" : { - "category" : "option", - "default" : "list", - "deprecatedIn" : null, - "description" : "operation to perform (may be specified as positional argument without '--operation')", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string", - "values" : "Possible values: \"create\", \"delete\", \"download\", \"list\", \"restore\", \"upload\"" - }, - "random.generator" : { - "category" : "option", - "default" : 1, - "deprecatedIn" : null, - "description" : "random number generator to use (1 = MERSENNE, 2 = RANDOM, 3 = URANDOM, 4 = COMBINED (not for Windows), 5 = WinCrypt (Windows only)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "random", - "type" : "uint32", - "values" : "Possible values: 1, 2, 3, 4" - }, - "rclone-config-file" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "filename of the Rclone configuration file used forfile transfer (upload/download operation)", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "remote-path" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "remote Rclone path of directory used to store or receive backups (upload/download operation)", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "server.authentication" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "require authentication credentials when connecting (does not affect the server-side authentication settings)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "server", - "type" : "boolean" - }, - "server.connection-timeout" : { - "category" : "option", - "default" : 5, - "deprecatedIn" : null, - "description" : "connection timeout in seconds", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "double" - }, - "server.database" : { - "category" : "option", - "default" : "_system", - "deprecatedIn" : null, - "description" : "database name to use when connecting", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "string" - }, - "server.endpoint" : { - "category" : "option", - "default" : "http+tcp://127.0.0.1:8529", - "deprecatedIn" : null, - "description" : "endpoint to connect to. Use 'none' to start without a server. Use http+ssl:// or vst+ssl:// as schema to connect to an SSL-secured server endpoint, otherwise http+tcp://, vst+tcp:// or unix://", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "string" - }, - "server.force-json" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "force to not use VelocyPack for easier debugging", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.6.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "server", - "type" : "boolean" - }, - "server.max-packet-size" : { - "category" : "option", - "default" : 1073741824, - "deprecatedIn" : null, - "description" : "maximum packet size (in bytes) for client/server communication", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "uint64" - }, - "server.password" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "password to use when connecting. If not specified and authentication is required, the user will be prompted for a password", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "string" - }, - "server.request-timeout" : { - "category" : "option", - "default" : 1200, - "deprecatedIn" : null, - "description" : "request timeout in seconds", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "double" - }, - "server.username" : { - "category" : "option", - "default" : "root", - "deprecatedIn" : null, - "description" : "username to use when connecting", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "string" - }, - "ssl.protocol" : { - "category" : "option", - "default" : 5, - "deprecatedIn" : null, - "description" : "ssl protocol (1 = SSLv2 (unsupported), 2 = SSLv2 or SSLv3 (negotiated), 3 = SSLv3, 4 = TLSv1, 5 = TLSv1.2, 6 = TLSv1.3, 9 = generic TLS)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ssl", - "type" : "uint64", - "values" : "Possible values: 1, 2, 3, 4, 5, 6, 9" - }, - "status-id" : { - "category" : "command", - "deprecatedIn" : null, - "description" : "returns the status of a transfer process (upload/download operation)", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "version" : { - "category" : "command", - "deprecatedIn" : null, - "description" : "reports the version and exits", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "version-json" : { - "category" : "command", - "deprecatedIn" : null, - "description" : "reports the version as JSON and exits", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.9.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - } -} diff --git a/3.9/generated/Examples/arangobench.json b/3.9/generated/Examples/arangobench.json deleted file mode 100644 index fa7b24f8d0..0000000000 --- a/3.9/generated/Examples/arangobench.json +++ /dev/null @@ -1,1395 +0,0 @@ -{ - "async" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "send asynchronous requests", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "batch-size" : { - "category" : "option", - "default" : 0, - "deprecatedIn" : null, - "description" : "number of operations in one batch (0 disables batching)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "uint64" - }, - "check-configuration" : { - "category" : "command", - "deprecatedIn" : null, - "description" : "check the configuration and exit", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "collection" : { - "category" : "option", - "default" : "ArangoBenchmark", - "deprecatedIn" : null, - "description" : "collection name to use in tests (if they involve collections)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "complexity" : { - "category" : "option", - "default" : 1, - "deprecatedIn" : null, - "description" : "complexity parameter for the test (meaning depends on test case)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "uint64" - }, - "concurrency" : { - "category" : "option", - "default" : 1, - "deprecatedIn" : null, - "description" : "number of parallel threads and connections", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "uint64" - }, - "config" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "the configuration file or 'none'", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "configuration" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "the configuration file or 'none'", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "create-database" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "whether we should create the database specified via the server connection", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "custom-query" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "the query to be used in the 'custom-query' testcase", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "custom-query-file" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "path to a file with the query to be used in the 'custom-query' testcase. If --custom-query is specified as well, it has higher priority.", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "define" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "define key=value for a @key@ entry in config file", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string..." - }, - "delay" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "use a startup delay (necessary only when run in series)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "dump-dependencies" : { - "category" : "command", - "deprecatedIn" : null, - "description" : "dump dependency graph", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "dump-options" : { - "category" : "command", - "deprecatedIn" : null, - "description" : "dump configuration options in JSON format", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "duration" : { - "category" : "option", - "default" : 0, - "deprecatedIn" : null, - "description" : "test for duration seconds instead of a fixed test count", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "uint64" - }, - "histogram.interval-size" : { - "category" : "option", - "default" : 0, - "deprecatedIn" : null, - "description" : "bucket width, dynamically calculated by default: (first measured time * 20) / num-intervals", - "dynamic" : true, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "histogram", - "type" : "double" - }, - "histogram.num-intervals" : { - "category" : "option", - "default" : 1000, - "deprecatedIn" : null, - "description" : "number of buckets (resolution)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "histogram", - "type" : "uint64" - }, - "histogram.percentiles" : { - "category" : "option", - "default" : [ - 50, - 80, - 85, - 90, - 95, - 99 - ], - "deprecatedIn" : null, - "description" : "which percentiles to calculate", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "histogram", - "type" : "double..." - }, - "json-report-file" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "filename to write a report in JSON format to", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "junit-report-file" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "filename to write junit style report to", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "keep-alive" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "use HTTP keep-alive", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "log" : { - "category" : "option", - "default" : [ - "info" - ], - "deprecatedIn" : [ - "v3.5.0" - ], - "description" : "the global or topic-specific log level", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string..." - }, - "log.color" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "use colors for TTY logging", - "dynamic" : true, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.escape" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "escape characters when logging", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.file" : { - "category" : "option", - "default" : "-", - "deprecatedIn" : null, - "description" : "shortcut for '--log.output file://'", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.file-group" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "group to use for new log file, user must be a member of this group", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.4.5" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.file-mode" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "mode to use for new log file, umask will be applied as well", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.4.5" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.force-direct" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "do not start a seperate thread for logging", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.foreground-tty" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "also log to tty if backgrounded", - "dynamic" : true, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.hostname" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "hostname to use in log message (empty for none, use 'auto' to automatically figure out hostname)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.ids" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "log unique message ids", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.level" : { - "category" : "option", - "default" : [ - "info" - ], - "deprecatedIn" : null, - "description" : "the global or topic-specific log level", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string..." - }, - "log.line-number" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "include the function name, file name and line number of the source code that issues the log message. Format: `[func@FileName.cpp:123]`", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.max-entry-length" : { - "category" : "option", - "default" : 134217728, - "deprecatedIn" : null, - "description" : "maximum length of a log entry (in bytes)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.7.9" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "uint32" - }, - "log.output" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "log destination(s), e.g. file:///path/to/file (any '$PID' will be replaced with the process id)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string..." - }, - "log.performance" : { - "category" : "option", - "default" : false, - "deprecatedIn" : [ - "v3.5.0" - ], - "description" : "shortcut for '--log.level performance=trace'", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.prefix" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "prefix log message with this string", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.process" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "show process identifier (pid) in log message", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.request-parameters" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "include full URLs and HTTP request parameters in trace logs", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.role" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "log server role", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.shorten-filenames" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "shorten filenames in log output (use with --log.line-number)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.thread" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "show thread identifier in log message", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.thread-name" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "show thread name in log message", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.time-format" : { - "category" : "option", - "default" : "utc-datestring", - "deprecatedIn" : null, - "description" : "time format to use in logs", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string", - "values" : "Possible values: \"local-datestring\", \"timestamp\", \"timestamp-micros\", \"timestamp-millis\", \"uptime\", \"uptime-micros\", \"uptime-millis\", \"utc-datestring\", \"utc-datestring-millis\"" - }, - "log.use-json-format" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "use json output format", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.use-local-time" : { - "category" : "option", - "default" : false, - "deprecatedIn" : [ - "v3.5.0" - ], - "description" : "use local timezone instead of UTC", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.use-microtime" : { - "category" : "option", - "default" : false, - "deprecatedIn" : [ - "v3.5.0" - ], - "description" : "use microtime instead", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "number-of-shards" : { - "category" : "option", - "default" : 1, - "deprecatedIn" : null, - "description" : "number of shards of created collections (cluster only)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "uint64" - }, - "progress" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "log intermediate progress", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "quiet" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "suppress status messages", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "random.generator" : { - "category" : "option", - "default" : 1, - "deprecatedIn" : null, - "description" : "random number generator to use (1 = MERSENNE, 2 = RANDOM, 3 = URANDOM, 4 = COMBINED (not for Windows), 5 = WinCrypt (Windows only)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "random", - "type" : "uint32", - "values" : "Possible values: 1, 2, 3, 4" - }, - "replication-factor" : { - "category" : "option", - "default" : 1, - "deprecatedIn" : null, - "description" : "replication factor of created collections (cluster only)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "uint64" - }, - "requests" : { - "category" : "option", - "default" : 1000, - "deprecatedIn" : null, - "description" : "total number of operations", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "uint64" - }, - "runs" : { - "category" : "option", - "default" : 1, - "deprecatedIn" : null, - "description" : "run test n times (and calculate statistics based on median)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "uint64" - }, - "server.authentication" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "require authentication credentials when connecting (does not affect the server-side authentication settings)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "server", - "type" : "boolean" - }, - "server.connection-timeout" : { - "category" : "option", - "default" : 5, - "deprecatedIn" : null, - "description" : "connection timeout in seconds", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "double" - }, - "server.database" : { - "category" : "option", - "default" : "_system", - "deprecatedIn" : null, - "description" : "database name to use when connecting", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "string" - }, - "server.endpoint" : { - "category" : "option", - "default" : "http+tcp://127.0.0.1:8529", - "deprecatedIn" : null, - "description" : "endpoint to connect to. Use 'none' to start without a server. Use http+ssl:// or vst+ssl:// as schema to connect to an SSL-secured server endpoint, otherwise http+tcp://, vst+tcp:// or unix://", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "string" - }, - "server.force-json" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "force to not use VelocyPack for easier debugging", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.6.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "server", - "type" : "boolean" - }, - "server.max-packet-size" : { - "category" : "option", - "default" : 1073741824, - "deprecatedIn" : null, - "description" : "maximum packet size (in bytes) for client/server communication", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "uint64" - }, - "server.password" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "password to use when connecting. If not specified and authentication is required, the user will be prompted for a password", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "string" - }, - "server.request-timeout" : { - "category" : "option", - "default" : 1200, - "deprecatedIn" : null, - "description" : "request timeout in seconds", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "double" - }, - "server.username" : { - "category" : "option", - "default" : "root", - "deprecatedIn" : null, - "description" : "username to use when connecting", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "string" - }, - "ssl.protocol" : { - "category" : "option", - "default" : 5, - "deprecatedIn" : null, - "description" : "ssl protocol (1 = SSLv2 (unsupported), 2 = SSLv2 or SSLv3 (negotiated), 3 = SSLv3, 4 = TLSv1, 5 = TLSv1.2, 6 = TLSv1.3, 9 = generic TLS)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ssl", - "type" : "uint64", - "values" : "Possible values: 1, 2, 3, 4, 5, 6, 9" - }, - "temp.path" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "path for temporary files", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "temp", - "type" : "string" - }, - "test-case" : { - "category" : "option", - "default" : "version", - "deprecatedIn" : null, - "description" : "test case to use", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string", - "values" : "Possible values: \"aqlinsert\", \"aqltrx\", \"aqlv8\", \"collection\", \"counttrx\", \"crud\", \"crud-append\", \"crud-write-read\", \"custom-query\", \"deadlocktrx\", \"document\", \"edge\", \"hash\", \"import-document\", \"multi-collection\", \"multitrx\", \"random-shapes\", \"shapes\", \"shapes-append\", \"skiplist\", \"stream-cursor\", \"version\"" - }, - "verbose" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "print out replies if the HTTP header indicates DB errors", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "version" : { - "category" : "command", - "deprecatedIn" : null, - "description" : "reports the version and exits", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "version-json" : { - "category" : "command", - "deprecatedIn" : null, - "description" : "reports the version as JSON and exits", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.9.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "wait-for-sync" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "use waitForSync for created collections", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - } -} diff --git a/3.9/generated/Examples/arangod.json b/3.9/generated/Examples/arangod.json deleted file mode 100644 index 7b51f657a4..0000000000 --- a/3.9/generated/Examples/arangod.json +++ /dev/null @@ -1,9867 +0,0 @@ -{ - "agency.activate" : { - "category" : "option", - "component" : [ - "agent" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "Activate agency", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "agency", - "type" : "boolean" - }, - "agency.compaction-keep-size" : { - "category" : "option", - "component" : [ - "agent" - ], - "default" : 50000, - "deprecatedIn" : null, - "description" : "keep as many indices before compaction point", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "agency", - "type" : "uint64" - }, - "agency.compaction-step-size" : { - "category" : "option", - "component" : [ - "agent" - ], - "default" : 1000, - "deprecatedIn" : null, - "description" : "step size between state machine compactions", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "agency", - "type" : "uint64" - }, - "agency.disaster-recovery-id" : { - "category" : "option", - "component" : [ - "agent" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "allows for specification of the id for this agent; dangerous option for disaster recover only!", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "agency", - "type" : "string" - }, - "agency.election-timeout-max" : { - "category" : "option", - "component" : [ - "agent" - ], - "default" : 5, - "deprecatedIn" : null, - "description" : "maximum timeout before an agent calls for new election (in seconds)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "agency", - "type" : "double" - }, - "agency.election-timeout-min" : { - "category" : "option", - "component" : [ - "agent" - ], - "default" : 1, - "deprecatedIn" : null, - "description" : "minimum timeout before an agent calls for new election (in seconds)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "agency", - "type" : "double" - }, - "agency.endpoint" : { - "category" : "option", - "component" : [ - "agent" - ], - "default" : [ - ], - "deprecatedIn" : null, - "description" : "agency endpoints", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "agency", - "type" : "string..." - }, - "agency.max-append-size" : { - "category" : "option", - "component" : [ - "agent" - ], - "default" : 250, - "deprecatedIn" : null, - "description" : "maximum size of appendEntries document (# log entries)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "agency", - "type" : "uint64" - }, - "agency.my-address" : { - "category" : "option", - "component" : [ - "agent" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "which address to advertise to the outside", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "agency", - "type" : "string" - }, - "agency.pool-size" : { - "category" : "option", - "component" : [ - "agent" - ], - "default" : 1, - "deprecatedIn" : null, - "description" : "number of agent pool", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "agency", - "type" : "uint64" - }, - "agency.size" : { - "category" : "option", - "component" : [ - "agent" - ], - "default" : 1, - "deprecatedIn" : null, - "description" : "number of agents", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "agency", - "type" : "uint64" - }, - "agency.supervision" : { - "category" : "option", - "component" : [ - "agent" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "perform arangodb cluster supervision", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "agency", - "type" : "boolean" - }, - "agency.supervision-frequency" : { - "category" : "option", - "component" : [ - "agent" - ], - "default" : 1, - "deprecatedIn" : null, - "description" : "arangodb cluster supervision frequency (in seconds)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "agency", - "type" : "double" - }, - "agency.supervision-grace-period" : { - "category" : "option", - "component" : [ - "agent" - ], - "default" : 10, - "deprecatedIn" : null, - "description" : "supervision time, after which a server is considered to have failed (in seconds)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "agency", - "type" : "double" - }, - "agency.supervision-ok-threshold" : { - "category" : "option", - "component" : [ - "agent" - ], - "default" : 5, - "deprecatedIn" : null, - "description" : "supervision time, after which a server is considered to be bad [s]", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "agency", - "type" : "double" - }, - "agency.wait-for-sync" : { - "category" : "option", - "component" : [ - "agent" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "wait for hard disk syncs on every persistence call (required in production)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "agency", - "type" : "boolean" - }, - "arangosearch.commit-threads" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 0, - "deprecatedIn" : null, - "description" : "upper limit to the allowed number of commit threads (0 == autodetect)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.7.5" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "arangosearch", - "type" : "uint32" - }, - "arangosearch.commit-threads-idle" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 0, - "deprecatedIn" : null, - "description" : "upper limit to the allowed number of idle threads to use for commit tasks (0 == autodetect)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.7.5" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "arangosearch", - "type" : "uint32" - }, - "arangosearch.consolidation-threads" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 0, - "deprecatedIn" : null, - "description" : "upper limit to the allowed number of consolidation threads (0 == autodetect)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.7.5" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "arangosearch", - "type" : "uint32" - }, - "arangosearch.consolidation-threads-idle" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 0, - "deprecatedIn" : null, - "description" : "upper limit to the allowed number of idle threads to use for consolidation tasks (0 == autodetect)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.7.5" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "arangosearch", - "type" : "uint32" - }, - "arangosearch.threads" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 0, - "deprecatedIn" : [ - "v3.7.5" - ], - "description" : "the exact number of threads to use for asynchronous tasks (0 == autodetect)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "arangosearch", - "type" : "uint32" - }, - "arangosearch.threads-limit" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 0, - "deprecatedIn" : [ - "v3.7.5" - ], - "description" : "upper limit to the autodetected number of threads to use for asynchronous tasks (0 == use default)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "arangosearch", - "type" : "uint32" - }, - "audit.hostname" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "hostname to use", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "audit", - "type" : "string" - }, - "audit.max-entry-length" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 134217728, - "deprecatedIn" : null, - "description" : "maximum length of a log entry (in bytes)", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : [ - "v3.8.0", - "v3.7.9" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "audit", - "type" : "uint32" - }, - "audit.output" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : [ - ], - "deprecatedIn" : null, - "description" : "audit destination(s)", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "audit", - "type" : "string..." - }, - "audit.queue" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "queue audit log message before writing them out (can reduce latency)", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "audit", - "type" : "boolean" - }, - "backup.api-enabled" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "true", - "deprecatedIn" : null, - "description" : "whether the backup api is enabled (true) or not (false), or only enabled for superuser JWT (jwt)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "backup", - "type" : "string" - }, - "backup.local-path-prefix" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "/", - "deprecatedIn" : null, - "description" : "this option restricts any backup target to a given path prefix", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "backup", - "type" : "string" - }, - "cache.rebalancing-interval" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 2000000, - "deprecatedIn" : null, - "description" : "microseconds between rebalancing attempts", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "cache", - "type" : "uint64" - }, - "cache.size" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 8053063680, - "deprecatedIn" : null, - "description" : "size of cache in bytes", - "dynamic" : true, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "cache", - "type" : "uint64" - }, - "check-configuration" : { - "category" : "command", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "deprecatedIn" : null, - "description" : "check the configuration and exit", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "cluster.agency-endpoint" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver" - ], - "default" : [ - ], - "deprecatedIn" : null, - "description" : "agency endpoint to connect to", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "cluster", - "type" : "string..." - }, - "cluster.api-jwt-policy" : { - "category" : "option", - "component" : [ - "coordinator" - ], - "default" : "jwt-compat", - "deprecatedIn" : null, - "description" : "access permissions required for accessing /_admin/cluster REST APIs (jwt-all = JWT required to access all operations, jwt-write = JWT required for post/put/delete operations, jwt-compat = 3.7 compatibility mode)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "cluster", - "type" : "string", - "values" : "Possible values: \"jwt-all\", \"jwt-compat\", \"jwt-write\"" - }, - "cluster.create-waits-for-sync-replication" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "active coordinator will wait for all replicas to create collection", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "cluster", - "type" : "boolean" - }, - "cluster.default-replication-factor" : { - "category" : "option", - "component" : [ - "coordinator" - ], - "default" : 0, - "deprecatedIn" : null, - "description" : "default replication factor for non-system collections", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.6.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "cluster", - "type" : "uint32" - }, - "cluster.force-one-shard" : { - "category" : "option", - "component" : [ - "coordinator" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "force one-shard mode for all new collections", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.6.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "cluster", - "type" : "boolean" - }, - "cluster.index-create-timeout" : { - "category" : "option", - "component" : [ - "coordinator" - ], - "default" : 3600, - "deprecatedIn" : null, - "description" : "amount of time (in seconds) the coordinator will wait for an index to be created before giving up", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "cluster", - "type" : "double" - }, - "cluster.max-number-of-shards" : { - "category" : "option", - "component" : [ - "coordinator" - ], - "default" : 1000, - "deprecatedIn" : null, - "description" : "maximum number of shards when creating new collections (0 = unrestricted)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.1" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "cluster", - "type" : "uint32" - }, - "cluster.max-replication-factor" : { - "category" : "option", - "component" : [ - "coordinator" - ], - "default" : 10, - "deprecatedIn" : null, - "description" : "maximum replication factor for new collections (0 = unrestricted)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.6.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "cluster", - "type" : "uint32" - }, - "cluster.min-replication-factor" : { - "category" : "option", - "component" : [ - "coordinator" - ], - "default" : 1, - "deprecatedIn" : null, - "description" : "minimum replication factor for new collections", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.6.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "cluster", - "type" : "uint32" - }, - "cluster.my-address" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "this server's endpoint (cluster internal)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "cluster", - "type" : "string" - }, - "cluster.my-advertised-endpoint" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "this server's advertised endpoint (e.g. external IP address or load balancer, optional)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "cluster", - "type" : "string" - }, - "cluster.my-role" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "this server's role", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "cluster", - "type" : "string" - }, - "cluster.require-persisted-id" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "if set to true, then the instance will only start if a UUID file is found in the database on startup. Setting this option will make sure the instance is started using an already existing database directory and not a new one. For the first start, the UUID file must either be created manually or the option must be set to false for the initial startup", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "cluster", - "type" : "boolean" - }, - "cluster.resign-leadership-on-shutdown" : { - "category" : "option", - "component" : [ - "dbserver" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "create resign leader ship job for this dbsever on shutdown", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "cluster", - "type" : "boolean" - }, - "cluster.synchronous-replication-timeout-factor" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 1, - "deprecatedIn" : null, - "description" : "all synchronous replication timeouts are multiplied by this factor", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "cluster", - "type" : "double" - }, - "cluster.synchronous-replication-timeout-maximum" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 3600, - "deprecatedIn" : null, - "description" : "all synchronous replication timeouts will be at most this value (in seconds)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "cluster", - "type" : "double" - }, - "cluster.synchronous-replication-timeout-minimum" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 900, - "deprecatedIn" : null, - "description" : "all synchronous replication timeouts will be at least this value (in seconds)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "cluster", - "type" : "double" - }, - "cluster.synchronous-replication-timeout-per-4k" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 0.1, - "deprecatedIn" : null, - "description" : "all synchronous replication timeouts are increased by this amount per 4096 bytes (in seconds)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "cluster", - "type" : "double" - }, - "cluster.system-replication-factor" : { - "category" : "option", - "component" : [ - "coordinator" - ], - "default" : 2, - "deprecatedIn" : null, - "description" : "default replication factor for system collections", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "cluster", - "type" : "uint32" - }, - "cluster.upgrade" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "auto", - "deprecatedIn" : null, - "description" : "perform a cluster upgrade if necessary (auto = perform upgrade and shut down only if `--database.auto-upgrade true` is set, disable = never perform upgrade, force = always perform an upgrade and shut down, online = always perform an upgrade but don't shut down)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "cluster", - "type" : "string", - "values" : "Possible values: \"auto\", \"disable\", \"force\", \"online\"" - }, - "cluster.write-concern" : { - "category" : "option", - "component" : [ - "coordinator" - ], - "default" : 1, - "deprecatedIn" : null, - "description" : "write concern used for writes to new collections", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.6.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "cluster", - "type" : "uint32" - }, - "config" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "the configuration file or 'none'", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "configuration" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "the configuration file or 'none'", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "console" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "start a JavaScript emergency console", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "daemon" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "background the server, running it as daemon", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "database.auto-upgrade" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "perform a database upgrade if necessary", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "database", - "type" : "boolean" - }, - "database.check-version" : { - "category" : "command", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "deprecatedIn" : null, - "description" : "checks the versions of the database and exit", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "database", - "type" : "boolean" - }, - "database.directory" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "path to the database directory", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "database", - "type" : "string" - }, - "database.force-sync-properties" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "force syncing of collection properties to disk, will use waitForSync value of collection when turned off", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "database", - "type" : "boolean" - }, - "database.ignore-datafile-errors" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "load collections even if datafiles may contain errors", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "database", - "type" : "boolean" - }, - "database.init-database" : { - "category" : "command", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "deprecatedIn" : null, - "description" : "initializes an empty database", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "database", - "type" : "boolean" - }, - "database.password" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "initial password of root user", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "database", - "type" : "string" - }, - "database.required-directory-state" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "any", - "deprecatedIn" : null, - "description" : "required state of database directory at startup (non-existing: database directory must not exist, existing: database directory must exist, empty: database directory must exist but be empty, populated: database directory must exist and contain specific files already, any: any state allowed)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "database", - "type" : "string", - "values" : "Possible values: \"any\", \"empty\", \"existing\", \"non-existing\", \"populated\"" - }, - "database.restore-admin" : { - "category" : "command", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "deprecatedIn" : null, - "description" : "resets the admin users and sets a new password", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "database", - "type" : "boolean" - }, - "database.upgrade-check" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "skip a database upgrade", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "database", - "type" : "boolean" - }, - "database.wait-for-sync" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "default wait-for-sync behavior, can be overwritten when creating a collection", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "database", - "type" : "boolean" - }, - "default-language" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "ISO-639 language code", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "default-language-check" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "check if default language matches stored language", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "define" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : [ - ], - "deprecatedIn" : null, - "description" : "define key=value for a @key@ entry in config file", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string..." - }, - "dump-dependencies" : { - "category" : "command", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "deprecatedIn" : null, - "description" : "dump dependency graph", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "dump-options" : { - "category" : "command", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "deprecatedIn" : null, - "description" : "dump configuration options in JSON format", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "fortune" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "show fortune cookie on startup", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "foxx.api" : { - "category" : "option", - "component" : [ - "coordinator", - "single" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "enables Foxx management REST APIs", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "foxx", - "type" : "boolean" - }, - "foxx.force-update-on-startup" : { - "category" : "option", - "component" : [ - "coordinator", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "ensure all Foxx services are synchronized before completeing the boot sequence", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.7.5" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "foxx", - "type" : "boolean" - }, - "foxx.queues" : { - "category" : "option", - "component" : [ - "coordinator", - "single" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "enable Foxx queues", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "foxx", - "type" : "boolean" - }, - "foxx.queues-poll-interval" : { - "category" : "option", - "component" : [ - "coordinator", - "single" - ], - "default" : 1, - "deprecatedIn" : null, - "description" : "poll interval (in seconds) for Foxx queue manager", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "foxx", - "type" : "double" - }, - "foxx.store" : { - "category" : "option", - "component" : [ - "coordinator", - "single" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "enables Foxx store in web interface", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "foxx", - "type" : "boolean" - }, - "frontend.proxy-request-check" : { - "category" : "option", - "component" : [ - "coordinator", - "single" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "enable proxy request checking", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "frontend", - "type" : "boolean" - }, - "frontend.trusted-proxy" : { - "category" : "option", - "component" : [ - "coordinator", - "single" - ], - "default" : [ - ], - "deprecatedIn" : null, - "description" : "list of proxies to trust (may be IP or network). Make sure --frontend.proxy-request-check is enabled", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "frontend", - "type" : "string..." - }, - "frontend.version-check" : { - "category" : "option", - "component" : [ - "coordinator", - "single" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "alert the user if new versions are available", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "frontend", - "type" : "boolean" - }, - "gid" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "switch to group-id after reading config files", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "http.allow-method-override" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : [ - "v3.8.0" - ], - "description" : "allow HTTP method override using special headers", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "http", - "type" : "boolean" - }, - "http.hide-product-header" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : [ - "v3.8.0" - ], - "description" : "do not expose \"Server: ArangoDB\" header in HTTP responses", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "http", - "type" : "boolean" - }, - "http.keep-alive-timeout" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 300, - "deprecatedIn" : null, - "description" : "keep-alive timeout in seconds", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "http", - "type" : "double" - }, - "http.permanently-redirect-root" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "if true, use a permanent redirect. If false, use a temporary", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.7.12" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "http", - "type" : "boolean" - }, - "http.redirect-root-to" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "/_admin/aardvark/index.html", - "deprecatedIn" : null, - "description" : "redirect of root URL", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.7.12" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "http", - "type" : "string" - }, - "http.trusted-origin" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : [ - ], - "deprecatedIn" : null, - "description" : "trusted origin URLs for CORS requests with credentials", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "http", - "type" : "string..." - }, - "hund" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "make ArangoDB bark on startup", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "javascript.allow-admin-execute" : { - "category" : "option", - "component" : [ - "coordinator", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "for testing purposes allow '_admin/execute', NEVER enable on production", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "javascript", - "type" : "boolean" - }, - "javascript.allow-external-process-control" : { - "category" : "option", - "component" : [ - "coordinator", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "allow execution and control of external processes from within JavaScript actions", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "javascript", - "type" : "boolean" - }, - "javascript.allow-port-testing" : { - "category" : "option", - "component" : [ - "coordinator", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "allow testing of ports from within JavaScript actions", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "javascript", - "type" : "boolean" - }, - "javascript.app-path" : { - "category" : "option", - "component" : [ - "coordinator", - "single" - ], - "default" : "./js/apps", - "deprecatedIn" : null, - "description" : "directory for Foxx applications", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string" - }, - "javascript.copy-installation" : { - "category" : "option", - "component" : [ - "coordinator", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "copy contents of 'javascript.startup-directory' on first start", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "javascript", - "type" : "boolean" - }, - "javascript.enabled" : { - "category" : "option", - "component" : [ - "coordinator", - "single" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "enable the V8 JavaScript engine", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "javascript", - "type" : "boolean" - }, - "javascript.endpoints-allowlist" : { - "category" : "option", - "component" : [ - "coordinator", - "single" - ], - "default" : [ - ], - "deprecatedIn" : null, - "description" : "endpoints that can be connected to via @arangodb/request module in JavaScript actions", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string..." - }, - "javascript.endpoints-denylist" : { - "category" : "option", - "component" : [ - "coordinator", - "single" - ], - "default" : [ - ], - "deprecatedIn" : null, - "description" : "endpoints that cannot be connected to via @arangodb/request module in JavaScript actions (if not in allowlist)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string..." - }, - "javascript.environment-variables-allowlist" : { - "category" : "option", - "component" : [ - "coordinator", - "single" - ], - "default" : [ - ], - "deprecatedIn" : null, - "description" : "environment variables that will be accessible in JavaScript", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string..." - }, - "javascript.environment-variables-denylist" : { - "category" : "option", - "component" : [ - "coordinator", - "single" - ], - "default" : [ - ], - "deprecatedIn" : null, - "description" : "environment variables that will be inaccessible in JavaScript (if not in allowlist)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string..." - }, - "javascript.files-allowlist" : { - "category" : "option", - "component" : [ - "coordinator", - "single" - ], - "default" : [ - ], - "deprecatedIn" : null, - "description" : "filesystem paths that will be accessible from within JavaScript actions", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string..." - }, - "javascript.gc-frequency" : { - "category" : "option", - "component" : [ - "coordinator", - "single" - ], - "default" : 60, - "deprecatedIn" : null, - "description" : "JavaScript time-based garbage collection frequency (each x seconds)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "double" - }, - "javascript.gc-interval" : { - "category" : "option", - "component" : [ - "coordinator", - "single" - ], - "default" : 2000, - "deprecatedIn" : null, - "description" : "JavaScript request-based garbage collection interval (each x requests)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "uint64" - }, - "javascript.harden" : { - "category" : "option", - "component" : [ - "coordinator", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "disables access to JavaScript functions in the internal module: getPid() and logLevel()", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "javascript", - "type" : "boolean" - }, - "javascript.module-directory" : { - "category" : "option", - "component" : [ - "coordinator", - "single" - ], - "default" : [ - "./enterprise/js" - ], - "deprecatedIn" : null, - "description" : "additional paths containing JavaScript modules", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string..." - }, - "javascript.script" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : [ - ], - "deprecatedIn" : null, - "description" : "run scripts and exit", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string..." - }, - "javascript.script-parameter" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : [ - ], - "deprecatedIn" : null, - "description" : "script parameter", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string..." - }, - "javascript.startup-directory" : { - "category" : "option", - "component" : [ - "coordinator", - "single" - ], - "default" : "./js", - "deprecatedIn" : null, - "description" : "path to the directory containing JavaScript startup scripts", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string" - }, - "javascript.startup-options-allowlist" : { - "category" : "option", - "component" : [ - "coordinator", - "single" - ], - "default" : [ - ], - "deprecatedIn" : null, - "description" : "startup options whose names match this regular expression will be allowed and exposed to JavaScript", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string..." - }, - "javascript.startup-options-denylist" : { - "category" : "option", - "component" : [ - "coordinator", - "single" - ], - "default" : [ - ], - "deprecatedIn" : null, - "description" : "startup options whose names match this regular expression will not be exposed (if not in allowlist) to JavaScript actions", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string..." - }, - "javascript.tasks" : { - "category" : "option", - "component" : [ - "coordinator", - "single" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "enable JavaScript tasks", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "javascript", - "type" : "boolean" - }, - "javascript.transactions" : { - "category" : "option", - "component" : [ - "coordinator", - "single" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "enable JavaScript transactions", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "javascript", - "type" : "boolean" - }, - "javascript.v8-contexts" : { - "category" : "option", - "component" : [ - "coordinator", - "single" - ], - "default" : 0, - "deprecatedIn" : null, - "description" : "maximum number of V8 contexts that are created for executing JavaScript actions", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "uint64" - }, - "javascript.v8-contexts-max-age" : { - "category" : "option", - "component" : [ - "coordinator", - "single" - ], - "default" : 60, - "deprecatedIn" : null, - "description" : "maximum age for each V8 context (in seconds) before it is disposed", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "double" - }, - "javascript.v8-contexts-max-invocations" : { - "category" : "option", - "component" : [ - "coordinator", - "single" - ], - "default" : 0, - "deprecatedIn" : null, - "description" : "maximum number of invocations for each V8 context before it is disposed", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "uint64" - }, - "javascript.v8-contexts-minimum" : { - "category" : "option", - "component" : [ - "coordinator", - "single" - ], - "default" : 0, - "deprecatedIn" : null, - "description" : "minimum number of V8 contexts that keep available for executing JavaScript actions", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "uint64" - }, - "javascript.v8-max-heap" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 3072, - "deprecatedIn" : null, - "description" : "maximal heap size (in MB)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "uint64" - }, - "javascript.v8-options" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : [ - ], - "deprecatedIn" : null, - "description" : "options to pass to v8", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string..." - }, - "ldap.allow-offline" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "If a refresh attempt fails to connect to the LDAP server, continue with the cached authentication data", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "ldap", - "type" : "boolean" - }, - "ldap.async-connect" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "Whether or not the connection to the LDAP library will be done asynchronously", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "ldap", - "type" : "boolean" - }, - "ldap.basedn" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "ldap basedn, eg. dc=example,dc=com", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap", - "type" : "string" - }, - "ldap.binddn" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "ldap binddn, eg. cn=admin,dc=example,dc=com", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap", - "type" : "string" - }, - "ldap.bindpasswd" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "ldap bindpassword, eg. admin", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap", - "type" : "string" - }, - "ldap.debug" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "Turn on internal OpenLDAP library output (warning: will print to stdout)", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "ldap", - "type" : "boolean" - }, - "ldap.enabled" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "enable LDAP", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "ldap", - "type" : "boolean" - }, - "ldap.network-timeout" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 0, - "deprecatedIn" : null, - "description" : "Timeout value (in seconds) after which network operations following the initial connection return in case of no activity (a value of 0 means default timeout)", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap", - "type" : "double" - }, - "ldap.port" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 389, - "deprecatedIn" : null, - "description" : "port to use", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap", - "type" : "uint16" - }, - "ldap.prefix" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "ldap prefix, eg. uid= xor dn= xor cn=", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap", - "type" : "string" - }, - "ldap.referrals" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "Whether or not the LDAP library should implicitly chase referrals", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "ldap", - "type" : "boolean" - }, - "ldap.refresh-rate" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 300, - "deprecatedIn" : null, - "description" : "Refresh user settings after this time (in seconds)", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap", - "type" : "double" - }, - "ldap.responsible-for" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "A file of usernames this provider is responsible for. If empty, it will be responsible for all users", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : [ - "v3.7.11" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap", - "type" : "string" - }, - "ldap.restart" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "Whether or not the LDAP library should implicitly restart connections", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "ldap", - "type" : "boolean" - }, - "ldap.retries" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 1, - "deprecatedIn" : null, - "description" : "Number of tries to attempt connecting to the LDAP server. Setting it to values greater than one will retry connecting in case the LDAP server is unavailable or denies the connection", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap", - "type" : "uint32" - }, - "ldap.roles-attribute-name" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "ldap attributename where the role are located.", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap", - "type" : "string" - }, - "ldap.roles-exclude" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "Regexp to exclude groups. Leave empty to exclude none.", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap", - "type" : "string" - }, - "ldap.roles-include" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "Regexp to include groups. Leave empty to include all.", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap", - "type" : "string" - }, - "ldap.roles-search" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "ldap search for roles; '{USER}' is replaced by the 'dn' of the user.", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap", - "type" : "string" - }, - "ldap.roles-transformation" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : [ - ], - "deprecatedIn" : null, - "description" : "Regexp to normalizer role name, e.g. '/^ *(.*[^ ]])*/$2/'", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap", - "type" : "string..." - }, - "ldap.search-attribute" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "uid", - "deprecatedIn" : null, - "description" : "ldap search attribute, eg. uid", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap", - "type" : "string" - }, - "ldap.search-filter" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "objectClass=*", - "deprecatedIn" : null, - "description" : "ldap search filter, eg. (objectClass=simpleSecurityObject)", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap", - "type" : "string" - }, - "ldap.search-scope" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "sub", - "deprecatedIn" : null, - "description" : "ldap search scope, one of base, one, sub", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap", - "type" : "string" - }, - "ldap.serialize-timeout" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 5, - "deprecatedIn" : null, - "description" : "Maximum amount of time (in seconds) that will be waited for the serialization mutex", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap", - "type" : "double" - }, - "ldap.serialized" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "Whether or not calls into the LDAP library should be serialized. This option can be used to work around thread-unsafe LDAP library functionality", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "ldap", - "type" : "boolean" - }, - "ldap.server" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "server to use", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap", - "type" : "string" - }, - "ldap.suffix" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "ldap suffix, eg. ,dc=example,dc=com", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap", - "type" : "string" - }, - "ldap.superuser-role" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "Role mapping to the super-users", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap", - "type" : "string" - }, - "ldap.timeout" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 0, - "deprecatedIn" : null, - "description" : "Timeout value (in seconds) for synchronous LDAP API calls (a value of 0 means default timeout)", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap", - "type" : "double" - }, - "ldap.tls" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "enable TLS", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "ldap", - "type" : "boolean" - }, - "ldap.tls-cacert-dir" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "ldap tls cacert dir", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap", - "type" : "string" - }, - "ldap.tls-cacert-file" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "ldap tls cacert file", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap", - "type" : "string" - }, - "ldap.tls-cert-check-strategy" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "hard", - "deprecatedIn" : null, - "description" : "ldap tls cert check strategy, one of never, hard, demand, allow, try", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap", - "type" : "string" - }, - "ldap.tls-version" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "1.2", - "deprecatedIn" : null, - "description" : "ldap tls version, one of 1.0, 1.1, 1.2", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap", - "type" : "string" - }, - "ldap.url" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "ldap url, eg. ldap://example.com:389/dc=example,dc=com?uid?sub", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap", - "type" : "string" - }, - "ldap2.allow-offline" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "If a refresh attempt fails to connect to the LDAP server, continue with the cached authentication data", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "ldap2", - "type" : "boolean" - }, - "ldap2.async-connect" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "Whether or not the connection to the LDAP library will be done asynchronously", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "ldap2", - "type" : "boolean" - }, - "ldap2.basedn" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "ldap basedn, eg. dc=example,dc=com", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap2", - "type" : "string" - }, - "ldap2.binddn" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "ldap binddn, eg. cn=admin,dc=example,dc=com", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap2", - "type" : "string" - }, - "ldap2.bindpasswd" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "ldap bindpassword, eg. admin", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap2", - "type" : "string" - }, - "ldap2.debug" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "Turn on internal OpenLDAP library output (warning: will print to stdout)", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "ldap2", - "type" : "boolean" - }, - "ldap2.enabled" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "enable LDAP", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "ldap2", - "type" : "boolean" - }, - "ldap2.network-timeout" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 0, - "deprecatedIn" : null, - "description" : "Timeout value (in seconds) after which network operations following the initial connection return in case of no activity (a value of 0 means default timeout)", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap2", - "type" : "double" - }, - "ldap2.port" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 389, - "deprecatedIn" : null, - "description" : "port to use", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap2", - "type" : "uint16" - }, - "ldap2.prefix" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "ldap prefix, eg. uid= xor dn= xor cn=", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap2", - "type" : "string" - }, - "ldap2.referrals" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "Whether or not the LDAP library should implicitly chase referrals", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "ldap2", - "type" : "boolean" - }, - "ldap2.refresh-rate" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 300, - "deprecatedIn" : null, - "description" : "Refresh user settings after this time (in seconds)", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap2", - "type" : "double" - }, - "ldap2.responsible-for" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "A file of usernames this provider is responsible for. If empty, it will be responsible for all users", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : [ - "v3.7.11" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap2", - "type" : "string" - }, - "ldap2.restart" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "Whether or not the LDAP library should implicitly restart connections", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "ldap2", - "type" : "boolean" - }, - "ldap2.retries" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 1, - "deprecatedIn" : null, - "description" : "Number of tries to attempt connecting to the LDAP server. Setting it to values greater than one will retry connecting in case the LDAP server is unavailable or denies the connection", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap2", - "type" : "uint32" - }, - "ldap2.roles-attribute-name" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "ldap attributename where the role are located.", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap2", - "type" : "string" - }, - "ldap2.roles-exclude" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "Regexp to exclude groups. Leave empty to exclude none.", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap2", - "type" : "string" - }, - "ldap2.roles-include" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "Regexp to include groups. Leave empty to include all.", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap2", - "type" : "string" - }, - "ldap2.roles-search" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "ldap search for roles; '{USER}' is replaced by the 'dn' of the user.", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap2", - "type" : "string" - }, - "ldap2.roles-transformation" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : [ - ], - "deprecatedIn" : null, - "description" : "Regexp to normalizer role name, e.g. '/^ *(.*[^ ]])*/$2/'", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap2", - "type" : "string..." - }, - "ldap2.search-attribute" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "uid", - "deprecatedIn" : null, - "description" : "ldap search attribute, eg. uid", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap2", - "type" : "string" - }, - "ldap2.search-filter" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "objectClass=*", - "deprecatedIn" : null, - "description" : "ldap search filter, eg. (objectClass=simpleSecurityObject)", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap2", - "type" : "string" - }, - "ldap2.search-scope" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "sub", - "deprecatedIn" : null, - "description" : "ldap search scope, one of base, one, sub", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap2", - "type" : "string" - }, - "ldap2.serialize-timeout" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 5, - "deprecatedIn" : null, - "description" : "Maximum amount of time (in seconds) that will be waited for the serialization mutex", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap2", - "type" : "double" - }, - "ldap2.serialized" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "Whether or not calls into the LDAP library should be serialized. This option can be used to work around thread-unsafe LDAP library functionality", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "ldap2", - "type" : "boolean" - }, - "ldap2.server" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "server to use", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap2", - "type" : "string" - }, - "ldap2.suffix" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "ldap suffix, eg. ,dc=example,dc=com", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap2", - "type" : "string" - }, - "ldap2.superuser-role" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "Role mapping to the super-users", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap2", - "type" : "string" - }, - "ldap2.timeout" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 0, - "deprecatedIn" : null, - "description" : "Timeout value (in seconds) for synchronous LDAP API calls (a value of 0 means default timeout)", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap2", - "type" : "double" - }, - "ldap2.tls" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "enable TLS", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "ldap2", - "type" : "boolean" - }, - "ldap2.tls-cacert-dir" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "ldap tls cacert dir", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap2", - "type" : "string" - }, - "ldap2.tls-cacert-file" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "ldap tls cacert file", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap2", - "type" : "string" - }, - "ldap2.tls-cert-check-strategy" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "hard", - "deprecatedIn" : null, - "description" : "ldap tls cert check strategy, one of never, hard, demand, allow, try", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap2", - "type" : "string" - }, - "ldap2.tls-version" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "1.2", - "deprecatedIn" : null, - "description" : "ldap tls version, one of 1.0, 1.1, 1.2", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap2", - "type" : "string" - }, - "ldap2.url" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "ldap url, eg. ldap://example.com:389/dc=example,dc=com?uid?sub", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ldap2", - "type" : "string" - }, - "log" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : [ - "info", - "info" - ], - "deprecatedIn" : [ - "v3.5.0" - ], - "description" : "the global or topic-specific log level", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string..." - }, - "log.api-enabled" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "true", - "deprecatedIn" : null, - "description" : "whether the log api is enabled (true) or not (false), or only enabled for superuser JWT (jwt)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.4.11", - "v3.5.6", - "v3.6.5" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.color" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "use colors for TTY logging", - "dynamic" : true, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.escape" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "escape characters when logging", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.file" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "shortcut for '--log.output file://'", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.file-group" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "group to use for new log file, user must be a member of this group", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.4.5" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.file-mode" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "mode to use for new log file, umask will be applied as well", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.4.5" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.force-direct" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "do not start a seperate thread for logging", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.foreground-tty" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "also log to tty if backgrounded", - "dynamic" : true, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.hostname" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "hostname to use in log message (empty for none, use 'auto' to automatically figure out hostname)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.ids" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "log unique message ids", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.in-memory" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "use in-memory log appender, which can be queried via API and web UI", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.in-memory-level" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "info", - "deprecatedIn" : null, - "description" : "use in-memory log appender only for this log level and higher", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.7.9" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string", - "values" : "Possible values: \"debug\", \"err\", \"error\", \"fatal\", \"info\", \"trace\", \"warn\", \"warning\"" - }, - "log.keep-logrotate" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "keep the old log file after receiving a sighup", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.level" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : [ - "info", - "info" - ], - "deprecatedIn" : null, - "description" : "the global or topic-specific log level", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string..." - }, - "log.line-number" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "include the function name, file name and line number of the source code that issues the log message. Format: `[func@FileName.cpp:123]`", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.max-entry-length" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 134217728, - "deprecatedIn" : null, - "description" : "maximum length of a log entry (in bytes)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.7.9" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "uint32" - }, - "log.output" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : [ - ], - "deprecatedIn" : null, - "description" : "log destination(s), e.g. file:///path/to/file (any '$PID' will be replaced with the process id)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string..." - }, - "log.performance" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : [ - "v3.5.0" - ], - "description" : "shortcut for '--log.level performance=trace'", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.prefix" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "prefix log message with this string", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.process" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "show process identifier (pid) in log message", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.request-parameters" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "include full URLs and HTTP request parameters in trace logs", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.role" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "log server role", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.shorten-filenames" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "shorten filenames in log output (use with --log.line-number)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.thread" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "show thread identifier in log message", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.thread-name" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "show thread name in log message", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.time-format" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "utc-datestring", - "deprecatedIn" : null, - "description" : "time format to use in logs", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string", - "values" : "Possible values: \"local-datestring\", \"timestamp\", \"timestamp-micros\", \"timestamp-millis\", \"uptime\", \"uptime-micros\", \"uptime-millis\", \"utc-datestring\", \"utc-datestring-millis\"" - }, - "log.use-json-format" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "use json output format", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.use-local-time" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : [ - "v3.5.0" - ], - "description" : "use local timezone instead of UTC", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.use-microtime" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : [ - "v3.5.0" - ], - "description" : "use microtime instead", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "network.idle-connection-ttl" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 120000, - "deprecatedIn" : null, - "description" : "default time-to-live of idle connections for cluster-internal communication (in milliseconds)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.6.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "network", - "type" : "uint64" - }, - "network.io-threads" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 2, - "deprecatedIn" : null, - "description" : "number of network IO threads for cluster-internal communication", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.6.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "network", - "type" : "uint32" - }, - "network.max-open-connections" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 1024, - "deprecatedIn" : null, - "description" : "max open TCP connections for cluster-internal communication per endpoint", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.6.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "network", - "type" : "uint64" - }, - "network.max-requests-in-flight" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 65536, - "deprecatedIn" : null, - "description" : "controls the number of internal requests that can be in flight at a given point in time", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "network", - "type" : "uint64" - }, - "network.protocol" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "network protocol to use for cluster-internal communication", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.7.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "network", - "type" : "string", - "values" : "Possible values: \"\", \"h2\", \"http\", \"http2\", \"vst\"" - }, - "network.verify-hosts" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "verify hosts when using TLS in cluster-internal communication", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.6.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "network", - "type" : "boolean" - }, - "pid-file" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "pid-file in daemon mode", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "query.allow-collections-in-expressions" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : [ - "v3.9.0" - ], - "description" : "allow full collections to be used in AQL expressions", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "query", - "type" : "boolean" - }, - "query.cache-entries" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 128, - "deprecatedIn" : null, - "description" : "maximum number of results in query result cache per database", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "query", - "type" : "uint64" - }, - "query.cache-entries-max-size" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 268435456, - "deprecatedIn" : null, - "description" : "maximum cumulated size of results in query result cache per database", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "query", - "type" : "uint64" - }, - "query.cache-entry-max-size" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 16777216, - "deprecatedIn" : null, - "description" : "maximum size of an invidiual result entry in query result cache", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "query", - "type" : "uint64" - }, - "query.cache-include-system-collections" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "whether or not to include system collection queries in the query result cache", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "query", - "type" : "boolean" - }, - "query.cache-mode" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "off", - "deprecatedIn" : null, - "description" : "mode for the AQL query result cache (on, off, demand)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "query", - "type" : "string" - }, - "query.fail-on-warning" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "whether AQL queries should fail with errors even for recoverable warnings", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "query", - "type" : "boolean" - }, - "query.global-memory-limit" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 27831388078, - "deprecatedIn" : null, - "description" : "memory threshold for all AQL queries combined (in bytes, 0 = no limit)", - "dynamic" : true, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "query", - "type" : "uint64" - }, - "query.max-nodes-per-callstack" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 200, - "deprecatedIn" : null, - "description" : "maximum number execution nodes on the callstack before splitting the remaining nodes into a separate thread", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.9.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "query", - "type" : "uint64" - }, - "query.max-parallelism" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 4, - "deprecatedIn" : null, - "description" : "maximum number of threads to use for a single query; actual query execution may use less depending on various factors", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : true, - "introducedIn" : [ - "v3.7.1" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "query", - "type" : "uint64" - }, - "query.max-runtime" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 0, - "deprecatedIn" : null, - "description" : "runtime threshold for AQL queries (in seconds, 0 = no limit)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.6.7", - "v3.7.3" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "query", - "type" : "double" - }, - "query.memory-limit" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 20615843021, - "deprecatedIn" : null, - "description" : "memory threshold per AQL query (in bytes, 0 = no limit)", - "dynamic" : true, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "query", - "type" : "uint64" - }, - "query.memory-limit-override" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "allow increasing per-query memory limits for individual queries", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "query", - "type" : "boolean" - }, - "query.optimizer-max-plans" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 128, - "deprecatedIn" : null, - "description" : "maximum number of query plans to create for a query", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "query", - "type" : "uint64" - }, - "query.optimizer-rules" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : [ - ], - "deprecatedIn" : null, - "description" : "enable or disable specific optimizer rules (use rule name prefixed with '-' for disabling, '+' for enabling)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.6.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "query", - "type" : "string..." - }, - "query.parallelize-gather-writes" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "enable write parallelization for gather nodes", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.6.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "query", - "type" : "boolean" - }, - "query.parallelize-traversals" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "enable traversal parallelization", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : true, - "introducedIn" : [ - "v3.7.1" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "query", - "type" : "boolean" - }, - "query.registry-ttl" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 0, - "deprecatedIn" : null, - "description" : "default time-to-live of cursors and query snippets (in seconds); if <= 0, value will default to 30 for single-server instances or 600 for coordinator instances", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "query", - "type" : "double" - }, - "query.require-with" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "whether AQL queries should require the `WITH collection-name` clause even on single servers (enable this to remove this behavior difference between single server and cluster)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "query", - "type" : "boolean" - }, - "query.slow-streaming-threshold" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 10, - "deprecatedIn" : null, - "description" : "threshold for slow streaming AQL queries (in seconds)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "query", - "type" : "double" - }, - "query.slow-threshold" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 10, - "deprecatedIn" : null, - "description" : "threshold for slow AQL queries (in seconds)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "query", - "type" : "double" - }, - "query.smart-joins" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "enable SmartJoins query optimization", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : true, - "introducedIn" : [ - "v3.4.5" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "query", - "type" : "boolean" - }, - "query.tracking" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "whether to track queries", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "query", - "type" : "boolean" - }, - "query.tracking-slow-queries" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "whether to track slow queries", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.7.4" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "query", - "type" : "boolean" - }, - "query.tracking-with-bindvars" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "whether to track bind vars with AQL queries", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "query", - "type" : "boolean" - }, - "query.tracking-with-datasources" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "whether to track data sources with AQL queries", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.7.4" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "query", - "type" : "boolean" - }, - "query.tracking-with-querystring" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "whether to track the query string", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.7.4" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "query", - "type" : "boolean" - }, - "random.generator" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 1, - "deprecatedIn" : null, - "description" : "random number generator to use (1 = MERSENNE, 2 = RANDOM, 3 = URANDOM, 4 = COMBINED (not for Windows), 5 = WinCrypt (Windows only)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "random", - "type" : "uint32", - "values" : "Possible values: 1, 2, 3, 4" - }, - "rclone.executable" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "rclone executable used for up and download of backups", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rclone", - "type" : "string" - }, - "replication.active-failover" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "Enable active-failover during asynchronous replication", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "replication", - "type" : "boolean" - }, - "replication.auto-start" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "switch to enable or disable the automatic start of replication appliers", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "replication", - "type" : "boolean" - }, - "replication.automatic-failover" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "Please use `--replication.active-failover` instead", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "replication", - "type" : "boolean" - }, - "replication.connect-timeout" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 10, - "deprecatedIn" : null, - "description" : "Default timeout value for replication connection attempts (in seconds)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.4.9", - "v3.5.4" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "replication", - "type" : "double" - }, - "replication.max-parallel-tailing-invocations" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 0, - "deprecatedIn" : null, - "description" : "Maximum number of concurrently allowed WAL tailing invocations (0 = unlimited)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "replication", - "type" : "uint64" - }, - "replication.quick-keys-limit" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 1000000, - "deprecatedIn" : null, - "description" : "Limit at which 'quick' calls to the replication keys API return only the document count for second run", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.7.9" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "replication", - "type" : "uint64" - }, - "replication.request-timeout" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 600, - "deprecatedIn" : null, - "description" : "Default timeout value for replication requests (in seconds)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.4.9", - "v3.5.4" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "replication", - "type" : "double" - }, - "replication.sync-by-revision" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "Whether to use the newer revision-based replication protocol", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.7.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "replication", - "type" : "boolean" - }, - "rocksdb.allow-fallocate" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "if true, allow RocksDB to use fallocate calls. if false, fallocate calls are bypassed", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.4.5" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "rocksdb", - "type" : "boolean" - }, - "rocksdb.block-align-data-blocks" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "if true, aligns data blocks on lesser of page size and block size", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "rocksdb", - "type" : "boolean" - }, - "rocksdb.block-cache-shard-bits" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : -1, - "deprecatedIn" : null, - "description" : "number of shard bits to use for block cache (use -1 for default value)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rocksdb", - "type" : "int64" - }, - "rocksdb.block-cache-size" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 9663676416, - "deprecatedIn" : null, - "description" : "size of block cache in bytes", - "dynamic" : true, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rocksdb", - "type" : "uint64" - }, - "rocksdb.cache-index-and-filter-blocks" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "if turned on, the RocksDB block cache quota will also include RocksDB memtable sizes", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.7.1" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "rocksdb", - "type" : "boolean" - }, - "rocksdb.cache-index-and-filter-blocks-with-high-priority" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "if true and `--rocksdb.cache-index-and-filter-blocks` is also true, cache index and filter blocks with high priority, making index and filter blocks be less likely to be evicted than data blocks", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.7.1" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "rocksdb", - "type" : "boolean" - }, - "rocksdb.compaction-read-ahead-size" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 2097152, - "deprecatedIn" : null, - "description" : "if non-zero, we perform bigger reads when doing compaction. If you're running RocksDB on spinning disks, you should set this to at least 2MB. that way RocksDB's compaction is doing sequential instead of random reads.", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rocksdb", - "type" : "uint64" - }, - "rocksdb.create-sha-files" : { - "category" : "option", - "component" : [ - "dbserver", - "single" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "enable generation of sha256 files for each .sst file", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "rocksdb", - "type" : "boolean" - }, - "rocksdb.debug-logging" : { - "category" : "option", - "component" : [ - "dbserver", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "true to enable rocksdb debug logging", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "rocksdb", - "type" : "boolean" - }, - "rocksdb.delayed-write-rate" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 0, - "deprecatedIn" : null, - "description" : "limited write rate to DB (in bytes per second) if we are writing to the last mem-table allowed and we allow more than 3 mem-tables, or if we have surpassed a certain number of level-0 files and need to slowdown writes", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rocksdb", - "type" : "uint64" - }, - "rocksdb.dynamic-level-bytes" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "if true, determine the number of bytes for each level dynamically to minimize space amplification", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "rocksdb", - "type" : "boolean" - }, - "rocksdb.edge-cache" : { - "category" : "option", - "component" : [ - "dbserver", - "single" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "use in-memory cache for edges", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.6.4" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "rocksdb", - "type" : "boolean" - }, - "rocksdb.enable-pipelined-write" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "if true, use a two stage write queue for WAL writes and memtable writes", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "rocksdb", - "type" : "boolean" - }, - "rocksdb.enable-statistics" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "whether or not RocksDB statistics should be turned on", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "rocksdb", - "type" : "boolean" - }, - "rocksdb.encryption-gen-internal-key" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "Generate internal encryption-at-rest key.", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : true, - "introducedIn" : [ - "v3.7.1" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "rocksdb", - "type" : "boolean" - }, - "rocksdb.encryption-hardware-acceleration" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "use Intel intrinsics-based encryption, requiring a CPU with the AES-NI instruction set. If turned off, then OpenSSL is used, which may use hardware-accelarated encryption too.", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "rocksdb", - "type" : "boolean" - }, - "rocksdb.encryption-key-generator" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "program providing the encryption key on stdout. If set, encryption will be enabled.", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rocksdb", - "type" : "string" - }, - "rocksdb.encryption-key-rotation" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "allow encryption key rotation", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : true, - "introducedIn" : [ - "v3.7.1" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "rocksdb", - "type" : "boolean" - }, - "rocksdb.encryption-keyfile" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "file containing encryption key. If set, encryption will be enabled.", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rocksdb", - "type" : "string" - }, - "rocksdb.encryption-keyfolder" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "Folder containing all possible user encryption keys. All keys will be used to decrypt the internal keystore.", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : [ - "v3.7.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rocksdb", - "type" : "string" - }, - "rocksdb.enforce-block-cache-size-limit" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "if true, strictly enforces the block cache size limit", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "rocksdb", - "type" : "boolean" - }, - "rocksdb.exclusive-writes" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : [ - "v3.8.0" - ], - "description" : "if true, writes are exclusive. This allows the RocksDB engine to mimic the collection locking behavior of the now-removed MMFiles storage engine, but will inhibit concurrent write operations", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.5.4" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "rocksdb", - "type" : "boolean" - }, - "rocksdb.intermediate-commit-count" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 1000000, - "deprecatedIn" : null, - "description" : "an intermediate commit will be performed automatically when this number of operations is reached in a transaction", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rocksdb", - "type" : "uint64" - }, - "rocksdb.intermediate-commit-size" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 536870912, - "deprecatedIn" : null, - "description" : "an intermediate commit will be performed automatically when a transaction has accumulated operations of this size (in bytes)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rocksdb", - "type" : "uint64" - }, - "rocksdb.level0-compaction-trigger" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 2, - "deprecatedIn" : null, - "description" : "number of level-0 files that triggers a compaction", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rocksdb", - "type" : "int64" - }, - "rocksdb.level0-slowdown-trigger" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 20, - "deprecatedIn" : null, - "description" : "number of level-0 files that triggers a write slowdown", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rocksdb", - "type" : "int64" - }, - "rocksdb.level0-stop-trigger" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 36, - "deprecatedIn" : null, - "description" : "number of level-0 files that triggers a full write stall", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rocksdb", - "type" : "int64" - }, - "rocksdb.limit-open-files-at-startup" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "limit the amount of .sst files RocksDB will inspect at startup, in order to reduce startup IO", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.4.5" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "rocksdb", - "type" : "boolean" - }, - "rocksdb.max-background-jobs" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 8, - "deprecatedIn" : null, - "description" : "Maximum number of concurrent background jobs (compactions and flushes)", - "dynamic" : true, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rocksdb", - "type" : "int32" - }, - "rocksdb.max-bytes-for-level-base" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 268435456, - "deprecatedIn" : null, - "description" : "if not using dynamic level sizes, this controls the maximum total data size for level-1", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rocksdb", - "type" : "uint64" - }, - "rocksdb.max-bytes-for-level-multiplier" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 10, - "deprecatedIn" : null, - "description" : "if not using dynamic level sizes, the maximum number of bytes for level L can be calculated as max-bytes-for-level-base * (max-bytes-for-level-multiplier ^ (L-1))", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rocksdb", - "type" : "double" - }, - "rocksdb.max-parallel-compactions" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 2, - "deprecatedIn" : null, - "description" : "maximum number of parallel compactions jobs", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.7.11" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rocksdb", - "type" : "uint64" - }, - "rocksdb.max-subcompactions" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 1, - "deprecatedIn" : null, - "description" : "maximum number of concurrent subjobs for a background compaction", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rocksdb", - "type" : "uint64" - }, - "rocksdb.max-total-wal-size" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 83886080, - "deprecatedIn" : null, - "description" : "maximum total size of WAL files that will force flush stale column families", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rocksdb", - "type" : "uint64" - }, - "rocksdb.max-transaction-size" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 18446744073709551615, - "deprecatedIn" : null, - "description" : "transaction size limit (in bytes)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rocksdb", - "type" : "uint64" - }, - "rocksdb.max-write-buffer-number" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 9, - "deprecatedIn" : null, - "description" : "maximum number of write buffers that build up in memory (default: number of column families + 2 = 9 write buffers). You can increase the amount only", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rocksdb", - "type" : "uint64" - }, - "rocksdb.max-write-buffer-number-definitions" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 0, - "deprecatedIn" : null, - "description" : "if non-zero, overrides the value of --rocksdb.max-write-buffer-number for the definitions column family", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rocksdb", - "type" : "uint64" - }, - "rocksdb.max-write-buffer-number-documents" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 0, - "deprecatedIn" : null, - "description" : "if non-zero, overrides the value of --rocksdb.max-write-buffer-number for the documents column family", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rocksdb", - "type" : "uint64" - }, - "rocksdb.max-write-buffer-number-edge" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 0, - "deprecatedIn" : null, - "description" : "if non-zero, overrides the value of --rocksdb.max-write-buffer-number for the edge column family", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rocksdb", - "type" : "uint64" - }, - "rocksdb.max-write-buffer-number-fulltext" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 0, - "deprecatedIn" : null, - "description" : "if non-zero, overrides the value of --rocksdb.max-write-buffer-number for the fulltext column family", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rocksdb", - "type" : "uint64" - }, - "rocksdb.max-write-buffer-number-geo" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 0, - "deprecatedIn" : null, - "description" : "if non-zero, overrides the value of --rocksdb.max-write-buffer-number for the geo column family", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rocksdb", - "type" : "uint64" - }, - "rocksdb.max-write-buffer-number-primary" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 0, - "deprecatedIn" : null, - "description" : "if non-zero, overrides the value of --rocksdb.max-write-buffer-number for the primary column family", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rocksdb", - "type" : "uint64" - }, - "rocksdb.max-write-buffer-number-vpack" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 0, - "deprecatedIn" : null, - "description" : "if non-zero, overrides the value of --rocksdb.max-write-buffer-number for the vpack column family", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rocksdb", - "type" : "uint64" - }, - "rocksdb.max-write-buffer-size-to-maintain" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 0, - "deprecatedIn" : null, - "description" : "maximum size of immutable write buffers that build up in memory per column family (larger values mean that more in-memory data can be used for transaction conflict checking (-1 = use automatic default value, 0 = do not keep immutable flushed write buffers, which is the default and usually correct))", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.7.3" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rocksdb", - "type" : "int64" - }, - "rocksdb.min-write-buffer-number-to-merge" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 1, - "deprecatedIn" : null, - "description" : "minimum number of write buffers that will be merged together before writing to storage", - "dynamic" : true, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rocksdb", - "type" : "uint64" - }, - "rocksdb.minimum-disk-free-bytes" : { - "category" : "option", - "component" : [ - "dbserver", - "single" - ], - "default" : 16777216, - "deprecatedIn" : null, - "description" : "minimum number of free disk bytes for considering the server healthy in health checks (set to 0 to disable the check)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rocksdb", - "type" : "uint64" - }, - "rocksdb.minimum-disk-free-percent" : { - "category" : "option", - "component" : [ - "dbserver", - "single" - ], - "default" : 0.01, - "deprecatedIn" : null, - "description" : "minimum percentage of free disk space for considering the server healthy in health checks (set to 0 to disable the check)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rocksdb", - "type" : "double" - }, - "rocksdb.num-levels" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 7, - "deprecatedIn" : null, - "description" : "number of levels for the database", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rocksdb", - "type" : "uint64" - }, - "rocksdb.num-threads-priority-high" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 0, - "deprecatedIn" : null, - "description" : "number of threads for high priority operations (e.g. flush)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rocksdb", - "type" : "uint32" - }, - "rocksdb.num-threads-priority-low" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 0, - "deprecatedIn" : null, - "description" : "number of threads for low priority operations (e.g. compaction)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rocksdb", - "type" : "uint32" - }, - "rocksdb.num-uncompressed-levels" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 2, - "deprecatedIn" : null, - "description" : "number of uncompressed levels for the database", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rocksdb", - "type" : "uint64" - }, - "rocksdb.optimize-filters-for-hits" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "this flag specifies that the implementation should optimize the filters mainly for cases where keys are found rather than also optimize for keys missed. This would be used in cases where the application knows that there are very few misses or the performance in the case of misses is not important", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "rocksdb", - "type" : "boolean" - }, - "rocksdb.pin-l0-filter-and-index-blocks-in-cache" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "if true and `--rocksdb.cache-index-and-filter-blocks` is also true, filter and index blocks are pinned and only evicted from cache when the table reader is freed", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.7.1" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "rocksdb", - "type" : "boolean" - }, - "rocksdb.pin-top-level-index-and-filter" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "If true and `--rocksdb.cache-index-and-filter-blocks` is also true, the top-level index of partitioned filter and index blocks are pinned and only evicted from cache when the table reader is freed", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.7.1" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "rocksdb", - "type" : "boolean" - }, - "rocksdb.recycle-log-file-num" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "if true, keep a pool of log files around for recycling", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "rocksdb", - "type" : "boolean" - }, - "rocksdb.sync-delay-threshold" : { - "category" : "option", - "component" : [ - "dbserver", - "single" - ], - "default" : 5000, - "deprecatedIn" : null, - "description" : "threshold value for self-observation of WAL disk syncs. any WAL disk sync longer ago than this threshold will trigger a warning (in milliseconds, use 0 for no warnings)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.6.8", - "v3.7.5" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rocksdb", - "type" : "uint64" - }, - "rocksdb.sync-interval" : { - "category" : "option", - "component" : [ - "dbserver", - "single" - ], - "default" : 100, - "deprecatedIn" : null, - "description" : "interval for automatic, non-requested disk syncs (in milliseconds, use 0 to turn automatic syncing off)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rocksdb", - "type" : "uint64" - }, - "rocksdb.table-block-size" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 16384, - "deprecatedIn" : null, - "description" : "approximate size (in bytes) of user data packed per block", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rocksdb", - "type" : "uint64" - }, - "rocksdb.target-file-size-base" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 67108864, - "deprecatedIn" : null, - "description" : "per-file target file size for compaction (in bytes). the actual target file size for each level is `--rocksdb.target-file-size-base` multiplied by `--rocksdb.target-file-size-multiplier` ^ (level - 1)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.7.1" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rocksdb", - "type" : "uint64" - }, - "rocksdb.target-file-size-multiplier" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 1, - "deprecatedIn" : null, - "description" : "multiplier for `--rocksdb.target-file-size`, a value of 1 means that files in different levels will have the same size", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.7.1" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rocksdb", - "type" : "uint64" - }, - "rocksdb.throttle" : { - "category" : "option", - "component" : [ - "dbserver", - "single" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "enable write-throttling", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "rocksdb", - "type" : "boolean" - }, - "rocksdb.total-write-buffer-size" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 12884901888, - "deprecatedIn" : null, - "description" : "maximum total size of in-memory write buffers (0 = unbounded)", - "dynamic" : true, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rocksdb", - "type" : "uint64" - }, - "rocksdb.transaction-lock-timeout" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 1000, - "deprecatedIn" : null, - "description" : "If positive, specifies the wait timeout in milliseconds when a transaction attempts to lock a document. A negative value is not recommended as it can lead to deadlocks (0 = no waiting, < 0 no timeout)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rocksdb", - "type" : "int64" - }, - "rocksdb.use-file-logging" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "use a file-base logger for RocksDB's own logs", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "rocksdb", - "type" : "boolean" - }, - "rocksdb.use-fsync" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "issue an fsync when writing to disk (set to true for issuing fdatasync only)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "rocksdb", - "type" : "boolean" - }, - "rocksdb.wal-archive-size-limit" : { - "category" : "option", - "component" : [ - "dbserver", - "single" - ], - "default" : 0, - "deprecatedIn" : null, - "description" : "maximum total size (in bytes) of archived WAL files (0 = unlimited)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rocksdb", - "type" : "uint64" - }, - "rocksdb.wal-directory" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "optional path to the RocksDB WAL directory. If not set, the WAL directory will be located inside the regular data directory", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rocksdb", - "type" : "string" - }, - "rocksdb.wal-file-timeout" : { - "category" : "option", - "component" : [ - "dbserver", - "single" - ], - "default" : 10, - "deprecatedIn" : null, - "description" : "timeout after which unused WAL files are deleted", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rocksdb", - "type" : "double" - }, - "rocksdb.wal-file-timeout-initial" : { - "category" : "option", - "component" : [ - "dbserver", - "single" - ], - "default" : 180, - "deprecatedIn" : null, - "description" : "initial timeout after which unused WAL files deletion kicks in after server start", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rocksdb", - "type" : "double" - }, - "rocksdb.wal-recovery-skip-corrupted" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "skip corrupted records in WAL recovery", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "rocksdb", - "type" : "boolean" - }, - "rocksdb.write-buffer-size" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 67108864, - "deprecatedIn" : null, - "description" : "amount of data to build up in memory before converting to a sorted on-disk file (0 = disabled)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "rocksdb", - "type" : "uint64" - }, - "server.allow-use-database" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "allow change of database in REST actions, only needed for unittests", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "server", - "type" : "boolean" - }, - "server.authentication" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "enable authentication for ALL client requests", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "server", - "type" : "boolean" - }, - "server.authentication-system-only" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "use HTTP authentication only for requests to /_api and /_admin", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "server", - "type" : "boolean" - }, - "server.authentication-timeout" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 0, - "deprecatedIn" : null, - "description" : "timeout for the authentication cache in seconds (0 = indefinitely)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "double" - }, - "server.authentication-unix-sockets" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "authentication for requests via UNIX domain sockets", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos" - ], - "requiresValue" : false, - "section" : "server", - "type" : "boolean" - }, - "server.descriptors-minimum" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 8192, - "deprecatedIn" : null, - "description" : "minimum number of file descriptors needed to start (0 = no minimum)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos" - ], - "requiresValue" : true, - "section" : "server", - "type" : "uint64" - }, - "server.endpoint" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : [ - "tcp://0.0.0.0:8529" - ], - "deprecatedIn" : null, - "description" : "endpoint for client requests (e.g. 'http+tcp://127.0.0.1:8529', or 'vst+ssl://192.168.1.1:8529')", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "string..." - }, - "server.export-metrics-api" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "turn metrics API on or off", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.6.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "server", - "type" : "boolean" - }, - "server.export-read-write-metrics" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "turn metrics for document read/write metrics on or off", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.7.7" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "server", - "type" : "boolean" - }, - "server.flush-interval" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 1000000, - "deprecatedIn" : null, - "description" : "interval (in microseconds) for flushing data", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "uint64" - }, - "server.gid" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "switch to group-id after reading config files", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "string" - }, - "server.harden" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "lock down REST APIs that reveal version information or server internals for non-admin users", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "server", - "type" : "boolean" - }, - "server.io-threads" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 4, - "deprecatedIn" : null, - "description" : "Number of threads used to handle IO", - "dynamic" : true, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "uint64" - }, - "server.jwt-secret" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : [ - "v3.3.22", - "v3.4.2" - ], - "description" : "secret to use when doing jwt authentication", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "string" - }, - "server.jwt-secret-folder" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "folder containing one or more jwt secret files to use for jwt authentication. Files are sorted alphabetically: First secret is used for signing + verifying JWT tokens. The latter secrets are only used for verifying.", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : [ - "v3.7.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "string" - }, - "server.jwt-secret-keyfile" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "file containing jwt secret to use when doing jwt authentication.", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "string" - }, - "server.local-authentication" : { - "category" : "option", - "component" : [ - "coordinator", - "single" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "enable authentication using the local user database", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "server", - "type" : "boolean" - }, - "server.maintenance-actions-block" : { - "category" : "option", - "component" : [ - "dbserver" - ], - "default" : 2, - "deprecatedIn" : null, - "description" : "minimum number of seconds finished Actions block duplicates", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "int32" - }, - "server.maintenance-actions-linger" : { - "category" : "option", - "component" : [ - "dbserver" - ], - "default" : 3600, - "deprecatedIn" : null, - "description" : "minimum number of seconds finished Actions remain in deque", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "int32" - }, - "server.maintenance-threads" : { - "category" : "option", - "component" : [ - "dbserver" - ], - "default" : 5, - "deprecatedIn" : null, - "description" : "maximum number of threads available for maintenance actions", - "dynamic" : true, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "uint32" - }, - "server.maximal-queue-size" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 4096, - "deprecatedIn" : null, - "description" : "size of the priority 3 fifo", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "uint64" - }, - "server.maximal-threads" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 0, - "deprecatedIn" : null, - "description" : "maximum number of request handling threads to run (0 = use system-specific default of 32)", - "dynamic" : true, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "uint64" - }, - "server.minimal-threads" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 4, - "deprecatedIn" : null, - "description" : "minimum number of request handling threads to run", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "uint64" - }, - "server.ongoing-low-priority-multiplier" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 4, - "deprecatedIn" : null, - "description" : "controls the number of low prio requests that can be ongoing at a given point in time, relative to the maximum number of request handling threads", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "double" - }, - "server.prio1-size" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 4096, - "deprecatedIn" : null, - "description" : "size of the priority 1 fifo", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "uint64" - }, - "server.prio2-size" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 4096, - "deprecatedIn" : null, - "description" : "size of the priority 2 fifo", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "uint64" - }, - "server.rest-server" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "start a rest-server", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "server", - "type" : "boolean" - }, - "server.scheduler-queue-size" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 4096, - "deprecatedIn" : null, - "description" : "number of simultaneously queued requests inside the scheduler", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "uint64" - }, - "server.session-timeout" : { - "category" : "option", - "component" : [ - "coordinator", - "single" - ], - "default" : 3600, - "deprecatedIn" : null, - "description" : "timeout in seconds for web interface JWT sessions", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.9.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "double" - }, - "server.statistics" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "turn statistics gathering on or off", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "server", - "type" : "boolean" - }, - "server.statistics-all-databases" : { - "category" : "option", - "component" : [ - "coordinator" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "provide cluster statistics in web interface in all databases", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "server", - "type" : "boolean" - }, - "server.statistics-history" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "turn storing statistics in database on or off", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.4.9", - "v3.5.1" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "server", - "type" : "boolean" - }, - "server.storage-engine" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "auto", - "deprecatedIn" : null, - "description" : "storage engine type (note that the mmfiles engine is unavailable since v3.7.0 and cannot be used anymore)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "string", - "values" : "Possible values: \"auto\", \"rocksdb\"" - }, - "server.uid" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "switch to user-id after reading config files", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "string" - }, - "server.unavailability-queue-fill-grade" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 0.75, - "deprecatedIn" : null, - "description" : "queue fill grade from which onwards the server is considered unavailable because of overload (ratio, use a value of 0 to disable it)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.6.10", - "v3.7.6" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "double" - }, - "server.validate-utf8-strings" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "perform UTF-8 string validation for incoming JSON and VelocyPack data", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.7.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "server", - "type" : "boolean" - }, - "ssl.cafile" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "ca file used for secure connections", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ssl", - "type" : "string" - }, - "ssl.cipher-list" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "HIGH:!EXPORT:!aNULL@STRENGTH", - "deprecatedIn" : null, - "description" : "ssl ciphers to use, see OpenSSL documentation", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ssl", - "type" : "string" - }, - "ssl.ecdh-curve" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "prime256v1", - "deprecatedIn" : null, - "description" : "SSL ECDH Curve, see the output of \"openssl ecparam -list_curves\"", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ssl", - "type" : "string" - }, - "ssl.keyfile" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "key-file used for secure connections", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ssl", - "type" : "string" - }, - "ssl.options" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 2147485780, - "deprecatedIn" : null, - "description" : "ssl connection options, see OpenSSL documentation", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ssl", - "type" : "uint64" - }, - "ssl.prefer-http1-in-alpn" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "Allows to let the server prefer HTTP/1.1 over HTTP/2 in ALPN protocol negotiations", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "ssl", - "type" : "boolean" - }, - "ssl.protocol" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 9, - "deprecatedIn" : null, - "description" : "ssl protocol (1 = SSLv2 (unsupported), 2 = SSLv2 or SSLv3 (negotiated), 3 = SSLv3, 4 = TLSv1, 5 = TLSv1.2, 6 = TLSv1.3, 9 = generic TLS)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ssl", - "type" : "uint64", - "values" : "Possible values: 1, 2, 3, 4, 5, 6, 9" - }, - "ssl.require-peer-certificate" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "require a peer certificate when connecting", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "ssl", - "type" : "boolean" - }, - "ssl.server-name-indication" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : [ - ], - "deprecatedIn" : null, - "description" : "add a case SERVERNAME=KEYFILENAME for a different server keyfile for a specific server name, can be given multiple times", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ssl", - "type" : "string..." - }, - "ssl.session-cache" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "enable the session cache for connections", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "ssl", - "type" : "boolean" - }, - "supervisor" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : false, - "deprecatedIn" : null, - "description" : "background the server, starts a supervisor", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "tcp.backlog-size" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 64, - "deprecatedIn" : null, - "description" : "listen backlog size", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "tcp", - "type" : "uint64" - }, - "tcp.reuse-address" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : true, - "deprecatedIn" : null, - "description" : "try to reuse TCP port(s)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "tcp", - "type" : "boolean" - }, - "temp.path" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "path for temporary files", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "temp", - "type" : "string" - }, - "transaction.streaming-idle-timeout" : { - "category" : "option", - "component" : [ - "coordinator", - "single" - ], - "default" : 60, - "deprecatedIn" : null, - "description" : "idle timeout for streaming transactions in seconds", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "transaction", - "type" : "double" - }, - "transaction.streaming-lock-timeout" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 8, - "deprecatedIn" : null, - "description" : "lock timeout in seconds in case of parallel access to the same streaming transaction", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.6.5", - "v3.7.1" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "transaction", - "type" : "double" - }, - "ttl.frequency" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 30000, - "deprecatedIn" : null, - "description" : "frequency (in milliseconds) for the TTL background thread invocation. a value of 0 turns the TTL background thread off entirely", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ttl", - "type" : "uint64" - }, - "ttl.max-collection-removes" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 1000000, - "deprecatedIn" : null, - "description" : "maximum number of documents to remove per collection", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ttl", - "type" : "uint64" - }, - "ttl.max-total-removes" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : 1000000, - "deprecatedIn" : null, - "description" : "maximum number of documents to remove per invocation of the TTL thread", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ttl", - "type" : "uint64" - }, - "uid" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "", - "deprecatedIn" : null, - "description" : "switch to user-id after reading config files", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "version" : { - "category" : "command", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "deprecatedIn" : null, - "description" : "reports the version and exits", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "version-json" : { - "category" : "command", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "deprecatedIn" : null, - "description" : "reports the version as JSON and exits", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.9.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "working-directory" : { - "category" : "option", - "component" : [ - "coordinator", - "dbserver", - "agent", - "single" - ], - "default" : "/var/tmp", - "deprecatedIn" : null, - "description" : "working directory in daemon mode", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - } -} diff --git a/3.9/generated/Examples/arangodump.json b/3.9/generated/Examples/arangodump.json deleted file mode 100644 index e6eed77274..0000000000 --- a/3.9/generated/Examples/arangodump.json +++ /dev/null @@ -1,1322 +0,0 @@ -{ - "all-databases" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "dump data of all databases", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "batch-size" : { - "category" : "option", - "default" : 67108864, - "deprecatedIn" : null, - "description" : "maximum size for individual data batches (in bytes)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "uint64" - }, - "check-configuration" : { - "category" : "command", - "deprecatedIn" : null, - "description" : "check the configuration and exit", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "collection" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "restrict to collection name (can be specified multiple times)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string..." - }, - "compress-output" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "compress files containing collection contents using gzip format (not compatible with encryption)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.4.6" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "config" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "the configuration file or 'none'", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "configuration" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "the configuration file or 'none'", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "define" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "define key=value for a @key@ entry in config file", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string..." - }, - "dump-data" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "dump collection data", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "dump-dependencies" : { - "category" : "command", - "deprecatedIn" : null, - "description" : "dump dependency graph", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "dump-options" : { - "category" : "command", - "deprecatedIn" : null, - "description" : "dump configuration options in JSON format", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "encryption.key-generator" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "program providing the encryption key on stdout. If set, encryption will be enabled.", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "encryption", - "type" : "string" - }, - "encryption.keyfile" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "file containing the encryption key. If set, encryption will be enabled.", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "encryption", - "type" : "string" - }, - "envelope" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "wrap each document into a {type, data} envelope (this is required from compatibility with v3.7 and before)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "force" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "continue dumping even in the face of some server-side errors", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "ignore-distribute-shards-like-errors" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "continue dump even if sharding prototype collection is not backed up along", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "include-system-collections" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "include system collections", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "initial-batch-size" : { - "category" : "option", - "default" : 8388608, - "deprecatedIn" : null, - "description" : "initial size for individual data batches (in bytes)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "uint64" - }, - "log" : { - "category" : "option", - "default" : [ - "info" - ], - "deprecatedIn" : [ - "v3.5.0" - ], - "description" : "the global or topic-specific log level", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string..." - }, - "log.color" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "use colors for TTY logging", - "dynamic" : true, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.escape" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "escape characters when logging", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.file" : { - "category" : "option", - "default" : "-", - "deprecatedIn" : null, - "description" : "shortcut for '--log.output file://'", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.file-group" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "group to use for new log file, user must be a member of this group", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.4.5" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.file-mode" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "mode to use for new log file, umask will be applied as well", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.4.5" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.force-direct" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "do not start a seperate thread for logging", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.foreground-tty" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "also log to tty if backgrounded", - "dynamic" : true, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.hostname" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "hostname to use in log message (empty for none, use 'auto' to automatically figure out hostname)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.ids" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "log unique message ids", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.level" : { - "category" : "option", - "default" : [ - "info" - ], - "deprecatedIn" : null, - "description" : "the global or topic-specific log level", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string..." - }, - "log.line-number" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "include the function name, file name and line number of the source code that issues the log message. Format: `[func@FileName.cpp:123]`", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.max-entry-length" : { - "category" : "option", - "default" : 134217728, - "deprecatedIn" : null, - "description" : "maximum length of a log entry (in bytes)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.7.9" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "uint32" - }, - "log.output" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "log destination(s), e.g. file:///path/to/file (any '$PID' will be replaced with the process id)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string..." - }, - "log.performance" : { - "category" : "option", - "default" : false, - "deprecatedIn" : [ - "v3.5.0" - ], - "description" : "shortcut for '--log.level performance=trace'", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.prefix" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "prefix log message with this string", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.process" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "show process identifier (pid) in log message", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.request-parameters" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "include full URLs and HTTP request parameters in trace logs", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.role" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "log server role", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.shorten-filenames" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "shorten filenames in log output (use with --log.line-number)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.thread" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "show thread identifier in log message", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.thread-name" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "show thread name in log message", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.time-format" : { - "category" : "option", - "default" : "utc-datestring", - "deprecatedIn" : null, - "description" : "time format to use in logs", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string", - "values" : "Possible values: \"local-datestring\", \"timestamp\", \"timestamp-micros\", \"timestamp-millis\", \"uptime\", \"uptime-micros\", \"uptime-millis\", \"utc-datestring\", \"utc-datestring-millis\"" - }, - "log.use-json-format" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "use json output format", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.use-local-time" : { - "category" : "option", - "default" : false, - "deprecatedIn" : [ - "v3.5.0" - ], - "description" : "use local timezone instead of UTC", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.use-microtime" : { - "category" : "option", - "default" : false, - "deprecatedIn" : [ - "v3.5.0" - ], - "description" : "use microtime instead", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "maskings" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "file with maskings definition", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.3.22", - "v3.4.2" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "output-directory" : { - "category" : "option", - "default" : "/Users/hkernbach/Git/ArangoDB/devel-2/dump", - "deprecatedIn" : null, - "description" : "output directory", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "overwrite" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "overwrite data in output directory", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "progress" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "show progress", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "random.generator" : { - "category" : "option", - "default" : 1, - "deprecatedIn" : null, - "description" : "random number generator to use (1 = MERSENNE, 2 = RANDOM, 3 = URANDOM, 4 = COMBINED (not for Windows), 5 = WinCrypt (Windows only)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "random", - "type" : "uint32", - "values" : "Possible values: 1, 2, 3, 4" - }, - "server.ask-jwt-secret" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "if this option is specified, the user will be prompted for a JWT secret. This option is not compatible with --server.username or --server.password. If specified, it will be used for all connections - even when a new connection to another server is created", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "server", - "type" : "boolean" - }, - "server.authentication" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "require authentication credentials when connecting (does not affect the server-side authentication settings)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "server", - "type" : "boolean" - }, - "server.connection-timeout" : { - "category" : "option", - "default" : 5, - "deprecatedIn" : null, - "description" : "connection timeout in seconds", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "double" - }, - "server.database" : { - "category" : "option", - "default" : "_system", - "deprecatedIn" : null, - "description" : "database name to use when connecting", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "string" - }, - "server.endpoint" : { - "category" : "option", - "default" : "http+tcp://127.0.0.1:8529", - "deprecatedIn" : null, - "description" : "endpoint to connect to. Use 'none' to start without a server. Use http+ssl:// or vst+ssl:// as schema to connect to an SSL-secured server endpoint, otherwise http+tcp://, vst+tcp:// or unix://", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "string" - }, - "server.force-json" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "force to not use VelocyPack for easier debugging", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.6.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "server", - "type" : "boolean" - }, - "server.jwt-secret-keyfile" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "if this option is specified, the jwt secret will be loaded from the given file. This option is not compatible with --server.ask-jwt-secret, --server.username or --server.password. If specified, it will be used for all connections - even when a new connection to another server is created", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "string" - }, - "server.max-packet-size" : { - "category" : "option", - "default" : 1073741824, - "deprecatedIn" : null, - "description" : "maximum packet size (in bytes) for client/server communication", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "uint64" - }, - "server.password" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "password to use when connecting. If not specified and authentication is required, the user will be prompted for a password", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "string" - }, - "server.request-timeout" : { - "category" : "option", - "default" : 1200, - "deprecatedIn" : null, - "description" : "request timeout in seconds", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "double" - }, - "server.username" : { - "category" : "option", - "default" : "root", - "deprecatedIn" : null, - "description" : "username to use when connecting", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "string" - }, - "shard" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "restrict dump to shard (can be specified multiple times)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string..." - }, - "ssl.protocol" : { - "category" : "option", - "default" : 5, - "deprecatedIn" : null, - "description" : "ssl protocol (1 = SSLv2 (unsupported), 2 = SSLv2 or SSLv3 (negotiated), 3 = SSLv3, 4 = TLSv1, 5 = TLSv1.2, 6 = TLSv1.3, 9 = generic TLS)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ssl", - "type" : "uint64", - "values" : "Possible values: 1, 2, 3, 4, 5, 6, 9" - }, - "threads" : { - "category" : "option", - "default" : 2, - "deprecatedIn" : null, - "description" : "maximum number of collections/shards to process in parallel", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.4.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "uint32" - }, - "tick-end" : { - "category" : "option", - "default" : 0, - "deprecatedIn" : null, - "description" : "last tick to be included in data dump", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "uint64" - }, - "tick-start" : { - "category" : "option", - "default" : 0, - "deprecatedIn" : null, - "description" : "only include data after this tick", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "uint64" - }, - "version" : { - "category" : "command", - "deprecatedIn" : null, - "description" : "reports the version and exits", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "version-json" : { - "category" : "command", - "deprecatedIn" : null, - "description" : "reports the version as JSON and exits", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.9.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - } -} diff --git a/3.9/generated/Examples/arangoexport.json b/3.9/generated/Examples/arangoexport.json deleted file mode 100644 index 35921b7fcc..0000000000 --- a/3.9/generated/Examples/arangoexport.json +++ /dev/null @@ -1,1202 +0,0 @@ -{ - "check-configuration" : { - "category" : "command", - "deprecatedIn" : null, - "description" : "check the configuration and exit", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "collection" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "restrict to collection name (can be specified multiple times)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string..." - }, - "compress-output" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "compress files containing collection contents using gzip format", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.4.8", - "v3.5.1" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "config" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "the configuration file or 'none'", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "configuration" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "the configuration file or 'none'", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "define" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "define key=value for a @key@ entry in config file", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string..." - }, - "documents-per-batch" : { - "category" : "option", - "default" : 1000, - "deprecatedIn" : null, - "description" : "number of documents to return in each batch", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "uint64" - }, - "dump-dependencies" : { - "category" : "command", - "deprecatedIn" : null, - "description" : "dump dependency graph", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "dump-options" : { - "category" : "command", - "deprecatedIn" : null, - "description" : "dump configuration options in JSON format", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "encryption.key-generator" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "program providing the encryption key on stdout. If set, encryption will be enabled.", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "encryption", - "type" : "string" - }, - "encryption.keyfile" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "file containing the encryption key. If set, encryption will be enabled.", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "encryption", - "type" : "string" - }, - "fields" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "comma separated list of fields to export into a csv file", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "graph-name" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "name of a graph to export", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "log" : { - "category" : "option", - "default" : [ - "info" - ], - "deprecatedIn" : [ - "v3.5.0" - ], - "description" : "the global or topic-specific log level", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string..." - }, - "log.color" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "use colors for TTY logging", - "dynamic" : true, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.escape" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "escape characters when logging", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.file" : { - "category" : "option", - "default" : "-", - "deprecatedIn" : null, - "description" : "shortcut for '--log.output file://'", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.file-group" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "group to use for new log file, user must be a member of this group", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.4.5" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.file-mode" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "mode to use for new log file, umask will be applied as well", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.4.5" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.force-direct" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "do not start a seperate thread for logging", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.foreground-tty" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "also log to tty if backgrounded", - "dynamic" : true, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.hostname" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "hostname to use in log message (empty for none, use 'auto' to automatically figure out hostname)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.ids" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "log unique message ids", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.level" : { - "category" : "option", - "default" : [ - "info" - ], - "deprecatedIn" : null, - "description" : "the global or topic-specific log level", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string..." - }, - "log.line-number" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "include the function name, file name and line number of the source code that issues the log message. Format: `[func@FileName.cpp:123]`", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.max-entry-length" : { - "category" : "option", - "default" : 134217728, - "deprecatedIn" : null, - "description" : "maximum length of a log entry (in bytes)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.7.9" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "uint32" - }, - "log.output" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "log destination(s), e.g. file:///path/to/file (any '$PID' will be replaced with the process id)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string..." - }, - "log.performance" : { - "category" : "option", - "default" : false, - "deprecatedIn" : [ - "v3.5.0" - ], - "description" : "shortcut for '--log.level performance=trace'", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.prefix" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "prefix log message with this string", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.process" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "show process identifier (pid) in log message", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.request-parameters" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "include full URLs and HTTP request parameters in trace logs", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.role" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "log server role", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.shorten-filenames" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "shorten filenames in log output (use with --log.line-number)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.thread" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "show thread identifier in log message", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.thread-name" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "show thread name in log message", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.time-format" : { - "category" : "option", - "default" : "utc-datestring", - "deprecatedIn" : null, - "description" : "time format to use in logs", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string", - "values" : "Possible values: \"local-datestring\", \"timestamp\", \"timestamp-micros\", \"timestamp-millis\", \"uptime\", \"uptime-micros\", \"uptime-millis\", \"utc-datestring\", \"utc-datestring-millis\"" - }, - "log.use-json-format" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "use json output format", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.use-local-time" : { - "category" : "option", - "default" : false, - "deprecatedIn" : [ - "v3.5.0" - ], - "description" : "use local timezone instead of UTC", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.use-microtime" : { - "category" : "option", - "default" : false, - "deprecatedIn" : [ - "v3.5.0" - ], - "description" : "use microtime instead", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "output-directory" : { - "category" : "option", - "default" : "/Users/hkernbach/Git/ArangoDB/devel-2/export", - "deprecatedIn" : null, - "description" : "output directory", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "overwrite" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "overwrite data in output directory", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "progress" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "show progress", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "query" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "AQL query to run", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "query-max-runtime" : { - "category" : "option", - "default" : 0, - "deprecatedIn" : null, - "description" : "runtime threshold for AQL queries (in seconds, 0 = no limit)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "double" - }, - "random.generator" : { - "category" : "option", - "default" : 1, - "deprecatedIn" : null, - "description" : "random number generator to use (1 = MERSENNE, 2 = RANDOM, 3 = URANDOM, 4 = COMBINED (not for Windows), 5 = WinCrypt (Windows only)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "random", - "type" : "uint32", - "values" : "Possible values: 1, 2, 3, 4" - }, - "server.authentication" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "require authentication credentials when connecting (does not affect the server-side authentication settings)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "server", - "type" : "boolean" - }, - "server.connection-timeout" : { - "category" : "option", - "default" : 5, - "deprecatedIn" : null, - "description" : "connection timeout in seconds", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "double" - }, - "server.database" : { - "category" : "option", - "default" : "_system", - "deprecatedIn" : null, - "description" : "database name to use when connecting", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "string" - }, - "server.endpoint" : { - "category" : "option", - "default" : "http+tcp://127.0.0.1:8529", - "deprecatedIn" : null, - "description" : "endpoint to connect to. Use 'none' to start without a server. Use http+ssl:// or vst+ssl:// as schema to connect to an SSL-secured server endpoint, otherwise http+tcp://, vst+tcp:// or unix://", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "string" - }, - "server.force-json" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "force to not use VelocyPack for easier debugging", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.6.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "server", - "type" : "boolean" - }, - "server.max-packet-size" : { - "category" : "option", - "default" : 1073741824, - "deprecatedIn" : null, - "description" : "maximum packet size (in bytes) for client/server communication", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "uint64" - }, - "server.password" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "password to use when connecting. If not specified and authentication is required, the user will be prompted for a password", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "string" - }, - "server.request-timeout" : { - "category" : "option", - "default" : 1200, - "deprecatedIn" : null, - "description" : "request timeout in seconds", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "double" - }, - "server.username" : { - "category" : "option", - "default" : "root", - "deprecatedIn" : null, - "description" : "username to use when connecting", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "string" - }, - "ssl.protocol" : { - "category" : "option", - "default" : 5, - "deprecatedIn" : null, - "description" : "ssl protocol (1 = SSLv2 (unsupported), 2 = SSLv2 or SSLv3 (negotiated), 3 = SSLv3, 4 = TLSv1, 5 = TLSv1.2, 6 = TLSv1.3, 9 = generic TLS)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ssl", - "type" : "uint64", - "values" : "Possible values: 1, 2, 3, 4, 5, 6, 9" - }, - "temp.path" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "path for temporary files", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "temp", - "type" : "string" - }, - "type" : { - "category" : "option", - "default" : "json", - "deprecatedIn" : null, - "description" : "type of export", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string", - "values" : "Possible values: \"csv\", \"json\", \"jsonl\", \"xgmml\", \"xml\"" - }, - "version" : { - "category" : "command", - "deprecatedIn" : null, - "description" : "reports the version and exits", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "version-json" : { - "category" : "command", - "deprecatedIn" : null, - "description" : "reports the version as JSON and exits", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.9.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "xgmml-label-attribute" : { - "category" : "option", - "default" : "label", - "deprecatedIn" : null, - "description" : "specify document attribute that will be the xgmml label", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "xgmml-label-only" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "export only xgmml label", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - } -} diff --git a/3.9/generated/Examples/arangoimport.json b/3.9/generated/Examples/arangoimport.json deleted file mode 100644 index 2e30c78bd0..0000000000 --- a/3.9/generated/Examples/arangoimport.json +++ /dev/null @@ -1,1432 +0,0 @@ -{ - "auto-rate-limit" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "adjust the data loading rate automatically, starting at --batch-size bytes per thread per second", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.7.11" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "backslash-escape" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "use backslash as the escape character for quotes, used for csv", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "batch-size" : { - "category" : "option", - "default" : 8388608, - "deprecatedIn" : null, - "description" : "size for individual data batches (in bytes)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "uint64" - }, - "check-configuration" : { - "category" : "command", - "deprecatedIn" : null, - "description" : "check the configuration and exit", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "collection" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "collection name", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "config" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "the configuration file or 'none'", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "configuration" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "the configuration file or 'none'", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "convert" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "convert the strings 'null', 'false', 'true' and strings containing numbers into non-string types (csv and tsv only)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "create-collection" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "create collection if it does not yet exist", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "create-collection-type" : { - "category" : "option", - "default" : "document", - "deprecatedIn" : null, - "description" : "type of collection if collection is created (edge or document)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string", - "values" : "Possible values: \"document\", \"edge\"" - }, - "create-database" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "create the target database if it does not exist", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "define" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "define key=value for a @key@ entry in config file", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string..." - }, - "dump-dependencies" : { - "category" : "command", - "deprecatedIn" : null, - "description" : "dump dependency graph", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "dump-options" : { - "category" : "command", - "deprecatedIn" : null, - "description" : "dump configuration options in JSON format", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "encryption.key-generator" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "program providing the encryption key on stdout. If set, encryption will be enabled.", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "encryption", - "type" : "string" - }, - "encryption.keyfile" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "file containing the encryption key. If set, encryption will be enabled.", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "encryption", - "type" : "string" - }, - "file" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "file name (\"-\" for STDIN)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "from-collection-prefix" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "_from collection name prefix (will be prepended to all values in '_from')", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "headers-file" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "filename to read CSV or TSV headers from. if specified will not try to read headers from regular input file", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "ignore-missing" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "ignore missing columns in csv input", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "latency" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "show 10 second latency statistics (values in microseconds)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "log" : { - "category" : "option", - "default" : [ - "info" - ], - "deprecatedIn" : [ - "v3.5.0" - ], - "description" : "the global or topic-specific log level", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string..." - }, - "log.color" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "use colors for TTY logging", - "dynamic" : true, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.escape" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "escape characters when logging", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.file" : { - "category" : "option", - "default" : "-", - "deprecatedIn" : null, - "description" : "shortcut for '--log.output file://'", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.file-group" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "group to use for new log file, user must be a member of this group", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.4.5" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.file-mode" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "mode to use for new log file, umask will be applied as well", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.4.5" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.force-direct" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "do not start a seperate thread for logging", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.foreground-tty" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "also log to tty if backgrounded", - "dynamic" : true, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.hostname" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "hostname to use in log message (empty for none, use 'auto' to automatically figure out hostname)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.ids" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "log unique message ids", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.level" : { - "category" : "option", - "default" : [ - "info" - ], - "deprecatedIn" : null, - "description" : "the global or topic-specific log level", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string..." - }, - "log.line-number" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "include the function name, file name and line number of the source code that issues the log message. Format: `[func@FileName.cpp:123]`", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.max-entry-length" : { - "category" : "option", - "default" : 134217728, - "deprecatedIn" : null, - "description" : "maximum length of a log entry (in bytes)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.7.9" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "uint32" - }, - "log.output" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "log destination(s), e.g. file:///path/to/file (any '$PID' will be replaced with the process id)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string..." - }, - "log.performance" : { - "category" : "option", - "default" : false, - "deprecatedIn" : [ - "v3.5.0" - ], - "description" : "shortcut for '--log.level performance=trace'", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.prefix" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "prefix log message with this string", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.process" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "show process identifier (pid) in log message", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.request-parameters" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "include full URLs and HTTP request parameters in trace logs", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.role" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "log server role", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.shorten-filenames" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "shorten filenames in log output (use with --log.line-number)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.thread" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "show thread identifier in log message", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.thread-name" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "show thread name in log message", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.time-format" : { - "category" : "option", - "default" : "utc-datestring", - "deprecatedIn" : null, - "description" : "time format to use in logs", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string", - "values" : "Possible values: \"local-datestring\", \"timestamp\", \"timestamp-micros\", \"timestamp-millis\", \"uptime\", \"uptime-micros\", \"uptime-millis\", \"utc-datestring\", \"utc-datestring-millis\"" - }, - "log.use-json-format" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "use json output format", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.use-local-time" : { - "category" : "option", - "default" : false, - "deprecatedIn" : [ - "v3.5.0" - ], - "description" : "use local timezone instead of UTC", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.use-microtime" : { - "category" : "option", - "default" : false, - "deprecatedIn" : [ - "v3.5.0" - ], - "description" : "use microtime instead", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "on-duplicate" : { - "category" : "option", - "default" : "error", - "deprecatedIn" : null, - "description" : "action to perform when a unique key constraint violation occurs. Possible values: update, ignore, replace, error", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string", - "values" : "Possible values: \"error\", \"ignore\", \"replace\", \"update\"" - }, - "overwrite" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "overwrite collection if it exist (WARNING: this will remove any data from the collection)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "progress" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "show progress", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "quote" : { - "category" : "option", - "default" : "\"", - "deprecatedIn" : null, - "description" : "quote character(s), used for csv", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "random.generator" : { - "category" : "option", - "default" : 1, - "deprecatedIn" : null, - "description" : "random number generator to use (1 = MERSENNE, 2 = RANDOM, 3 = URANDOM, 4 = COMBINED (not for Windows), 5 = WinCrypt (Windows only)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "random", - "type" : "uint32", - "values" : "Possible values: 1, 2, 3, 4" - }, - "remove-attribute" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "remove an attribute before inserting an attribute into a collection (for csv and tsv only)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string..." - }, - "separator" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "field separator, used for csv and tsv. Defaults to a comma (csv) or a tabulation character (tsv)", - "dynamic" : true, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "server.authentication" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "require authentication credentials when connecting (does not affect the server-side authentication settings)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "server", - "type" : "boolean" - }, - "server.connection-timeout" : { - "category" : "option", - "default" : 5, - "deprecatedIn" : null, - "description" : "connection timeout in seconds", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "double" - }, - "server.database" : { - "category" : "option", - "default" : "_system", - "deprecatedIn" : null, - "description" : "database name to use when connecting", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "string" - }, - "server.endpoint" : { - "category" : "option", - "default" : "http+tcp://127.0.0.1:8529", - "deprecatedIn" : null, - "description" : "endpoint to connect to. Use 'none' to start without a server. Use http+ssl:// or vst+ssl:// as schema to connect to an SSL-secured server endpoint, otherwise http+tcp://, vst+tcp:// or unix://", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "string" - }, - "server.force-json" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "force to not use VelocyPack for easier debugging", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.6.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "server", - "type" : "boolean" - }, - "server.max-packet-size" : { - "category" : "option", - "default" : 1073741824, - "deprecatedIn" : null, - "description" : "maximum packet size (in bytes) for client/server communication", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "uint64" - }, - "server.password" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "password to use when connecting. If not specified and authentication is required, the user will be prompted for a password", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "string" - }, - "server.request-timeout" : { - "category" : "option", - "default" : 1200, - "deprecatedIn" : null, - "description" : "request timeout in seconds", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "double" - }, - "server.username" : { - "category" : "option", - "default" : "root", - "deprecatedIn" : null, - "description" : "username to use when connecting", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "string" - }, - "skip-lines" : { - "category" : "option", - "default" : 0, - "deprecatedIn" : null, - "description" : "number of lines to skip for formats (csv and tsv only)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "uint64" - }, - "skip-validation" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "skips document validation during import", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.7.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "ssl.protocol" : { - "category" : "option", - "default" : 5, - "deprecatedIn" : null, - "description" : "ssl protocol (1 = SSLv2 (unsupported), 2 = SSLv2 or SSLv3 (negotiated), 3 = SSLv3, 4 = TLSv1, 5 = TLSv1.2, 6 = TLSv1.3, 9 = generic TLS)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ssl", - "type" : "uint64", - "values" : "Possible values: 1, 2, 3, 4, 5, 6, 9" - }, - "temp.path" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "path for temporary files", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "temp", - "type" : "string" - }, - "threads" : { - "category" : "option", - "default" : 2, - "deprecatedIn" : null, - "description" : "Number of parallel import threads", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "uint32" - }, - "to-collection-prefix" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "_to collection name prefix (will be prepended to all values in '_to')", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "translate" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "translate an attribute name (use as --translate \"from=to\", for csv and tsv only)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string..." - }, - "type" : { - "category" : "option", - "default" : "json", - "deprecatedIn" : null, - "description" : "type of import file", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string", - "values" : "Possible values: \"auto\", \"csv\", \"json\", \"jsonl\", \"tsv\"" - }, - "version" : { - "category" : "command", - "deprecatedIn" : null, - "description" : "reports the version and exits", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "version-json" : { - "category" : "command", - "deprecatedIn" : null, - "description" : "reports the version as JSON and exits", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.9.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - } -} diff --git a/3.9/generated/Examples/arangoinspect.json b/3.9/generated/Examples/arangoinspect.json deleted file mode 100644 index 0cc5aa2917..0000000000 --- a/3.9/generated/Examples/arangoinspect.json +++ /dev/null @@ -1,1745 +0,0 @@ -{ - "check-configuration" : { - "category" : "command", - "deprecatedIn" : null, - "description" : "check the configuration and exit", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "config" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "the configuration file or 'none'", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "configuration" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "the configuration file or 'none'", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "console.audit-file" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "audit log file to save commands and results", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "console", - "type" : "string" - }, - "console.auto-complete" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "enable auto completion", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "console", - "type" : "boolean" - }, - "console.colors" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "enable color support", - "dynamic" : true, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "console", - "type" : "boolean" - }, - "console.history" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "whether or not to load and persist command-line history", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.4.5" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "console", - "type" : "boolean" - }, - "console.pager" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "enable paging", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "console", - "type" : "boolean" - }, - "console.pager-command" : { - "category" : "option", - "default" : "less -X -R -F -L", - "deprecatedIn" : null, - "description" : "pager command", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "console", - "type" : "string" - }, - "console.pretty-print" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "enable pretty printing", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "console", - "type" : "boolean" - }, - "console.prompt" : { - "category" : "option", - "default" : "%E@%d> ", - "deprecatedIn" : null, - "description" : "prompt used in REPL. prompt components are: '%t': current time as timestamp, '%p': duration of last command in seconds, '%d': name of current database, '%e': current endpoint, '%E': current endpoint without protocol, '%u': current user", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "console", - "type" : "string" - }, - "default-language" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "ISO-639 language code", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "default-language-check" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "check if default language matches stored language", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "define" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "define key=value for a @key@ entry in config file", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string..." - }, - "dump-dependencies" : { - "category" : "command", - "deprecatedIn" : null, - "description" : "dump dependency graph", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "dump-options" : { - "category" : "command", - "deprecatedIn" : null, - "description" : "dump configuration options in JSON format", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "encryption.key-generator" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "program providing the encryption key on stdout. If set, encryption will be enabled.", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "encryption", - "type" : "string" - }, - "encryption.keyfile" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "file containing the encryption key. If set, encryption will be enabled.", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "encryption", - "type" : "string" - }, - "javascript.allow-external-process-control" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "allow execution and control of external processes from within JavaScript actions", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "javascript", - "type" : "boolean" - }, - "javascript.allow-port-testing" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "allow testing of ports from within JavaScript actions", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "javascript", - "type" : "boolean" - }, - "javascript.check-syntax" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "syntax check code JavaScript code from file", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string..." - }, - "javascript.client-module" : { - "category" : "option", - "default" : "inspector.js", - "deprecatedIn" : null, - "description" : "client module to use at startup", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string" - }, - "javascript.copy-directory" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "target directory to copy files from 'javascript.startup-directory' into (only used when `--javascript.copy-installation` is enabled)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string" - }, - "javascript.copy-installation" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "copy contents of 'javascript.startup-directory'", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "javascript", - "type" : "boolean" - }, - "javascript.current-module-directory" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "add current directory to module path", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "javascript", - "type" : "boolean" - }, - "javascript.endpoints-allowlist" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "endpoints that can be connected to via @arangodb/request module in JavaScript actions", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string..." - }, - "javascript.endpoints-denylist" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "endpoints that cannot be connected to via @arangodb/request module in JavaScript actions (if not in allowlist)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string..." - }, - "javascript.environment-variables-allowlist" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "environment variables that will be accessible in JavaScript", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string..." - }, - "javascript.environment-variables-denylist" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "environment variables that will be inaccessible in JavaScript (if not in allowlist)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string..." - }, - "javascript.execute" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "execute JavaScript code from file", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string..." - }, - "javascript.execute-string" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "execute JavaScript code from string", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string..." - }, - "javascript.files-allowlist" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "filesystem paths that will be accessible from within JavaScript actions", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string..." - }, - "javascript.gc-interval" : { - "category" : "option", - "default" : 50, - "deprecatedIn" : null, - "description" : "request-based garbage collection interval (each n.th command)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "uint64" - }, - "javascript.harden" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "disables access to JavaScript functions in the internal module: getPid() and logLevel()", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "javascript", - "type" : "boolean" - }, - "javascript.module-directory" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "additional paths containing JavaScript modules", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string..." - }, - "javascript.run-main" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "execute function main", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "javascript", - "type" : "boolean" - }, - "javascript.script-parameter" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "script parameter", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string..." - }, - "javascript.startup-directory" : { - "category" : "option", - "default" : "./js", - "deprecatedIn" : null, - "description" : "startup paths containing the JavaScript files", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string" - }, - "javascript.startup-options-allowlist" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "startup options whose names match this regular expression will be allowed and exposed to JavaScript", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string..." - }, - "javascript.startup-options-denylist" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "startup options whose names match this regular expression will not be exposed (if not in allowlist) to JavaScript actions", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string..." - }, - "javascript.unit-test-filter" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "filter testcases in suite", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string" - }, - "javascript.unit-tests" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "do not start as shell, run unit tests instead", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string..." - }, - "javascript.v8-max-heap" : { - "category" : "option", - "default" : 3072, - "deprecatedIn" : null, - "description" : "maximal heap size (in MB)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "uint64" - }, - "javascript.v8-options" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "options to pass to v8", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string..." - }, - "jslint" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "do not start as shell, run jslint instead", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string..." - }, - "log" : { - "category" : "option", - "default" : [ - "info" - ], - "deprecatedIn" : [ - "v3.5.0" - ], - "description" : "the global or topic-specific log level", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string..." - }, - "log.color" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "use colors for TTY logging", - "dynamic" : true, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.escape" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "escape characters when logging", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.file" : { - "category" : "option", - "default" : "-", - "deprecatedIn" : null, - "description" : "shortcut for '--log.output file://'", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.file-group" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "group to use for new log file, user must be a member of this group", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.4.5" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.file-mode" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "mode to use for new log file, umask will be applied as well", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.4.5" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.force-direct" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "do not start a seperate thread for logging", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.foreground-tty" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "also log to tty if backgrounded", - "dynamic" : true, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.hostname" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "hostname to use in log message (empty for none, use 'auto' to automatically figure out hostname)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.ids" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "log unique message ids", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.level" : { - "category" : "option", - "default" : [ - "info" - ], - "deprecatedIn" : null, - "description" : "the global or topic-specific log level", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string..." - }, - "log.line-number" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "include the function name, file name and line number of the source code that issues the log message. Format: `[func@FileName.cpp:123]`", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.max-entry-length" : { - "category" : "option", - "default" : 134217728, - "deprecatedIn" : null, - "description" : "maximum length of a log entry (in bytes)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.7.9" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "uint32" - }, - "log.output" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "log destination(s), e.g. file:///path/to/file (any '$PID' will be replaced with the process id)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string..." - }, - "log.performance" : { - "category" : "option", - "default" : false, - "deprecatedIn" : [ - "v3.5.0" - ], - "description" : "shortcut for '--log.level performance=trace'", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.prefix" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "prefix log message with this string", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.process" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "show process identifier (pid) in log message", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.request-parameters" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "include full URLs and HTTP request parameters in trace logs", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.role" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "log server role", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.shorten-filenames" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "shorten filenames in log output (use with --log.line-number)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.thread" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "show thread identifier in log message", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.thread-name" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "show thread name in log message", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.time-format" : { - "category" : "option", - "default" : "utc-datestring", - "deprecatedIn" : null, - "description" : "time format to use in logs", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string", - "values" : "Possible values: \"local-datestring\", \"timestamp\", \"timestamp-micros\", \"timestamp-millis\", \"uptime\", \"uptime-micros\", \"uptime-millis\", \"utc-datestring\", \"utc-datestring-millis\"" - }, - "log.use-json-format" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "use json output format", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.use-local-time" : { - "category" : "option", - "default" : false, - "deprecatedIn" : [ - "v3.5.0" - ], - "description" : "use local timezone instead of UTC", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.use-microtime" : { - "category" : "option", - "default" : false, - "deprecatedIn" : [ - "v3.5.0" - ], - "description" : "use microtime instead", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "quiet" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "silent startup", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "random.generator" : { - "category" : "option", - "default" : 1, - "deprecatedIn" : null, - "description" : "random number generator to use (1 = MERSENNE, 2 = RANDOM, 3 = URANDOM, 4 = COMBINED (not for Windows), 5 = WinCrypt (Windows only)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "random", - "type" : "uint32", - "values" : "Possible values: 1, 2, 3, 4" - }, - "server.ask-jwt-secret" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "if this option is specified, the user will be prompted for a JWT secret. This option is not compatible with --server.username or --server.password. If specified, it will be used for all connections - even when a new connection to another server is created", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "server", - "type" : "boolean" - }, - "server.authentication" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "require authentication credentials when connecting (does not affect the server-side authentication settings)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "server", - "type" : "boolean" - }, - "server.connection-timeout" : { - "category" : "option", - "default" : 5, - "deprecatedIn" : null, - "description" : "connection timeout in seconds", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "double" - }, - "server.database" : { - "category" : "option", - "default" : "_system", - "deprecatedIn" : null, - "description" : "database name to use when connecting", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "string" - }, - "server.endpoint" : { - "category" : "option", - "default" : "http+tcp://127.0.0.1:8529", - "deprecatedIn" : null, - "description" : "endpoint to connect to. Use 'none' to start without a server. Use http+ssl:// or vst+ssl:// as schema to connect to an SSL-secured server endpoint, otherwise http+tcp://, vst+tcp:// or unix://", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "string" - }, - "server.force-json" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "force to not use VelocyPack for easier debugging", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.6.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "server", - "type" : "boolean" - }, - "server.jwt-secret-keyfile" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "if this option is specified, the jwt secret will be loaded from the given file. This option is not compatible with --server.ask-jwt-secret, --server.username or --server.password. If specified, it will be used for all connections - even when a new connection to another server is created", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "string" - }, - "server.max-packet-size" : { - "category" : "option", - "default" : 1073741824, - "deprecatedIn" : null, - "description" : "maximum packet size (in bytes) for client/server communication", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "uint64" - }, - "server.password" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "password to use when connecting. If not specified and authentication is required, the user will be prompted for a password", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "string" - }, - "server.request-timeout" : { - "category" : "option", - "default" : 1200, - "deprecatedIn" : null, - "description" : "request timeout in seconds", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "double" - }, - "server.username" : { - "category" : "option", - "default" : "root", - "deprecatedIn" : null, - "description" : "username to use when connecting", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "string" - }, - "ssl.protocol" : { - "category" : "option", - "default" : 5, - "deprecatedIn" : null, - "description" : "ssl protocol (1 = SSLv2 (unsupported), 2 = SSLv2 or SSLv3 (negotiated), 3 = SSLv3, 4 = TLSv1, 5 = TLSv1.2, 6 = TLSv1.3, 9 = generic TLS)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ssl", - "type" : "uint64", - "values" : "Possible values: 1, 2, 3, 4, 5, 6, 9" - }, - "temp.path" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "path for temporary files", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "temp", - "type" : "string" - }, - "version" : { - "category" : "command", - "deprecatedIn" : null, - "description" : "reports the version and exits", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "version-json" : { - "category" : "command", - "deprecatedIn" : null, - "description" : "reports the version as JSON and exits", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.9.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - } -} diff --git a/3.9/generated/Examples/arangorestore.json b/3.9/generated/Examples/arangorestore.json deleted file mode 100644 index 1f75f0cb0d..0000000000 --- a/3.9/generated/Examples/arangorestore.json +++ /dev/null @@ -1,1468 +0,0 @@ -{ - "all-databases" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "restore data to all databases", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "batch-size" : { - "category" : "option", - "default" : 8388608, - "deprecatedIn" : null, - "description" : "maximum size for individual data batches (in bytes)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "uint64" - }, - "check-configuration" : { - "category" : "command", - "deprecatedIn" : null, - "description" : "check the configuration and exit", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "cleanup-duplicate-attributes" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "clean up duplicate attributes (use first specified value) in input documents instead of making the restore operation fail", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.3.22", - "v3.4.2" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "collection" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "restrict to collection name (can be specified multiple times)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string..." - }, - "config" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "the configuration file or 'none'", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "configuration" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "the configuration file or 'none'", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "continue" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "continue restore operation", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "create-collection" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "create collection structure", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "create-database" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "create the target database if it does not exist", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "default-number-of-shards" : { - "category" : "option", - "default" : 1, - "deprecatedIn" : [ - "v3.3.22", - "v3.4.2" - ], - "description" : "default value for numberOfShards if not specified in dump", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "uint64" - }, - "default-replication-factor" : { - "category" : "option", - "default" : 1, - "deprecatedIn" : [ - "v3.3.22", - "v3.4.2" - ], - "description" : "default value for replicationFactor if not specified in dump", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "uint64" - }, - "define" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "define key=value for a @key@ entry in config file", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string..." - }, - "dump-dependencies" : { - "category" : "command", - "deprecatedIn" : null, - "description" : "dump dependency graph", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "dump-options" : { - "category" : "command", - "deprecatedIn" : null, - "description" : "dump configuration options in JSON format", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "encryption.key-generator" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "program providing the encryption key on stdout. If set, encryption will be enabled.", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "encryption", - "type" : "string" - }, - "encryption.keyfile" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "file containing the encryption key. If set, encryption will be enabled.", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "encryption", - "type" : "string" - }, - "envelope" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "wrap each document into a {type, data} envelope (this is required from compatibility with v3.7 and before)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "fail-after-update-continue-file" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "force" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "continue restore even in the face of some server-side errors", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "force-same-database" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "force usage of the same database name as in the source dump.json file", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "ignore-distribute-shards-like-errors" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "continue restore even if sharding prototype collection is missing", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "import-data" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "import data into collection", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "include-system-collections" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "include system collections", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "initial-connect-retries" : { - "category" : "option", - "default" : 3, - "deprecatedIn" : null, - "description" : "number of connect retries for initial connection", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.7.13", - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "uint32" - }, - "input-directory" : { - "category" : "option", - "default" : "/Users/hkernbach/Git/ArangoDB/devel-2/dump", - "deprecatedIn" : null, - "description" : "input directory", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "log" : { - "category" : "option", - "default" : [ - "info" - ], - "deprecatedIn" : [ - "v3.5.0" - ], - "description" : "the global or topic-specific log level", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string..." - }, - "log.color" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "use colors for TTY logging", - "dynamic" : true, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.escape" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "escape characters when logging", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.file" : { - "category" : "option", - "default" : "-", - "deprecatedIn" : null, - "description" : "shortcut for '--log.output file://'", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.file-group" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "group to use for new log file, user must be a member of this group", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.4.5" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.file-mode" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "mode to use for new log file, umask will be applied as well", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.4.5" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.force-direct" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "do not start a seperate thread for logging", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.foreground-tty" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "also log to tty if backgrounded", - "dynamic" : true, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.hostname" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "hostname to use in log message (empty for none, use 'auto' to automatically figure out hostname)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.ids" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "log unique message ids", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.level" : { - "category" : "option", - "default" : [ - "info" - ], - "deprecatedIn" : null, - "description" : "the global or topic-specific log level", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string..." - }, - "log.line-number" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "include the function name, file name and line number of the source code that issues the log message. Format: `[func@FileName.cpp:123]`", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.max-entry-length" : { - "category" : "option", - "default" : 134217728, - "deprecatedIn" : null, - "description" : "maximum length of a log entry (in bytes)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.7.9" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "uint32" - }, - "log.output" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "log destination(s), e.g. file:///path/to/file (any '$PID' will be replaced with the process id)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string..." - }, - "log.performance" : { - "category" : "option", - "default" : false, - "deprecatedIn" : [ - "v3.5.0" - ], - "description" : "shortcut for '--log.level performance=trace'", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.prefix" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "prefix log message with this string", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.process" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "show process identifier (pid) in log message", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.request-parameters" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "include full URLs and HTTP request parameters in trace logs", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.role" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "log server role", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.shorten-filenames" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "shorten filenames in log output (use with --log.line-number)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.thread" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "show thread identifier in log message", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.thread-name" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "show thread name in log message", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.time-format" : { - "category" : "option", - "default" : "utc-datestring", - "deprecatedIn" : null, - "description" : "time format to use in logs", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string", - "values" : "Possible values: \"local-datestring\", \"timestamp\", \"timestamp-micros\", \"timestamp-millis\", \"uptime\", \"uptime-micros\", \"uptime-millis\", \"utc-datestring\", \"utc-datestring-millis\"" - }, - "log.use-json-format" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "use json output format", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.use-local-time" : { - "category" : "option", - "default" : false, - "deprecatedIn" : [ - "v3.5.0" - ], - "description" : "use local timezone instead of UTC", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.use-microtime" : { - "category" : "option", - "default" : false, - "deprecatedIn" : [ - "v3.5.0" - ], - "description" : "use microtime instead", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "number-of-shards" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "override value for numberOfShards (can be specified multiple times, e.g. --number-of-shards 2 --number-of-shards myCollection=3)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.3.22", - "v3.4.2" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string..." - }, - "overwrite" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "overwrite collections if they exist", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "progress" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "show progress", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "random.generator" : { - "category" : "option", - "default" : 1, - "deprecatedIn" : null, - "description" : "random number generator to use (1 = MERSENNE, 2 = RANDOM, 3 = URANDOM, 4 = COMBINED (not for Windows), 5 = WinCrypt (Windows only)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "random", - "type" : "uint32", - "values" : "Possible values: 1, 2, 3, 4" - }, - "replication-factor" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "override value for replicationFactor (can be specified multiple times, e.g. --replication-factor 2 --replication-factor myCollection=3)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.3.22", - "v3.4.2" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string..." - }, - "server.ask-jwt-secret" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "if this option is specified, the user will be prompted for a JWT secret. This option is not compatible with --server.username or --server.password. If specified, it will be used for all connections - even when a new connection to another server is created", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "server", - "type" : "boolean" - }, - "server.authentication" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "require authentication credentials when connecting (does not affect the server-side authentication settings)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "server", - "type" : "boolean" - }, - "server.connection-timeout" : { - "category" : "option", - "default" : 5, - "deprecatedIn" : null, - "description" : "connection timeout in seconds", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "double" - }, - "server.database" : { - "category" : "option", - "default" : "_system", - "deprecatedIn" : null, - "description" : "database name to use when connecting", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "string" - }, - "server.endpoint" : { - "category" : "option", - "default" : "http+tcp://127.0.0.1:8529", - "deprecatedIn" : null, - "description" : "endpoint to connect to. Use 'none' to start without a server. Use http+ssl:// or vst+ssl:// as schema to connect to an SSL-secured server endpoint, otherwise http+tcp://, vst+tcp:// or unix://", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "string" - }, - "server.force-json" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "force to not use VelocyPack for easier debugging", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.6.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "server", - "type" : "boolean" - }, - "server.jwt-secret-keyfile" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "if this option is specified, the jwt secret will be loaded from the given file. This option is not compatible with --server.ask-jwt-secret, --server.username or --server.password. If specified, it will be used for all connections - even when a new connection to another server is created", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "string" - }, - "server.max-packet-size" : { - "category" : "option", - "default" : 1073741824, - "deprecatedIn" : null, - "description" : "maximum packet size (in bytes) for client/server communication", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "uint64" - }, - "server.password" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "password to use when connecting. If not specified and authentication is required, the user will be prompted for a password", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "string" - }, - "server.request-timeout" : { - "category" : "option", - "default" : 1200, - "deprecatedIn" : null, - "description" : "request timeout in seconds", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "double" - }, - "server.username" : { - "category" : "option", - "default" : "root", - "deprecatedIn" : null, - "description" : "username to use when connecting", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "string" - }, - "ssl.protocol" : { - "category" : "option", - "default" : 5, - "deprecatedIn" : null, - "description" : "ssl protocol (1 = SSLv2 (unsupported), 2 = SSLv2 or SSLv3 (negotiated), 3 = SSLv3, 4 = TLSv1, 5 = TLSv1.2, 6 = TLSv1.3, 9 = generic TLS)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ssl", - "type" : "uint64", - "values" : "Possible values: 1, 2, 3, 4, 5, 6, 9" - }, - "temp.path" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "path for temporary files", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "temp", - "type" : "string" - }, - "threads" : { - "category" : "option", - "default" : 2, - "deprecatedIn" : null, - "description" : "maximum number of collections to process in parallel", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.4.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "uint32" - }, - "version" : { - "category" : "command", - "deprecatedIn" : null, - "description" : "reports the version and exits", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "version-json" : { - "category" : "command", - "deprecatedIn" : null, - "description" : "reports the version as JSON and exits", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.9.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "view" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "restrict to view name (can be specified multiple times)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string..." - } -} diff --git a/3.9/generated/Examples/arangosh.json b/3.9/generated/Examples/arangosh.json deleted file mode 100644 index d9357ea122..0000000000 --- a/3.9/generated/Examples/arangosh.json +++ /dev/null @@ -1,1746 +0,0 @@ -{ - "check-configuration" : { - "category" : "command", - "deprecatedIn" : null, - "description" : "check the configuration and exit", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "config" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "the configuration file or 'none'", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "configuration" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "the configuration file or 'none'", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "console.audit-file" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "audit log file to save commands and results", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "console", - "type" : "string" - }, - "console.auto-complete" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "enable auto completion", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "console", - "type" : "boolean" - }, - "console.colors" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "enable color support", - "dynamic" : true, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "console", - "type" : "boolean" - }, - "console.history" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "whether or not to load and persist command-line history", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.4.5" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "console", - "type" : "boolean" - }, - "console.pager" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "enable paging", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "console", - "type" : "boolean" - }, - "console.pager-command" : { - "category" : "option", - "default" : "less -X -R -F -L", - "deprecatedIn" : null, - "description" : "pager command", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "console", - "type" : "string" - }, - "console.pretty-print" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "enable pretty printing", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "console", - "type" : "boolean" - }, - "console.prompt" : { - "category" : "option", - "default" : "%E@%d> ", - "deprecatedIn" : null, - "description" : "prompt used in REPL. prompt components are: '%t': current time as timestamp, '%p': duration of last command in seconds, '%d': name of current database, '%e': current endpoint, '%E': current endpoint without protocol, '%u': current user", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "console", - "type" : "string" - }, - "default-language" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "ISO-639 language code", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "default-language-check" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "check if default language matches stored language", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "define" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "define key=value for a @key@ entry in config file", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string..." - }, - "dump-dependencies" : { - "category" : "command", - "deprecatedIn" : null, - "description" : "dump dependency graph", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "dump-options" : { - "category" : "command", - "deprecatedIn" : null, - "description" : "dump configuration options in JSON format", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "encryption.key-generator" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "program providing the encryption key on stdout. If set, encryption will be enabled.", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "encryption", - "type" : "string" - }, - "encryption.keyfile" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "file containing the encryption key. If set, encryption will be enabled.", - "dynamic" : false, - "enterpriseOnly" : true, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "encryption", - "type" : "string" - }, - "javascript.allow-external-process-control" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "allow execution and control of external processes from within JavaScript actions", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "javascript", - "type" : "boolean" - }, - "javascript.allow-port-testing" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "allow testing of ports from within JavaScript actions", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "javascript", - "type" : "boolean" - }, - "javascript.check-syntax" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "syntax check code JavaScript code from file", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string..." - }, - "javascript.client-module" : { - "category" : "option", - "default" : "client.js", - "deprecatedIn" : null, - "description" : "client module to use at startup", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string" - }, - "javascript.copy-directory" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "target directory to copy files from 'javascript.startup-directory' into (only used when `--javascript.copy-installation` is enabled)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string" - }, - "javascript.copy-installation" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "copy contents of 'javascript.startup-directory'", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "javascript", - "type" : "boolean" - }, - "javascript.current-module-directory" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "add current directory to module path", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "javascript", - "type" : "boolean" - }, - "javascript.endpoints-allowlist" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "endpoints that can be connected to via @arangodb/request module in JavaScript actions", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string..." - }, - "javascript.endpoints-denylist" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "endpoints that cannot be connected to via @arangodb/request module in JavaScript actions (if not in allowlist)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string..." - }, - "javascript.environment-variables-allowlist" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "environment variables that will be accessible in JavaScript", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string..." - }, - "javascript.environment-variables-denylist" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "environment variables that will be inaccessible in JavaScript (if not in allowlist)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string..." - }, - "javascript.execute" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "execute JavaScript code from file", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string..." - }, - "javascript.execute-string" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "execute JavaScript code from string", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string..." - }, - "javascript.files-allowlist" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "filesystem paths that will be accessible from within JavaScript actions", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string..." - }, - "javascript.gc-interval" : { - "category" : "option", - "default" : 50, - "deprecatedIn" : null, - "description" : "request-based garbage collection interval (each n.th command)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "uint64" - }, - "javascript.harden" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "disables access to JavaScript functions in the internal module: getPid() and logLevel()", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "javascript", - "type" : "boolean" - }, - "javascript.module-directory" : { - "category" : "option", - "default" : [ - "./enterprise/js" - ], - "deprecatedIn" : null, - "description" : "additional paths containing JavaScript modules", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string..." - }, - "javascript.run-main" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "execute function main", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "javascript", - "type" : "boolean" - }, - "javascript.script-parameter" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "script parameter", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string..." - }, - "javascript.startup-directory" : { - "category" : "option", - "default" : "./js", - "deprecatedIn" : null, - "description" : "startup paths containing the JavaScript files", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string" - }, - "javascript.startup-options-allowlist" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "startup options whose names match this regular expression will be allowed and exposed to JavaScript", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string..." - }, - "javascript.startup-options-denylist" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "startup options whose names match this regular expression will not be exposed (if not in allowlist) to JavaScript actions", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string..." - }, - "javascript.unit-test-filter" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "filter testcases in suite", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string" - }, - "javascript.unit-tests" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "do not start as shell, run unit tests instead", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string..." - }, - "javascript.v8-max-heap" : { - "category" : "option", - "default" : 3072, - "deprecatedIn" : null, - "description" : "maximal heap size (in MB)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "uint64" - }, - "javascript.v8-options" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "options to pass to v8", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "javascript", - "type" : "string..." - }, - "jslint" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "do not start as shell, run jslint instead", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string..." - }, - "log" : { - "category" : "option", - "default" : [ - "info" - ], - "deprecatedIn" : [ - "v3.5.0" - ], - "description" : "the global or topic-specific log level", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string..." - }, - "log.color" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "use colors for TTY logging", - "dynamic" : true, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.escape" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "escape characters when logging", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.file" : { - "category" : "option", - "default" : "-", - "deprecatedIn" : null, - "description" : "shortcut for '--log.output file://'", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.file-group" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "group to use for new log file, user must be a member of this group", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.4.5" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.file-mode" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "mode to use for new log file, umask will be applied as well", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.4.5" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.force-direct" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "do not start a seperate thread for logging", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.foreground-tty" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "also log to tty if backgrounded", - "dynamic" : true, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.hostname" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "hostname to use in log message (empty for none, use 'auto' to automatically figure out hostname)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.ids" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "log unique message ids", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.level" : { - "category" : "option", - "default" : [ - "info" - ], - "deprecatedIn" : null, - "description" : "the global or topic-specific log level", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string..." - }, - "log.line-number" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "include the function name, file name and line number of the source code that issues the log message. Format: `[func@FileName.cpp:123]`", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.max-entry-length" : { - "category" : "option", - "default" : 134217728, - "deprecatedIn" : null, - "description" : "maximum length of a log entry (in bytes)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.7.9" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "uint32" - }, - "log.output" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "log destination(s), e.g. file:///path/to/file (any '$PID' will be replaced with the process id)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string..." - }, - "log.performance" : { - "category" : "option", - "default" : false, - "deprecatedIn" : [ - "v3.5.0" - ], - "description" : "shortcut for '--log.level performance=trace'", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.prefix" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "prefix log message with this string", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.process" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "show process identifier (pid) in log message", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.request-parameters" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "include full URLs and HTTP request parameters in trace logs", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.role" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "log server role", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.shorten-filenames" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "shorten filenames in log output (use with --log.line-number)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.thread" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "show thread identifier in log message", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.thread-name" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "show thread name in log message", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.time-format" : { - "category" : "option", - "default" : "utc-datestring", - "deprecatedIn" : null, - "description" : "time format to use in logs", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string", - "values" : "Possible values: \"local-datestring\", \"timestamp\", \"timestamp-micros\", \"timestamp-millis\", \"uptime\", \"uptime-micros\", \"uptime-millis\", \"utc-datestring\", \"utc-datestring-millis\"" - }, - "log.use-json-format" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "use json output format", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.use-local-time" : { - "category" : "option", - "default" : false, - "deprecatedIn" : [ - "v3.5.0" - ], - "description" : "use local timezone instead of UTC", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.use-microtime" : { - "category" : "option", - "default" : false, - "deprecatedIn" : [ - "v3.5.0" - ], - "description" : "use microtime instead", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "quiet" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "silent startup", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "random.generator" : { - "category" : "option", - "default" : 1, - "deprecatedIn" : null, - "description" : "random number generator to use (1 = MERSENNE, 2 = RANDOM, 3 = URANDOM, 4 = COMBINED (not for Windows), 5 = WinCrypt (Windows only)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "random", - "type" : "uint32", - "values" : "Possible values: 1, 2, 3, 4" - }, - "server.ask-jwt-secret" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "if this option is specified, the user will be prompted for a JWT secret. This option is not compatible with --server.username or --server.password. If specified, it will be used for all connections - even when a new connection to another server is created", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "server", - "type" : "boolean" - }, - "server.authentication" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "require authentication credentials when connecting (does not affect the server-side authentication settings)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "server", - "type" : "boolean" - }, - "server.connection-timeout" : { - "category" : "option", - "default" : 5, - "deprecatedIn" : null, - "description" : "connection timeout in seconds", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "double" - }, - "server.database" : { - "category" : "option", - "default" : "_system", - "deprecatedIn" : null, - "description" : "database name to use when connecting", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "string" - }, - "server.endpoint" : { - "category" : "option", - "default" : "http+tcp://127.0.0.1:8529", - "deprecatedIn" : null, - "description" : "endpoint to connect to. Use 'none' to start without a server. Use http+ssl:// or vst+ssl:// as schema to connect to an SSL-secured server endpoint, otherwise http+tcp://, vst+tcp:// or unix://", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "string" - }, - "server.force-json" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "force to not use VelocyPack for easier debugging", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.6.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "server", - "type" : "boolean" - }, - "server.jwt-secret-keyfile" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "if this option is specified, the jwt secret will be loaded from the given file. This option is not compatible with --server.ask-jwt-secret, --server.username or --server.password. If specified, it will be used for all connections - even when a new connection to another server is created", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "string" - }, - "server.max-packet-size" : { - "category" : "option", - "default" : 1073741824, - "deprecatedIn" : null, - "description" : "maximum packet size (in bytes) for client/server communication", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "uint64" - }, - "server.password" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "password to use when connecting. If not specified and authentication is required, the user will be prompted for a password", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "string" - }, - "server.request-timeout" : { - "category" : "option", - "default" : 1200, - "deprecatedIn" : null, - "description" : "request timeout in seconds", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "double" - }, - "server.username" : { - "category" : "option", - "default" : "root", - "deprecatedIn" : null, - "description" : "username to use when connecting", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "server", - "type" : "string" - }, - "ssl.protocol" : { - "category" : "option", - "default" : 5, - "deprecatedIn" : null, - "description" : "ssl protocol (1 = SSLv2 (unsupported), 2 = SSLv2 or SSLv3 (negotiated), 3 = SSLv3, 4 = TLSv1, 5 = TLSv1.2, 6 = TLSv1.3, 9 = generic TLS)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "ssl", - "type" : "uint64", - "values" : "Possible values: 1, 2, 3, 4, 5, 6, 9" - }, - "temp.path" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "path for temporary files", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "temp", - "type" : "string" - }, - "version" : { - "category" : "command", - "deprecatedIn" : null, - "description" : "reports the version and exits", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "version-json" : { - "category" : "command", - "deprecatedIn" : null, - "description" : "reports the version as JSON and exits", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.9.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - } -} diff --git a/3.9/generated/Examples/arangovpack.json b/3.9/generated/Examples/arangovpack.json deleted file mode 100644 index af1f2558bb..0000000000 --- a/3.9/generated/Examples/arangovpack.json +++ /dev/null @@ -1,799 +0,0 @@ -{ - "check-configuration" : { - "category" : "command", - "deprecatedIn" : null, - "description" : "check the configuration and exit", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "config" : { - "category" : "option", - "default" : "none", - "deprecatedIn" : null, - "description" : "the configuration file or 'none'", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "configuration" : { - "category" : "option", - "default" : "none", - "deprecatedIn" : null, - "description" : "the configuration file or 'none'", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "define" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "define key=value for a @key@ entry in config file", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string..." - }, - "dump-dependencies" : { - "category" : "command", - "deprecatedIn" : null, - "description" : "dump dependency graph", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "dump-options" : { - "category" : "command", - "deprecatedIn" : null, - "description" : "dump configuration options in JSON format", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "fail-on-non-json" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "fail when trying to emit non-JSON types to JSON output", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "input-file" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "input filename", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "input-type" : { - "category" : "option", - "default" : "vpack", - "deprecatedIn" : null, - "description" : "type of input", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string", - "values" : "Possible values: \"json\", \"json-hex\", \"vpack\", \"vpack-hex\"" - }, - "log" : { - "category" : "option", - "default" : [ - "info" - ], - "deprecatedIn" : [ - "v3.5.0" - ], - "description" : "the global or topic-specific log level", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string..." - }, - "log.color" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "use colors for TTY logging", - "dynamic" : true, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.escape" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "escape characters when logging", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.file" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "shortcut for '--log.output file://'", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.file-group" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "group to use for new log file, user must be a member of this group", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.4.5" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.file-mode" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "mode to use for new log file, umask will be applied as well", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.4.5" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.force-direct" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "do not start a seperate thread for logging", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.foreground-tty" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "also log to tty if backgrounded", - "dynamic" : true, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.hostname" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "hostname to use in log message (empty for none, use 'auto' to automatically figure out hostname)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.ids" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "log unique message ids", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.level" : { - "category" : "option", - "default" : [ - "info" - ], - "deprecatedIn" : null, - "description" : "the global or topic-specific log level", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string..." - }, - "log.line-number" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "include the function name, file name and line number of the source code that issues the log message. Format: `[func@FileName.cpp:123]`", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.max-entry-length" : { - "category" : "option", - "default" : 134217728, - "deprecatedIn" : null, - "description" : "maximum length of a log entry (in bytes)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.7.9" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "uint32" - }, - "log.output" : { - "category" : "option", - "default" : [ - ], - "deprecatedIn" : null, - "description" : "log destination(s), e.g. file:///path/to/file (any '$PID' will be replaced with the process id)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string..." - }, - "log.performance" : { - "category" : "option", - "default" : false, - "deprecatedIn" : [ - "v3.5.0" - ], - "description" : "shortcut for '--log.level performance=trace'", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.prefix" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "prefix log message with this string", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string" - }, - "log.process" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "show process identifier (pid) in log message", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.request-parameters" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "include full URLs and HTTP request parameters in trace logs", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.role" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "log server role", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.shorten-filenames" : { - "category" : "option", - "default" : true, - "deprecatedIn" : null, - "description" : "shorten filenames in log output (use with --log.line-number)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.thread" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "show thread identifier in log message", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.thread-name" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "show thread name in log message", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.time-format" : { - "category" : "option", - "default" : "utc-datestring", - "deprecatedIn" : null, - "description" : "time format to use in logs", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.5.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "log", - "type" : "string", - "values" : "Possible values: \"local-datestring\", \"timestamp\", \"timestamp-micros\", \"timestamp-millis\", \"uptime\", \"uptime-micros\", \"uptime-millis\", \"utc-datestring\", \"utc-datestring-millis\"" - }, - "log.use-json-format" : { - "category" : "option", - "default" : false, - "deprecatedIn" : null, - "description" : "use json output format", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.use-local-time" : { - "category" : "option", - "default" : false, - "deprecatedIn" : [ - "v3.5.0" - ], - "description" : "use local timezone instead of UTC", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "log.use-microtime" : { - "category" : "option", - "default" : false, - "deprecatedIn" : [ - "v3.5.0" - ], - "description" : "use microtime instead", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "log", - "type" : "boolean" - }, - "output-file" : { - "category" : "option", - "default" : "", - "deprecatedIn" : null, - "description" : "output filename", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string" - }, - "output-type" : { - "category" : "option", - "default" : "json-pretty", - "deprecatedIn" : null, - "description" : "type of output", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.8.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "", - "type" : "string", - "values" : "Possible values: \"json\", \"json-pretty\", \"vpack\", \"vpack-hex\"" - }, - "random.generator" : { - "category" : "option", - "default" : 1, - "deprecatedIn" : null, - "description" : "random number generator to use (1 = MERSENNE, 2 = RANDOM, 3 = URANDOM, 4 = COMBINED (not for Windows), 5 = WinCrypt (Windows only)", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : true, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : true, - "section" : "random", - "type" : "uint32", - "values" : "Possible values: 1, 2, 3, 4" - }, - "version" : { - "category" : "command", - "deprecatedIn" : null, - "description" : "reports the version and exits", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : null, - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - }, - "version-json" : { - "category" : "command", - "deprecatedIn" : null, - "description" : "reports the version as JSON and exits", - "dynamic" : false, - "enterpriseOnly" : false, - "hidden" : false, - "introducedIn" : [ - "v3.9.0" - ], - "obsolete" : false, - "os" : [ - "linux", - "macos", - "windows" - ], - "requiresValue" : false, - "section" : "", - "type" : "boolean" - } -} diff --git a/3.9/generated/Examples/job_cancel.generated b/3.9/generated/Examples/job_cancel.generated index 3d5ef06b3c..9b6f1a8287 100644 --- a/3.9/generated/Examples/job_cancel.generated +++ b/3.9/generated/Examples/job_cancel.generated @@ -1,6 +1,6 @@ -shell> curl -X POST --header 'x-arango-async: store' --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF +shell> curl -X POST --header 'x-arango-async: store' --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF { - "query" : "FOR i IN 1..10 FOR j IN 1..10 LET x = sleep(1.0) FILTER i == 5 && j == 5 RETURN 42" + "query" : "FOR i IN 1..10 FOR j IN 1..10 LET x = sleep(1.0) FILTER i == 5 && j == 5 RETURN 42" } EOF @@ -9,22 +9,22 @@ content-type: text/plain connection: Keep-Alive content-length: 0 server: ArangoDB -x-arango-async-id: 3913 +x-arango-async-id: 80846 x-content-type-options: nosniff -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/job/pending +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/job/pending HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 8 +content-length: 9 server: ArangoDB x-content-type-options: nosniff [ - "3913" + "80846" ] -shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/job/3913/cancel +shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/job/80846/cancel HTTP/1.1 200 OK content-type: application/json @@ -34,17 +34,17 @@ server: ArangoDB x-content-type-options: nosniff { - "result" : true + "result" : true } -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/job/pending +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/job/pending HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 8 +content-length: 9 server: ArangoDB x-content-type-options: nosniff [ - "3913" + "80846" ] diff --git a/3.9/generated/Examples/job_delete_01.generated b/3.9/generated/Examples/job_delete_01.generated index 196cab51bf..84d9bfaa4b 100644 --- a/3.9/generated/Examples/job_delete_01.generated +++ b/3.9/generated/Examples/job_delete_01.generated @@ -1,14 +1,14 @@ -shell> curl -X PUT --header 'x-arango-async: store' --header 'accept: application/json' --dump - http://localhost:8529/_api/version +shell> curl -X PUT --header 'x-arango-async: store' --header 'accept: application/json' --dump - http://localhost:8529/_api/version HTTP/1.1 202 Accepted content-type: text/plain connection: Keep-Alive content-length: 0 server: ArangoDB -x-arango-async-id: 3917 +x-arango-async-id: 80850 x-content-type-options: nosniff -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/job/all +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/job/all HTTP/1.1 200 OK content-type: application/json @@ -18,5 +18,5 @@ server: ArangoDB x-content-type-options: nosniff { - "result" : true + "result" : true } diff --git a/3.9/generated/Examples/job_delete_02.generated b/3.9/generated/Examples/job_delete_02.generated index 82192dd56a..9c33394ab0 100644 --- a/3.9/generated/Examples/job_delete_02.generated +++ b/3.9/generated/Examples/job_delete_02.generated @@ -1,14 +1,14 @@ -shell> curl -X PUT --header 'x-arango-async: store' --header 'accept: application/json' --dump - http://localhost:8529/_api/version +shell> curl -X PUT --header 'x-arango-async: store' --header 'accept: application/json' --dump - http://localhost:8529/_api/version HTTP/1.1 202 Accepted content-type: text/plain connection: Keep-Alive content-length: 0 server: ArangoDB -x-arango-async-id: 3919 +x-arango-async-id: 80852 x-content-type-options: nosniff -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_admin/time +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_admin/time HTTP/1.1 200 OK content-type: application/json @@ -18,11 +18,11 @@ server: ArangoDB x-content-type-options: nosniff { - "error" : false, - "code" : 200, - "time" : 1628086094.494276 + "error" : false, + "code" : 200, + "time" : 1621938229.577555 } -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/job/expired?stamp=1628086094.494276 +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/job/expired?stamp=1621938229.577555 HTTP/1.1 200 OK content-type: application/json @@ -32,9 +32,9 @@ server: ArangoDB x-content-type-options: nosniff { - "result" : true + "result" : true } -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/job/pending +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/job/pending HTTP/1.1 200 OK content-type: application/json diff --git a/3.9/generated/Examples/job_delete_03.generated b/3.9/generated/Examples/job_delete_03.generated index 0eebda18a0..7180ad8691 100644 --- a/3.9/generated/Examples/job_delete_03.generated +++ b/3.9/generated/Examples/job_delete_03.generated @@ -1,14 +1,14 @@ -shell> curl -X PUT --header 'x-arango-async: store' --header 'accept: application/json' --dump - http://localhost:8529/_api/version +shell> curl -X PUT --header 'x-arango-async: store' --header 'accept: application/json' --dump - http://localhost:8529/_api/version HTTP/1.1 202 Accepted content-type: text/plain connection: Keep-Alive content-length: 0 server: ArangoDB -x-arango-async-id: 3921 +x-arango-async-id: 80854 x-content-type-options: nosniff -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/job/3921 +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/job/80854 HTTP/1.1 200 OK content-type: application/json @@ -18,5 +18,5 @@ server: ArangoDB x-content-type-options: nosniff { - "result" : true + "result" : true } diff --git a/3.9/generated/Examples/job_delete_04.generated b/3.9/generated/Examples/job_delete_04.generated index dc1df0d21f..a9437e5395 100644 --- a/3.9/generated/Examples/job_delete_04.generated +++ b/3.9/generated/Examples/job_delete_04.generated @@ -1,4 +1,4 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/job/AreYouThere +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/job/AreYouThere HTTP/1.1 404 Not Found content-type: application/json @@ -8,8 +8,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 404, - "error" : true, - "errorMessage" : "not found", - "errorNum" : 404 + "code" : 404, + "error" : true, + "errorMessage" : "not found", + "errorNum" : 404 } diff --git a/3.9/generated/Examples/job_fetch_result_01.generated b/3.9/generated/Examples/job_fetch_result_01.generated index e2eba93fd0..2051e27a1a 100644 --- a/3.9/generated/Examples/job_fetch_result_01.generated +++ b/3.9/generated/Examples/job_fetch_result_01.generated @@ -1,4 +1,4 @@ -shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/job +shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/job HTTP/1.1 400 Bad Request content-type: application/json @@ -8,8 +8,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 400, - "error" : true, - "errorMessage" : "bad parameter", - "errorNum" : 400 + "code" : 400, + "error" : true, + "errorMessage" : "bad parameter", + "errorNum" : 400 } diff --git a/3.9/generated/Examples/job_fetch_result_02.generated b/3.9/generated/Examples/job_fetch_result_02.generated index 924ff7b1ef..d2e46061c2 100644 --- a/3.9/generated/Examples/job_fetch_result_02.generated +++ b/3.9/generated/Examples/job_fetch_result_02.generated @@ -1,4 +1,4 @@ -shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/job/notthere +shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/job/notthere HTTP/1.1 404 Not Found content-type: application/json @@ -8,8 +8,8 @@ server: ArangoDB x-content-type-options: nosniff { - "code" : 404, - "error" : true, - "errorMessage" : "not found", - "errorNum" : 404 + "code" : 404, + "error" : true, + "errorMessage" : "not found", + "errorNum" : 404 } diff --git a/3.9/generated/Examples/job_fetch_result_03.generated b/3.9/generated/Examples/job_fetch_result_03.generated index 21a6b29345..f3c6dfb6ef 100644 --- a/3.9/generated/Examples/job_fetch_result_03.generated +++ b/3.9/generated/Examples/job_fetch_result_03.generated @@ -1,25 +1,25 @@ -shell> curl -X PUT --header 'x-arango-async: store' --header 'accept: application/json' --dump - http://localhost:8529/_api/version +shell> curl -X PUT --header 'x-arango-async: store' --header 'accept: application/json' --dump - http://localhost:8529/_api/version HTTP/1.1 202 Accepted content-type: text/plain connection: Keep-Alive content-length: 0 server: ArangoDB -x-arango-async-id: 3926 +x-arango-async-id: 80859 x-content-type-options: nosniff -shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/job/3926 +shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/job/80859 HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive content-length: 66 server: ArangoDB -x-arango-async-id: 3926 +x-arango-async-id: 80859 x-content-type-options: nosniff { - "server" : "arango", - "license" : "enterprise", - "version" : "3.9.0-devel" + "server" : "arango", + "license" : "enterprise", + "version" : "3.9.0-devel" } diff --git a/3.9/generated/Examples/job_fetch_result_04.generated b/3.9/generated/Examples/job_fetch_result_04.generated index 772e8c9984..52a07c664f 100644 --- a/3.9/generated/Examples/job_fetch_result_04.generated +++ b/3.9/generated/Examples/job_fetch_result_04.generated @@ -1,6 +1,6 @@ -shell> curl -X PUT --header 'x-arango-async: store' --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/collection <<EOF +shell> curl -X PUT --header 'x-arango-async: store' --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/collection <<EOF { - "name" : " this name is invalid " + "name" : " this name is invalid " } EOF @@ -9,22 +9,22 @@ content-type: text/plain connection: Keep-Alive content-length: 0 server: ArangoDB -x-arango-async-id: 3928 +x-arango-async-id: 80861 x-content-type-options: nosniff -shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/job/3928 +shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/job/80861 HTTP/1.1 400 Bad Request content-type: application/json connection: Keep-Alive content-length: 114 server: ArangoDB -x-arango-async-id: 3928 +x-arango-async-id: 80861 x-content-type-options: nosniff { - "code" : 400, - "error" : true, - "errorMessage" : "expected PUT /_api/collection/<collection-name>/<action>", - "errorNum" : 400 + "code" : 400, + "error" : true, + "errorMessage" : "expected PUT /_api/collection/<collection-name>/<action>", + "errorNum" : 400 } diff --git a/3.9/generated/Examples/job_getByType_01.generated b/3.9/generated/Examples/job_getByType_01.generated index 818bd4ced4..7728535903 100644 --- a/3.9/generated/Examples/job_getByType_01.generated +++ b/3.9/generated/Examples/job_getByType_01.generated @@ -1,22 +1,22 @@ -shell> curl -X PUT --header 'x-arango-async: store' --header 'accept: application/json' --dump - http://localhost:8529/_api/version +shell> curl -X PUT --header 'x-arango-async: store' --header 'accept: application/json' --dump - http://localhost:8529/_api/version HTTP/1.1 202 Accepted content-type: text/plain connection: Keep-Alive content-length: 0 server: ArangoDB -x-arango-async-id: 3930 +x-arango-async-id: 80863 x-content-type-options: nosniff -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/job/done +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/job/done HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 8 +content-length: 9 server: ArangoDB x-content-type-options: nosniff [ - "3930" + "80863" ] diff --git a/3.9/generated/Examples/job_getByType_02.generated b/3.9/generated/Examples/job_getByType_02.generated index 633694efb9..90c23ee252 100644 --- a/3.9/generated/Examples/job_getByType_02.generated +++ b/3.9/generated/Examples/job_getByType_02.generated @@ -1,14 +1,14 @@ -shell> curl -X PUT --header 'x-arango-async: store' --header 'accept: application/json' --dump - http://localhost:8529/_api/version +shell> curl -X PUT --header 'x-arango-async: store' --header 'accept: application/json' --dump - http://localhost:8529/_api/version HTTP/1.1 202 Accepted content-type: text/plain connection: Keep-Alive content-length: 0 server: ArangoDB -x-arango-async-id: 3932 +x-arango-async-id: 80865 x-content-type-options: nosniff -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/job/pending +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/job/pending HTTP/1.1 200 OK content-type: application/json diff --git a/3.9/generated/Examples/job_getByType_03.generated b/3.9/generated/Examples/job_getByType_03.generated index 4516a7efa9..18b9f33702 100644 --- a/3.9/generated/Examples/job_getByType_03.generated +++ b/3.9/generated/Examples/job_getByType_03.generated @@ -1,11 +1,11 @@ -shell> curl -X POST --header 'x-arango-async: store' --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/transaction <<EOF +shell> curl -X POST --header 'x-arango-async: store' --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/transaction <<EOF { - "collections" : { - "read" : [ - "_frontend" + "collections" : { + "read" : [ + "_frontend" ] }, - "action" : "function () {require('internal').sleep(15.0);}" + "action" : "function () {require('internal').sleep(15.0);}" } EOF @@ -14,22 +14,22 @@ content-type: text/plain connection: Keep-Alive content-length: 0 server: ArangoDB -x-arango-async-id: 3934 +x-arango-async-id: 80867 x-content-type-options: nosniff -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/job/pending +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/job/pending HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive -content-length: 8 +content-length: 9 server: ArangoDB x-content-type-options: nosniff [ - "3934" + "80867" ] -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/job/3934 +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/job/80867 HTTP/1.1 200 OK content-type: application/json @@ -39,5 +39,5 @@ server: ArangoDB x-content-type-options: nosniff { - "result" : true + "result" : true } diff --git a/3.9/generated/Examples/job_getStatusById_01.generated b/3.9/generated/Examples/job_getStatusById_01.generated index a45629fcb7..f750af66b0 100644 --- a/3.9/generated/Examples/job_getStatusById_01.generated +++ b/3.9/generated/Examples/job_getStatusById_01.generated @@ -1,25 +1,25 @@ -shell> curl -X PUT --header 'x-arango-async: store' --header 'accept: application/json' --dump - http://localhost:8529/_api/version +shell> curl -X PUT --header 'x-arango-async: store' --header 'accept: application/json' --dump - http://localhost:8529/_api/version HTTP/1.1 202 Accepted content-type: text/plain connection: Keep-Alive content-length: 0 server: ArangoDB -x-arango-async-id: 3937 +x-arango-async-id: 80870 x-content-type-options: nosniff -shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/job/3937 +shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/job/80870 HTTP/1.1 200 OK content-type: application/json connection: Keep-Alive content-length: 66 server: ArangoDB -x-arango-async-id: 3937 +x-arango-async-id: 80870 x-content-type-options: nosniff { - "server" : "arango", - "license" : "enterprise", - "version" : "3.9.0-devel" + "server" : "arango", + "license" : "enterprise", + "version" : "3.9.0-devel" } diff --git a/3.9/generated/Examples/job_getStatusById_02.generated b/3.9/generated/Examples/job_getStatusById_02.generated index bd28d2b4e6..b9e3c8dd98 100644 --- a/3.9/generated/Examples/job_getStatusById_02.generated +++ b/3.9/generated/Examples/job_getStatusById_02.generated @@ -1,11 +1,11 @@ -shell> curl -X POST --header 'x-arango-async: store' --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/transaction <<EOF +shell> curl -X POST --header 'x-arango-async: store' --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/transaction <<EOF { - "collections" : { - "read" : [ - "_aqlfunctions" + "collections" : { + "read" : [ + "_aqlfunctions" ] }, - "action" : "function () {require('internal').sleep(15.0);}" + "action" : "function () {require('internal').sleep(15.0);}" } EOF @@ -14,10 +14,10 @@ content-type: text/plain connection: Keep-Alive content-length: 0 server: ArangoDB -x-arango-async-id: 3939 +x-arango-async-id: 80872 x-content-type-options: nosniff -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/job/3939 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/job/80872 HTTP/1.1 204 No Content content-type: text/plain From c9bf712d1c836bcedb514854f2f6038877770510 Mon Sep 17 00:00:00 2001 From: Simran Spiller Date: Tue, 28 Sep 2021 18:07:40 +0200 Subject: [PATCH 16/21] Partial review, some links broken on purpose --- 3.9/graphs-general-graphs-management.md | 33 ++++++------ 3.9/graphs-smart-graphs.md | 23 ++++----- 3.9/highlights.md | 6 ++- 3.9/release-notes-api-changes39.md | 2 +- 3.9/release-notes-new-features39.md | 69 ++++++++++++------------- 5 files changed, 65 insertions(+), 68 deletions(-) diff --git a/3.9/graphs-general-graphs-management.md b/3.9/graphs-general-graphs-management.md index 15e41ca78a..a4409c13cd 100644 --- a/3.9/graphs-general-graphs-management.md +++ b/3.9/graphs-general-graphs-management.md @@ -118,6 +118,16 @@ collection in *toVertexCollections*. {% endarangoshexample %} {% include arangoshexample.html id=examplevar script=script result=result %} +### Edge Definition Options + +The following edge definition options are supported: + +- `satellites` (array): + An array of collection names that will be used to create SatelliteCollections + for a Hybrid (Disjoint) SmartGraph (Enterprise Edition only). Each array element + must be a string and a valid collection name. The collection type cannot be + modified later. + Create a Graph -------------- @@ -348,8 +358,8 @@ Add another edge definition to the graph: - `edgeDefinition` (object): The relation definition to extend the graph - `options` (object): - Additional options related to the edgeDefinition itself. - Definition can be found [here](graphs-general-graphs-management.html#edge-definition-options). + Additional options related to the edge definition itself. + See [Edge Definition Options](#edge-definition-option). Extends the edge definitions of a graph. If an orphan collection is used in this edge definition, it will be removed from the orphanage. If the edge collection of @@ -383,8 +393,8 @@ Modify a relation definition: The edge definition to replace the existing edge definition with the same attribute *collection*. - `options` (object): - Additional options related to the edgeDefinition itself. - Definition can be found [here](graphs-general-graphs-management.html#edge-definition-options). + Additional options related to the edge definition itself. + See [Edge Definition Options](#edge-definition-options). Edits one relation definition of a graph. The edge definition used as argument will replace the existing edge definition of the graph which has the same collection. @@ -410,14 +420,6 @@ definition will be modified, too. {% endarangoshexample %} {% include arangoshexample.html id=examplevar script=script result=result %} -### Edge Definition Options - -Currently, supported options are: -- `satellites` (array): - List of collections that are going to be created as SatelliteCollections. - Each entry must be defined as a String and must be a valid a valid collection - name. Details can be found [here](data-modeling-naming-conventions-collection-and-view-names.html). - ### Delete an Edge Definition Delete one relation definition: @@ -491,11 +493,8 @@ Add a vertex collection to the graph: - `createCollection` (bool, _optional_): If true the collection will be created if it does not exist. Default: true - `options` (object, _optional_): - Additional option object for advanced configuration. The object can contain the - property `satellites`. This value is only valid in case of SmartGraphs - (Enterprise-Only). It must be an array and can contain valid collection - names. If provided, the collection will be created as a Satellite Collection. - The collection type cannot be modified later. Default: {} + Additional options related to the edge definition itself. + See [Edge Definition Options](#edge-definition-options). Adds a vertex collection to the set of orphan collections of the graph. If the collection does not exist, it will be created. If it is already used by any edge diff --git a/3.9/graphs-smart-graphs.md b/3.9/graphs-smart-graphs.md index 285e7e5846..87f6015b7a 100644 --- a/3.9/graphs-smart-graphs.md +++ b/3.9/graphs-smart-graphs.md @@ -74,16 +74,16 @@ General Graph. Benefits of Hybrid SmartGraphs ------------------------------- -Hybrid SmartGraphs are capable of using Satellite Collections within their graph -definition. Therefore, defined EdgeDefinitions between SmartCollections and -SatelliteCollections can be created. As Satellite Collections are globally -replicated to each participating DB-Server, graph traversals, shortest path, -weighted traversals and k-shortest-paths queries can be executed partially -locally on each DB-Server. This means a larger part of the query can be executed -fully local whenever data from the Satellite part is required. +Hybrid SmartGraphs are capable of using SatelliteCollections within their graph +definition. Therefore, defined edge definitions between SmartCollections and +SatelliteCollections can be created. As SatelliteCollections are globally +replicated to each participating DB-Server, (weighted) graph traversals and +(k-)shortest path(s) queries can partially be executed locally on each +DB-Server. This means a larger part of the query can be executed fully local +whenever data from the SatelliteCollections is required. Benefits of Disjoint SmartGraphs -------------------------------- +-------------------------------- Disjoint SmartGraphs are a specialized type of SmartGraphs. @@ -95,11 +95,10 @@ can be executed locally on a DB-Server, achieving improved performance for these type of queries. Benefits of Hybrid Disjoint SmartGraphs -------------------------------- +--------------------------------------- -Hybrid Disjoint SmartGraphs benefit of all advantages which are present in -Hybrid SmartGraphs. The rules of Disjoint SmartGraphs, described in the chapter -above, stay true. +Hybrid Disjoint SmartGraphs are like Hybrid SmartGraphs but also prohibit +edges between vertices with different `smartGraphAttribute` values. Getting started --------------- diff --git a/3.9/highlights.md b/3.9/highlights.md index c843bfdb9e..95b0233621 100644 --- a/3.9/highlights.md +++ b/3.9/highlights.md @@ -13,6 +13,10 @@ Version 3.9 **Enterprise Edition** +- [**Hybrid (Disjoint) SmartGraphs**](graphs-smart-graphs.html#benefits-of-hybrid-smartgraphs): + SatelliteCollections can be used in (Disjoint) SmartGraphs to enable more + local execution of graph queries. + Also see [What's New in 3.9](release-notes-new-features39.html). Version 3.8 @@ -35,7 +39,7 @@ Version 3.8 indexing. Support for **geo-spatial queries** through new [Geo](analyzers.html#geojson) [Analyzers](analyzers.html#geopoint) and - [ArangoSearch Geo functions](aql/functions-arangosearch.html#geo-functions). + [ArangoSearch Geo functions](functions-arangosearch.html#geo-functions). {% comment %}A new [**Stopwords Analyzer**](analyzers.html#stopwords) that can be used standalone or in an Analyzer pipeline.{% endcomment %} diff --git a/3.9/release-notes-api-changes39.md b/3.9/release-notes-api-changes39.md index 34248384fe..64a304c026 100644 --- a/3.9/release-notes-api-changes39.md +++ b/3.9/release-notes-api-changes39.md @@ -11,7 +11,7 @@ integrations for ArangoDB 3.9. ## HTTP RESTful API -### GRAPH API (Gharial) +### Graph API (Gharial) The following changes affect the behavior of the RESTful graph APIs at endpoints starting with path `/_api/gharial/`: diff --git a/3.9/release-notes-new-features39.md b/3.9/release-notes-new-features39.md index 824b813df1..0caa27ddc3 100644 --- a/3.9/release-notes-new-features39.md +++ b/3.9/release-notes-new-features39.md @@ -9,6 +9,38 @@ The following list shows in detail which features have been added or improved in ArangoDB 3.9. ArangoDB 3.9 also contains several bug fixes that are not listed here. +Hybrid (Disjoint) SmartGraphs +----------------------------- + +SmartGraphs have been extended with a new option to create Hybrid SmartGraphs. +Hybrid SmartGraphs are capable of using SatelliteCollections within their graph +definition and therefore can make use of all the benefits of +[SatelliteCollections](satellites.md). + +Edge definitions can now be created between SmartCollections and +SatelliteCollections. As SatelliteCollections are globally replicated to each +participating DB-Server, regular graph traversals, weighted traversals, +shortest path, and k shortest paths queries can partially be executed locally on +each DB-Server. This means that query execution can be fully local whenever +actual data from the SatelliteCollections is being processed. This can improve +data locality and reduce the number of network hops between cluster nodes. + +In case you do have collections that are needed in almost every traversal but +are small enough to be copied over to every participating DB-Server, +Hybrid SmartGraphs are the perfect fit, as this will increase the amount of +local query execution. + +Hybrid SmartGraphs can also be disjoint. A Disjoint SmartGraph prohibits edges +connecting different SmartGraph components. The same rule applies to +[Hybrid Disjoint SmartGraphs](graphs-smart-graphs.html#Benefits-of-Hybrid-Disjoint-SmartGraphs). +If your graph does not need edges between vertices with different SmartGraph +attribute values, then you should enable this option. This topology restriction +allows the query optimizer to improve traversal execution times, because the +execution can be pushed down to a single DB-Server in many cases. + +[Hybrid SmartGraphs](graphs-smart-graphs.html#benefits-of-hybrid-smartgraphs) +are only available in the Enterprise Edition. + AQL --- @@ -29,43 +61,6 @@ DECAY_LINEAR(5, 0, 10, 0, 0.2) // 0.6 DECAY_EXP(2, 0, 10, 0, 0.2) // 0.7247796636776955 ``` -Graph --- - -### Hybrid SmartGraphs - -SmartGraphs have been extended with a new option to create Hybrid Smart Graphs. -Hybrid SmartGraphs are capable of using Satellite Collections within their graph -definition and therefore can make use of all the benefits of [SatelliteCollections](satellites.html). -EdgeDefinitions can now be created between SmartCollections and SatelliteCollections. -As Satellite Collections are globally replicated to each participating DB-Server, -graph traversals, shortest path, weighted traversals and k-shortest-paths queries -can be executed partially locally on each DB-Server. This means that query execution -can be fully local whenever actual data from the Satellite part is being processed. -This can improve data locality and reduce the number of network hops between cluster -nodes. - -In case you do have collections which are almost needed in every traversal, but are -small enough to be copied over to every participating DB-Server, Hybrid Smart Graphs -are the perfect fit, as this will increase the amount of local query execution. - -[Hybrid SmartGraphs](graphs-smart-graphs.html#benefits-of-hybrid-smartgraphs) -are only available in the Enterprise Edition and the -[ArangoDB Cloud](https://cloud.arangodb.com/home?utm_source=docs&utm_medium=cluster_pages&utm_campaign=docs_traffic). - -### Hybrid Disjoint SmartGraphs - -A Disjoint SmartGraph prohibits edges connecting different SmartGraph components. -The same rule applies to Hybrid Disjoint SmartGraphs. If your graph doesn't need -edges between vertices with different SmartGraph attribute values, then you should -enable this option. This topology restriction allows the query optimizer to improve -traversal execution times, because in many cases the execution can be pushed down -to a single DB-Server. - -[Hybrid Disjoint SmartGraphs](graphs-smart-graphs.html#benefits-of-hybrid-disjoint-smartgraphs) -are only available in the Enterprise Edition and the -[ArangoDB Cloud](https://cloud.arangodb.com/home?utm_source=docs&utm_medium=cluster_pages&utm_campaign=docs_traffic). - UI -- From 9d992294b90d80b7ba59af537a223deaf7da947a Mon Sep 17 00:00:00 2001 From: Santanu Date: Tue, 28 Sep 2021 22:25:18 +0530 Subject: [PATCH 17/21] Fixed Links --- 3.9/graphs-general-graphs-management.md | 2 +- 3.9/highlights.md | 2 +- 3.9/release-notes-new-features39.md | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/3.9/graphs-general-graphs-management.md b/3.9/graphs-general-graphs-management.md index a4409c13cd..8a93ce1cca 100644 --- a/3.9/graphs-general-graphs-management.md +++ b/3.9/graphs-general-graphs-management.md @@ -359,7 +359,7 @@ Add another edge definition to the graph: The relation definition to extend the graph - `options` (object): Additional options related to the edge definition itself. - See [Edge Definition Options](#edge-definition-option). + See [Edge Definition Options](#edge-definition-options). Extends the edge definitions of a graph. If an orphan collection is used in this edge definition, it will be removed from the orphanage. If the edge collection of diff --git a/3.9/highlights.md b/3.9/highlights.md index 95b0233621..55f56b77ea 100644 --- a/3.9/highlights.md +++ b/3.9/highlights.md @@ -39,7 +39,7 @@ Version 3.8 indexing. Support for **geo-spatial queries** through new [Geo](analyzers.html#geojson) [Analyzers](analyzers.html#geopoint) and - [ArangoSearch Geo functions](functions-arangosearch.html#geo-functions). + [ArangoSearch Geo functions](aql/functions-arangosearch.html#geo-functions). {% comment %}A new [**Stopwords Analyzer**](analyzers.html#stopwords) that can be used standalone or in an Analyzer pipeline.{% endcomment %} diff --git a/3.9/release-notes-new-features39.md b/3.9/release-notes-new-features39.md index 0caa27ddc3..b351d2c3ff 100644 --- a/3.9/release-notes-new-features39.md +++ b/3.9/release-notes-new-features39.md @@ -15,7 +15,7 @@ Hybrid (Disjoint) SmartGraphs SmartGraphs have been extended with a new option to create Hybrid SmartGraphs. Hybrid SmartGraphs are capable of using SatelliteCollections within their graph definition and therefore can make use of all the benefits of -[SatelliteCollections](satellites.md). +[SatelliteCollections](satellites.html). Edge definitions can now be created between SmartCollections and SatelliteCollections. As SatelliteCollections are globally replicated to each @@ -32,7 +32,7 @@ local query execution. Hybrid SmartGraphs can also be disjoint. A Disjoint SmartGraph prohibits edges connecting different SmartGraph components. The same rule applies to -[Hybrid Disjoint SmartGraphs](graphs-smart-graphs.html#Benefits-of-Hybrid-Disjoint-SmartGraphs). +[Hybrid Disjoint SmartGraphs](graphs-smart-graphs.html#benefits-of-hybrid-disjoint-smartgraphs). If your graph does not need edges between vertices with different SmartGraph attribute values, then you should enable this option. This topology restriction allows the query optimizer to improve traversal execution times, because the From c3c102cc7bdc3e210c913bc9327a047149dbbeae Mon Sep 17 00:00:00 2001 From: Michael Hackstein Date: Thu, 7 Oct 2021 15:29:48 +0200 Subject: [PATCH 18/21] Removed illegally added Merge Conflict marker --- 3.9/release-notes-api-changes39.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/3.9/release-notes-api-changes39.md b/3.9/release-notes-api-changes39.md index 4ffa9d86f4..960158d8f5 100644 --- a/3.9/release-notes-api-changes39.md +++ b/3.9/release-notes-api-changes39.md @@ -232,11 +232,6 @@ substitution. ## JavaScript API -<<<<<<< HEAD -Using the replacements will work from ArangoDB 3.7 onwards already, so -any client applications that still call the old addresses can be adjusted -to call the new addresses from 3.7 onwards. -======= All collections in ArangoDB are now always in the "loaded" state. Any JavaScript functions for returning a collection's status will now return "loaded", unconditionally. @@ -245,4 +240,3 @@ The JavaScript functions for loading and unloading collections (i.e. `db..load()` and `db..unload()`) have been turned into no-ops. They still exist in ArangoDB 3.9, but do not serve any purpose and are deprecated. ->>>>>>> e2a43a757d25ee65c2cf3a9d9481638008981c3c From 114b7cbf7c61c26e70822fc6e4cbd1ad7498364d Mon Sep 17 00:00:00 2001 From: Simran Spiller Date: Mon, 11 Oct 2021 13:30:03 +0200 Subject: [PATCH 19/21] Review, add JS API examples --- 3.9/graphs-general-graphs-management.md | 2 +- 3.9/graphs-smart-graphs.md | 50 ++++++++++++++++++++-- 3.9/release-notes-api-changes39.md | 55 +++++++++++-------------- 3.9/release-notes-new-features39.md | 4 +- 4 files changed, 75 insertions(+), 36 deletions(-) diff --git a/3.9/graphs-general-graphs-management.md b/3.9/graphs-general-graphs-management.md index 8a93ce1cca..dcc12da225 100644 --- a/3.9/graphs-general-graphs-management.md +++ b/3.9/graphs-general-graphs-management.md @@ -123,7 +123,7 @@ collection in *toVertexCollections*. The following edge definition options are supported: - `satellites` (array): - An array of collection names that will be used to create SatelliteCollections + An array of collection names that will be used to create [SatelliteCollections](satellites.html) for a Hybrid (Disjoint) SmartGraph (Enterprise Edition only). Each array element must be a string and a valid collection name. The collection type cannot be modified later. diff --git a/3.9/graphs-smart-graphs.md b/3.9/graphs-smart-graphs.md index 87f6015b7a..a15a3402c1 100644 --- a/3.9/graphs-smart-graphs.md +++ b/3.9/graphs-smart-graphs.md @@ -75,8 +75,9 @@ Benefits of Hybrid SmartGraphs ------------------------------- Hybrid SmartGraphs are capable of using SatelliteCollections within their graph -definition. Therefore, defined edge definitions between SmartCollections and -SatelliteCollections can be created. As SatelliteCollections are globally +definition. Therefore, edge definitions defined between SmartCollections and +SatelliteCollections can be created. As SatelliteCollections (and the edge +collections between SmartGraph collections and SatelliteCollection) are globally replicated to each participating DB-Server, (weighted) graph traversals and (k-)shortest path(s) queries can partially be executed locally on each DB-Server. This means a larger part of the query can be executed fully local @@ -98,7 +99,11 @@ Benefits of Hybrid Disjoint SmartGraphs --------------------------------------- Hybrid Disjoint SmartGraphs are like Hybrid SmartGraphs but also prohibit -edges between vertices with different `smartGraphAttribute` values. +edges between vertices with different `smartGraphAttribute` values. This +restriction makes it unnecessary to replicate the edge collections between +SmartGraph collections and SatelliteCollections to all DB-Servers for local +execution. They are sharded like the SmartGraph collections instead +(`distributeShardsLike`). Getting started --------------- @@ -194,3 +199,42 @@ correct sharding already). @endDocuBlock smartGraphCreateGraphHowTo3_cluster {% endarangoshexample %} {% include arangoshexample.html id=examplevar script=script result=result %} + +**Create a Hybrid SmartGraph** + +In addition to the attributes you would set to create a SmartGraph, there is an +additional attribute `satellites` you need to set. It needs to be an array of +one or more collection names. These names can be used in the edge definition +(relation) and these collections will be created as SatelliteCollections: + +{% arangoshexample examplevar="examplevar" script="script" result="result" %} + @startDocuBlockInline hybridSmartGraphCreateGraphHowTo1_cluster + @EXAMPLE_ARANGOSH_OUTPUT{hybridSmartGraphCreateGraphHowTo1_cluster} + var graph_module = require("@arangodb/smart-graph"); + var rel = graph_module._relation("isCustomer", "shop", "customer") + var graph = graph_module._create("myGraph", [rel], [], {satellites: ["shop", "customer"], smartGraphAttribute: "region", numberOfShards: 9}); + graph_module._graph("myGraph"); + ~graph_module._drop("myGraph"); + @END_EXAMPLE_ARANGOSH_OUTPUT + @endDocuBlock hybridSmartGraphCreateGraphHowTo1_cluster +{% endarangoshexample %} +{% include arangoshexample.html id=examplevar script=script result=result %} + +**Create a Hybrid Disjoint SmartGraph** + +The option `isDisjoint` needs to be set to `true` in addition to the other +options for a Hybrid SmartGraph. Only the `shop` vertex collection is created +as a SatelliteCollection in this example: + +{% arangoshexample examplevar="examplevar" script="script" result="result" %} + @startDocuBlockInline hybridSmartGraphCreateGraphHowTo2_cluster + @EXAMPLE_ARANGOSH_OUTPUT{hybridSmartGraphCreateGraphHowTo2_cluster} + var graph_module = require("@arangodb/smart-graph"); + var rel = graph_module._relation("isCustomer", "shop", "customer") + var graph = graph_module._create("myGraph", [rel], [], {satellites: ["shop"], smartGraphAttribute: "region", isDisjoint: true, numberOfShards: 9}); + graph_module._graph("myGraph"); + ~graph_module._drop("myGraph"); + @END_EXAMPLE_ARANGOSH_OUTPUT + @endDocuBlock hybridSmartGraphCreateGraphHowTo2_cluster +{% endarangoshexample %} +{% include arangoshexample.html id=examplevar script=script result=result %} diff --git a/3.9/release-notes-api-changes39.md b/3.9/release-notes-api-changes39.md index 960158d8f5..9c9bd815bc 100644 --- a/3.9/release-notes-api-changes39.md +++ b/3.9/release-notes-api-changes39.md @@ -16,44 +16,39 @@ integrations for ArangoDB 3.9. The following changes affect the behavior of the RESTful graph APIs at endpoints starting with path `/_api/gharial/`: -The options object now supports a new field: `satellites`, when creating a graph (POST). -The value of satellites is optional. In case it is defined, it needs to be an array -of collection names. Each defined collection name must be a string. This value is -only valid in case of SmartGraphs (Enterprise-Only). In a community based graph it -will be ignored. +The options object now supports a new optional field `satellites` in the +Enterprise Edition when creating a graph (POST method). If set, it needs to be +an array of collection names. Each name must be a string and valid as collection +name. The `satellites` option is ignored in the Community Edition. -Using `satellites` during SmartGraph creation will result in a Hybrid Smart Graph. +Using `satellites` during SmartGraph creation will result in a Hybrid SmartGraph. Using `satellites` during Disjoint SmartGraph creation will result in a Hybrid Disjoint SmartGraph. -Hybrid (Disjoint) SmartGraphs are capable of having Satellite collections in their -graph definitions. If a collection is found in `satellites` and they are also being -used in the graph definition itself (e.g. EdgeDefinition), this collection will be -created as a satellite collection. Hybrid (Disjoint) Smart Graphs are then capable -of executing all type of graph queries between the regular SmartCollections and -Satellite collections. +Hybrid (Disjoint) SmartGraphs are capable of having SatelliteCollections in their +graph definitions. If a collection is named in `satellites` and also used in the +graph definition itself (e.g. EdgeDefinition), this collection will be created +as a SatelliteCollection. Hybrid (Disjoint) SmartGraphs are then capable of +executing all types of graph queries between the regular SmartCollections and +SatelliteCollections. The following changes affect the behavior of the RESTful graph APIs at -endpoints starting with path `/_api/gharial/{graph}/edge`: - -Creating and modifying a new edge definition (POST / PUT): -Added new optional options object. This was not available in previous ArangoDB -versions. The options object currently can contain a field called `satellites`. -The field must be an array and contain collection name(s) written down as strings. -If an EdgeDefinition does contain a collection name, which is also defined in -the satellites option entry, it will be created as a Satellite collection. +endpoints starting with path `/_api/gharial/{graph}/edge` and +`/_api/gharial/{graph}/vertex`: + +Added new optional `options` object that can be set when creating a new or +modifying an existing edge definition (POST / PUT method), as well as when +creating a new vertex collection (POST method). This was not available in +previous ArangoDB versions. The `options` object can currently contain a field +called `satellites` only. + +The `satellites` field must be an array with one or more collection name strings. +If an EdgeDefinition contains a collection name that is also contained in the +`satellites` option, or if the vertex collection to add is contained in the +`satellites` option, the collection will be created as a SatelliteCollection. Otherwise, it will be ignored. This option only takes effect using SmartGraphs. -The following changes affect the behavior of the RESTful graph APIs at -endpoints starting with path `/_api/gharial/{graph}/vertex`: - -Creating a new vertex collection (POST): -Added new optional options object. This was not available in previous ArangoDB -versions. The options object currently can contain a field called `satellites`. -The field must be an array and contain collection name(s) written down as strings. -If the vertex to add is also defined in the satellites option entry, it will be -created as a Satellite collection. Otherwise, it will be ignored. This option -only takes effect using SmartGraphs. +Also see [Graph Management](http/gharial-management.html). ### Extended naming convention for databases diff --git a/3.9/release-notes-new-features39.md b/3.9/release-notes-new-features39.md index 9ccc890887..117b5d6b11 100644 --- a/3.9/release-notes-new-features39.md +++ b/3.9/release-notes-new-features39.md @@ -9,8 +9,8 @@ The following list shows in detail which features have been added or improved in ArangoDB 3.9. ArangoDB 3.9 also contains several bug fixes that are not listed here. -Hybrid (Disjoint) SmartGraphs ------------------------------ +Hybrid (Disjoint) SmartGraphs (Enterprise Edition) +-------------------------------------------------- SmartGraphs have been extended with a new option to create Hybrid SmartGraphs. Hybrid SmartGraphs are capable of using SatelliteCollections within their graph From cc1c7f372353d662b1de6ad39d1b00a2d56908b5 Mon Sep 17 00:00:00 2001 From: Simran Spiller Date: Mon, 11 Oct 2021 17:42:43 +0200 Subject: [PATCH 20/21] Fix examples, add generated files for preview --- .../hybridSmartGraphCreateGraphHowTo1_cluster.generated | 9 +++++++++ .../hybridSmartGraphCreateGraphHowTo2_cluster.generated | 9 +++++++++ 3.9/graphs-smart-graphs.md | 9 +++++---- 3 files changed, 23 insertions(+), 4 deletions(-) create mode 100644 3.9/generated/Examples/hybridSmartGraphCreateGraphHowTo1_cluster.generated create mode 100644 3.9/generated/Examples/hybridSmartGraphCreateGraphHowTo2_cluster.generated diff --git a/3.9/generated/Examples/hybridSmartGraphCreateGraphHowTo1_cluster.generated b/3.9/generated/Examples/hybridSmartGraphCreateGraphHowTo1_cluster.generated new file mode 100644 index 0000000000..7bb525ab39 --- /dev/null +++ b/3.9/generated/Examples/hybridSmartGraphCreateGraphHowTo1_cluster.generated @@ -0,0 +1,9 @@ +arangosh> var graph_module = require("@arangodb/smart-graph"); +arangosh> var rel = graph_module._relation("isCustomer", "shop", "customer") +arangosh> var graph = graph_module._create("myGraph", [rel], [], {satellites: ["shop", "customer"], smartGraphAttribute: "region", numberOfShards: 9}); +arangosh> graph_module._graph("myGraph"); +{[SmartGraph] + "isCustomer" : [ArangoCollection 10060, "isCustomer" (type edge, status loaded)], + "shop" : [ArangoCollection 10058, "shop" (type document, status loaded)], + "customer" : [ArangoCollection 10059, "customer" (type document, status loaded)] +} diff --git a/3.9/generated/Examples/hybridSmartGraphCreateGraphHowTo2_cluster.generated b/3.9/generated/Examples/hybridSmartGraphCreateGraphHowTo2_cluster.generated new file mode 100644 index 0000000000..19d4208b5f --- /dev/null +++ b/3.9/generated/Examples/hybridSmartGraphCreateGraphHowTo2_cluster.generated @@ -0,0 +1,9 @@ +arangosh> var graph_module = require("@arangodb/smart-graph"); +arangosh> var rel = graph_module._relation("isCustomer", "shop", "customer") +arangosh> var graph = graph_module._create("myGraph", [rel], [], {satellites: ["shop"], smartGraphAttribute: "region", isDisjoint: true, numberOfShards: 9}); +arangosh> graph_module._graph("myGraph"); +{[SmartGraph] + "isCustomer" : [ArangoCollection 10079, "isCustomer" (type edge, status loaded)], + "shop" : [ArangoCollection 10078, "shop" (type document, status loaded)], + "customer" : [ArangoCollection 10068, "customer" (type document, status loaded)] +} diff --git a/3.9/graphs-smart-graphs.md b/3.9/graphs-smart-graphs.md index a15a3402c1..8e053ce460 100644 --- a/3.9/graphs-smart-graphs.md +++ b/3.9/graphs-smart-graphs.md @@ -204,8 +204,9 @@ correct sharding already). In addition to the attributes you would set to create a SmartGraph, there is an additional attribute `satellites` you need to set. It needs to be an array of -one or more collection names. These names can be used in the edge definition -(relation) and these collections will be created as SatelliteCollections: +one or more collection names. These names can be used in edge definitions +(relations) and these collections will be created as SatelliteCollections. +In this example, both vertex collections are created as SatelliteCollections: {% arangoshexample examplevar="examplevar" script="script" result="result" %} @startDocuBlockInline hybridSmartGraphCreateGraphHowTo1_cluster @@ -214,7 +215,7 @@ one or more collection names. These names can be used in the edge definition var rel = graph_module._relation("isCustomer", "shop", "customer") var graph = graph_module._create("myGraph", [rel], [], {satellites: ["shop", "customer"], smartGraphAttribute: "region", numberOfShards: 9}); graph_module._graph("myGraph"); - ~graph_module._drop("myGraph"); + ~graph_module._drop("myGraph", true); @END_EXAMPLE_ARANGOSH_OUTPUT @endDocuBlock hybridSmartGraphCreateGraphHowTo1_cluster {% endarangoshexample %} @@ -233,7 +234,7 @@ as a SatelliteCollection in this example: var rel = graph_module._relation("isCustomer", "shop", "customer") var graph = graph_module._create("myGraph", [rel], [], {satellites: ["shop"], smartGraphAttribute: "region", isDisjoint: true, numberOfShards: 9}); graph_module._graph("myGraph"); - ~graph_module._drop("myGraph"); + ~graph_module._drop("myGraph", true); @END_EXAMPLE_ARANGOSH_OUTPUT @endDocuBlock hybridSmartGraphCreateGraphHowTo2_cluster {% endarangoshexample %} From 44e9c7d8868d08a8b33c0949b39fa9d445573d94 Mon Sep 17 00:00:00 2001 From: Simran Spiller Date: Tue, 12 Oct 2021 12:35:00 +0200 Subject: [PATCH 21/21] Add satellites option to SmartGraph management --- 3.9/graphs-smart-graphs-management.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/3.9/graphs-smart-graphs-management.md b/3.9/graphs-smart-graphs-management.md index 88533fa4da..c97513d487 100644 --- a/3.9/graphs-smart-graphs-management.md +++ b/3.9/graphs-smart-graphs-management.md @@ -57,6 +57,11 @@ enforce the correct sharding. - `isDisjoint` (bool, optional): If set to true, a Disjoint SmartGraph will be created. This flag is not editable after creation. Default: false. + - `satellites` (array, optional): + An array of collection names that will be used to create + [SatelliteCollections](satellites.html) for a Hybrid (Disjoint) SmartGraph. + Each array element must be a string and a valid collection name. + The collection type cannot be modified later. The creation of a graph requires the name and some SmartGraph options. Due to the API `edgeDefinitions` and `orphanCollections` have to be given, but