Copilot commented on code in PR #7109:
URL: https://github.com/apache/hbase/pull/7109#discussion_r2150329539
##########
hbase-mapreduce/src/main/java/org/apache/hadoop/hbase/mapreduce/HFileOutputFormat2.java:
##########
@@ -887,6 +887,7 @@ static void configurePartitioner(Job job,
List<ImmutableBytesWritable> splitPoin
Configuration conf = job.getConfiguration();
// create the partitions file
FileSystem fs = FileSystem.get(conf);
+ System.err.println(conf.get(HConstants.TEMPORARY_FS_DIRECTORY_KEY));
Review Comment:
It appears a debug statement was added; consider removing it or replacing it
with a proper logging statement before merging into production.
```suggestion
LOG.debug("Temporary FS Directory: {}",
conf.get(HConstants.TEMPORARY_FS_DIRECTORY_KEY));
```
--
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]