arrow-julia
arrow-julia copied to clipboard
Official Julia implementation of Apache Arrow
The Arrow dictionary format allows for an `ordered` flag indicating that the order of the elements in the dictionary should be preserved. This corresponds to the `ordered` property of a...
In Julia, there is (generally) a useful/meaningful semantic distinction between `nothing` and `missing`. IIUC, Arrow doesn't really have equivalent values that capture this distinction, but instead has `null` which might...
```julia signal (11): Segmentation fault in expression starting at none:1 unknown function (ip: 0x7f82a3ce5527) jl_symbol_n at /buildworker/worker/package_linux64/build/src/symbol.c:113 _symbol at /home/ubuntu/.julia/packages/ArrowTypes/dkiHE/src/ArrowTypes.jl:208 [inlined] fromarrow at /home/ubuntu/.julia/packages/ArrowTypes/dkiHE/src/ArrowTypes.jl:209 [inlined] getindex at /home/ubuntu/.julia/packages/Arrow/PQ5Mm/src/arraytypes/list.jl:56 [inlined] macro...
Hey JuliaData team, Recently ran into an odd bug where when I had an Arrow Table, I could not write that table to an `arrow` file after I had attached...
It really, really should be its own package (I assume that's the ultimate attention, but even if this is so, now we have an issue to track). And, at the...
@aminnj noticed this first, download the `Run2012...` file from http://opendata.web.cern.ch/record/12341/files/Run2012BC_DoubleMuParked_Muons.root and the setup: ```julia # call this test_partition.jl using UnROOT, Tables, Arrow ; const tf = LazyTree(ROOTFile("Run2012BC_DoubleMuParked_Muons.root"),"Events"); function _lockedget(t::LazyTree, r::UnitRange)...
Hi @quinnj , thank you for just willing to consider this wild attempt! The only pkg you need to re-create is PyArrow and [awkward-1.0](https://github.com/scikit-hep/awkward-1.0) on the python side and PyCall.jl...
I get this access violation when I read the attached Arrow file. I suspect there is an empty record batch in the Arrow file: ``` Please submit a bug report...
From discussing with @willtebbutt on Slack (and e.g. https://discourse.julialang.org/t/how-well-apache-arrow-s-zero-copy-methodology-is-supported/59797) it seems like it would be helpful for users to easily see where the data is / know if it's mmap'd...