0
5.1kviews
Write a Map-Reduce Algorithm for Binary search tree. Explain the flow of execution.
1 Answer
2
285views

Overall approach (FLOW):

  1. Scale-divide key, value data into shards.

  2. Build Patricia tree per shard and store all key, values for latter.

  3. Prepare trees to have place hold (short) value for each key.

  4. Flatten each Patricia tree to a disk friendly and byte alighted format fit for random access.

  5. Recalculated file …

Create a free account to keep reading this post.

and 2 others joined a min ago.

Please log in to add an answer.