Skip to content

Update blk_size from 1K to 4K to align with the physical sector size of HDDs #297

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

Merged
merged 1 commit into from
May 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

class HomeObjectConan(ConanFile):
name = "homeobject"
version = "2.3.19"
version = "2.3.20"

homepage = "https://github.com/eBay/HomeObject"
description = "Blob Store built on HomeReplication"
Expand Down
2 changes: 1 addition & 1 deletion src/lib/homestore_backend/hs_homeobject.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class HSHomeObject : public HomeObjectImpl {
inline static auto const _snp_rcvr_meta_name = std::string("SnapshotReceiver");
inline static auto const _snp_rcvr_shard_list_meta_name = std::string("SnapshotReceiverShardList");
static constexpr uint64_t HS_CHUNK_SIZE = 2 * Gi;
static constexpr uint32_t _data_block_size = 1024;
static constexpr uint32_t _data_block_size = 4 * Ki;
static uint64_t _hs_chunk_size;
uint32_t _hs_reserved_blks = 0;
///
Expand Down
Loading