sparklyr (version 1.8.5)

arrow_enabled_object: Determine whether arrow is able to serialize the given R object

Description

If the given R object is not serializable by arrow due to some known limitations of arrow, then return FALSE, otherwise return TRUE

Usage

arrow_enabled_object(object)

Arguments

object

The object to be serialized

Examples

Run this code
if (FALSE) {

df <- dplyr::tibble(x = seq(5))
arrow_enabled_object(df)
}

Run the code above in your browser using DataLab