AWS timestream documentation change
Summary
Added documentation on how to verify cluster configuration by querying _internal.nodes table
Security assessment
The change adds routine operational documentation about cluster configuration verification. No security vulnerabilities or security features are mentioned.
Diff
diff --git a/timestream/latest/developerguide/faq-configuration.md b/timestream/latest/developerguide/faq-configuration.md index 8765fc979..131fe3864 100644 --- a//timestream/latest/developerguide/faq-configuration.md +++ b//timestream/latest/developerguide/faq-configuration.md @@ -10,0 +11,10 @@ Questions about configuring Amazon Timestream for InfluxDB 3 clusters using para +**How can I check the current running configuration of my cluster?** + + +You can verify the effective parameter values on a running cluster by querying the `_internal` database's `nodes` table: + + + SELECT * FROM _internal.nodes + +This returns the active configuration for each node in your cluster. Use this to verify parameter values before and after applying a new parameter group. +