Rohith Varanasi

Results 9 comments of Rohith Varanasi

This is also prevents exrm or distillery from building a binary of your elixir app.

@narrowtux Any updates on this? Is this library still maintained?

I tested two different operations, with one succeeding and one resulting in the same NIF panic: First test was the example used in #1011 ```elixir Mix.install([{:explorer, "~> 0.10.0"}]) name_dtype =...

@billylanchantin No problem! My use case is that I'm currently trying to read a parquet file straight from s3 that has 4 columns ``` %{ "id" => :string, "point" =>...

@billylanchantin github won't let me upload parquet files here, cool if I DM you on the Elixir slack?

Just sent it via Slack. Let me know if you prefer something else and I can upload to google drive!

@philss sure! here you go ``` ldd -v _build/prod/rel/oracle/lib/explorer-0.10.1/priv/native/libexplorer-v0.10.1-nif-2.15-x86_64-unknown-linux-gnu.so ``` ``` linux-vdso.so.1 (0x00007ffd65942000) libgcc_s.so.1 => /lib/x86_64-linux-gnu/libgcc_s.so.1 (0x00007baebffe2000) libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0 (0x00007baebffdd000) libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007baebfefe000) libdl.so.2 => /lib/x86_64-linux-gnu/libdl.so.2 (0x00007baebfef9000) libc.so.6...

@philss for sure, here you go: ```bash # syntax = docker/dockerfile:1.2 # Use the official Elixir image as the base image FROM elixir:1.18.1 AS builder # Set the working directory...