Skip to content

Commit

Permalink
Use hash join when writing sparkey (#5402)
Browse files Browse the repository at this point in the history
  • Loading branch information
aslotnick authored Jul 8, 2024
1 parent 9282396 commit c915a53
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ object SparkeyIO {

// write files to temporary locations
val tempShardUris = shards
.rightOuterJoin(allShards)
.hashFullOuterJoin(allShards)
.map { case (shard, (xs, _)) =>
// use a temp uri so that if a bundle fails retries will not fail
val tempUri = SparkeyUri(s"$tempPath/${UUID.randomUUID}")
Expand Down

0 comments on commit c915a53

Please sign in to comment.