Skip to content

Commit a90cf32

Browse files
Abel Milashclaude
andcommitted
Remove chunking note from dataframe.py (chunking is an _odata detail)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent f2fd765 commit a90cf32

1 file changed

Lines changed: 0 additions & 16 deletions

File tree

src/PowerPlatform/Dataverse/operations/dataframe.py

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -177,14 +177,6 @@ def create(
177177
:raises ValueError: If ``records`` is empty or the number of returned
178178
IDs does not match the number of input rows.
179179
180-
.. tip::
181-
The SDK automatically splits large DataFrames into sequential
182-
1,000-row chunks before sending to ``CreateMultiple``. You do not
183-
need to pre-split large DataFrames. Note that chunked operations
184-
are **not atomic** — a failure mid-way may leave earlier chunks
185-
applied. Callers that require atomicity should limit input to
186-
≤ 1,000 rows.
187-
188180
Example:
189181
Create records from a DataFrame::
190182
@@ -255,14 +247,6 @@ def update(
255247
``clear_nulls`` is ``True``, NaN/None values become explicit nulls, so
256248
rows are never skipped.
257249
258-
.. tip::
259-
The SDK automatically splits large DataFrames into sequential
260-
1,000-row chunks before sending to ``UpdateMultiple`` (or a single
261-
PATCH for one row). You do not need to pre-split large DataFrames.
262-
Note that chunked operations are **not atomic** — a failure
263-
mid-way may leave earlier chunks applied. Callers that require
264-
atomicity should limit input to ≤ 1,000 rows.
265-
266250
Example:
267251
Update records with different values per row::
268252

0 commit comments

Comments
 (0)