-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
GH-43129: [C++][Compute] Fix the unnecessary allocation of extra bytes when encoding row table #43125
GH-43129: [C++][Compute] Fix the unnecessary allocation of extra bytes when encoding row table #43125
Changes from all commits
06e9417
ee4f43a
5fb3567
219bcb2
daccdc2
185a73c
b03a973
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 | ||
---|---|---|---|---|
@@ -0,0 +1,129 @@ | ||||
// Licensed to the Apache Software Foundation (ASF) under one | ||||
// or more contributor license agreements. See the NOTICE file | ||||
// distributed with this work for additional information | ||||
// regarding copyright ownership. The ASF licenses this file | ||||
// to you under the Apache License, Version 2.0 (the | ||||
// "License"); you may not use this file except in compliance | ||||
// with the License. You may obtain a copy of the License at | ||||
// | ||||
// http://www.apache.org/licenses/LICENSE-2.0 | ||||
// | ||||
// Unless required by applicable law or agreed to in writing, | ||||
// software distributed under the License is distributed on an | ||||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||||
// KIND, either express or implied. See the License for the | ||||
// specific language governing permissions and limitations | ||||
// under the License. | ||||
|
||||
#include <numeric> | ||||
|
||||
#include "arrow/compute/row/encode_internal.h" | ||||
#include "arrow/compute/row/row_internal.h" | ||||
#include "arrow/testing/generator.h" | ||||
#include "arrow/testing/gtest_util.h" | ||||
|
||||
namespace arrow { | ||||
namespace compute { | ||||
|
||||
namespace { | ||||
|
||||
Result<RowTableImpl> MakeRowTableFromColumn(const std::shared_ptr<Array>& column, | ||||
int64_t num_rows, int row_alignment, | ||||
int string_alignment) { | ||||
DCHECK_GE(column->length(), num_rows); | ||||
MemoryPool* pool = default_memory_pool(); | ||||
|
||||
std::vector<KeyColumnArray> column_arrays; | ||||
std::vector<Datum> values{column}; | ||||
ExecBatch batch(std::move(values), num_rows); | ||||
RETURN_NOT_OK(ColumnArraysFromExecBatch(batch, &column_arrays)); | ||||
|
||||
std::vector<KeyColumnMetadata> column_metadatas; | ||||
RETURN_NOT_OK(ColumnMetadatasFromExecBatch(batch, &column_metadatas)); | ||||
RowTableMetadata table_metadata; | ||||
table_metadata.FromColumnMetadataVector(column_metadatas, row_alignment, | ||||
string_alignment); | ||||
|
||||
RowTableImpl row_table; | ||||
RETURN_NOT_OK(row_table.Init(pool, table_metadata)); | ||||
|
||||
RowTableEncoder row_encoder; | ||||
row_encoder.Init(column_metadatas, row_alignment, string_alignment); | ||||
row_encoder.PrepareEncodeSelected(0, num_rows, column_arrays); | ||||
|
||||
std::vector<uint16_t> row_ids(num_rows); | ||||
std::iota(row_ids.begin(), row_ids.end(), 0); | ||||
|
||||
RETURN_NOT_OK(row_encoder.EncodeSelected(&row_table, static_cast<uint32_t>(num_rows), | ||||
row_ids.data())); | ||||
|
||||
return row_table; | ||||
} | ||||
|
||||
} // namespace | ||||
|
||||
// GH-43129: Ensure that the memory consumption of the row table is reasonable, that is, | ||||
// with the growth factor of 2, the actual memory usage does not exceed twice the amount | ||||
// of memory actually needed. | ||||
TEST(RowTableMemoryConsumption, Encode) { | ||||
constexpr int64_t num_rows_max = 8192; | ||||
constexpr int64_t padding_for_vectors = 64; | ||||
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. Refers to this
which is always appended to the needed capacity when resizing buffers. |
||||
|
||||
ASSERT_OK_AND_ASSIGN( | ||||
auto fixed_length_column, | ||||
::arrow::gen::Constant(std::make_shared<UInt32Scalar>(0))->Generate(num_rows_max)); | ||||
ASSERT_OK_AND_ASSIGN(auto var_length_column, | ||||
::arrow::gen::Constant(std::make_shared<BinaryScalar>("X")) | ||||
->Generate(num_rows_max)); | ||||
|
||||
for (int64_t num_rows : {1023, 1024, 1025, 4095, 4096, 4097}) { | ||||
// Fixed length column. | ||||
{ | ||||
SCOPED_TRACE("encoding fixed length column of " + std::to_string(num_rows) + | ||||
" rows"); | ||||
ASSERT_OK_AND_ASSIGN(auto row_table, | ||||
MakeRowTableFromColumn(fixed_length_column, num_rows, | ||||
uint32()->byte_width(), 0)); | ||||
ASSERT_NE(row_table.data(0), NULLPTR); | ||||
ASSERT_NE(row_table.data(1), NULLPTR); | ||||
ASSERT_EQ(row_table.data(2), NULLPTR); | ||||
|
||||
int64_t actual_null_mask_size = | ||||
num_rows * row_table.metadata().null_masks_bytes_per_row; | ||||
ASSERT_LE(actual_null_mask_size, row_table.buffer_size(0) - padding_for_vectors); | ||||
ASSERT_GT(actual_null_mask_size * 2, | ||||
row_table.buffer_size(0) - padding_for_vectors); | ||||
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. Should we also check that the buffer size is large enough? Same for other inequalities below. 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. Good catch, will add them. 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. Done. |
||||
|
||||
int64_t actual_rows_size = num_rows * uint32()->byte_width(); | ||||
ASSERT_LE(actual_rows_size, row_table.buffer_size(1) - padding_for_vectors); | ||||
ASSERT_GT(actual_rows_size * 2, row_table.buffer_size(1) - padding_for_vectors); | ||||
} | ||||
|
||||
// Var length column. | ||||
{ | ||||
SCOPED_TRACE("encoding var length column of " + std::to_string(num_rows) + " rows"); | ||||
ASSERT_OK_AND_ASSIGN(auto row_table, | ||||
MakeRowTableFromColumn(var_length_column, num_rows, 4, 4)); | ||||
ASSERT_NE(row_table.data(0), NULLPTR); | ||||
ASSERT_NE(row_table.data(1), NULLPTR); | ||||
ASSERT_NE(row_table.data(2), NULLPTR); | ||||
|
||||
int64_t actual_null_mask_size = | ||||
num_rows * row_table.metadata().null_masks_bytes_per_row; | ||||
ASSERT_LE(actual_null_mask_size, row_table.buffer_size(0) - padding_for_vectors); | ||||
ASSERT_GT(actual_null_mask_size * 2, | ||||
row_table.buffer_size(0) - padding_for_vectors); | ||||
|
||||
int64_t actual_offset_size = num_rows * sizeof(uint32_t); | ||||
ASSERT_LE(actual_offset_size, row_table.buffer_size(1) - padding_for_vectors); | ||||
ASSERT_GT(actual_offset_size * 2, row_table.buffer_size(1) - padding_for_vectors); | ||||
|
||||
int64_t actual_rows_size = num_rows * row_table.offsets()[1]; | ||||
ASSERT_LE(actual_rows_size, row_table.buffer_size(2) - padding_for_vectors); | ||||
ASSERT_GT(actual_rows_size * 2, row_table.buffer_size(2) - padding_for_vectors); | ||||
} | ||||
} | ||||
} | ||||
|
||||
} // namespace compute | ||||
} // namespace arrow |
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.
Can you add a comment and GH issue reference to explain what this test is checking for?
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.
Sure, will do.
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.
Done.