kfaraz commented on code in PR #13429: URL: https://github.com/apache/druid/pull/13429#discussion_r1050804076
########## docs/next-release-notes.md: ########## @@ -119,21 +190,84 @@ https://github.com/apache/druid/pull/13133 ### Added new configuration keys to query context security model -Added the following configuration keys that refine the query context security model controlled by `druid.auth.authorizeQueryContextParams`: -* `druid.auth.unsecuredContextKeys`: The set of query context keys that do not require a security check. -* `druid.auth.securedContextKeys`: The set of query context keys that do require a security check. +Added the following configuration properties that refine the query context security model controlled by `druid.auth.authorizeQueryContextParams`: + +* `druid.auth.unsecuredContextKeys`: A JSON list of query context keys that do not require a security check. +* `druid.auth.securedContextKeys`: A JSON list of query context keys that do require a security check. + +If both are set, `unsecuredContextKeys` acts as exceptions to `securedContextKeys`.. + +https://github.com/apache/druid/pull/13071 + +## Metrics + +### Improved metric reporting + +Improved global-cached-lookups metric reporting. + +https://github.com/apache/druid/pull/13219 + + +### New metric for segment handoff + +`segment/handoff/time` captures the total time taken for handoff for a given set of published segments. + +https://github.com/apache/druid/pull/13238 + +### New metrics for segment allocation + +Segment allocation can now be performed in batches, which can improve performance and decrease ingestion lag. For more information about this change, see [Segment batch allocation](#segment-batch-allocation). The following metrics correspond to those changes. + +Metrics for batch segment allocation (dims: dataSource, taskActionType=segmentAllocate): Review Comment: ```suggestion Metrics emitted for a batch segment allocate requests (dims: dataSource, taskActionType=segmentAllocate): ``` -- 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]
