This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/cargo/datafusion-arrow-parquet-9e4b58fd8f
in repository https://gitbox.apache.org/repos/asf/sedona-db.git
discard d1845078 chore(deps): bump the datafusion-arrow-parquet group with 21
updates
add 8faf2cf3 feat(rust/sedona-testing): Add test helpers for loading
raster test data (#587)
add 563114ea feat(rust/sedona-raster-functions): add RS_BandPixelType,
RS_BandNoDataValue UDFs (#612)
add cb840b8d feat(rust/sedona-raster-functions): add RS_PixelAsPoint,
RS_PixelAsCentroid, RS_PixelAsPolygon UDFs (#614)
add 4ea183fa feat(rust/sedona): Auto-configure spilled batch in-memory
size threshold based on global memory limit (#680)
add 89b8ebda fix(rust/sedona-testing): serialize env-mutating tests with a
mutex to prevent race conditions (#685)
add 9d7001e0 docs: add memory management and spill configuration guide
(#679)
add c6de6f95 fix(rust/sedona-spatial-join): wrap probe-side repartition in
ProbeShuffleExec to prevent optimizer stripping (#677)
add 2c8810a8 feat(rust/sedona): default memory limit to 75% of physical
memory with fair pool (#687)
add c6446798 fix(rust/sedona-pointcloud): stabilize flaky
round_robin_partitioning test (#690)
add 016d8719 chore(deps): bump the datafusion-arrow-parquet group with 21
updates
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (d1845078)
\
N -- N -- N
refs/heads/dependabot/cargo/datafusion-arrow-parquet-9e4b58fd8f (016d8719)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
Cargo.lock | 94 ++++
Cargo.toml | 1 +
docs/memory-management.ipynb | 386 +++++++++++++
docs/memory-management.md | 242 +++++++++
.../{rs_bandpath.qmd => rs_bandnodatavalue.qmd} | 25 +-
.../sql/{rs_bandpath.qmd => rs_bandpixeltype.qmd} | 23 +-
...stertoworldcoord.qmd => rs_pixelascentroid.qmd} | 10 +-
..._rastertoworldcoord.qmd => rs_pixelaspoint.qmd} | 10 +-
...astertoworldcoord.qmd => rs_pixelaspolygon.qmd} | 10 +-
mkdocs.yml | 2 +
python/sedonadb/python/sedonadb/_options.py | 35 +-
rust/sedona-pointcloud/src/las/opener.rs | 29 +-
.../benches/native-raster-functions.rs | 40 ++
rust/sedona-raster-functions/src/lib.rs | 3 +-
rust/sedona-raster-functions/src/raster_utils.rs | 58 --
rust/sedona-raster-functions/src/register.rs | 5 +
.../src/rs_band_accessors.rs | 450 ++++++++++++++++
rust/sedona-raster-functions/src/rs_bandpath.rs | 42 +-
.../src/rs_pixel_functions.rs | 600 +++++++++++++++++++++
rust/sedona-raster/src/affine_transformation.rs | 192 ++++++-
rust/sedona-spatial-join/src/lib.rs | 4 +
rust/sedona-spatial-join/src/planner.rs | 1 +
.../src/planner/physical_planner.rs | 10 +-
.../src/planner/probe_shuffle_exec.rs | 225 ++++++++
.../tests/spatial_join_integration.rs | 37 +-
rust/sedona-testing/src/data.rs | 42 ++
rust/sedona-testing/src/rasters.rs | 37 ++
rust/sedona/Cargo.toml | 1 +
rust/sedona/src/context.rs | 53 +-
rust/sedona/src/context_builder.rs | 122 ++++-
sedona-cli/src/main.rs | 35 +-
submodules/sedona-testing | 2 +-
32 files changed, 2645 insertions(+), 181 deletions(-)
create mode 100644 docs/memory-management.ipynb
create mode 100644 docs/memory-management.md
copy docs/reference/sql/{rs_bandpath.qmd => rs_bandnodatavalue.qmd} (67%)
copy docs/reference/sql/{rs_bandpath.qmd => rs_bandpixeltype.qmd} (71%)
copy docs/reference/sql/{rs_rastertoworldcoord.qmd => rs_pixelascentroid.qmd}
(82%)
copy docs/reference/sql/{rs_rastertoworldcoord.qmd => rs_pixelaspoint.qmd}
(82%)
copy docs/reference/sql/{rs_rastertoworldcoord.qmd => rs_pixelaspolygon.qmd}
(82%)
delete mode 100644 rust/sedona-raster-functions/src/raster_utils.rs
create mode 100644 rust/sedona-raster-functions/src/rs_band_accessors.rs
create mode 100644 rust/sedona-raster-functions/src/rs_pixel_functions.rs
create mode 100644 rust/sedona-spatial-join/src/planner/probe_shuffle_exec.rs