coderzc commented on code in PR #181: URL: https://github.com/apache/incubator-hugegraph-computer/pull/181#discussion_r868946306
########## computer-core/src/main/java/com/baidu/hugegraph/computer/core/receiver/MessageRecvPartition.java: ########## @@ -75,10 +77,15 @@ public MessageRecvPartition(Config config, long waitSortTimeout = config.get( ComputerOptions.WORKER_WAIT_SORT_TIMEOUT); this.mergeFileNum = config.get(ComputerOptions.HGKV_MERGE_FILES_NUM); - this.recvBuffers = new MessageRecvBuffers(buffersLimit, - waitSortTimeout); - this.sortBuffers = new MessageRecvBuffers(buffersLimit, - waitSortTimeout); + this.useFileBuffer = config.get( + ComputerOptions.TRANSPORT_RECV_FILE_MODE); + if (!this.useFileBuffer) { + this.recvBuffers = new MessageRecvBuffers(buffersLimit, + waitSortTimeout); + this.sortBuffers = new MessageRecvBuffers(buffersLimit, + waitSortTimeout); + } Review Comment: I checked there is no other reference when `useFileRegion == true` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@hugegraph.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org