rohangarg commented on code in PR #13368: URL: https://github.com/apache/druid/pull/13368#discussion_r1029674101
########## extensions-core/multi-stage-query/src/main/java/org/apache/druid/msq/util/MultiStageQueryContext.java: ########## @@ -60,6 +61,9 @@ public static final String CTX_ENABLE_DURABLE_SHUFFLE_STORAGE = "durableShuffleStorage"; private static final boolean DEFAULT_ENABLE_DURABLE_SHUFFLE_STORAGE = false; + public static final String CTX_ENABLE_DURABLE_TASK_INTERMEDIATE_STORAGE = "durableTaskIntermediateStorage"; Review Comment: I had initially added the separate feature flag because durable storage reads were coming to be very slow - which would lead to slow UTs and also slow unintended user queries. Now that #13373 is merged, I have removed the extra flag. Also made the super sorter test run with both file based and durable storage based output channels -- 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]
