Posit AI Blog: News from the sparkly-verse


Highlights

sparklyr and friends have been getting some important updates in the past few
months, here are some highlights:

  • spark_apply() now works on Databricks Connect v2

  • sparkxgb is coming back to life

  • Support for Spark 2.3 and below has ended

pysparklyr 0.1.4

spark_apply() now works on Databricks Connect v2. The latest pysparklyr
release uses the rpy2 Python library as the backbone of the integration.

Databricks Connect v2, is based on Spark Connect. At this time, it supports
Python user-defined functions (UDFs), but not R user-defined functions.
Using rpy2 circumvents this limitation. As shown in the diagram, sparklyr
sends the the R code to the locally installed rpy2, which in turn sends it
to Spark. Then the rpy2 installed in the remote Databricks cluster will run
the R code.


Diagram that shows how sparklyr transmits the R code via the rpy2 python package, and how Spark uses it to run the R code

Figure 1: R code via rpy2

A big advantage of this approach, is that rpy2 supports Arrow. In fact it
is the recommended Python library to use when integrating Spark, Arrow and
R
.
This means that the data exchange between the three environments will be much
faster!

As in its original implementation, schema inferring works, and as with the
original implementation, it has a performance cost. But unlike the original,
this implementation will return a ‘columns’ specification that you can use
for the next time you run the call.

Run R inside Databricks Connect

sparkxgb

The sparkxgb is an extension of sparklyr. It enables integration with
XGBoost. The current CRAN release
does not support the latest versions of XGBoost. This limitation has recently
prompted a full refresh of sparkxgb. Here is a summary of the improvements,
which are currently in the development version of the package:

  • The xgboost_classifier() and xgboost_regressor() functions no longer
    pass values of two arguments. These were deprecated by XGBoost and
    cause an error if used. In the R function, the arguments will remain for
    backwards compatibility, but will generate an informative error if not left NULL:

  • Updates the JVM version used during the Spark session. It now uses xgboost4j-spark
    version 2.0.3
    ,
    instead of 0.8.1. This gives us access to XGboost’s most recent Spark code.

  • Updates code that used deprecated functions from upstream R dependencies. It
    also stops using an un-maintained package as a dependency (forge). This
    eliminated all of the warnings that were happening when fitting a model.

  • Major improvements to package testing. Unit tests were updated and expanded,
    the way sparkxgb automatically starts and stops the Spark session for testing
    was modernized, and the continuous integration tests were restored. This will
    ensure the package’s health going forward.

found here,
Spark 2.3 was ‘end-of-life’ in 2018.

This is part of a larger, and ongoing effort to make the immense code-base of
sparklyr a little easier to maintain, and hence reduce the risk of failures.
As part of the same effort, the number of upstream packages that sparklyr
depends on have been reduced. This has been happening across multiple CRAN
releases, and in this latest release tibble, and rappdirs are no longer
imported by sparklyr.

Reuse

Text and figures are licensed under Creative Commons Attribution CC BY 4.0. The figures that have been reused from other sources don’t fall under this license and can be recognized by a note in their caption: “Figure from …”.

Citation

For attribution, please cite this work as

Ruiz (2024, April 22). Posit AI Blog: News from the sparkly-verse. Retrieved from https://blogs.rstudio.com/tensorflow/posts/2024-04-22-sparklyr-updates/

BibTeX citation

@misc{sparklyr-updates-q1-2024,
  author = {Ruiz, Edgar},
  title = {Posit AI Blog: News from the sparkly-verse},
  url = {https://blogs.rstudio.com/tensorflow/posts/2024-04-22-sparklyr-updates/},
  year = {2024}
}

Latest articles

spot_imgspot_img

Related articles

Leave a reply

Please enter your comment!
Please enter your name here

spot_imgspot_img