Skip to content

Commit

Permalink
Try and document the three options
Browse files Browse the repository at this point in the history
  • Loading branch information
holdenk committed Sep 7, 2015
1 parent 871764c commit 4978681
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -458,9 +458,12 @@ Apart from these, the following properties are also available, and may be useful
<td><code>spark.shuffle.manager</code></td>
<td>sort</td>
<td>
Implementation to use for shuffling data. There are two implementations available:
<code>sort</code> and <code>hash</code>. Sort-based shuffle is more memory-efficient and is
the default option starting in 1.2.
Implementation to use for shuffling data. There are three implementations available:
<code>sort</code>, <code>hash</code> and the new <code>tungsten-sort</code>.
Sort-based shuffle is more memory-efficient and is the default option starting in 1.2.
Tungsten-sort is similar to sort based shuffle, with a direct binary cache-friendly
implementation with a fall back to regular sort based shuffle if its requirements are not
met.
</td>
</tr>
<tr>
Expand Down

0 comments on commit 4978681

Please sign in to comment.