Skip to content
Snippets Groups Projects
Commit bf107f1e authored by sandy's avatar sandy Committed by Sean Owen
Browse files

[SPARK-16438] Add Asynchronous Actions documentation

## What changes were proposed in this pull request?

Add Asynchronous Actions documentation inside action of programming guide

## How was this patch tested?

check the documentation indentation and formatting with md preview.

Author: sandy <phalodi@gmail.com>

Closes #14104 from phalodi/SPARK-16438.
parent 83879ebc
No related branches found
No related tags found
No related merge requests found
......@@ -1101,6 +1101,9 @@ for details.
</tr>
</table>
The Spark RDD API also exposes asynchronous versions of some actions, like `foreachAsync` for `foreach`, which immediately return a `FutureAction` to the caller instead of blocking on completion of the action. This can be used to manage or wait for the asynchronous execution of the action.
### Shuffle operations
Certain operations within Spark trigger an event known as the shuffle. The shuffle is Spark's
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment