mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-16 00:00:02 +01:00

And various other cleanups and harmonizations Signed-off-by: Steffen Vogel <steffen.vogel@opal-rt.com>
127 lines
3.6 KiB
YAML
127 lines
3.6 KiB
YAML
# yaml-language-server: $schema=http://json-schema.org/draft-07/schema
|
|
# SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
---
|
|
type: object
|
|
title: The first anyOf schema
|
|
description: An explanation about the purpose of this instance.
|
|
|
|
required:
|
|
- in
|
|
|
|
properties:
|
|
in:
|
|
description: |
|
|
The in settings expects the name of one or more source nodes or mapping expressions.
|
|
|
|
Checkout the [input mapping section](/docs/node/config/paths#input-mapping) for more details.
|
|
|
|
oneOf:
|
|
- type: string
|
|
- type: array
|
|
items:
|
|
type: string
|
|
|
|
out:
|
|
description: |
|
|
The out setting expects the name of one or more destination nodes. Each sample which is processed by the path will be sent to each of the destination nodes.
|
|
|
|
oneOf:
|
|
- type: string
|
|
- type: array
|
|
items:
|
|
type: string
|
|
|
|
enabled:
|
|
type: boolean
|
|
default: true
|
|
description: |
|
|
The optional enabled setting can be used to temporarily disable a path.
|
|
|
|
reverse:
|
|
type: boolean
|
|
default: false
|
|
description: |
|
|
By default, the path is unidirectional.
|
|
Meaning, that it only forwards samples from the source to the destination.
|
|
Sometimes a bidirectional path is needed. This can be accomplished by setting reverse to true.
|
|
|
|
mode:
|
|
type: string
|
|
default: any
|
|
enum:
|
|
- any
|
|
- all
|
|
description: |
|
|
The mode setting specifies under which condition a path is triggered.
|
|
A triggered path will multiplex / merge samples from its input nodes and run the configured hook functions on them.
|
|
Afterwards the processed and merged samples will be send to all output nodes.
|
|
|
|
Two modes are currently supported:
|
|
|
|
- `any`: The path will trigger the path as soon as any of the masked (see `mask`) input nodes received new samples.
|
|
- `all`: The path will trigger the path as soon as all input nodes received at least one new sample.
|
|
|
|
mask:
|
|
description: |
|
|
This setting allows masking the the input nodes which can trigger the path.
|
|
|
|
See also `mode` setting.
|
|
|
|
type: array
|
|
items:
|
|
type: string
|
|
description: A node-name
|
|
|
|
rate:
|
|
type: number
|
|
minimum: 0
|
|
default: 0
|
|
description: |
|
|
A non-zero value will periodically trigger the path and resend the last sample again.
|
|
|
|
A value of zero will disable this feature.
|
|
|
|
original_sequence_no:
|
|
type: boolean
|
|
default: false
|
|
description: |
|
|
When this flag is set, the original sequence number from the source node will be used when multiplexing the nodes.
|
|
|
|
hooks:
|
|
$ref: hook_list.yaml
|
|
|
|
uuid:
|
|
description: |
|
|
A globally unique ID which identifies the path for the use via the API.
|
|
|
|
type: string
|
|
format: uuid
|
|
|
|
affinity:
|
|
description: |
|
|
A mask which pins the execution of this path to a set of CPU cores.
|
|
|
|
poll:
|
|
description: |
|
|
A boolean flag which enables the poll-based mode for reading samples from multiple path sources.
|
|
|
|
**Note:** This is an advanced setting.
|
|
Most users should use the the default value which will always do the right thing based on the number and type of input nodes for this path.
|
|
|
|
type: boolean
|
|
|
|
builtin:
|
|
description: |
|
|
If enabled, the path will start with a set of default and builtin hook functions.
|
|
|
|
type: boolean
|
|
default: true
|
|
|
|
queuelen:
|
|
description: |
|
|
The length of the path queue. It limits how many samples can be _in flight_ at any point in time.
|
|
If you see queue or pool underrun warnings, try to increase this value.
|
|
|
|
type: number
|
|
|