|
|
|
Ask HN: Framework for parallel data mining in Java
|
|
1 points
by albertLuth
2237 days ago
|
|
I want to process between 800GB and 4TB of binary data, divided in different files. The current software in Java is already parallel and can be executed in different nodes. Basically it receives a chunk of data and can merge 2 chunks. The problem is it depends on a quite messy code to run in parallel. Is there any open source framework that could run my code in parallel? It should do the same as the current framework. I have thought about Spark, but I'm not sure if it's the best option. Each entry only need to be accessed once, and the main goal is to extract a bunch of statistics in a grid. |
|