You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description:
Siddhi now only supports the InMemory config manager to set system properties. However, initialising the in-memory config manager is vastly different from the siddhi-runner-distribution method of reading from the conf file in (RUNNER_HOME)/conf/runner/deployment.yaml file.
This issue is to track a new feature, YAMLConfigManger, which can be initiated with a file path of a YAML file, which can be used to configure the Siddhi system properties.
Sample of the YAML file will be as follows,
# Siddhi related propertiesproperties:
partitionById: TRUEshardId: shard1# Siddhi referencesrefs:
- ref:
name: source1type: source-typeproperties:
property1: value1property2: value2# Siddi Extensions system Parametersextensions:
- extension:
name: rdbmsnamespace: storeproperties:
mysql.batchEnable: truemysql.batchSize: 1000mysql.indexCreateQuery: "CREATE INDEX {{TABLE_NAME}}_INDEX ON {{TABLE_NAME}} ({{INDEX_COLUMNS}})"mysql.recordDeleteQuery: "DELETE FROM {{TABLE_NAME}} {{CONDITION}}"mysql.recordExistsQuery: "SELECT 1 FROM {{TABLE_NAME}} {{CONDITION}} LIMIT 1"
The text was updated successfully, but these errors were encountered:
Description:
Siddhi now only supports the InMemory config manager to set system properties. However, initialising the in-memory config manager is vastly different from the siddhi-runner-distribution method of reading from the conf file in (RUNNER_HOME)/conf/runner/deployment.yaml file.
This issue is to track a new feature, YAMLConfigManger, which can be initiated with a file path of a YAML file, which can be used to configure the Siddhi system properties.
Sample of the YAML file will be as follows,
The text was updated successfully, but these errors were encountered: