Hacker News new | ask | show | jobs
by dgudkov 3479 days ago
A common in-memory columnar data layer would make a lot of sense because a) columnar is generally better for analytics, and b) converting from one columnar format to another can theoretically be done without decompression because columnar data is typically compressed using standard algorithms (vocabulary compression, LRE, etc). Here I wrote a few suggestions for such open-source data layer: http://bi-review.blogspot.ca/2015/06/the-world-needs-open-so...
2 comments

Have you seen the Apache Arrow project? https://arrow.apache.org/
Good read!