gpt4 book ai didi

使用 sparklyr 在 Databricks 中读取 Parquet 文件

转载 作者:行者123 更新时间:2023-12-04 10:22:51 25 4
gpt4 key购买 nike

尝试使用以下代码将 Parquet 文件从 R 读入 Apache Spark 2.4.3。它适用于我使用 Windows 10 的本地机器,但不适用于 Databricks 5.5 LTS。

library(sparklyr)
library(arrow)

# Set up Spark connection
sc <- sparklyr::spark_connect(method = "databricks")

# Convert iris R data frame to Parquet and save to disk
arrow::write_parquet(iris, "/dbfs/user/iris.parquet")

# Read Parquet file into a Spark DataFrame: throws the error below
iris_sdf <- sparklyr::spark_read_parquet(sc, "iris_sdf", "user/iris.parquet")

Error in record_batch_stream_reader(stream) : Error in record_batch_stream_reader(stream) : could not find function "record_batch_stream_reader"



这里可能有什么问题?
SessionInfo()在我的本地机器上:
R version 3.6.3 (2020-02-29)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Running under: Windows 10 x64 (build 18362)

Matrix products: default

locale:
[1] LC_COLLATE=English_United States.1252 LC_CTYPE=English_United States.1252 LC_MONETARY=English_United States.1252 LC_NUMERIC=C LC_TIME=English_United States.1252

attached base packages:
[1] stats graphics grDevices utils datasets methods base

other attached packages:
[1] arrow_0.16.0.2 sparklyr_1.1.0

loaded via a namespace (and not attached):
[1] Rcpp_1.0.3 rstudioapi_0.11 magrittr_1.5 bit_1.1-15.2 tidyselect_1.0.0 R6_2.4.1 rlang_0.4.5 httr_1.4.1 dplyr_0.8.5 tools_3.6.3 DBI_1.1.0 dbplyr_1.4.2 ellipsis_0.3.0 htmltools_0.4.0
[15] bit64_0.9-7 assertthat_0.2.1 rprojroot_1.3-2 digest_0.6.25 tibble_2.1.3 forge_0.2.0 crayon_1.3.4 purrr_0.3.3 vctrs_0.2.4 base64enc_0.1-3 htmlwidgets_1.5.1 glue_1.3.1 compiler_3.6.3 pillar_1.4.3
[29] generics_0.0.2 r2d3_0.2.3 backports_1.1.5 jsonlite_1.6.1 pkgconfig_2.0.3

最佳答案

问题是Databricks Runtime 5.5 LTS带有 sparklyr 1.0.0 ( released 2019-02-25 ) 但需要 1.1.0 或更高版本。通过 CRAN 或 GitHub 安装更新版本,以及 spark_read_parquet()应该管用。

# CRAN
install.packages("sparklyr")

# GitHub
devtools::install_github("rstudio/sparklyr")

# You also need to install Apache Arrow
install.packages("arrow")
arrow_install()

关于使用 sparklyr 在 Databricks 中读取 Parquet 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60760443/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com