kfaraz commented on code in PR #18692: URL: https://github.com/apache/druid/pull/18692#discussion_r2488538624
########## docs/querying/sql-metadata-tables.md: ########## @@ -315,3 +316,21 @@ For example, to retrieve supervisor tasks information filtered by health status, ```sql SELECT * FROM sys.supervisors WHERE healthy=0; ``` + +### SERVER_PROPERTIES table + +The `server_properties` table exposes configuration properties for each Druid server. Each row represents a single property key-value pair associated with a specific server. + +|Column|Type|Notes| +|------|-----|-----| +|server|VARCHAR|Host and port of the server, in the form host:port| Review Comment: ```suggestion |server|VARCHAR|Host and port of the server, in the form `host:port`| ``` ########## docs/querying/sql-metadata-tables.md: ########## @@ -315,3 +316,21 @@ For example, to retrieve supervisor tasks information filtered by health status, ```sql SELECT * FROM sys.supervisors WHERE healthy=0; ``` + +### SERVER_PROPERTIES table + +The `server_properties` table exposes configuration properties for each Druid server. Each row represents a single property key-value pair associated with a specific server. Review Comment: ```suggestion The `server_properties` table exposes the runtime properties configured on each Druid server. Each row represents a single property key-value pair associated with a specific server. ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
