Miki Tebeka
Miki Tebeka
Currently `make artifact-linux-x86_64` will build the atrifact on the host machine. IMO we should build it via docker container (can do with a shared volume or copy from the build...
Currently the build porcesses uses `make` to generate `libcarrow.a` and then `go` to build. This won't work when someones tries to `go get` the package. Find a way to make...
Currently we link with arrow shared library: ``` $ go test -c $ ldd carrow.test | grep arrow libarrow.so.13 => /usr/lib/x86_64-linux-gnu/libarrow.so.13 (0x00007f0acdaee000) ``` We should statically link with `libarrow.a` to...
Support more arrow types (maybe auto generate)
Write some tests for plasma. We'll need to start a plasma store (problematic in docker) and then read/write tables to it.
We'd like to be able to use `carrow` from Python. A proof of concept is: - Create sub directory for Python bindings - Create a Python extension module that uses...
We'd like an option to allocate arrow objects on a shared memory so we'll be able to have fast IPC