Last updated on 2025-02-05 17:50:04 CET.
Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
---|---|---|---|---|---|---|
r-devel-linux-x86_64-debian-clang | 0.5.7 | 6.95 | 79.95 | 86.90 | OK | |
r-devel-linux-x86_64-debian-gcc | 0.5.7 | 5.43 | 59.06 | 64.49 | OK | |
r-devel-linux-x86_64-fedora-clang | 0.5.7 | 140.37 | OK | |||
r-devel-linux-x86_64-fedora-gcc | 0.5.7 | 145.00 | OK | |||
r-devel-windows-x86_64 | 0.5.7 | 9.00 | 123.00 | 132.00 | OK | |
r-patched-linux-x86_64 | 0.5.7 | 7.81 | 75.37 | 83.18 | OK | |
r-release-linux-x86_64 | 0.5.7 | 7.41 | 73.78 | 81.19 | OK | |
r-release-macos-arm64 | 0.5.7 | 74.00 | OK | |||
r-release-macos-x86_64 | 0.5.7 | 85.00 | OK | |||
r-release-windows-x86_64 | 0.5.7 | 9.00 | 1282.00 | 1291.00 | ERROR | |
r-oldrel-macos-arm64 | 0.5.7 | 77.00 | OK | |||
r-oldrel-macos-x86_64 | 0.5.7 | 154.00 | OK | |||
r-oldrel-windows-x86_64 | 0.5.7 | 11.00 | 130.00 | 141.00 | OK |
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_02_04_01_50_00_21641\RtmpI9jphE\file25f4467726752.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_02_04_01_50_00_21641\RtmpI9jphE\file25f44c650a0.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_02_04_01_50_00_21641\RtmpI9jphE\file25f44161f496d.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_02_04_01_50_00_21641\RtmpI9jphE\file25f447b503cb2.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))) :
Timeout was reached [www.nomisweb.co.uk]: Operation too slow. Less than 1 bytes/sec transferred the last 600 seconds
Calls: csv_to_parquet ... download_extract -> curl_download -> raise_libcurl_error
Execution halted
Flavor: r-release-windows-x86_64