Update from code changes: document write_parallelism on add()#312
Closed
mintlify[bot] wants to merge 1 commit into
Closed
Update from code changes: document write_parallelism on add()#312mintlify[bot] wants to merge 1 commit into
mintlify[bot] wants to merge 1 commit into
Conversation
Contributor
Author
|
Preview deployment for your docs. Learn more about Mintlify Previews.
|
Contributor
Author
|
Preview deployment for your docs. Learn more about Mintlify Previews.
|
2 tasks
Contributor
|
Opened an alternative in #313 — reframes |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
The Python
add()method now exposes awrite_parallelismparameter to cap the number of parallel write partitions, and automatically bounds scan batch size and read-ahead for wide-rowpyarrow.dataset.Datasetinputs so bulk ingestion no longer OOMs the client on wide embedding columns. This PR documents the new knob and the auto-bounded behavior in the Ingestion section of the Performance Tips page. See lancedb/lancedb#3625.Changes
docs/performance.mdx, covering when to usewrite_parallelism, its default, and a code example.Datasetinputs are auto-sized against a ~1 GiB in-flight budget while narrow inputs keep PyArrow defaults.