You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by cloud-fan <gi...@git.apache.org> on 2017/05/02 15:16:23 UTC

[GitHub] spark pull request #16989: [WIP][SPARK-19659] Fetch big blocks to disk when ...

Github user cloud-fan commented on a diff in the pull request:

    https://github.com/apache/spark/pull/16989#discussion_r114343655
  
    --- Diff: common/network-shuffle/src/main/java/org/apache/spark/network/shuffle/OneForOneBlockFetcher.java ---
    @@ -100,7 +114,14 @@ public void onSuccess(ByteBuffer response) {
               // Immediately request all chunks -- we expect that the total size of the request is
               // reasonable due to higher level chunking in [[ShuffleBlockFetcherIterator]].
               for (int i = 0; i < streamHandle.numChunks; i++) {
    -            client.fetchChunk(streamHandle.streamId, i, chunkCallback);
    +            if (fetchToDisk) {
    +              final File targetFile = new File(".",
    --- End diff --
    
    Ideally we should use `DiskBlockManager.getFile` to store data in file system.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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