Josh Day
Josh Day
Can you share the stacktrace as well?
That seems like a good change to me.
The `filenamecol` is typically the first index column, but in practice I often try loading one file before loading multiple. Since `filenamecol` shifts all the column numbers, it messes up...
In the other issue from @shashi: > I think the default should be value... That makes sense for `Mean` and `Variance`, but makes less sense for things like `Hist` (where...
Try adding the keyword arg `stat = Extrema(Int)`. As soon as I find some time, I need to clean up a bit of the `partitionplot` code.
See `?distribute`. I'll leave this issue open since I couldn't find it in the docs. ```julia help?> distribute search: distribute distribute(t::Table, chunks) Distribute a table in chunks pieces. Equivalent to...
You're right, but you can then `save` it. My understanding is that the following are more-or-less equivalent ```julia loadndsparse(path, chunks=4, output="outdir") ``` --- ```julia nd = loadndsparse(path) dnd = distribute(nd,...
MemPool is maintained and passes tests (https://travis-ci.org/JuliaComputing/MemPool.jl). I've also used JuliaDB out-of-core within the last week. What did you try and what was broken?
Do you have some code I can use to reproduce the issue? I don't completely follow what occurred. It sounds like while using `reduce` and setting `MemPool.max_memsize`, your memory use...
See also: - https://github.com/queryverse/CSVFiles.jl/issues/46 - https://github.com/JuliaComputing/TextParse.jl/pull/127