Skip to content

Commit e5166c8

Browse files
committed
use parallelizable instead of distributable
1 parent 0a34e73 commit e5166c8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

kernel/src/log_reader/checkpoint_leaf.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ use crate::{DeltaResult, Engine, FileMeta};
88

99
/// Phase that processes sidecar or leaf parquet files.
1010
///
11-
/// This phase is distributable - you can partition `files` and create multiple
12-
/// instances on different executors.
11+
/// This phase is parrallelizable - you can partition `files` and create multiple
12+
/// instances on different threads/executors.
1313
#[allow(unused)]
1414
pub(crate) struct CheckpointLeafReader {
1515
actions: Box<dyn Iterator<Item = DeltaResult<ActionsBatch>> + Send>,
@@ -18,9 +18,9 @@ pub(crate) struct CheckpointLeafReader {
1818
impl CheckpointLeafReader {
1919
/// Create a new sidecar phase from file list.
2020
///
21-
/// # Distributability
21+
/// # Parallelizability
2222
///
23-
/// This phase is designed to be distributable. To distribute:
23+
/// This phase is designed to be parrallelizable. To parallelize:
2424
/// 1. Partition `files` across N executors/threads
2525
/// 2. Create N `CheckpointLeafReader` instances, one per executor with its file partition
2626
///

0 commit comments

Comments
 (0)