使用 Java JSch "exec" vs "shell" 到 运行 多个命令时性能受到影响?
Performance takes a hit while using Java JSch "exec" vs "shell" to run multiple commands?
我测试了使用 Java JSch 库使用“exec”和“shell”通道发送多个命令的性能差异。我发现“exec”花费的时间是原来的两倍。例如,我使用命令 ls /etc/***
,并将其发送 10、100、500 和 1000 次。它们的行为都相似,有时相差达 15 秒。
我知道我可以以cm1;cm2;cm3
等形式发送多个命令,但这不是我想要的测试。
有没有人有使用 shell 和 exec 的类似经历?
我正在发布这两种测试的一些代码(部分代码来自其他人编写的同一站点)。
使用shell:
对于 shell 频道,我发送 ls /etc/; echo "END_OF_COMMAND"
...
...
...
session = getSession (username, password, host);
ByteArrayOutputStream outputStream = new ByteArrayOutputStream ();
ChannelShell channel = (ChannelShell) session.openChannel ("shell");
channel.setOutputStream (outputStream);
PrintStream stream = new PrintStream (channel.getOutputStream ());
channel.connect ();
for (int i = 0; i < trials; i++) {
System.out.println("Trial #" + i);
stream.println (cmd);
stream.flush ();
String output = getCmdOutput (outputStream);
}
channel.disconnect ();
session.disconnect ();
...
...
...
public static String getCmdOutput (ByteArrayOutputStream outputStream) throws InterruptedException {
while (outputStream.toString ().indexOf ("\nEND_OF_COMMAND") <= 0) {}
String output = outputStream.toString ();
outputStream.reset ();
return output;
}
使用执行:
...
...
...
for (int i = 0; i < trials; ++i) {
System.out.println("Trial #" + i);
execCmd(session, cmd);
}
...
...
...
public static void execCmd (Session session, String cmd) {
ChannelExec channel = null;
try {
channel = (ChannelExec) session.openChannel ("exec");
InputStream in = channel.getInputStream();
channel.setCommand (cmd);
channel.setPty(true);
channel.connect ();
String output = readOuput(in);
}
catch (Exception e) {
e.printStackTrace ();
}
finally {
if (channel != null && channel.isConnected ()) {
System.out.println("Channel Exit Code: " + channel.getExitStatus());
channel.disconnect ();
}
}
}
public static String readOuput (InputStream in) throws IOException {
StringBuilder sb = new StringBuilder ();
try (BufferedReader br = new BufferedReader(new InputStreamReader(new BufferedInputStream(in)))) {
String line;
while ((line = br.readLine ()) != null) {
sb.append (line + System.lineSeparator ());
}
}
return sb.toString ();
}
是的,很有可能。 “exec”通道在隔离环境(通常是新的 shell 实例)中运行命令。
在服务器上设置环境可能需要 一些时间。
所以它很可能与您的 Java 代码无关。
我测试了使用 Java JSch 库使用“exec”和“shell”通道发送多个命令的性能差异。我发现“exec”花费的时间是原来的两倍。例如,我使用命令 ls /etc/***
,并将其发送 10、100、500 和 1000 次。它们的行为都相似,有时相差达 15 秒。
我知道我可以以cm1;cm2;cm3
等形式发送多个命令,但这不是我想要的测试。
有没有人有使用 shell 和 exec 的类似经历?
我正在发布这两种测试的一些代码(部分代码来自其他人编写的同一站点)。
使用shell:
对于 shell 频道,我发送 ls /etc/; echo "END_OF_COMMAND"
...
...
...
session = getSession (username, password, host);
ByteArrayOutputStream outputStream = new ByteArrayOutputStream ();
ChannelShell channel = (ChannelShell) session.openChannel ("shell");
channel.setOutputStream (outputStream);
PrintStream stream = new PrintStream (channel.getOutputStream ());
channel.connect ();
for (int i = 0; i < trials; i++) {
System.out.println("Trial #" + i);
stream.println (cmd);
stream.flush ();
String output = getCmdOutput (outputStream);
}
channel.disconnect ();
session.disconnect ();
...
...
...
public static String getCmdOutput (ByteArrayOutputStream outputStream) throws InterruptedException {
while (outputStream.toString ().indexOf ("\nEND_OF_COMMAND") <= 0) {}
String output = outputStream.toString ();
outputStream.reset ();
return output;
}
使用执行:
...
...
...
for (int i = 0; i < trials; ++i) {
System.out.println("Trial #" + i);
execCmd(session, cmd);
}
...
...
...
public static void execCmd (Session session, String cmd) {
ChannelExec channel = null;
try {
channel = (ChannelExec) session.openChannel ("exec");
InputStream in = channel.getInputStream();
channel.setCommand (cmd);
channel.setPty(true);
channel.connect ();
String output = readOuput(in);
}
catch (Exception e) {
e.printStackTrace ();
}
finally {
if (channel != null && channel.isConnected ()) {
System.out.println("Channel Exit Code: " + channel.getExitStatus());
channel.disconnect ();
}
}
}
public static String readOuput (InputStream in) throws IOException {
StringBuilder sb = new StringBuilder ();
try (BufferedReader br = new BufferedReader(new InputStreamReader(new BufferedInputStream(in)))) {
String line;
while ((line = br.readLine ()) != null) {
sb.append (line + System.lineSeparator ());
}
}
return sb.toString ();
}
是的,很有可能。 “exec”通道在隔离环境(通常是新的 shell 实例)中运行命令。
在服务器上设置环境可能需要 一些时间。
所以它很可能与您的 Java 代码无关。