Skip to content

Commit

Permalink
Test jvm libhdfs perf
Browse files Browse the repository at this point in the history
  • Loading branch information
JkSelf committed Nov 11, 2024
1 parent f9cf941 commit 3867701
Show file tree
Hide file tree
Showing 12 changed files with 8 additions and 28 deletions.
1 change: 0 additions & 1 deletion velox/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ add_subdirectory(row)
add_subdirectory(flag_definitions)
add_subdirectory(external/date)
add_subdirectory(external/md5)
add_subdirectory(external/hdfs)
#

# examples depend on expression
Expand Down
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions velox/connectors/hive/storage_adapters/hdfs/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ if(VELOX_ENABLE_HDFS)
PRIVATE
HdfsFileSystem.cpp
HdfsReadFile.cpp
HdfsWriteFile.cpp)
HdfsWriteFile.cpp
ArrowHdfsInternal.cpp)
velox_link_libraries(
velox_hdfs
velox_external_hdfs
velox_dwio_common
Folly::folly
xsimd)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#include "velox/common/config/Config.h"
#include "velox/connectors/hive/storage_adapters/hdfs/HdfsReadFile.h"
#include "velox/connectors/hive/storage_adapters/hdfs/HdfsWriteFile.h"
#include "velox/external/hdfs/ArrowHdfsInternal.h"
#include "velox/connectors/hive/storage_adapters/hdfs/ArrowHdfsInternal.h"

namespace facebook::velox::filesystems {
std::string_view HdfsFileSystem::kScheme("hdfs://");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

#include "HdfsReadFile.h"
#include <folly/synchronization/CallOnce.h>
#include "velox/external/hdfs/ArrowHdfsInternal.h"
#include "velox/connectors/hive/storage_adapters/hdfs/ArrowHdfsInternal.h"

namespace facebook::velox {

Expand Down
2 changes: 1 addition & 1 deletion velox/connectors/hive/storage_adapters/hdfs/HdfsReadFile.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

#include "velox/common/file/File.h"
#include "velox/external/hdfs/hdfs.h"
#include "velox/connectors/hive/storage_adapters/hdfs/hdfs.h"

namespace facebook::velox {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

#include "velox/connectors/hive/storage_adapters/hdfs/HdfsWriteFile.h"
#include "velox/external/hdfs/ArrowHdfsInternal.h"
#include "velox/connectors/hive/storage_adapters/hdfs/ArrowHdfsInternal.h"

namespace facebook::velox {
HdfsWriteFile::HdfsWriteFile(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#pragma once

#include "velox/common/file/File.h"
#include "velox/external/hdfs/hdfs.h"
#include "velox/connectors/hive/storage_adapters/hdfs/hdfs.h"

namespace facebook::velox {

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#include "velox/connectors/hive/storage_adapters/hdfs/RegisterHdfsFileSystem.h"
#include "velox/core/QueryConfig.h"
#include "velox/exec/tests/utils/TempFilePath.h"
#include "velox/external/hdfs/ArrowHdfsInternal.h"
#include "velox/connectors/hive/storage_adapters/hdfs/ArrowHdfsInternal.h"

#include <unistd.h>

Expand Down
19 changes: 0 additions & 19 deletions velox/external/hdfs/CMakeLists.txt

This file was deleted.

0 comments on commit 3867701

Please sign in to comment.