-
Notifications
You must be signed in to change notification settings - Fork 3.9k
GH-48204: [C++][Parquet] Fix Column Reader & Writer logic to enable Parquet DB support on s390x #48205
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
base: main
Are you sure you want to change the base?
GH-48204: [C++][Parquet] Fix Column Reader & Writer logic to enable Parquet DB support on s390x #48205
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -953,7 +953,8 @@ int64_t ColumnWriterImpl::RleEncodeLevels(const void* src_buffer, | |
| DCHECK_EQ(encoded, num_buffered_values_); | ||
|
|
||
| if (include_length_prefix) { | ||
| reinterpret_cast<int32_t*>(dest_buffer->mutable_data())[0] = level_encoder_.len(); | ||
| ::arrow::util::SafeStore(dest_buffer->mutable_data(), | ||
| ::arrow::bit_util::ToLittleEndian(level_encoder_.len())); | ||
| } | ||
|
|
||
| return level_encoder_.len() + prefix_size; | ||
|
|
@@ -2578,13 +2579,31 @@ struct SerializeFunctor< | |
| if constexpr (std::is_same_v<ArrowType, ::arrow::Decimal64Type>) { | ||
| *p++ = ::arrow::bit_util::ToBigEndian(u64_in[0]); | ||
| } else if constexpr (std::is_same_v<ArrowType, ::arrow::Decimal128Type>) { | ||
| #if ARROW_LITTLE_ENDIAN | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please take a step back and read the comments above: // Requires a custom serializer because decimal in parquet are in big-endian
// format. Thus, a temporary local buffer is required.If we're on a big-endian system, this entire code is unnecessary and we can just use the FIXED_LEN_BYTE_ARRAY
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @pitrou.. Thanks for your review comments.. I will probably work on this change in the next pass. Thanks..
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @Vishwanatha-HD Please don't resolve discussions until they are actually resolved. This one hasn't been addressed. |
||
| // On little-endian: u64_in[0] = low, u64_in[1] = high | ||
| // Write high first for big-endian output | ||
| *p++ = ::arrow::bit_util::ToBigEndian(u64_in[1]); | ||
| *p++ = ::arrow::bit_util::ToBigEndian(u64_in[0]); | ||
| #else | ||
| // On big-endian: u64_in[0] = high, u64_in[1] = low | ||
| // Write high first for big-endian output | ||
| *p++ = ::arrow::bit_util::ToBigEndian(u64_in[0]); | ||
| *p++ = ::arrow::bit_util::ToBigEndian(u64_in[1]); | ||
| #endif | ||
| } else if constexpr (std::is_same_v<ArrowType, ::arrow::Decimal256Type>) { | ||
| #if ARROW_LITTLE_ENDIAN | ||
| // On little-endian: write words in reverse order (high to low) | ||
| *p++ = ::arrow::bit_util::ToBigEndian(u64_in[3]); | ||
| *p++ = ::arrow::bit_util::ToBigEndian(u64_in[2]); | ||
| *p++ = ::arrow::bit_util::ToBigEndian(u64_in[1]); | ||
| *p++ = ::arrow::bit_util::ToBigEndian(u64_in[0]); | ||
| #else | ||
| // On big-endian: write words in natural order (high to low) | ||
| *p++ = ::arrow::bit_util::ToBigEndian(u64_in[0]); | ||
| *p++ = ::arrow::bit_util::ToBigEndian(u64_in[1]); | ||
| *p++ = ::arrow::bit_util::ToBigEndian(u64_in[2]); | ||
| *p++ = ::arrow::bit_util::ToBigEndian(u64_in[3]); | ||
| #endif | ||
| } | ||
| scratch = reinterpret_cast<uint8_t*>(p); | ||
| } | ||
|
|
@@ -2603,7 +2622,24 @@ struct SerializeFunctor< | |
| template <> | ||
| struct SerializeFunctor<::parquet::FLBAType, ::arrow::HalfFloatType> { | ||
| Status Serialize(const ::arrow::HalfFloatArray& array, ArrowWriteContext*, FLBA* out) { | ||
| #if ARROW_LITTLE_ENDIAN | ||
| return SerializeLittleEndianValues(array, array.raw_values(), out); | ||
| #else | ||
| const uint16_t* values = array.raw_values(); | ||
| const int64_t length = array.length(); | ||
| converted_values_.resize(length); | ||
| for (int64_t i = 0; i < length; ++i) { | ||
| // We don't need IsValid() here. Non valid values are just ignored in | ||
| // SerializeLittleEndianValues(). | ||
| converted_values_[i] = ::arrow::bit_util::ToLittleEndian(values[i]); | ||
| } | ||
| return SerializeLittleEndianValues(array, converted_values_.data(), out); | ||
| #endif | ||
| } | ||
|
|
||
| private: | ||
| Status SerializeLittleEndianValues(const ::arrow::HalfFloatArray& array, | ||
| const uint16_t* values, FLBA* out) { | ||
| if (array.null_count() == 0) { | ||
| for (int64_t i = 0; i < array.length(); ++i) { | ||
| out[i] = ToFLBA(&values[i]); | ||
|
|
@@ -2616,10 +2652,13 @@ struct SerializeFunctor<::parquet::FLBAType, ::arrow::HalfFloatType> { | |
| return Status::OK(); | ||
| } | ||
|
|
||
| private: | ||
| FLBA ToFLBA(const uint16_t* value_ptr) const { | ||
| return FLBA{reinterpret_cast<const uint8_t*>(value_ptr)}; | ||
| } | ||
|
|
||
| #if !ARROW_LITTLE_ENDIAN | ||
| std::vector<uint16_t> converted_values_; | ||
| #endif | ||
| }; | ||
|
|
||
| template <> | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -260,13 +260,18 @@ constexpr int64_t kJulianEpochOffsetDays = INT64_C(2440588); | |
| template <int64_t UnitPerDay, int64_t NanosecondsPerUnit> | ||
| inline void ArrowTimestampToImpalaTimestamp(const int64_t time, Int96* impala_timestamp) { | ||
Vishwanatha-HD marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| int64_t julian_days = (time / UnitPerDay) + kJulianEpochOffsetDays; | ||
| (*impala_timestamp).value[2] = (uint32_t)julian_days; | ||
| (*impala_timestamp).value[2] = static_cast<uint32_t>(julian_days); | ||
|
|
||
| int64_t last_day_units = time % UnitPerDay; | ||
| auto last_day_nanos = last_day_units * NanosecondsPerUnit; | ||
| #if ARROW_LITTLE_ENDIAN | ||
| // impala_timestamp will be unaligned every other entry so do memcpy instead | ||
| // of assign and reinterpret cast to avoid undefined behavior. | ||
| std::memcpy(impala_timestamp, &last_day_nanos, sizeof(int64_t)); | ||
| #else | ||
| (*impala_timestamp).value[0] = static_cast<uint32_t>(last_day_nanos); | ||
| (*impala_timestamp).value[1] = static_cast<uint32_t>(last_day_nanos >> 32); | ||
|
Comment on lines
266
to
+273
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can we use the following instead of auto last_day_nanos = last_day_units * NanosecondsPerUnit;
auto last_day_nanos_little_endian = ::arrow::bit_util::ToLittleEndian(last_day_nanos);
std::memcpy(impala_timestamp, &last_day_nanos_little_endian, sizeof(int64_t)); |
||
| #endif | ||
| } | ||
|
|
||
| constexpr int64_t kSecondsInNanos = INT64_C(1000000000); | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@pitrou You added
- 4in #6848. Do you think that we need- 4with big endian too?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the ping @kou . I've re-read through this code and I now think the original change was a mistake. I'll submit a separate issue/PR to fix it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#48235
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Vishwanatha-HD Can you rebase/merge from git main and remove this change?