Skip to content

Commit 37a602a

Browse files
committed
fixup! parquet_impl: add parquet writer implementation using Apache Arrow
Signed-off-by: Arbin <[email protected]>
1 parent e0d126e commit 37a602a

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

plugins/out_kinesis_firehose/firehose.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -496,8 +496,7 @@ static struct flb_config_map config_map[] = {
496496
FLB_CONFIG_MAP_STR, "compression", NULL,
497497
0, FLB_FALSE, 0,
498498
"Compression type for Firehose records. Each log record is individually compressed "
499-
"and sent to Firehose. 'gzip' and 'arrow' are the supported values. "
500-
"'arrow' is only an available if Apache Arrow was enabled at compile time. "
499+
"and sent to Firehose. Supported values: 'gzip', 'snappy', 'zstd'. "
501500
"Defaults to no compression."
502501
},
503502

tests/internal/CMakeLists.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,10 @@ function(prepare_unit_tests TEST_PREFIX SOURCEFILES)
235235
target_link_libraries(${source_file_we} avro-static jansson)
236236
endif()
237237

238+
if(FLB_PARQUET_ENCODER)
239+
target_link_libraries(${source_file_we} ${ARROW_LIBRARIES} ${PARQUET_LIBRARIES})
240+
endif()
241+
238242
add_test(NAME ${source_file_we}
239243
COMMAND ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${source_file_we}
240244
WORKING_DIRECTORY ${CMAKE_HOME_DIRECTORY}/build)

0 commit comments

Comments
 (0)