Skip to content
Draft
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
5 changes: 4 additions & 1 deletion src/uproot/_dask.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,10 @@ def dask(
* handler (:doc:`uproot.source.chunk.Source` class; None)
* timeout (float for HTTP, int for XRootD; 30)
* max_num_elements (None or int; None)
The maximum number of elements to be requested in a single vector read, when using XRootD.
The maximum number of byte ranges requested in a single XRootD vector
read. This does not limit the number of TTree or RNTuple entries read;
pass ``entry_stop`` to ``arrays``, ``uproot.iterate``, or
``uproot.concatenate`` instead.
* num_workers (int; 1)
* use_threads (bool; False on the emscripten platform (i.e. in a web browser), else True)
* num_fallback_workers (int; 10)
Expand Down
10 changes: 8 additions & 2 deletions src/uproot/behaviors/RNTuple.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,10 @@ def iterate(
* handler (:doc:`uproot.source.chunk.Source` class; None)
* timeout (float for HTTP, int for XRootD; 30)
* max_num_elements (None or int; None)
The maximum number of elements to be requested in a single vector read, when using XRootD.
The maximum number of byte ranges requested in a single XRootD vector
read. This does not limit the number of TTree or RNTuple entries read;
pass ``entry_stop`` to ``arrays``, ``uproot.iterate``, or
``uproot.concatenate`` instead.
* num_workers (int; 1)
* use_threads (bool; False on the emscripten platform (i.e. in a web browser), else True)
* num_fallback_workers (int; 10)
Expand Down Expand Up @@ -318,7 +321,10 @@ def concatenate(
* handler (:doc:`uproot.source.chunk.Source` class; None)
* timeout (float for HTTP, int for XRootD; 30)
* max_num_elements (None or int; None)
The maximum number of elements to be requested in a single vector read, when using XRootD.
The maximum number of byte ranges requested in a single XRootD vector
read. This does not limit the number of TTree or RNTuple entries read;
pass ``entry_stop`` to ``arrays``, ``uproot.iterate``, or
``uproot.concatenate`` instead.
* num_workers (int; 1)
* use_threads (bool; False on the emscripten platform (i.e. in a web browser), else True)
* num_fallback_workers (int; 10)
Expand Down
10 changes: 8 additions & 2 deletions src/uproot/behaviors/TBranch.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,10 @@ def iterate(
* handler (:doc:`uproot.source.chunk.Source` class; None)
* timeout (float for HTTP, int for XRootD; 30)
* max_num_elements (None or int; None)
The maximum number of elements to be requested in a single vector read, when using XRootD.
The maximum number of byte ranges requested in a single XRootD vector
read. This does not limit the number of TTree or RNTuple entries read;
pass ``entry_stop`` to ``arrays``, ``uproot.iterate``, or
``uproot.concatenate`` instead.
* num_workers (int; 1)
* use_threads (bool; False on the emscripten platform (i.e. in a web browser), else True)
* num_fallback_workers (int; 10)
Expand Down Expand Up @@ -370,7 +373,10 @@ def concatenate(
* handler (:doc:`uproot.source.chunk.Source` class; None)
* timeout (float for HTTP, int for XRootD; 30)
* max_num_elements (None or int; None)
The maximum number of elements to be requested in a single vector read, when using XRootD.
The maximum number of byte ranges requested in a single XRootD vector
read. This does not limit the number of TTree or RNTuple entries read;
pass ``entry_stop`` to ``arrays``, ``uproot.iterate``, or
``uproot.concatenate`` instead.
* num_workers (int; 1)
* use_threads (bool; False on the emscripten platform (i.e. in a web browser), else True)
* num_fallback_workers (int; 10)
Expand Down
10 changes: 8 additions & 2 deletions src/uproot/reading.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,10 @@ def open(
* handler (:doc:`uproot.source.chunk.Source` class; None)
* timeout (float for HTTP, int for XRootD; 30)
* max_num_elements (None or int; None)
The maximum number of elements to be requested in a single vector read, when using XRootD.
The maximum number of byte ranges requested in a single XRootD vector
read. This does not limit the number of TTree or RNTuple entries read;
pass ``entry_stop`` to ``arrays``, ``uproot.iterate``, or
``uproot.concatenate`` instead.
* num_workers (int; 1)
* use_threads (bool; False on the emscripten platform (i.e. in a web browser), else True)
* num_fallback_workers (int; 10)
Expand Down Expand Up @@ -528,7 +531,10 @@ class ReadOnlyFile(CommonFileMethods):
* handler (:doc:`uproot.source.chunk.Source` class; None)
* timeout (float for HTTP, int for XRootD; 30)
* max_num_elements (None or int; None)
The maximum number of elements to be requested in a single vector read, when using XRootD.
The maximum number of byte ranges requested in a single XRootD vector
read. This does not limit the number of TTree or RNTuple entries read;
pass ``entry_stop`` to ``arrays``, ``uproot.iterate``, or
``uproot.concatenate`` instead.
* num_workers (int; 1)
* use_threads (bool; False on the emscripten platform (i.e. in a web browser), else True)
* num_fallback_workers (int; 10)
Expand Down