Skip to content

Commit

Permalink
Add comments for Additional Exchange Manager Properties
Browse files Browse the repository at this point in the history
  • Loading branch information
mc256 committed Aug 15, 2024
1 parent c073dfa commit b7dcef9
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
11 changes: 10 additions & 1 deletion charts/trino/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,16 @@ Fast distributed SQL query engine for big data analytics that helps you explore
```yaml
- io.airlift=DEBUG
```
* `additionalExchangeManagerProperties` - list, default: `[]`
* `additionalExchangeManagerProperties` - list, default: `[]`

[Exchange manager properties](https://trino.io/docs/current/admin/fault-tolerant-execution.html#exchange-manager).
Example:
```yaml
- exchange.s3.region=object-store-region
- exchange.s3.endpoint=your-object-store-endpoint
- exchange.s3.aws-access-key=your-access-key
- exchange.s3.aws-secret-key=your-secret-key
```
* `eventListenerProperties` - list, default: `[]`

[Event listener](https://trino.io/docs/current/develop/event-listener.html#event-listener) properties. To configure multiple event listeners, add them in `coordinator.additionalConfigFiles` and `worker.additionalConfigFiles`, and set the `event-listener.config-files` property in `additionalConfigProperties` to their locations.
Expand Down
11 changes: 10 additions & 1 deletion charts/trino/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,6 @@ resourceGroups: {}
# }
# ```


additionalNodeProperties: []
# additionalNodeProperties -- [Additional node
# properties](https://trino.io/docs/current/installation/deployment.html#log-levels).
Expand Down Expand Up @@ -238,6 +237,16 @@ additionalLogProperties: []
# ```

additionalExchangeManagerProperties: []
# additionalExchangeManagerProperties -- [Exchange manager
# properties](https://trino.io/docs/current/admin/fault-tolerant-execution.html#exchange-manager).
# @raw
# Example:
# ```yaml
# - exchange.s3.region=object-store-region
# - exchange.s3.endpoint=your-object-store-endpoint
# - exchange.s3.aws-access-key=your-access-key
# - exchange.s3.aws-secret-key=your-secret-key
# ```

eventListenerProperties: []
# eventListenerProperties -- [Event
Expand Down

0 comments on commit b7dcef9

Please sign in to comment.