繁体   English   中英

使用linux-redhat的Java上的内存不足异常

[英]Out of memory exception on java with linux-redhat

我在linux / redhat上遇到内存不足的问题,并且同一程序在我的Windows机器上也可以运行。

我的linux机器配置是15Gb RAM。

import java.awt.image.BufferedImage;
import java.io.File;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.URL;
import java.sql.ResultSet;
import javax.imageio.ImageIO;
import javax.swing.ImageIcon;

/**
 *
 * @author ndoshi
 */
public class Dwnld {

    BufferedImage bi8 = null, bi16 = null;
    ImageIcon ii = null;
    ResultSet rs, rsDwnld;
    String OG = "ogImage\\";
    String CROP8 = "Crop8\\";
    String CROP16 = "Crop16\\";
    String TIME = "", ErrorLog = "", ErrorLogPro = "";
    int hashInc8 = 0;
    int hashInc16 = 0;
    int totalround = 0;
    int countProcess = 0;
    boolean download_new = false;
    private int row = 0;
    int Dwnld = 0, NotDwnld = 0;
    final String OP_Log = "Log", OP_Error = "ErrorLog", OP_ErrorPro = "ErrorLogProcess";

    int r, g, b, k, ih, j;
    int sr = 0, sg = 0, sb = 0, sk = 0;
    int rg, gg, bg, kg;
    String s = "", s1 = "", hash16, hash8;

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        new Dwnld();
    }

    public Dwnld(){
    try {
            BufferedImage image = null;
            InputStream is = null;
            OutputStream os = null;
            URL url = new URL("https://rukminim1.flixcart.com/image/312/312/t-shirt/u/g/k/33solidblackmelangeblack-sayitloud-m-original-imaehfytzzzazfyf.jpeg?q=70");
            is = url.openStream();
            os = new FileOutputStream(OG + "1.jpg");
            byte[] b = new byte[2048];
            int length;
            while ((length = is.read(b)) != -1) {
                os.write(b, 0, length);
            }
            image = ImageIO.read(new File(OG + "1.jpg"));
            is.close();
            os.close();
            System.out.println("Hash 16 = "+hash16);
            System.out.println("Hash 8 = "+hash8);
        } catch (Exception ex) {
            System.out.println(ex.getMessage());
        }

    }

}

我正在通过使用XMS和XMX增加内存来运行sam e

java -Xms2048m -Xmx6096m Dwnld 

错误越来越:

Exception in thread "main" java.lang.OutOfMemoryError: unable to create new native thread
        at java.lang.Thread.start0(Native Method)
        at java.lang.Thread.start(Thread.java:714)
        at sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:1056)
        at sun.security.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1332)
        at sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1359)
        at sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1343)
        at sun.net.www.protocol.https.HttpsClient.afterConnect(HttpsClient.java:563)
        at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:185)
        at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1301)
        at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:254)
        at java.net.URL.openStream(URL.java:1037)
        at Dwnld.<init>(Dwnld.java:53)
        at Dwnld.main(Dwnld.java:43)

首先获取线程转储并尝试对其进行分析。

另外,还有许多其他方法可以作为解决方法:

  1. /proc/sys/kernel/threads-max文件提供了系统范围内的线程数限制。 如果根用户希望执行以下操作,则可以更改该值:

    $ echo 100000> / proc / sys / kernel / threads-max

  2. 如果是linux,线程只是具有共享地址空间的进程,因此您应该检查每个用户的进程数。

  3. 检查线程PID限制,因为基于kernel.pid_max limit参数的值存在最大PID限制。 使用此command $ sysctl -a | grep kernel.pid_max command $ sysctl -a | grep kernel.pid_max获取最大允许的PID。
  4. 如果您无法修改操作系统设置,则会减小堆栈大小。 与类似JAVA_OPTS="-Xss256k"

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM