Github user original-brownbear commented on a diff in the pull request:

    https://github.com/apache/spark/pull/19254#discussion_r139307959
  
    --- Diff: 
core/src/main/java/org/apache/spark/unsafe/map/BytesToBytesMap.java ---
    @@ -403,6 +391,16 @@ public long spill(long numBytes) throws IOException {
         public void remove() {
           throw new UnsupportedOperationException();
         }
    +
    +    private void handleFailedDelete() {
    +      // remove the spill file from disk
    +      File file = spillWriters.removeFirst().getFile();
    +      if (file != null && file.exists()) {
    +        if (!file.delete()) {
    --- End diff --
    
    fixed


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to