Ask HN: Interest in a new open source, fast, in-memory, data analysis system?
The system will accept data over HTTP (as JSON / CSV) and can be queried in either SQL, or an SQL like language, with full support for joins, sub-queries and aggregations, with output as CSV or JSON over HTTP.
The idea being that you can fire of a JSON request to your analytics database whenever something happens (be it a signup, purchase, click, etc) and have that data captured, ready for use in your dashboards or for ad-hoc querying. The system will also be able to integrate with R for statistical fanciness.
If such a system existed, would you use it?
I will probably continue working on it regardless of any feedback (because its fun!), but I'll spend more time on it if its something people feel they might use.
If you would like to develop it too (using a combination of C for data manipulation and go-lang for everythign else), send me an email.
3 comments
[ 1463 ms ] story [ 1488 ms ] threadI've been having success with Go for backend work, and easy C integration in this kind of database like this would be useful for what I do. I'm not sure if R integration should be a priority though, since most R users I know are ambivalent about it (whatever, small sample size), and because Julia development continues to improve.
The R integration stuff is more for the data science crowd. I feel it would be useful to have a streamlined way of writing a query to return a subset of a large database and then be able to manipulate it in R as if it were a data frame / matrix. I am interested in seeing how Julia plays out too.