File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
docs/modules/trino/pages/usage-guide/catalogs
rust/operator-binary/src/crd/catalog Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ Each connector supports a different set of attributes.
62
62
You can use `.spec.configOverrides` to set arbitrary additional properties, which will be added to the catalog.
63
63
64
64
There is also `.spec.experimentalConfigRemovals` to remove any properties the operator might set, but are not used by Trino.
65
- This causes Trino to log an error message such as `Error: Configuration property 'hive.s3.aws-access-key' was not used` and refuse startup .
65
+ This causes Trino to refuse to startup with an error message such as `Error: Configuration property 'hive.s3.aws-access-key' was not used`.
66
66
By removing the unneeded properties you can get Trino to start again.
67
67
68
68
This example illustrates how to use config overrides and config removals
Original file line number Diff line number Diff line change @@ -59,9 +59,7 @@ pub mod versioned {
59
59
/// This is helpful, because Trino fails to start in case you have any unused config
60
60
/// properties. The removals are executed after the `configOverrides`.
61
61
///
62
- /// This field is experimental, as ideally some general solution for the removal of
63
- /// properties is found and added to configOverrides. This mechanism would replace this
64
- /// field.
62
+ /// This field is experimental, and might be replaced by a more generic mechanism to edit config properties
65
63
#[ serde( default , rename = "experimentalConfigRemovals" ) ]
66
64
pub config_removals : Vec < String > ,
67
65
}
You can’t perform that action at this time.
0 commit comments