mirror of
https://github.com/0glabs/0g-storage-node.git
synced 2024-11-10 10:05:17 +00:00
Process padding data in groups to avoid OOM. (#27)
This commit is contained in:
parent
ef3044fafc
commit
2ed6bca446
@ -39,6 +39,9 @@ pub const COL_SEAL_CONTEXT: u32 = 6;
|
|||||||
pub const COL_FLOW_MPT_NODES: u32 = 7;
|
pub const COL_FLOW_MPT_NODES: u32 = 7;
|
||||||
pub const COL_NUM: u32 = 8;
|
pub const COL_NUM: u32 = 8;
|
||||||
|
|
||||||
|
// Process at most 1M entries (256MB) pad data at a time.
|
||||||
|
const PAD_MAX_SIZE: usize = 1 << 20;
|
||||||
|
|
||||||
pub struct LogManager {
|
pub struct LogManager {
|
||||||
pub(crate) db: Arc<dyn ZgsKeyValueDB>,
|
pub(crate) db: Arc<dyn ZgsKeyValueDB>,
|
||||||
tx_store: TransactionStore,
|
tx_store: TransactionStore,
|
||||||
@ -697,7 +700,7 @@ impl LogManager {
|
|||||||
#[instrument(skip(self))]
|
#[instrument(skip(self))]
|
||||||
fn pad_tx(&mut self, first_subtree_size: u64) -> Result<()> {
|
fn pad_tx(&mut self, first_subtree_size: u64) -> Result<()> {
|
||||||
// Check if we need to pad the flow.
|
// Check if we need to pad the flow.
|
||||||
let tx_start_flow_index =
|
let mut tx_start_flow_index =
|
||||||
self.last_chunk_start_index() + self.last_chunk_merkle.leaves() as u64;
|
self.last_chunk_start_index() + self.last_chunk_merkle.leaves() as u64;
|
||||||
let extra = tx_start_flow_index % first_subtree_size;
|
let extra = tx_start_flow_index % first_subtree_size;
|
||||||
trace!(
|
trace!(
|
||||||
@ -706,10 +709,10 @@ impl LogManager {
|
|||||||
self.last_chunk_merkle.leaves()
|
self.last_chunk_merkle.leaves()
|
||||||
);
|
);
|
||||||
if extra != 0 {
|
if extra != 0 {
|
||||||
let pad_data = Self::padding((first_subtree_size - extra) as usize);
|
for pad_data in Self::padding((first_subtree_size - extra) as usize) {
|
||||||
|
let mut root_map = BTreeMap::new();
|
||||||
|
|
||||||
// Update the in-memory merkle tree.
|
// Update the in-memory merkle tree.
|
||||||
let mut root_map = BTreeMap::new();
|
|
||||||
let last_chunk_pad = if self.last_chunk_merkle.leaves() == 0 {
|
let last_chunk_pad = if self.last_chunk_merkle.leaves() == 0 {
|
||||||
0
|
0
|
||||||
} else {
|
} else {
|
||||||
@ -739,8 +742,8 @@ impl LogManager {
|
|||||||
// Pad with more complete chunks.
|
// Pad with more complete chunks.
|
||||||
let mut start_index = last_chunk_pad / ENTRY_SIZE;
|
let mut start_index = last_chunk_pad / ENTRY_SIZE;
|
||||||
while pad_data.len() >= (start_index + PORA_CHUNK_SIZE) * ENTRY_SIZE {
|
while pad_data.len() >= (start_index + PORA_CHUNK_SIZE) * ENTRY_SIZE {
|
||||||
let data = pad_data
|
let data = pad_data[start_index * ENTRY_SIZE
|
||||||
[start_index * ENTRY_SIZE..(start_index + PORA_CHUNK_SIZE) * ENTRY_SIZE]
|
..(start_index + PORA_CHUNK_SIZE) * ENTRY_SIZE]
|
||||||
.to_vec();
|
.to_vec();
|
||||||
let root = *Merkle::new(data_to_merkle_leaves(&data)?, 0, None).root();
|
let root = *Merkle::new(data_to_merkle_leaves(&data)?, 0, None).root();
|
||||||
self.pora_chunks_merkle.append(root);
|
self.pora_chunks_merkle.append(root);
|
||||||
@ -755,14 +758,17 @@ impl LogManager {
|
|||||||
// Update the flow database.
|
// Update the flow database.
|
||||||
// This should be called before `complete_last_chunk_merkle` so that we do not save
|
// This should be called before `complete_last_chunk_merkle` so that we do not save
|
||||||
// subtrees with data known.
|
// subtrees with data known.
|
||||||
|
let data_size = pad_data.len() / ENTRY_SIZE;
|
||||||
self.flow_store.append_entries(ChunkArray {
|
self.flow_store.append_entries(ChunkArray {
|
||||||
data: pad_data,
|
data: pad_data,
|
||||||
start_index: tx_start_flow_index,
|
start_index: tx_start_flow_index,
|
||||||
})?;
|
})?;
|
||||||
|
tx_start_flow_index += data_size as u64;
|
||||||
if let Some(index) = completed_chunk_index {
|
if let Some(index) = completed_chunk_index {
|
||||||
self.complete_last_chunk_merkle(index)?;
|
self.complete_last_chunk_merkle(index)?;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
trace!(
|
trace!(
|
||||||
"after pad_tx {} {}",
|
"after pad_tx {} {}",
|
||||||
self.pora_chunks_merkle.leaves(),
|
self.pora_chunks_merkle.leaves(),
|
||||||
@ -817,7 +823,20 @@ impl LogManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// FIXME(zz): Implement padding.
|
// FIXME(zz): Implement padding.
|
||||||
pub fn padding(len: usize) -> Vec<u8> {
|
pub fn padding(len: usize) -> Vec<Vec<u8>> {
|
||||||
|
let remainder = len % PAD_MAX_SIZE;
|
||||||
|
let n = len / PAD_MAX_SIZE;
|
||||||
|
let mut pad_data = vec![Self::padding_raw(PAD_MAX_SIZE); n];
|
||||||
|
if remainder == 0 {
|
||||||
|
pad_data
|
||||||
|
} else {
|
||||||
|
// insert the remainder to the front, so the rest are processed with alignment.
|
||||||
|
pad_data.insert(0, Self::padding_raw(remainder));
|
||||||
|
pad_data
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn padding_raw(len: usize) -> Vec<u8> {
|
||||||
vec![0; len * ENTRY_SIZE]
|
vec![0; len * ENTRY_SIZE]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@ fn test_put_get() {
|
|||||||
}
|
}
|
||||||
let (padded_chunks, _) = compute_padded_chunk_size(data_size);
|
let (padded_chunks, _) = compute_padded_chunk_size(data_size);
|
||||||
let mut merkle = AppendMerkleTree::<H256, Sha3Algorithm>::new(vec![H256::zero()], 0, None);
|
let mut merkle = AppendMerkleTree::<H256, Sha3Algorithm>::new(vec![H256::zero()], 0, None);
|
||||||
merkle.append_list(data_to_merkle_leaves(&LogManager::padding(start_offset - 1)).unwrap());
|
merkle.append_list(data_to_merkle_leaves(&LogManager::padding_raw(start_offset - 1)).unwrap());
|
||||||
let mut data_padded = data.clone();
|
let mut data_padded = data.clone();
|
||||||
data_padded.append(&mut vec![0u8; CHUNK_SIZE]);
|
data_padded.append(&mut vec![0u8; CHUNK_SIZE]);
|
||||||
merkle.append_list(data_to_merkle_leaves(&data_padded).unwrap());
|
merkle.append_list(data_to_merkle_leaves(&data_padded).unwrap());
|
||||||
|
@ -263,7 +263,7 @@ impl TransactionStore {
|
|||||||
if merkle.leaves() % first_subtree != 0 {
|
if merkle.leaves() % first_subtree != 0 {
|
||||||
let pad_len =
|
let pad_len =
|
||||||
cmp::min(first_subtree, PORA_CHUNK_SIZE) - (merkle.leaves() % first_subtree);
|
cmp::min(first_subtree, PORA_CHUNK_SIZE) - (merkle.leaves() % first_subtree);
|
||||||
merkle.append_list(data_to_merkle_leaves(&LogManager::padding(pad_len))?);
|
merkle.append_list(data_to_merkle_leaves(&LogManager::padding_raw(pad_len))?);
|
||||||
}
|
}
|
||||||
// Since we are building the last merkle with a given last tx_seq, it's ensured
|
// Since we are building the last merkle with a given last tx_seq, it's ensured
|
||||||
// that appending subtrees will not go beyond the max size.
|
// that appending subtrees will not go beyond the max size.
|
||||||
|
Loading…
Reference in New Issue
Block a user