Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
JkSelf committed Dec 17, 2024
1 parent 2fdcae8 commit 5f2b957
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 31 deletions.
48 changes: 24 additions & 24 deletions velox/connectors/hive/storage_adapters/hdfs/tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,27 +32,27 @@ target_link_libraries(
target_compile_options(velox_hdfs_file_test
PRIVATE -Wno-deprecated-declarations)

# add_executable(velox_hdfs_insert_test InsertIntoHdfsTest.cpp
# HdfsMiniCluster.cpp HdfsUtilTest.cpp)

# add_test(velox_hdfs_insert_test velox_hdfs_insert_test)

# target_link_libraries(
# velox_hdfs_insert_test
# velox_exec_test_lib
# velox_exec
# GTest::gtest
# GTest::gtest_main
# GTest::gmock)

# target_compile_options(velox_hdfs_insert_test
# PRIVATE -Wno-deprecated-declarations)

# # velox_hdfs_insert_test and velox_hdfs_file_test two tests can't run in
# # parallel due to the port conflict in Hadoop NameNode and DataNode. The
# # namenode port conflict can be resolved using the -nnport configuration in
# # hadoop-mapreduce-client-jobclient-3.3.0-tests.jar. However the data node port
# # cannot be configured. Therefore, we need to make sure that
# # velox_hdfs_file_test runs only after velox_hdfs_insert_test has finished.
# set_tests_properties(velox_hdfs_insert_test PROPERTIES DEPENDS
# velox_hdfs_file_test)
add_executable(velox_hdfs_insert_test InsertIntoHdfsTest.cpp
HdfsMiniCluster.cpp HdfsUtilTest.cpp)

add_test(velox_hdfs_insert_test velox_hdfs_insert_test)

target_link_libraries(
velox_hdfs_insert_test
velox_exec_test_lib
velox_exec
GTest::gtest
GTest::gtest_main
GTest::gmock)

target_compile_options(velox_hdfs_insert_test
PRIVATE -Wno-deprecated-declarations)

# velox_hdfs_insert_test and velox_hdfs_file_test two tests can't run in
# parallel due to the port conflict in Hadoop NameNode and DataNode. The
# namenode port conflict can be resolved using the -nnport configuration in
# hadoop-mapreduce-client-jobclient-3.3.0-tests.jar. However the data node port
# cannot be configured. Therefore, we need to make sure that
# velox_hdfs_file_test runs only after velox_hdfs_insert_test has finished.
set_tests_properties(velox_hdfs_insert_test PROPERTIES DEPENDS
velox_hdfs_file_test)
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
* limitations under the License.
*/

#include <boost/process.hpp>

#include "HdfsMiniCluster.h"

namespace facebook::velox::filesystems::test {
Expand Down Expand Up @@ -77,6 +79,14 @@ HdfsMiniCluster::HdfsMiniCluster() {
}

void HdfsMiniCluster::addFile(std::string source, std::string destination) {
std::cout << "Starting to add file from " << source << " to " << destination << std::endl;

std::ostringstream output;
std::ostringstream error;

boost::process::ipstream outStream;
boost::process::ipstream errStream;

auto filePutProcess = std::make_shared<boost::process::child>(
env_,
exePath_,
Expand All @@ -85,13 +95,36 @@ void HdfsMiniCluster::addFile(std::string source, std::string destination) {
filesystemUrl,
filePutOption,
source,
destination);
bool isExited =
filePutProcess->wait_for(std::chrono::duration<int, std::milli>(5000));
if (!isExited) {
VELOX_FAIL(
"Failed to add file to hdfs, exit code: {}",
filePutProcess->exit_code());
destination,
boost::process::std_out > outStream,
boost::process::std_err > errStream);

std::cout << "Process started with PID: " << filePutProcess->id() << std::endl;

std::string line;
while (outStream && std::getline(outStream, line) && !line.empty())
output << line << std::endl;

while (errStream && std::getline(errStream, line) && !line.empty())
error << line << std::endl;

bool isExited = filePutProcess->wait_for(std::chrono::duration<int, std::milli>(5000));

if (isExited) {
int exitCode = filePutProcess->exit_code();
std::cout << "Process exited with code: " << exitCode << std::endl;
std::cout << "Process output: " << output.str() << std::endl;
std::cout << "Process error: " << error.str() << std::endl;

if (exitCode != 0) {
std::cerr << "Failed to add file to hdfs, exit code: " << exitCode << ", error: " << error.str() << std::endl;
throw std::runtime_error("Failed to add file to hdfs, exit code: " + std::to_string(exitCode));
}
} else {
std::cerr << "Failed to add file to hdfs, process did not exit in time" << std::endl;
filePutProcess->terminate();
std::cerr << "Process terminated" << std::endl;
throw std::runtime_error("Failed to add file to hdfs, process did not exit in time");
}
}

Expand Down

0 comments on commit 5f2b957

Please sign in to comment.