TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Framework for parallel data mining in Java

1 pointsby albertLuthabout 5 years 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.<p>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.<p>I have thought about Spark, but I&#x27;m not sure if it&#x27;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.

1 comment

cooper6about 5 years ago
I maintain an open-source project that does Data Parallel, <a href="https:&#x2F;&#x2F;sourceforge.net&#x2F;projects&#x2F;tymeacdse" rel="nofollow">https:&#x2F;&#x2F;sourceforge.net&#x2F;projects&#x2F;tymeacdse</a> As well as an open-source project that does Task Parallel if that is better for you, <a href="https:&#x2F;&#x2F;sourceforge.net&#x2F;projects&#x2F;tymeacse" rel="nofollow">https:&#x2F;&#x2F;sourceforge.net&#x2F;projects&#x2F;tymeacse</a>