pwrliang commented on code in PR #3064:
URL: https://github.com/apache/sedona/pull/3064#discussion_r3444192602


##########
docs/blog/posts/intro-sedonadb-0-4.md:
##########
@@ -0,0 +1,398 @@
+---
+date:
+  created: 2026-06-19
+links:
+  - SedonaDB: https://sedona.apache.org/sedonadb/
+authors:
+  - dewey
+  - kristin
+  - feng
+  - jia
+  - pranav
+title: "SedonaDB 0.4.0 Release"
+---
+
+# SedonaDB 0.4.0 Release
+
+The Apache Sedona community is excited to announce the release of 
[SedonaDB](https://sedona.apache.org/sedonadb) version 0.4.0!
+
+SedonaDB is the first open-source, single-node analytical database engine that 
treats spatial data as a first-class citizen. It is developed as a subproject 
of Apache Sedona. This release consists of 187 resolved issues including XX new 
functions from 15 contributors.
+
+Apache Sedona powers large-scale geospatial processing on distributed engines 
like Spark (SedonaSpark), Flink (SedonaFlink), and Snowflake (SedonaSnow). 
SedonaDB extends the Sedona ecosystem with a single-node engine optimized for 
small-to-medium data analytics, delivering the simplicity and speed that 
distributed systems often cannot.
+
+## Release Highlights
+
+We're excited to have so many things to highlight in this release!
+
+- Packaging for conda-forge
+- Python DataFrame API
+- R dplyr interface
+- Geography support
+- GPU-accelerated spatial join
+- Parquet improvements
+- Improved spatial function coverage and documentation
+- Raster infrastructure
+
+
+```python
+# pip install --upgrade "apache-sedona[db]"
+import sedona.db
+
+sd = sedona.db.connect()
+sd.options.interactive = True
+```
+
+## Packaging for conda-forge
+
+We're excited to announce that sedonadb is now available on conda-forge! Users 
of the conda ecosystem can now install SedonaDB with:
+
+```shell
+conda install -c conda-forge sedonadb
+```
+
+Thank you to [p-vdp](https://github.com/p-vdp) for driving this work!
+
+## Python DataFrame API
+
+While SQL is a powerful, flexible, and well-understood language for describing 
many of the things one might want to do with spatial data, many Python users 
prefer using Python functions to interact with data frames and expressions. 
SedonaDB 0.4.0 adds just this: a basic set of transformation on data frames and 
expressions drawing inspiration from [Ibis](https://ibis-project.org), [DuckDB 
Python's relational 
API](https://duckdb.org/docs/current/clients/python/relational_api), 
[PySpark](https://spark.apache.org/docs/latest/api/python/index.html), 
[DataFusion Python](https://datafusion.apache.org/python/), 
[Pandas](https://pandas.pydata.org), and [GeoPandas](https://geopandas.org).
+
+
+```python
+# Load cities and countries from geoarrow-data
+cities_url = 
"https://raw.githubusercontent.com/geoarrow/geoarrow-data/v0.2.0/natural-earth/files/natural-earth_cities.parquet";
+countries_url = 
"https://raw.githubusercontent.com/geoarrow/geoarrow-data/v0.2.0/natural-earth/files/natural-earth_countries.parquet";
+
+cities = sd.read(cities_url).alias("cities")
+countries = sd.read(countries_url).alias("countries")
+
+# Spatial join using the DataFrame API
+f = sd.funcs
+result = (
+    cities.join(
+        countries,
+        on=f.st_intersects(cities.geometry, countries.geometry),
+    )
+    .filter(countries.continent != "North America")
+    .select(cities.name, country=countries.name, continent=countries.continent)
+    .sort("country")
+    .limit(10)
+)
+result.show()
+```
+
+    ┌──────────────┬─────────────┬───────────────┐
+    │     name     ┆   country   ┆   continent   │
+    │     utf8     ┆     utf8    ┆      utf8     │
+    ╞══════════════╪═════════════╪═══════════════╡
+    │ Kabul        ┆ Afghanistan ┆ Asia          │
+    ├╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┤
+    │ Tirana       ┆ Albania     ┆ Europe        │
+    ├╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┤
+    │ Algiers      ┆ Algeria     ┆ Africa        │
+    ├╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┤
+    │ Luanda       ┆ Angola      ┆ Africa        │
+    ├╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┤
+    │ Buenos Aires ┆ Argentina   ┆ South America │
+    ├╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┤
+    │ Yerevan      ┆ Armenia     ┆ Asia          │
+    ├╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┤
+    │ Melbourne    ┆ Australia   ┆ Oceania       │
+    ├╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┤
+    │ Canberra     ┆ Australia   ┆ Oceania       │
+    ├╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┤
+    │ Sydney       ┆ Australia   ┆ Oceania       │
+    ├╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┤
+    │ Vienna       ┆ Austria     ┆ Europe        │
+    └──────────────┴─────────────┴───────────────┘
+
+
+Support for `.group_by()`, `.agg()`, `.distinct()`, and `.distinct_on()` were 
also added in 0.4.0 and more are in the works!
+
+In addition to data frame operators, we increasingly realized that our 
hard-won library of 170+ spatial functions was difficult to explore and use 
(despite improved [SQL reference 
documentation](https://sedona.apache.org/sedonadb/latest/reference/sql/)!). 
Following the pattern of [Pandas-style datatype-specific 
accessors](https://pandas.pydata.org/docs/reference/series.html#accessors), you 
can now write expressions as chains with inline documentation helping you as 
you go.
+
+
+```python
+countries.select(
+    countries.name, geometry=countries.geometry.geo.centroid().geo.buffer(0.1)
+).limit(4)
+```
+
+
+
+
+    
┌─────────────────────────────┬────────────────────────────────────────────────────────────────────┐
+    │             name            ┆                              geometry      
                        │
+    │             utf8            ┆                              geometry      
                        │
+    
╞═════════════════════════════╪════════════════════════════════════════════════════════════════════╡
+    │ Fiji                        ┆ MULTIPOLYGON(((163.7531646445823 
-17.31630942638265,163.755086116… │
+    
├╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┤
+    │ United Republic of Tanzania ┆ MULTIPOLYGON(((34.652989854755944 
-6.25773242850609,34.6549113267… │
+    
├╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┤
+    │ Western Sahara              ┆ MULTIPOLYGON(((-12.237831111607791 
24.291172960208634,-12.2359096… │
+    
├╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┤
+    │ Canada                      ┆ MULTIPOLYGON(((-98.24238137209699 
61.46907614534894,-98.240459900… │
+    
└─────────────────────────────┴────────────────────────────────────────────────────────────────────┘
+
+
+
+## R dplyr Interface
+
+Similarly, in past releases R users had to use SQL to access most features of 
SedonaDB. In the 0.5.0 release, you can now use the dplyr backend to transform 
your SedonaDB-backed lazy data frames. To make this happen we added a new 
pakckage, **sdplyr**, with an additional package **sedonafns** whose job it is 
to enumerate and document our large and growing collection of spatial 
functions. You can get everything you need from [the sdplyr package on R 
Universe](https://apache.r-universe.dev/sdplyr) to get started!
+
+```r
+library(sdplyr)
+
+# Load cities and countries from geoarrow-data
+cities_url <- 
"https://raw.githubusercontent.com/geoarrow/geoarrow-data/v0.2.0/natural-earth/files/natural-earth_cities.parquet";
+countries_url <- 
"https://raw.githubusercontent.com/geoarrow/geoarrow-data/v0.2.0/natural-earth/files/natural-earth_countries.parquet";
+
+cities <- sd_read_parquet(cities_url)
+countries <- sd_read_parquet(countries_url)
+
+# Spatial join using dplyr
+cities |>
+  inner_join(
+    countries,
+    by = sd_join_intersects()
+  ) |>
+  filter(continent != "North America") |>
+  select(
+    city = name.x,
+    country = name.y,
+    continent
+  ) |>
+  arrange(country) |>
+  head(10)
+#> <sedonab_dataframe: NA x 3>
+#> ┌──────────────┬─────────────┬───────────────┐
+#> │     city     ┆   country   ┆   continent   │
+#> │     utf8     ┆     utf8    ┆      utf8     │
+#> ╞══════════════╪═════════════╪═══════════════╡
+#> │ Kabul        ┆ Afghanistan ┆ Asia          │
+#> ├╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┤
+#> │ Tirana       ┆ Albania     ┆ Europe        │
+#> ├╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┤
+#> │ Algiers      ┆ Algeria     ┆ Africa        │
+#> ├╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┤
+#> │ Luanda       ┆ Angola      ┆ Africa        │
+#> ├╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┤
+#> │ Buenos Aires ┆ Argentina   ┆ South America │
+#> ├╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┤
+#> │ Yerevan      ┆ Armenia     ┆ Asia          │
+#> └──────────────┴─────────────┴───────────────┘
+#> Preview of up to 6 row(s)
+```
+
+While we have some R functions translated for use in SedonaDB à la 
dbplyr/arrow, this is a work in progress. In the meantime, 
DataFusion/SedonaDB-raw SQL functions are available via `.fns` (e.g., 
`.fns$substr(some_col,1, 5)`) and tidy `!!some_r_expression` are supported and 
we would love [feature 
requests](https://github.com/apache/sedona-db/issues/new) to implement 
frequently used functions from our users.
+
+## Geography Support
+
+SedonaDB 0.4.0 introduces expanded support for the Geography data type, 
including a completely rewritten implementation of most operations using 
[s2geography](https://github.com/paleolimbot/s2geography), which in turn 
packages primitives from Google's 
[s2geometry](https://github.com/google/s2geometry) as 
PostGIS/BigQuery-compatible SQL operators.
+
+Geography shines for distance queries across large geographical areas. For 
example, if we wanted to find cities within 200 km of Germany, we'd have to 
find a local projection and do potentially expensive transformations between 
coordinate systems. Geography simplifies this to a simple distance-within query:
+
+
+```python
+germany = countries.filter(countries.name == "Germany").select(
+    countries.geometry.geo.to_geography()
+)
+
+cities.filter(
+    cities.geometry.geo.to_geography().geo.d_within(germany, 100_000.0)
+).select(cities.name)
+```
+
+
+
+
+    ┌────────────┐
+    │    name    │
+    │    utf8    │
+    ╞════════════╡
+    │ Vaduz      │
+    ├╌╌╌╌╌╌╌╌╌╌╌╌┤
+    │ Luxembourg │
+    ├╌╌╌╌╌╌╌╌╌╌╌╌┤
+    │ Bern       │
+    ├╌╌╌╌╌╌╌╌╌╌╌╌┤
+    │ Prague     │
+    ├╌╌╌╌╌╌╌╌╌╌╌╌┤
+    │ Amsterdam  │
+    ├╌╌╌╌╌╌╌╌╌╌╌╌┤
+    │ Berlin     │
+    └────────────┘
+
+
+
+This works for spatial joins, too. If you'd like to analyze *all* the 
countries with their nearby cities, SedonaDB can now do that too.
+
+
+```python
+cities_geog = cities.select(
+    cities.name, geometry=cities.geometry.geo.to_geography()
+).alias("cities_geog")
+countries_geog = countries.select(
+    countries.name,
+    countries.continent,
+    geometry=countries.geometry.geo.to_geography(),
+).alias("countries_geog")
+
+cities_geog.join(
+    countries_geog,
+    on=f.st_dwithin(
+        cities_geog.geometry,
+        countries_geog.geometry,
+        100_000,  # Distance in meters!
+    ),
+).select(
+    cities_geog.name, country=countries_geog.name, 
continent=countries_geog.continent
+)
+```
+
+
+
+
+    ┌──────────────┬──────────────┬───────────┐
+    │     name     ┆    country   ┆ continent │
+    │     utf8     ┆     utf8     ┆    utf8   │
+    ╞══════════════╪══════════════╪═══════════╡
+    │ Vatican City ┆ Italy        ┆ Europe    │
+    ├╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌┤
+    │ San Marino   ┆ Italy        ┆ Europe    │
+    ├╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌┤
+    │ Vaduz        ┆ Austria      ┆ Europe    │
+    ├╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌┤
+    │ Vaduz        ┆ Germany      ┆ Europe    │
+    ├╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌┤
+    │ Vaduz        ┆ Switzerland  ┆ Europe    │
+    ├╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌┤
+    │ Vaduz        ┆ Italy        ┆ Europe    │
+    ├╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌┤
+    │ Lobamba      ┆ South Africa ┆ Africa    │
+    ├╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌┤
+    │ Lobamba      ┆ Mozambique   ┆ Africa    │
+    ├╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌┤
+    │ Lobamba      ┆ eSwatini     ┆ Africa    │
+    ├╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌┤
+    │ Luxembourg   ┆ France       ┆ Europe    │
+    └──────────────┴──────────────┴───────────┘
+
+
+
+Geography is also useful for calculating the shortest path along the surface 
of the earth between two points or more complex geometries. For example, if you 
wanted to find the theoretical path an airplane would take if it flew from 
Toronto to any other city in the world, you could simply create a line (using 
ST_MakeLine) and use ST_TessellateGeom to visualize the line on a flat lon/lat 
map like those provided by most interactive map providers.
+
+
+```python
+import lonboard
+
+result = (
+    cities_geog.filter(cities_geog.name == "Toronto")
+    .select(name_from=cities_geog.name, pt_from=cities_geog.geometry)
+    .cross_join(cities_geog)
+    .select(
+        name_to=sd.col("name"),
+        geometry=sd.col("pt_from")
+        .geo.make_line(sd.col("geometry"))
+        .geo.tessellate_geom(1_000),
+    )
+)
+
+lonboard.viz(result.to_pandas())
+```
+
+
+
+
+    Map(basemap_style=<CartoBasemap.DarkMatter: 
'https://basemaps.cartocdn.com/gl/dark-matter-gl-style/style.json'…
+
+
+
+![Lonboard view of geography segments](intro-sedonadb-0-4-geog-toronto.png)
+
+Functions directly supported by s2geometry/s2geography include 
`s2_cellidfrompoint`, `s2_coveringcellids`, `st_area`, `st_buffer`, 
`st_centroid`, `st_closestpoint`, `st_contains`, `st_convexhull`, 
`st_difference`, `st_disjoint`, `st_distance`, `st_dwithin`, `st_equals`, 
`st_intersection`, `st_intersects`, `st_length`, `st_lineinterpolatepoint`, 
`st_linelocatepoint`, `st_longestline`, `st_maxdistance`, `st_perimeter`, 
`st_pointonsurface`, `st_reduceprecision`, `st_segmentize`, `st_shortestline`, 
`st_simplify`, `st_symdifference`, `st_tessellategeog`, `st_tessellategeom`, 
`st_union`, and `st_within`.
+
+Additionally, we've made sure that bounding box-related functions 
(`st_analyze_agg`, `st_envelope`, `st_envelope_agg`, `st_xmax`, `st_xmin`, 
`st_ymax`, `st_ymin`) are all geography aware, and that structural 
accessors/transformers (`st_asbinary`, `st_astext`, `st_boundary`, 
`st_dimension`, `st_flipcoordinates`, `st_force2d`, `st_force3d`, 
`st_force3dm`, `st_force4d`, `st_geogfromwkb`, `st_geogfromwkt`, 
`st_geogpoint`, `st_geometryn`, `st_geometrytype`, `st_interiorringn`, 
`st_isclosed`, `st_iscollection`, `st_isempty`, `st_linemerge`, `st_mmax`, 
`st_mmin`, `st_normalize`, `st_npoints`, `st_nrings`, `st_numgeometries`, 
`st_numinteriorrings`, `st_numpoints`, `st_pointn`, `st_points`, `st_reverse`, 
`st_setcrs`, `st_togeography`, `st_togeometry`, `st_x`, `st_y`, `st_zmax`, 
`st_zmin`) all support Geography just as they support Geometry.
+
+Thanks to [edzer](https://github.com/edzer), 
[benbovy](https://github.com/benbovy), 
[jorisvandenbossche](https://github.com/jorisvandenbossche), and many years of 
[s2geography](https://github.com/paleolimbot/s2geography) and 
[r-spatial/s2](https://github.com/r-spatial/s2) contributors that formed the 
basis for these implementations.
+
+## GPU-Accelerated Spatial Join
+
+```bash
+docker run -it --rm --gpus all -p 8888:8888 apache/sedona:sedonadb-latest
+```

Review Comment:
   Hi, this is my release notes:
   ---
   SedonaDB now introduces hardware acceleration via an integrated **GPU 
Spatial Join Library**. This feature significantly boosts the performance of 
compute-intensive spatial joins by offloading highly parallel filtering and 
refinement operations to the GPU.
   
   ### Key Capabilities & Enhancements
   
   * **Ray Tracing (RT) Core Acceleration:** Repurposes dedicated GPU RT cores 
to accelerate the bounding-box filtering stage of spatial queries and 
Point-in-Polygon (PIP) tests. This delivers massive performance gains on 
complex spatial joins (e.g., `intersects`, `contains`). The evaluation of PIP 
queries is heavily optimized to exploit RT cores, while other geometric 
operations run on CUDA cores.
   * **GPU-Optimized Storage Layout:** Unlike conventional GPU databases that 
load entire datasets into device memory, SedonaDB only loads geometries in 
Well-Known Binary (WKB) format to the GPU during query execution. This allows 
large queries to run efficiently even with limited device memory. The WKB data 
is subsequently converted into a GPU-friendly format, maximizing memory 
throughput and enabling parallel random access directly on the device.
   * **CPU Fallback:** Currently, only a subset of spatial predicates are 
[supported](https://github.com/apache/sedona-db/blob/main/docs/gpu-acceleration.md).
 When executing an unsupported spatial join, the engine automatically falls 
back to the CPU implementation.
   
   ---
   
   ### Prerequisites & Deployment
   
   By default, the GPU feature is disabled and is not included in the standard 
published python packages.
   
   **Hardware Requirements:**
   
   * An NVIDIA GPU with a compute capability of $\ge$ 7.5.
   
   #### Quick Start with Docker
   
   We provide an official Docker image to easily try this feature with a single 
command:
   
   ```bash
   docker run -it --rm --gpus all -p 8888:8888 apache/sedona:sedonadb-latest
   
   ```
   
   > ⚠️ **Note:** This pre-built image supports GPU models with compute 
capabilities **7.5, 8.6, and 8.9**.
   
   For other GPU models, we encourage users to build the image from source to 
avoid time-consuming Just-In-Time (JIT) compilation:
   
   ```bash
   docker build -f docker/sedonadb-gpu.dockerfile --build-arg 
CMAKE_CUDA_ARCHITECTURES="<your GPU compute capability>" -t sedonadb-gpu .
   
   ```
   
   ---
   
   ### Usage
   
   Launching the container provides a **JupyterLab** instance. From there, you 
can connect to SedonaDB and enable GPU acceleration using the following 
configuration:
   
   ```python
   import sedonadb
   
   ctx = sedonadb.connect()
   
   # Enable the GPU feature
   ctx.sql("SET gpu.enable = true") 
   
   # Increase the batch size to feed sufficient data to the GPU
   ctx.sql("SET datafusion.execution.batch_size = 100000") 
   
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to