Skip to content

Commit

Permalink
Fix the HDFS root path
Browse files Browse the repository at this point in the history
  • Loading branch information
dawidxc committed Aug 23, 2024
1 parent 5a8bae6 commit 5f0926e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public String getTargetPath() {
protected Void doRun(TaskRunContext context, @Nonnull ByteSink sink, @Nonnull Handle handle)
throws IOException, ExecutionException, InterruptedException {
DistributedFileSystem fs = ((HdfsHandle) handle).getDfs();
String hdfsPath = "/user/hive";
String hdfsPath = "/";
org.apache.hadoop.fs.ContentSummary contentSummary = fs.getContentSummary(new Path(hdfsPath));
ExecutorService execService =
ExecutorManager.newExecutorServiceWithBackpressure("hdfs-permission-extraction", poolSize);
Expand Down

0 comments on commit 5f0926e

Please sign in to comment.