CRAN Package Check Results for Package parquetize

Last updated on 2025-10-28 01:50:41 CET.

Flavor Version Tinstall Tcheck Ttotal Status Flags
r-devel-linux-x86_64-debian-clang 0.5.7 7.64 84.18 91.82 OK
r-devel-linux-x86_64-debian-gcc 0.5.7 5.72 61.79 67.51 OK
r-devel-linux-x86_64-fedora-clang 0.5.7 18.00 109.50 127.50 ERROR
r-devel-linux-x86_64-fedora-gcc 0.5.7 14.00 127.13 141.13 OK
r-devel-windows-x86_64 0.5.7 9.00 112.00 121.00 OK
r-patched-linux-x86_64 0.5.7 7.28 79.18 86.46 OK
r-release-linux-x86_64 0.5.7 7.79 78.73 86.52 OK
r-release-macos-arm64 0.5.7 5.00 83.00 88.00 OK
r-release-macos-x86_64 0.5.7 7.00 122.00 129.00 OK
r-release-windows-x86_64 0.5.7 9.00 103.00 112.00 ERROR
r-oldrel-macos-arm64 0.5.7 4.00 70.00 74.00 OK
r-oldrel-macos-x86_64 0.5.7 5.00 80.00 85.00 OK
r-oldrel-windows-x86_64 0.5.7 11.00 143.00 154.00 OK

Check Details

Version: 0.5.7
Check: examples
Result: ERROR Running examples in ‘parquetize-Ex.R’ failed The error most likely occurred in: > ### Name: csv_to_parquet > ### Title: Convert a csv or a txt file to parquet format > ### Aliases: csv_to_parquet > > ### ** Examples > > > # Conversion from a local csv file to a single parquet file : > > csv_to_parquet( + path_to_file = parquetize_example("region_2022.csv"), + path_to_parquet = tempfile(fileext=".parquet") + ) Reading data... Writing data... ✔ Data are available in parquet file under /tmp/RtmpXCtg2Y/working_dir/RtmpsPRFAa/file336c5a6467bd5c.parquet Writing data... Reading data... > > # Conversion from a local txt file to a single parquet file : > > csv_to_parquet( + path_to_file = parquetize_example("region_2022.txt"), + path_to_parquet = tempfile(fileext=".parquet") + ) Reading data... Writing data... ✔ Data are available in parquet file under /tmp/RtmpXCtg2Y/working_dir/RtmpsPRFAa/file336c5a22eede52.parquet Writing data... Reading data... > > # Conversion from a local csv file to a single parquet file and select only > # few columns : > > csv_to_parquet( + path_to_file = parquetize_example("region_2022.csv"), + path_to_parquet = tempfile(fileext = ".parquet"), + columns = c("REG","LIBELLE") + ) Reading data... Writing data... ✔ Data are available in parquet file under /tmp/RtmpXCtg2Y/working_dir/RtmpsPRFAa/file336c5a12e838e6.parquet Writing data... Reading data... > > # Conversion from a local csv file to a partitioned parquet file : > > csv_to_parquet( + path_to_file = parquetize_example("region_2022.csv"), + path_to_parquet = tempfile(fileext = ".parquet"), + partition = "yes", + partitioning = c("REG") + ) Reading data... Writing data... ✔ Data are available in parquet dataset under /tmp/RtmpXCtg2Y/working_dir/RtmpsPRFAa/file336c5a59694e17.parquet Writing data... Reading data... > > # Conversion from a URL and a zipped file (csv) : > > csv_to_parquet( + path_to_file = "https://www.nomisweb.co.uk/output/census/2021/census2021-ts007.zip", + filename_in_zip = "census2021-ts007-ctry.csv", + path_to_parquet = tempfile(fileext = ".parquet") + ) Error in curl_download(path, tempfile(fileext = file_ext(path))) : Failure when receiving data from the peer [www.nomisweb.co.uk]: Recv failure: Connection reset by peer Calls: csv_to_parquet ... download_extract -> curl_download -> raise_libcurl_error Execution halted Flavor: r-devel-linux-x86_64-fedora-clang

Version: 0.5.7
Check: examples
Result: ERROR Running examples in 'parquetize-Ex.R' failed The error most likely occurred in: > ### Name: csv_to_parquet > ### Title: Convert a csv or a txt file to parquet format > ### Aliases: csv_to_parquet > > ### ** Examples > > > # Conversion from a local csv file to a single parquet file : > > csv_to_parquet( + path_to_file = parquetize_example("region_2022.csv"), + path_to_parquet = tempfile(fileext=".parquet") + ) Reading data... Writing data... ✔ Data are available in parquet file under D:\temp\2025_10_26_01_50_00_14777\RtmpO8IJKN\file2f802fa1200a.parquet Writing data... Reading data... > > # Conversion from a local txt file to a single parquet file : > > csv_to_parquet( + path_to_file = parquetize_example("region_2022.txt"), + path_to_parquet = tempfile(fileext=".parquet") + ) Reading data... Writing data... ✔ Data are available in parquet file under D:\temp\2025_10_26_01_50_00_14777\RtmpO8IJKN\file2f8042746937.parquet Writing data... Reading data... > > # Conversion from a local csv file to a single parquet file and select only > # few columns : > > csv_to_parquet( + path_to_file = parquetize_example("region_2022.csv"), + path_to_parquet = tempfile(fileext = ".parquet"), + columns = c("REG","LIBELLE") + ) Reading data... Writing data... ✔ Data are available in parquet file under D:\temp\2025_10_26_01_50_00_14777\RtmpO8IJKN\file2f80501f3a42.parquet Writing data... Reading data... > > # Conversion from a local csv file to a partitioned parquet file : > > csv_to_parquet( + path_to_file = parquetize_example("region_2022.csv"), + path_to_parquet = tempfile(fileext = ".parquet"), + partition = "yes", + partitioning = c("REG") + ) Reading data... Writing data... ✔ Data are available in parquet dataset under D:\temp\2025_10_26_01_50_00_14777\RtmpO8IJKN\file2f804df55077.parquet Writing data... Reading data... > > # Conversion from a URL and a zipped file (csv) : > > csv_to_parquet( + path_to_file = "https://www.nomisweb.co.uk/output/census/2021/census2021-ts007.zip", + filename_in_zip = "census2021-ts007-ctry.csv", + path_to_parquet = tempfile(fileext = ".parquet") + ) Error in curl_download(path, tempfile(fileext = file_ext(path))) : Failure when receiving data from the peer [www.nomisweb.co.uk]: Recv failure: Connection was reset Calls: csv_to_parquet ... download_extract -> curl_download -> raise_libcurl_error Execution halted Flavor: r-release-windows-x86_64