You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For GeoParquet data which complies to spec version 1.1, all geometry metadata will be automatically
616
+
detected.
617
+
618
+
Note that for any version of parquet, you may optionally specify ``batch_size`` and ``batch_readahead`` in the ``data`` section of the parquet provider config.
619
+
``batch_size`` controls how many rows are fetched per batch. Large batch sizes speed up data processing, but add more I/O time like increased latency when fetching data from an object store, and . If not defined it will
620
+
default to 20,000 rows.
621
+
622
+
``batch_readahead`` controls how many batches are buffered in memory. If not specified it will default to 2.
623
+
Since OGC API Features payloads are often paginated and fairly small, it generally makes sense to specify a small number to avoid reading too many batches ahead of time, especially when fetching from an object store.
0 commit comments