InterviewSolution
Saved Bookmarks
| 1. |
Which of the following parameter is the threshold for the accounting and serialization buffers?(a) io.sort.spill.percent(b) io.sort.record.percent(c) io.sort.mb(d) None of the mentionedThe question was posed to me by my college director while I was bunking the class.My query is from MapReduce Features in division Developing a MapReduce Application of Hadoop |
|
Answer» RIGHT answer is (a) io.sort.spill.percent For explanation I would say: When the percentage of EITHER BUFFER has FILLED, their contents will be spilled to DISK in the background. |
|