0
5.1kviews
Write a Map-Reduce Algorithm for Binary search tree. Explain the flow of execution.
1 Answer
| written 6.6 years ago by |
Overall approach (FLOW):
Scale-divide key, value data into shards.
Build Patricia tree per shard and store all key, values for latter.
Prepare trees to have place hold (short) value for each key.
Flatten each Patricia tree to a disk friendly and byte alighted format fit for random access.
Recalculated file …