dmvk commented on a change in pull request #16884:
URL: https://github.com/apache/flink/pull/16884#discussion_r692095644
##########
File path:
flink-runtime/src/main/java/org/apache/flink/runtime/io/network/NettyShuffleServiceFactory.java
##########
@@ -111,6 +118,14 @@ static NettyShuffleEnvironment
createNettyShuffleEnvironment(
FileChannelManager fileChannelManager =
new FileChannelManagerImpl(config.getTempDirs(),
DIR_NAME_PREFIX);
+ if (LOG.isInfoEnabled()) {
+ LOG.info(
+ "Created a new {} for storing result partitions of
BLOCKING shuffle. Used directories: {}.",
+ FileChannelManager.class.getSimpleName(),
+ Arrays.stream(fileChannelManager.getPaths())
+ .map(File::getAbsolutePath)
+ .collect(Collectors.joining(", ")));
Review comment:
answered above, I don't think this is a good idea from operations point
of view
--
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]