Skip to content
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 datafusion/core/src/physical_optimizer/repartition.rs
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ fn optimize_partitions(
&& stats.num_rows.map(|num_rows| num_rows > 1).unwrap_or(true);
}

// don't reparititon root of the plan
// don't repartition root of the plan
if is_root {
could_repartition = false;
}
Expand Down
2 changes: 1 addition & 1 deletion datafusion/core/src/physical_plan/file_format/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -701,7 +701,7 @@ impl From<ObjectMeta> for FileMeta {
/// run against 1000s of files and not try to open them all
/// concurrently.
///
/// However, it means if we assign more than one file to a partitition
/// However, it means if we assign more than one file to a partition
/// the output sort order will not be preserved as illustrated in the
/// following diagrams:
///
Expand Down
2 changes: 1 addition & 1 deletion docs/source/contributor-guide/quarterly_roadmap.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ A quarterly roadmap will be published to give the DataFusion community visibilit
- Support for multi-scheduler deployments. Initially for resiliency and fault tolerance but ultimately to support sharding for scalability and more efficient caching.
- Executor deployment grouping based on resource allocation

### Extensions ([datafusion-contrib](https://github.com/datafusion-contrib]))
### Extensions ([datafusion-contrib](https://github.com/datafusion-contrib))

#### [DataFusion-Python](https://github.com/datafusion-contrib/datafusion-python)

Expand Down