Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement Fork/Join pattern #3227

Open
6 tasks
iluwatar opened this issue Mar 30, 2025 · 0 comments
Open
6 tasks

Implement Fork/Join pattern #3227

iluwatar opened this issue Mar 30, 2025 · 0 comments

Comments

@iluwatar
Copy link
Owner

Description

The Fork/Join pattern is a concurrency design approach that splits (“forks”) a large task into multiple smaller subtasks, processes these subtasks in parallel, and then recombines (“joins”) their results. In Java, this pattern is embodied by the ForkJoinPool and RecursiveTask / RecursiveAction classes within the java.util.concurrent package. It’s particularly useful for CPU-intensive, divide-and-conquer problems where parallel processing can significantly reduce completion time.

Key Elements

  • Divide-and-Conquer: Recursively split tasks into smaller chunks until reaching a manageable size.
  • Parallel Processing: Distribute subtasks across a pool of worker threads (usually a ForkJoinPool).
  • Work Stealing: Idle threads “steal” tasks from busy threads’ queues to optimize utilization.
  • RecursiveTask / RecursiveAction: Abstract classes for defining the task logic and splitting strategy (RecursiveTask returns a result, RecursiveAction does not).

References

  1. Java Documentation for ForkJoinPool
  2. Java Concurrency in Practice – Brian Goetz
  3. Java Design Patterns – Contribution Guidelines

Acceptance Criteria

  • Create a new module or package named fork-join (or similar).
  • Demonstrate splitting a computationally intensive task into subtasks using RecursiveTask or RecursiveAction.
  • Show how the results are joined together for a final outcome.
  • Provide a README (or .md file) explaining the pattern with diagrams or code snippets.
  • Include tests verifying parallel execution and correctness of results.
  • Ensure all code meets the repository style, naming conventions, and passes CI checks.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Development

No branches or pull requests

1 participant