Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(clp-s): Add support for ingesting logs from S3. #639

Open
wants to merge 21 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 13 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
f274a2e
Add Path and NetworkAuth structs which describe how to access a resou…
gibber9809 Dec 16, 2024
d0807c5
Remove boost::filesystem usage from ZstdDecompressor
gibber9809 Dec 16, 2024
cfbfa94
Add utility to create a reader for a resource given Path and NetworkAuth
gibber9809 Dec 16, 2024
97f1fe7
Add utilities for finding all files or archives in a directory, and a…
gibber9809 Dec 16, 2024
b33e3ae
Update CMakeLists to pull in boost::urls
gibber9809 Dec 16, 2024
528c0bd
Update ArchiveReader to accept Path and NetworkAuth
gibber9809 Dec 16, 2024
6cfdf46
Accept clp::ReaderInterface in JsonFileIterator
gibber9809 Dec 16, 2024
63d8bdc
Update JsonParser to accept Path and NetworkAuth
gibber9809 Dec 16, 2024
e8f5b37
Update JsonConstructor to accept Path and NetworkAuth
gibber9809 Dec 16, 2024
29049b3
Remove unnecessary dependency from kql build target
gibber9809 Dec 16, 2024
df0144a
Update clp_s end to end tests to account for new interface
gibber9809 Dec 16, 2024
cc75ffe
Update command line arguments and simplify clp-s.cpp
gibber9809 Dec 16, 2024
a64bd6b
Catch exception when failing to open archive during search
gibber9809 Dec 16, 2024
8fa5aa2
Attempt to fix build issue on macos
gibber9809 Dec 17, 2024
fe84cd4
Attempt to fix macos build again
gibber9809 Dec 17, 2024
561634c
Revert all changes to kql CMakeLists to simplify review
gibber9809 Dec 18, 2024
307be9e
Properly detect http errors when ingesting over the network
gibber9809 Dec 19, 2024
7557c84
Fix bug introduced while splitting up changes
gibber9809 Dec 19, 2024
fc8fad6
Fix obvious bug introduced in recent commit
gibber9809 Dec 20, 2024
84bc5c3
Improve error message for curl error during ingestion
gibber9809 Dec 20, 2024
2a87da2
Log an error when environment variables are unavailable for presigned…
gibber9809 Dec 20, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion components/core/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,8 @@ set(SOURCE_FILES_clp_s_unitTest
src/clp_s/FileReader.hpp
src/clp_s/FileWriter.cpp
src/clp_s/FileWriter.hpp
src/clp_s/InputConfig.cpp
src/clp_s/InputConfig.hpp
src/clp_s/JsonConstructor.cpp
src/clp_s/JsonConstructor.hpp
src/clp_s/JsonFileIterator.cpp
Expand Down Expand Up @@ -592,7 +594,7 @@ target_include_directories(unitTest
target_link_libraries(unitTest
PRIVATE
absl::flat_hash_map
Boost::filesystem Boost::iostreams Boost::program_options Boost::regex
Boost::filesystem Boost::iostreams Boost::program_options Boost::regex Boost::url
gibber9809 marked this conversation as resolved.
Show resolved Hide resolved
${CURL_LIBRARIES}
fmt::fmt
kql
Expand Down
20 changes: 15 additions & 5 deletions components/core/src/clp_s/ArchiveReader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,30 @@
#include <string_view>

#include "archive_constants.hpp"
#include "InputConfig.hpp"
#include "ReaderUtils.hpp"

using std::string_view;

namespace clp_s {
void ArchiveReader::open(string_view archives_dir, string_view archive_id) {
void ArchiveReader::open(Path const& archive_path, NetworkAuthOption const& network_auth) {
if (m_is_open) {
throw OperationFailed(ErrorCodeNotReady, __FILENAME__, __LINE__);
}
m_is_open = true;
m_archive_id = archive_id;
std::filesystem::path archive_path{archives_dir};
archive_path /= m_archive_id;
auto const archive_path_str = archive_path.string();

if (false == get_archive_id_from_path(archive_path, m_archive_id)) {
throw OperationFailed(ErrorCodeBadParam, __FILENAME__, __LINE__);
}

if (InputSource::Filesystem != archive_path.source) {
throw OperationFailed(ErrorCodeBadParam, __FILENAME__, __LINE__);
}

if (false == std::filesystem::is_directory(archive_path.path)) {
throw OperationFailed(ErrorCodeBadParam, __FILENAME__, __LINE__);
}
auto const archive_path_str = archive_path.path;

m_var_dict = ReaderUtils::get_variable_dictionary_reader(archive_path_str);
m_log_dict = ReaderUtils::get_log_type_dictionary_reader(archive_path_str);
Expand Down
9 changes: 4 additions & 5 deletions components/core/src/clp_s/ArchiveReader.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@
#include <string_view>
#include <utility>

#include <boost/filesystem.hpp>

#include "DictionaryReader.hpp"
#include "InputConfig.hpp"
#include "PackedStreamReader.hpp"
#include "ReaderUtils.hpp"
#include "SchemaReader.hpp"
Expand All @@ -32,10 +31,10 @@ class ArchiveReader {

/**
* Opens an archive for reading.
* @param archives_dir
* @param archive_id
* @param archive_path
* @param network_auth
*/
void open(std::string_view archives_dir, std::string_view archive_id);
void open(Path const& archive_path, NetworkAuthOption const& network_auth);

/**
* Reads the dictionaries and metadata.
Expand Down
1 change: 0 additions & 1 deletion components/core/src/clp_s/ArchiveWriter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
#include <string_view>
#include <utility>

#include <boost/filesystem.hpp>
#include <boost/uuid/uuid.hpp>
#include <boost/uuid/uuid_io.hpp>

Expand Down
27 changes: 26 additions & 1 deletion components/core/src/clp_s/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,30 +2,51 @@ add_subdirectory(search/kql)

set(
CLP_SOURCES
../clp/aws/AwsAuthenticationSigner.cpp
../clp/aws/AwsAuthenticationSigner.hpp
../clp/BoundedReader.cpp
../clp/BoundedReader.hpp
../clp/CurlDownloadHandler.cpp
../clp/CurlDownloadHandler.hpp
../clp/CurlEasyHandle.hpp
../clp/CurlGlobalInstance.cpp
../clp/CurlGlobalInstance.hpp
../clp/CurlOperationFailed.hpp
../clp/CurlStringList.hpp
gibber9809 marked this conversation as resolved.
Show resolved Hide resolved
../clp/cli_utils.cpp
../clp/cli_utils.hpp
../clp/database_utils.cpp
../clp/database_utils.hpp
../clp/Defs.h
../clp/ErrorCode.hpp
../clp/FileReader.cpp
../clp/FileReader.hpp
../clp/GlobalMetadataDB.hpp
../clp/GlobalMetadataDBConfig.cpp
../clp/GlobalMetadataDBConfig.hpp
../clp/GlobalMySQLMetadataDB.cpp
../clp/GlobalMySQLMetadataDB.hpp
../clp/hash_utils.cpp
../clp/hash_utils.hpp
../clp/MySQLDB.cpp
../clp/MySQLDB.hpp
../clp/MySQLParamBindings.cpp
../clp/MySQLParamBindings.hpp
../clp/MySQLPreparedStatement.cpp
../clp/MySQLPreparedStatement.hpp
../clp/NetworkReader.cpp
../clp/NetworkReader.hpp
../clp/networking/socket_utils.cpp
../clp/networking/socket_utils.hpp
../clp/ReaderInterface.cpp
../clp/ReaderInterface.hpp
../clp/spdlog_with_specializations.hpp
../clp/streaming_archive/ArchiveMetadata.cpp
../clp/streaming_archive/ArchiveMetadata.hpp
../clp/Thread.cpp
../clp/Thread.hpp
../clp/TraceableException.hpp
../clp/type_utils.hpp
../clp/WriterInterface.cpp
../clp/WriterInterface.hpp
)
Expand Down Expand Up @@ -58,6 +79,8 @@ set(
FileReader.hpp
FileWriter.cpp
FileWriter.hpp
InputConfig.cpp
InputConfig.hpp
JsonConstructor.cpp
JsonConstructor.hpp
JsonFileIterator.cpp
Expand Down Expand Up @@ -195,12 +218,14 @@ target_link_libraries(
clp-s
PRIVATE
absl::flat_hash_map
Boost::filesystem Boost::iostreams Boost::program_options
Boost::iostreams Boost::program_options Boost::regex Boost::url
${CURL_LIBRARIES}
clp::string_utils
kql
MariaDBClient::MariaDBClient
${MONGOCXX_TARGET}
msgpack-cxx
OpenSSL::Crypto
simdjson
spdlog::spdlog
yaml-cpp::yaml-cpp
Expand Down
Loading
Loading