Last updated on 2025-04-27 00:50:18 CEST.
Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
---|---|---|---|---|---|---|
r-devel-linux-x86_64-debian-clang | 0.5.7 | 8.37 | 81.53 | 89.90 | OK | |
r-devel-linux-x86_64-debian-gcc | 0.5.7 | 5.73 | 55.71 | 61.44 | ERROR | |
r-devel-linux-x86_64-fedora-clang | 0.5.7 | 141.48 | OK | |||
r-devel-linux-x86_64-fedora-gcc | 0.5.7 | 148.73 | OK | |||
r-devel-windows-x86_64 | 0.5.7 | 9.00 | 109.00 | 118.00 | OK | |
r-patched-linux-x86_64 | 0.5.7 | 7.42 | 76.99 | 84.41 | OK | |
r-release-linux-x86_64 | 0.5.7 | 7.50 | 77.28 | 84.78 | OK | |
r-release-macos-arm64 | 0.5.7 | 88.00 | OK | |||
r-release-macos-x86_64 | 0.5.7 | 129.00 | OK | |||
r-release-windows-x86_64 | 0.5.7 | 8.00 | 112.00 | 120.00 | OK | |
r-oldrel-macos-arm64 | 0.5.7 | 74.00 | OK | |||
r-oldrel-macos-x86_64 | 0.5.7 | 85.00 | OK | |||
r-oldrel-windows-x86_64 | 0.5.7 | 12.00 | 125.00 | 137.00 | OK |
Version: 0.5.7
Check: examples
Result: ERROR
Running examples in ‘parquetize-Ex.R’ failed
The error most likely occurred in:
> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### 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/Rtmp7JjEAx/file1bdb32658436c1.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/Rtmp7JjEAx/file1bdb3279601907.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/Rtmp7JjEAx/file1bdb32796b803b.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/Rtmp7JjEAx/file1bdb3255a4b065.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")
+ )
Reading data...
Writing data...
✔ Data are available in parquet file under /tmp/Rtmp7JjEAx/file1bdb32375385b.parquet
Writing data...
Reading data...
>
> # Conversion from a URL and a zipped file (txt) :
>
> csv_to_parquet(
+ path_to_file = "https://sourceforge.net/projects/irisdss/files/latest/download",
+ filename_in_zip = "IRIS TEST data.txt",
+ path_to_parquet = tempfile(fileext=".parquet")
+ )
Error in curl_download(path, tempfile(fileext = file_ext(path))) :
Timeout was reached [altushost-swe.dl.sourceforge.net]: Connection timed out after 10000 milliseconds
Calls: csv_to_parquet ... download_extract -> curl_download -> raise_libcurl_error
Execution halted
Flavor: r-devel-linux-x86_64-debian-gcc