Created
January 14, 2010 22:13
-
-
Save spullara/277566 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
strikeweek-dm:src samp$ findstr TcpNoDelay "*.java" | |
./core/org/apache/hadoop/ipc/Client.java:74: private boolean tcpNoDelay; // if T then disable Nagle's Algorithm | |
./core/org/apache/hadoop/ipc/Client.java:302: this.socket.setTcpNoDelay(tcpNoDelay); | |
./core/org/apache/hadoop/ipc/Client.java:632: this.tcpNoDelay = conf.getBoolean("ipc.client.tcpnodelay", false); | |
./core/org/apache/hadoop/ipc/Server.java:161: private final boolean tcpNoDelay; // if T then disable Nagle's Algorithm | |
./core/org/apache/hadoop/ipc/Server.java:395: channel.socket().setTcpNoDelay(tcpNoDelay); | |
./core/org/apache/hadoop/ipc/Server.java:1030: this.tcpNoDelay = conf.getBoolean("ipc.server.tcpnodelay", false); | |
./hdfs/org/apache/hadoop/hdfs/server/datanode/DataXceiver.java:222: " tcp no delay " + s.getTcpNoDelay()); | |
./hdfs/org/apache/hadoop/hdfs/server/datanode/DataXceiverServer.java:131: s.setTcpNoDelay(true); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment