- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我将一个 jar 文件作为守护进程启动。它是一个简单的扫描应用程序,运行一个扫描文件夹的线程。我使用 sleep 60000ms,所以如果我在我的 mac 上运行应用程序,cpu 使用率接近 0%。
如果我在我的 32b Ubuntu 服务器上将 jar 作为守护进程运行,它会在空闲时消耗 100% 的 cpu(例如,它扫描的文件夹中没有文件)。
sudo start-stop-daemon --start --quiet -b -m --pidfile /var/run/filecom.pid --exec /usr/bin/java -- -Xms128m -Xmx128m -jar /apps/FileCom/filecom.jar
我做错了什么?
谢谢
编辑
我做了一个 Thread.sleep(60000)。当我不将它作为守护进程运行时,它不会消耗那么多 cpu。我的猜测是它与我的守护进程有关。
public void run()
{
//Create our root folder (folder to scan)
File root = new File(rootFolder);
//Start the loop
while(true)
{
//List all files in the root folder
File[] filesInRoot = root.listFiles();
Arrays.sort( filesInRoot, new Comparator<Object>()
{
public int compare(Object o1, Object o2)
{
if (((File)o1).lastModified() < ((File)o2).lastModified())
{
return -1;
}
else if (((File)o1).lastModified() > ((File)o2).lastModified())
{
return +1;
}
else
{
return 0;
}
}
});
//If there are no files in the target folder then move the first file in the array
if(filesInRoot.length>0)
{
LogUtil.write(">> Finds file in in queue: " + filesInRoot[0].getName());
//Check that the file has been written, EOF
if(checkEOF(filesInRoot[0]))
{
LogUtil.write(">> File is complete, preparing to move");
//Rename the file using time and date - to make it unique
Calendar cal = Calendar.getInstance();
SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd");
Long time = cal.getTimeInMillis();
String fileprefix = sdf.format(cal.getTime())+time.toString();
String processFileName = fileprefix+"_"+filesInRoot[0].getName();
//Move the file and rename it
File processFile = new File(processFolder, processFileName);
boolean success = filesInRoot[0].renameTo(processFile);
if (success)
{
LogUtil.write(">> Success: File was moved to "+processFolder);
LogUtil.write(">> Processing....");
try
{
//Do stuff
}
catch (Exception e) //Handles all errors
{
LogUtil.write(e);
}
finally
{
//Create backup of the infile (outfile is bupped in writeResponseObject)
File bupInFile = new File(bupFolder+"/in", processFileName);
processFile.renameTo(bupInFile);
LogUtil.write(">> inFile backed up: "+bupInFile.getAbsolutePath());
}
}
else
{
LogUtil.write(">> Failure: File could not be moved ");
}
}
else
{
LogUtil.write(">> Failure: file is still beeing written...");
}
try
{
Thread.sleep(FileCom.PROSchedule);
}
catch (InterruptedException ie)
{
ie.printStackTrace();
}
}
}
最佳答案
查看代码,大括号不太匹配,看起来你只是在文件夹中有文件时才在 sleep 。
使用文件夹中的文件尝试您的守护程序代码,看看 CPU 使用率是否仍然达到峰值。
此外,如果您在代码中使用适当的缩进,也会有所帮助。
关于java - jar 作为 ubuntu 上的守护进程使用 100% cpu,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8157805/
一 点睛 线程可以设置为守护线程,ThreadGroup 也可以设置为守护 ThreadGroup,但是若将一个 ThreadGroup 设置为 deamon,也并不会影响线程的 daemon 属性,
我有一个 python 脚本需要在启动时作为守护进程运行。进程从 tty(和 pdb)分离,但代码不运行。 我已经将它缩小到一个最小的例子 import daemon from time import
reactjs isMounted API 的文档提到: You can use this method to guard asynchronous calls to setState() or fo
我正在开发一个需要嵌入 HTTP 服务器的守护进程。我正在尝试使用 BaseHTTPServer 来完成它,当我在前台运行它时,它工作正常,但是当我尝试将守护进程 fork 到后台时,它停止工作。我的
我正在尝试使用 Apache Commons Daemon 使用 Daemon 接口(interface)来守护我的应用程序。 Java 应用程序本身不执行任何操作,只是写入 stout。 我编译了j
我正在使用 Bootle Python Web Framework 在 Ubuntu 上开发网络应用程序。是否有任何有效的方法来守护启动默认 bottlepy 网络服务器的脚本? 谢谢。 UPD:现在
我一直使用 bluepill成功地守护简单的 Ruby 脚本。然而这一次,我有一个脚本,它也在加载 Rails 环境,因此我可以访问 Rails 应用程序及其各自模型的数据库连接。我使用的 bluep
我试图守护一些代码,但我遇到了一些麻烦。 如果我用 tklogger() 调用代码,它运行得很好。但是,如果我在守护程序上下文中调用它,我会得到以下跟踪信息: Traceback (most rece
我打算使用 systemd 将 celery 4.3.0 作为守护进程运行,但它给了我这个错误: 它会启动 worker 但会很快停止它们。但是,我可以通过键入以下命令手动运行工作人员: celery
我是一名优秀的程序员,十分优秀!