Skip to content

Commit

Permalink
cleanup comments
Browse files Browse the repository at this point in the history
  • Loading branch information
eschultink committed Sep 19, 2024
1 parent 9a4df79 commit a514c6a
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,9 @@ enum Stage {
*/
Key getMapReduceJobKey();

/**
* @return identifier for *this* sharded job
*/
default ShardedJobId getShardedJobId() {
return ShardedJobId.of(getMapReduceJobKey().getProjectId(), getMapReduceJobKey().getNamespace(), getStageId());
}
Expand Down Expand Up @@ -274,7 +277,7 @@ public String toString() {
}

/**
* Takes in the the result of the map stage. (FilesByShard indexed by sortShard) These files are
* Takes in the result of the map stage. (FilesByShard indexed by sortShard) These files are
* then read, and written out in sorted order. The result is a set of files for each reducer.
* The format for how the data is written out is defined by {@link GoogleCloudStorageSortOutput}
*/
Expand Down

0 comments on commit a514c6a

Please sign in to comment.