forked from facebookincubator/nimble
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add bufferPool for nimble parallel writer (facebookincubator#103)
Summary: change the buffer class to a bufferPool to handle multihreaded buffers without mutexes Differential Revision: D64774959
- Loading branch information
1 parent
cc6724a
commit e7eb492
Showing
8 changed files
with
207 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
/* | ||
* Copyright (c) Meta Platforms, Inc. and its affiliates. | ||
* | ||
* Licensed 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 <gtest/gtest.h> | ||
#include "dwio/nimble/common/Buffer.h" | ||
#include "dwio/nimble/common/Exceptions.h" | ||
#include "dwio/nimble/velox/FieldWriter.h" | ||
#include "folly/executors/CPUThreadPoolExecutor.h" | ||
#include "velox/common/memory/Memory.h" | ||
#include "velox/dwio/common/ExecutorBarrier.h" | ||
|
||
namespace facebook::nimble::test { | ||
using MemoryPool = velox::memory::MemoryPool; | ||
using ExecutorBarrier = velox::dwio::common::ExecutorBarrier; | ||
|
||
class BufferPoolTest : public ::testing::Test { | ||
protected: | ||
static void SetUpTestCase() {} | ||
|
||
void SetUp() override { | ||
memPool_ = velox::memory::deprecatedAddDefaultLeafMemoryPool(); | ||
} | ||
|
||
std::shared_ptr<velox::memory::MemoryPool> memPool_; | ||
}; | ||
|
||
TEST_F(BufferPoolTest, CreateBufferPoolBadMaxPool) { | ||
try { | ||
auto bufferPool = BufferPool{*memPool_, /* maxPoolSize */ 0}; | ||
FAIL(); | ||
} catch (const NimbleUserError& e) { | ||
EXPECT_EQ(e.errorMessage(), "max pool size must be > 0"); | ||
} | ||
} | ||
|
||
TEST_F(BufferPoolTest, ReserveAddBuffer) { | ||
auto bufferPool = BufferPool{*memPool_, /* maxPoolSize */ 10}; | ||
auto buffer = bufferPool.reserveBuffer(); | ||
EXPECT_EQ(bufferPool.size(), 9); | ||
bufferPool.addBuffer(std::move(buffer)); | ||
EXPECT_EQ(bufferPool.size(), 10); | ||
} | ||
|
||
TEST_F(BufferPoolTest, EmptyFillBufferPool) { | ||
size_t iterations = 10; | ||
std::vector<std::unique_ptr<Buffer>> buffers; | ||
auto bufferPool = BufferPool{*memPool_, /* maxPoolSize */ iterations}; | ||
|
||
for (auto i = 0; i < iterations; ++i) { | ||
auto buffer = bufferPool.reserveBuffer(); | ||
buffers.push_back(std::move(buffer)); | ||
EXPECT_EQ(bufferPool.size(), iterations - i - 1); | ||
} | ||
EXPECT_EQ(bufferPool.size(), 0); | ||
|
||
for (auto i = 0; i < iterations; ++i) { | ||
bufferPool.addBuffer(std::move(buffers.back())); | ||
buffers.pop_back(); | ||
EXPECT_EQ(bufferPool.size(), i + 1); | ||
} | ||
} | ||
|
||
TEST_F(BufferPoolTest, ParallelFillPool) { | ||
auto parallelismFactor = std::thread::hardware_concurrency(); | ||
auto executor = | ||
std::make_shared<folly::CPUThreadPoolExecutor>(parallelismFactor); | ||
ExecutorBarrier barrier{executor}; | ||
auto bufferPool = BufferPool{*memPool_}; | ||
EXPECT_EQ(bufferPool.size(), parallelismFactor); | ||
|
||
for (auto i = 0; i < parallelismFactor; ++i) { | ||
barrier.add([&]() { | ||
for (auto j = 0; j < 100000; ++j) { | ||
auto buffer = bufferPool.reserveBuffer(); | ||
bufferPool.addBuffer(std::move(buffer)); | ||
} | ||
}); | ||
} | ||
|
||
barrier.waitAll(); | ||
EXPECT_LE(bufferPool.size(), parallelismFactor); | ||
} | ||
} // namespace facebook::nimble::test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters