duckplyr icon indicating copy to clipboard operation
duckplyr copied to clipboard

OOM errors with downstream packages

Open krlmlr opened this issue 1 month ago • 0 comments

Use the following Dockerfile to investigate again:

FROM ghcr.io/cynkra/rig-ubuntu-duckdb:main

RUN R -q -e 'pak::pak("krlmlr/dplyr@f-revdep-duckplyr", upgrade = TRUE)'

RUN R -q -e 'pak::pak(c("msigdbr", "mtdesign", "partition", "rfars"), dependencies = TRUE)'

RUN R -q -e 'pak::pak(c("BH", "unix"))'

RUN apt install -y valgrind

RUN cd /root && curl -OL https://github.com/duckdb/duckdb/releases/download/v0.10.2/duckdb_cli-linux-amd64.zip

RUN cd /bin && unzip ~/duckdb_cli-linux-amd64.zip

krlmlr avatar May 07 '24 18:05 krlmlr