Skip to content

Commit df8fb01

Browse files
arangodb-docs-automation[bot]CircleCI Job
and
CircleCI Job
authored
[skip ci] Automatic commit of generated files from CircleCI (#229)
Co-authored-by: CircleCI Job <daniele@arangodb.com>
1 parent f2d786d commit df8fb01

File tree

7 files changed

+441
-56
lines changed

7 files changed

+441
-56
lines changed

site/data/3.10/arangod.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1109,7 +1109,7 @@
11091109
"agent",
11101110
"single"
11111111
],
1112-
"default" : 7754364928,
1112+
"default" : 7739684864,
11131113
"deprecatedIn" : null,
11141114
"description" : "The global size limit for all caches (in bytes).",
11151115
"dynamic" : true,
@@ -7239,15 +7239,15 @@
72397239
"type" : "boolean"
72407240
},
72417241
"query.global-memory-limit" : {
7242-
"base" : 33164943360,
7242+
"base" : 33106223104,
72437243
"category" : "option",
72447244
"component" : [
72457245
"coordinator",
72467246
"dbserver",
72477247
"agent",
72487248
"single"
72497249
],
7250-
"default" : 26863604121,
7250+
"default" : 26816040714,
72517251
"deprecatedIn" : null,
72527252
"description" : "The memory threshold for all AQL queries combined (in bytes, 0 = no limit).",
72537253
"dynamic" : true,
@@ -7505,15 +7505,15 @@
75057505
"type" : "double"
75067506
},
75077507
"query.memory-limit" : {
7508-
"base" : 33164943360,
7508+
"base" : 33106223104,
75097509
"category" : "option",
75107510
"component" : [
75117511
"coordinator",
75127512
"dbserver",
75137513
"agent",
75147514
"single"
75157515
],
7516-
"default" : 19898966016,
7516+
"default" : 19863733863,
75177517
"deprecatedIn" : null,
75187518
"description" : "The memory threshold per AQL query (in bytes, 0 = no limit).",
75197519
"dynamic" : true,
@@ -8625,7 +8625,7 @@
86258625
"agent",
86268626
"single"
86278627
],
8628-
"default" : 9305237913,
8628+
"default" : 9287621836,
86298629
"deprecatedIn" : null,
86308630
"description" : "The size of block cache (in bytes).",
86318631
"dynamic" : true,
@@ -10972,7 +10972,7 @@
1097210972
"agent",
1097310973
"single"
1097410974
],
10975-
"default" : 12406983884,
10975+
"default" : 12383495782,
1097610976
"deprecatedIn" : null,
1097710977
"description" : "The maximum total size of in-memory write buffers (0 = unbounded).",
1097810978
"dynamic" : true,

site/data/3.11/allMetrics.yaml

Lines changed: 69 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5418,6 +5418,23 @@
54185418
`--rocksdb.auto-refill-index-caches` startup option is enabled.
54195419
On Agents and Coordinators, the values reported by this metric are always zero.
54205420
5421+
- name: rocksdb_cache_edge_compressed_inserts_total
5422+
introducedIn: "3.11.3"
5423+
help: |
5424+
Total number of compressed inserts into the in-memory edge cache.
5425+
unit: number
5426+
type: counter
5427+
category: Statistics
5428+
complexity: advanced
5429+
exposedBy:
5430+
- dbserver
5431+
- agent
5432+
- single
5433+
description: |
5434+
Total number of compressed inserts into the in-memory edge cache. This
5435+
metric is increased whenever a payload value for the edge cache was
5436+
compressed and then inserted.
5437+
54215438
- name: rocksdb_cache_edge_compression_ratio
54225439
introducedIn: "3.11.2"
54235440
help: |
@@ -5436,44 +5453,85 @@
54365453
in the in-memory edge cache. The value should be 0 if compression is not
54375454
used.
54385455
5439-
- name: rocksdb_cache_edge_effective_entries_size
5456+
- name: rocksdb_cache_edge_empty_inserts_total
5457+
introducedIn: "3.11.4"
5458+
help: |
5459+
Total number of insertions into the in-memory edge cache
5460+
for non-connected edges.
5461+
unit: number
5462+
type: counter
5463+
category: Statistics
5464+
complexity: advanced
5465+
exposedBy:
5466+
- dbserver
5467+
- agent
5468+
- single
5469+
description: |
5470+
Total number of insertions into the in-memory edge cache for edges that
5471+
were not connected to other edges.
5472+
In this case, the edge case will store the information that there are no
5473+
connected edges.
5474+
5475+
- name: rocksdb_cache_edge_inserts_effective_entries_size_total
5476+
renamedFrom: rocksdb_cache_edge_effective_entries_size
54405477
introducedIn: "3.11.2"
54415478
help: |
54425479
Total effective memory size of all edge cache entries ever stored in the edge cache.
54435480
unit: bytes
5444-
type: gauge
5481+
type: counter
54455482
category: Statistics
54465483
complexity: advanced
54475484
exposedBy:
54485485
- dbserver
54495486
- agent
54505487
- single
54515488
description: |
5452-
Total effective memory size of all edge cache data that were ever stored in
5453-
the edge cache of any collection/shard. The size is calculated after any
5454-
potential compression, so the compression efficiency can be estimated by
5455-
this metric by the size of the uncompressed edge cache entries.
5489+
Total effective memory size of all edge cache data that were stored in the
5490+
the edge cache of any collection/shard since the server start.
5491+
The size is calculated after any potential compression, so the compression
5492+
efficiency can be estimated by this metric by the size of the uncompressed
5493+
edge cache entries.
54565494
Note that this metric is incremented upon every edge cache insert attempt.
54575495
It is increased also when data cannot be inserted into the cache (e.g. because
54585496
the cache had no memory left). The metric is not decreased when data gets
54595497
evicted from the cache.
54605498
5461-
- name: rocksdb_cache_edge_uncompressed_entries_size
5499+
- name: rocksdb_cache_edge_inserts_total
5500+
introducedIn: "3.11.4"
5501+
help: |
5502+
Total number of insertions into the in-memory edge cache.
5503+
in the edge cache.
5504+
unit: number
5505+
type: counter
5506+
category: Statistics
5507+
complexity: advanced
5508+
exposedBy:
5509+
- dbserver
5510+
- agent
5511+
- single
5512+
description: |
5513+
Total number of insertions into the in-memory edge cache.
5514+
This metric is increased whenever a value is inserted into the
5515+
in-memory edge cache, regardless of whether the value was
5516+
compressed or not.
5517+
5518+
- name: rocksdb_cache_edge_inserts_uncompressed_entries_size_total
5519+
renamedFrom: rocksdb_cache_edge_uncompressed_entries_size
54625520
introducedIn: "3.11.2"
54635521
help: |
54645522
Total gross memory size of all edge cache entries ever stored in the edge cache.
54655523
unit: bytes
5466-
type: gauge
5524+
type: counter
54675525
category: Statistics
54685526
complexity: advanced
54695527
exposedBy:
54705528
- dbserver
54715529
- agent
54725530
- single
54735531
description: |
5474-
Total gross memory size of all edge cache data that were ever stored in
5475-
the edge cache of any collection/shard. The size is calculated before any
5476-
potential compression.
5532+
Total gross memory size of all edge cache data that were stored in the edge
5533+
cache of any collection/shard since the server start.
5534+
The size is calculated before any potential compression.
54775535
Note that this metric is incremented upon every cache insert attempt.
54785536
It is increased also when data cannot be inserted into the cache (e.g. because
54795537
the cache had no memory left). The metric is not decreased when data gets

site/data/3.11/arangod.json

Lines changed: 71 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1102,6 +1102,38 @@
11021102
"section" : "cache",
11031103
"type" : "uint32"
11041104
},
1105+
"cache.high-water-multiplier" : {
1106+
"base" : 1,
1107+
"category" : "option",
1108+
"component" : [
1109+
"dbserver",
1110+
"single"
1111+
],
1112+
"default" : 0.56,
1113+
"deprecatedIn" : null,
1114+
"description" : "The multiplier to be used for calculating the in-memory cache's effective memory usage limit.",
1115+
"dynamic" : false,
1116+
"enterpriseOnly" : false,
1117+
"experimental" : false,
1118+
"hidden" : true,
1119+
"introducedIn" : [
1120+
"v3.11.3"
1121+
],
1122+
"longDescription" : "This value controls the cache's effective memory usage limit.\nThe user-defined memory limit (i.e. `--cache.size`) is multipled with this\nvalue to create the effective memory limit, from which on the cache will \ntry to free up memory by evicting the oldest entries.",
1123+
"maxInclusive" : true,
1124+
"maxValue" : 1,
1125+
"minInclusive" : true,
1126+
"minValue" : 0.1,
1127+
"obsolete" : false,
1128+
"os" : [
1129+
"linux",
1130+
"macos",
1131+
"windows"
1132+
],
1133+
"requiresValue" : true,
1134+
"section" : "cache",
1135+
"type" : "double"
1136+
},
11051137
"cache.ideal-lower-fill-ratio" : {
11061138
"base" : 1,
11071139
"category" : "option",
@@ -1166,6 +1198,37 @@
11661198
"section" : "cache",
11671199
"type" : "double"
11681200
},
1201+
"cache.max-spare-memory-usage" : {
1202+
"base" : 1,
1203+
"category" : "option",
1204+
"component" : [
1205+
"dbserver",
1206+
"single"
1207+
],
1208+
"default" : 67108864,
1209+
"deprecatedIn" : null,
1210+
"description" : "The maximum memory usage for spare tables in the in-memory cache.",
1211+
"dynamic" : false,
1212+
"enterpriseOnly" : false,
1213+
"experimental" : false,
1214+
"hidden" : true,
1215+
"introducedIn" : [
1216+
"v3.11.3"
1217+
],
1218+
"maxInclusive" : true,
1219+
"maxValue" : 18446744073709551615,
1220+
"minInclusive" : true,
1221+
"minValue" : 0,
1222+
"obsolete" : false,
1223+
"os" : [
1224+
"linux",
1225+
"macos",
1226+
"windows"
1227+
],
1228+
"requiresValue" : true,
1229+
"section" : "cache",
1230+
"type" : "uint64"
1231+
},
11691232
"cache.min-value-size-for-edge-compression" : {
11701233
"base" : 1,
11711234
"category" : "option",
@@ -1239,7 +1302,7 @@
12391302
"agent",
12401303
"single"
12411304
],
1242-
"default" : 7754364928,
1305+
"default" : 7739684864,
12431306
"deprecatedIn" : null,
12441307
"description" : "The global size limit for all caches (in bytes).",
12451308
"dynamic" : true,
@@ -2301,7 +2364,7 @@
23012364
"experimental" : false,
23022365
"hidden" : false,
23032366
"introducedIn" : [
2304-
"v3.11.20"
2367+
"v3.11.2"
23052368
],
23062369
"longDescription" : "If the maximum number of databases is reached, no\nadditional databases can be created in the deployment. In order to create additional\ndatabases, other databases need to be removed first.\"",
23072370
"maxInclusive" : true,
@@ -7290,15 +7353,15 @@
72907353
"type" : "boolean"
72917354
},
72927355
"query.global-memory-limit" : {
7293-
"base" : 33164943360,
7356+
"base" : 33106223104,
72947357
"category" : "option",
72957358
"component" : [
72967359
"coordinator",
72977360
"dbserver",
72987361
"agent",
72997362
"single"
73007363
],
7301-
"default" : 26863604121,
7364+
"default" : 26816040714,
73027365
"deprecatedIn" : null,
73037366
"description" : "The memory threshold for all AQL queries combined (in bytes, 0 = no limit).",
73047367
"dynamic" : true,
@@ -7588,15 +7651,15 @@
75887651
"type" : "double"
75897652
},
75907653
"query.memory-limit" : {
7591-
"base" : 33164943360,
7654+
"base" : 33106223104,
75927655
"category" : "option",
75937656
"component" : [
75947657
"coordinator",
75957658
"dbserver",
75967659
"agent",
75977660
"single"
75987661
],
7599-
"default" : 19898966016,
7662+
"default" : 19863733863,
76007663
"deprecatedIn" : null,
76017664
"description" : "The memory threshold per AQL query (in bytes, 0 = no limit).",
76027665
"dynamic" : true,
@@ -8831,7 +8894,7 @@
88318894
"agent",
88328895
"single"
88338896
],
8834-
"default" : 9305237913,
8897+
"default" : 9287621836,
88358898
"deprecatedIn" : null,
88368899
"description" : "The size of block cache (in bytes).",
88378900
"dynamic" : true,
@@ -11412,7 +11475,7 @@
1141211475
"agent",
1141311476
"single"
1141411477
],
11415-
"default" : 12406983884,
11478+
"default" : 12383495782,
1141611479
"deprecatedIn" : null,
1141711480
"description" : "The maximum total size of in-memory write buffers (0 = unbounded).",
1141811481
"dynamic" : true,

0 commit comments

Comments
 (0)