Skip to content

[CircleCI Generated] generate-scheduled-6065 #229

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions site/data/3.10/arangod.json
Original file line number Diff line number Diff line change
Expand Up @@ -1109,7 +1109,7 @@
"agent",
"single"
],
"default" : 7754364928,
"default" : 7739684864,
"deprecatedIn" : null,
"description" : "The global size limit for all caches (in bytes).",
"dynamic" : true,
Expand Down Expand Up @@ -7239,15 +7239,15 @@
"type" : "boolean"
},
"query.global-memory-limit" : {
"base" : 33164943360,
"base" : 33106223104,
"category" : "option",
"component" : [
"coordinator",
"dbserver",
"agent",
"single"
],
"default" : 26863604121,
"default" : 26816040714,
"deprecatedIn" : null,
"description" : "The memory threshold for all AQL queries combined (in bytes, 0 = no limit).",
"dynamic" : true,
Expand Down Expand Up @@ -7505,15 +7505,15 @@
"type" : "double"
},
"query.memory-limit" : {
"base" : 33164943360,
"base" : 33106223104,
"category" : "option",
"component" : [
"coordinator",
"dbserver",
"agent",
"single"
],
"default" : 19898966016,
"default" : 19863733863,
"deprecatedIn" : null,
"description" : "The memory threshold per AQL query (in bytes, 0 = no limit).",
"dynamic" : true,
Expand Down Expand Up @@ -8625,7 +8625,7 @@
"agent",
"single"
],
"default" : 9305237913,
"default" : 9287621836,
"deprecatedIn" : null,
"description" : "The size of block cache (in bytes).",
"dynamic" : true,
Expand Down Expand Up @@ -10972,7 +10972,7 @@
"agent",
"single"
],
"default" : 12406983884,
"default" : 12383495782,
"deprecatedIn" : null,
"description" : "The maximum total size of in-memory write buffers (0 = unbounded).",
"dynamic" : true,
Expand Down
80 changes: 69 additions & 11 deletions site/data/3.11/allMetrics.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5418,6 +5418,23 @@
`--rocksdb.auto-refill-index-caches` startup option is enabled.
On Agents and Coordinators, the values reported by this metric are always zero.

- name: rocksdb_cache_edge_compressed_inserts_total
introducedIn: "3.11.3"
help: |
Total number of compressed inserts into the in-memory edge cache.
unit: number
type: counter
category: Statistics
complexity: advanced
exposedBy:
- dbserver
- agent
- single
description: |
Total number of compressed inserts into the in-memory edge cache. This
metric is increased whenever a payload value for the edge cache was
compressed and then inserted.

- name: rocksdb_cache_edge_compression_ratio
introducedIn: "3.11.2"
help: |
Expand All @@ -5436,44 +5453,85 @@
in the in-memory edge cache. The value should be 0 if compression is not
used.

- name: rocksdb_cache_edge_effective_entries_size
- name: rocksdb_cache_edge_empty_inserts_total
introducedIn: "3.11.4"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Will take a while until 3.11.4 gets released. I think we can merge anyway?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, we can merge.

help: |
Total number of insertions into the in-memory edge cache
for non-connected edges.
unit: number
type: counter
category: Statistics
complexity: advanced
exposedBy:
- dbserver
- agent
- single
description: |
Total number of insertions into the in-memory edge cache for edges that
were not connected to other edges.
In this case, the edge case will store the information that there are no
connected edges.

- name: rocksdb_cache_edge_inserts_effective_entries_size_total
renamedFrom: rocksdb_cache_edge_effective_entries_size
introducedIn: "3.11.2"
help: |
Total effective memory size of all edge cache entries ever stored in the edge cache.
unit: bytes
type: gauge
type: counter
category: Statistics
complexity: advanced
exposedBy:
- dbserver
- agent
- single
description: |
Total effective memory size of all edge cache data that were ever stored in
the edge cache of any collection/shard. The size is calculated after any
potential compression, so the compression efficiency can be estimated by
this metric by the size of the uncompressed edge cache entries.
Total effective memory size of all edge cache data that were stored in the
the edge cache of any collection/shard since the server start.
The size is calculated after any potential compression, so the compression
efficiency can be estimated by this metric by the size of the uncompressed
edge cache entries.
Note that this metric is incremented upon every edge cache insert attempt.
It is increased also when data cannot be inserted into the cache (e.g. because
the cache had no memory left). The metric is not decreased when data gets
evicted from the cache.

- name: rocksdb_cache_edge_uncompressed_entries_size
- name: rocksdb_cache_edge_inserts_total
introducedIn: "3.11.4"
help: |
Total number of insertions into the in-memory edge cache.
in the edge cache.
unit: number
type: counter
category: Statistics
complexity: advanced
exposedBy:
- dbserver
- agent
- single
description: |
Total number of insertions into the in-memory edge cache.
This metric is increased whenever a value is inserted into the
in-memory edge cache, regardless of whether the value was
compressed or not.

- name: rocksdb_cache_edge_inserts_uncompressed_entries_size_total
renamedFrom: rocksdb_cache_edge_uncompressed_entries_size
introducedIn: "3.11.2"
help: |
Total gross memory size of all edge cache entries ever stored in the edge cache.
unit: bytes
type: gauge
type: counter
category: Statistics
complexity: advanced
exposedBy:
- dbserver
- agent
- single
description: |
Total gross memory size of all edge cache data that were ever stored in
the edge cache of any collection/shard. The size is calculated before any
potential compression.
Total gross memory size of all edge cache data that were stored in the edge
cache of any collection/shard since the server start.
The size is calculated before any potential compression.
Note that this metric is incremented upon every cache insert attempt.
It is increased also when data cannot be inserted into the cache (e.g. because
the cache had no memory left). The metric is not decreased when data gets
Expand Down
79 changes: 71 additions & 8 deletions site/data/3.11/arangod.json
Original file line number Diff line number Diff line change
Expand Up @@ -1102,6 +1102,38 @@
"section" : "cache",
"type" : "uint32"
},
"cache.high-water-multiplier" : {
"base" : 1,
"category" : "option",
"component" : [
"dbserver",
"single"
],
"default" : 0.56,
"deprecatedIn" : null,
"description" : "The multiplier to be used for calculating the in-memory cache's effective memory usage limit.",
"dynamic" : false,
"enterpriseOnly" : false,
"experimental" : false,
"hidden" : true,
"introducedIn" : [
"v3.11.3"
],
"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.",
"maxInclusive" : true,
"maxValue" : 1,
"minInclusive" : true,
"minValue" : 0.1,
"obsolete" : false,
"os" : [
"linux",
"macos",
"windows"
],
"requiresValue" : true,
"section" : "cache",
"type" : "double"
},
"cache.ideal-lower-fill-ratio" : {
"base" : 1,
"category" : "option",
Expand Down Expand Up @@ -1166,6 +1198,37 @@
"section" : "cache",
"type" : "double"
},
"cache.max-spare-memory-usage" : {
"base" : 1,
"category" : "option",
"component" : [
"dbserver",
"single"
],
"default" : 67108864,
"deprecatedIn" : null,
"description" : "The maximum memory usage for spare tables in the in-memory cache.",
"dynamic" : false,
"enterpriseOnly" : false,
"experimental" : false,
"hidden" : true,
"introducedIn" : [
"v3.11.3"
],
"maxInclusive" : true,
"maxValue" : 18446744073709551615,
"minInclusive" : true,
"minValue" : 0,
"obsolete" : false,
"os" : [
"linux",
"macos",
"windows"
],
"requiresValue" : true,
"section" : "cache",
"type" : "uint64"
},
"cache.min-value-size-for-edge-compression" : {
"base" : 1,
"category" : "option",
Expand Down Expand Up @@ -1239,7 +1302,7 @@
"agent",
"single"
],
"default" : 7754364928,
"default" : 7739684864,
"deprecatedIn" : null,
"description" : "The global size limit for all caches (in bytes).",
"dynamic" : true,
Expand Down Expand Up @@ -2301,7 +2364,7 @@
"experimental" : false,
"hidden" : false,
"introducedIn" : [
"v3.11.20"
"v3.11.2"
],
"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.\"",
"maxInclusive" : true,
Expand Down Expand Up @@ -7290,15 +7353,15 @@
"type" : "boolean"
},
"query.global-memory-limit" : {
"base" : 33164943360,
"base" : 33106223104,
"category" : "option",
"component" : [
"coordinator",
"dbserver",
"agent",
"single"
],
"default" : 26863604121,
"default" : 26816040714,
"deprecatedIn" : null,
"description" : "The memory threshold for all AQL queries combined (in bytes, 0 = no limit).",
"dynamic" : true,
Expand Down Expand Up @@ -7588,15 +7651,15 @@
"type" : "double"
},
"query.memory-limit" : {
"base" : 33164943360,
"base" : 33106223104,
"category" : "option",
"component" : [
"coordinator",
"dbserver",
"agent",
"single"
],
"default" : 19898966016,
"default" : 19863733863,
"deprecatedIn" : null,
"description" : "The memory threshold per AQL query (in bytes, 0 = no limit).",
"dynamic" : true,
Expand Down Expand Up @@ -8831,7 +8894,7 @@
"agent",
"single"
],
"default" : 9305237913,
"default" : 9287621836,
"deprecatedIn" : null,
"description" : "The size of block cache (in bytes).",
"dynamic" : true,
Expand Down Expand Up @@ -11412,7 +11475,7 @@
"agent",
"single"
],
"default" : 12406983884,
"default" : 12383495782,
"deprecatedIn" : null,
"description" : "The maximum total size of in-memory write buffers (0 = unbounded).",
"dynamic" : true,
Expand Down
Loading