Skip to content

Commit

Permalink
Add version specific schema handling for total_indexing_buffer and to…
Browse files Browse the repository at this point in the history
…tal_indexing_buffer_in_bytes fields

Signed-off-by: hye-on <ain0103@naver.com>
  • Loading branch information
hye-on committed Jan 27, 2025
1 parent 0582674 commit 394be9e
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions spec/schemas/nodes.info.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,17 @@ components:
$ref: '#/components/schemas/NodeThreadPoolInfo'
total_indexing_buffer:
description: Total heap allowed to be used to hold recently indexed documents before they must be written to disk. This size is a shared pool across all shards on this node, and is controlled by Indexing Buffer settings.
$ref: '_common.yaml#/components/schemas/HumanReadableByteCount'
oneOf:
- $ref: '_common.yaml#/components/schemas/ByteCount'
x-version-removed: 3.0

Check failure on line 71 in spec/schemas/nodes.info.yaml

View workflow job for this annotation

GitHub Actions / lint

Trailing zeros are not allowed, fix to `3`
- $ref: '_common.yaml#/components/schemas/HumanReadableByteCount'
x-version-added: 3.0

Check failure on line 73 in spec/schemas/nodes.info.yaml

View workflow job for this annotation

GitHub Actions / lint

Trailing zeros are not allowed, fix to `3`
total_indexing_buffer_in_bytes:
$ref: '_common.yaml#/components/schemas/ByteCount'
oneOf:
- $ref: '_common.yaml#/components/schemas/HumanReadableByteCount'
x-version-removed: 3.0

Check failure on line 77 in spec/schemas/nodes.info.yaml

View workflow job for this annotation

GitHub Actions / lint

Trailing zeros are not allowed, fix to `3`
- $ref: '_common.yaml#/components/schemas/ByteCount'
x-version-added: 3.0

Check failure on line 79 in spec/schemas/nodes.info.yaml

View workflow job for this annotation

GitHub Actions / lint

Trailing zeros are not allowed, fix to `3`
transport:
$ref: '#/components/schemas/NodeInfoTransport'
transport_address:
Expand Down

0 comments on commit 394be9e

Please sign in to comment.