Skip to content

Commit

Permalink
Fix doc typo
Browse files Browse the repository at this point in the history
Straightforward fix on doc typo

Author: Jeff Zhang <[email protected]>

Closes apache#8019 from zjffdu/master and squashes the following commits:

aed6e64 [Jeff Zhang] Fix doc typo
  • Loading branch information
zjffdu authored and rxin committed Aug 7, 2015
1 parent 17284db commit fe12277
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/tuning.md
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ worth optimizing.
## Data Locality

Data locality can have a major impact on the performance of Spark jobs. If data and the code that
operates on it are together than computation tends to be fast. But if code and data are separated,
operates on it are together then computation tends to be fast. But if code and data are separated,
one must move to the other. Typically it is faster to ship serialized code from place to place than
a chunk of data because code size is much smaller than data. Spark builds its scheduling around
this general principle of data locality.
Expand Down

0 comments on commit fe12277

Please sign in to comment.