简体   繁体   English

如何在线程“ http-bio-8080-exec-5”中删除异常java.lang.OutOfMemoryError:超出了GC开销限制?

[英]How to remove the Exception in thread “http-bio-8080-exec-5” java.lang.OutOfMemoryError: GC overhead limit exceeded?

In my application I am reading 30mb size xlsx file data that contains 500 000 rows and inserting into database. 在我的应用程序中,我正在读取30mb大小的包含50万行的xlsx文件数据,并将其插入数据库中。

When I run the application after some time I get the below exception. 一段时间后运行该应用程序时,出现以下异常。 I searched for solution, but I am not able to understand how to do it. 我在寻找解决方案,但是我不明白该怎么做。

Exception in thread "http-bio-8080-exec-5" java.lang.OutOfMemoryError: GC overhead limit exceeded
at org.apache.xmlbeans.impl.store.Cur$CurLoadContext.attr(Cur.java:3044)
at org.apache.xmlbeans.impl.store.Cur$CurLoadContext.attr(Cur.java:3065)
at org.apache.xmlbeans.impl.store.Locale$SaxHandler.startElement(Locale.java:3263)
at org.apache.xmlbeans.impl.piccolo.xml.Piccolo.reportStartTag(Piccolo.java:1082)
at org.apache.xmlbeans.impl.piccolo.xml.PiccoloLexer.parseAttributesNS(PiccoloLexer.java:1802)
at org.apache.xmlbeans.impl.piccolo.xml.PiccoloLexer.parseOpenTagNS(PiccoloLexer.java:1521)
at org.apache.xmlbeans.impl.piccolo.xml.PiccoloLexer.parseTagNS(PiccoloLexer.java:1362)
at org.apache.xmlbeans.impl.piccolo.xml.PiccoloLexer.parseXMLNS(PiccoloLexer.java:1293)
at org.apache.xmlbeans.impl.piccolo.xml.PiccoloLexer.parseXML(PiccoloLexer.java:1261)
at org.apache.xmlbeans.impl.piccolo.xml.PiccoloLexer.yylex(PiccoloLexer.java:4812)
at org.apache.xmlbeans.impl.piccolo.xml.Piccolo.yylex(Piccolo.java:1290)
at org.apache.xmlbeans.impl.piccolo.xml.Piccolo.yyparse(Piccolo.java:1400)
at org.apache.xmlbeans.impl.piccolo.xml.Piccolo.parse(Piccolo.java:714)
at org.apache.xmlbeans.impl.store.Locale$SaxLoader.load(Locale.java:3479)
at org.apache.xmlbeans.impl.store.Locale.parseToXmlObject(Locale.java:1277)
at org.apache.xmlbeans.impl.store.Locale.parseToXmlObject(Locale.java:1264)
at org.apache.xmlbeans.impl.schema.SchemaTypeLoaderBase.parse(SchemaTypeLoaderBase.java:345)
at org.apache.poi.POIXMLTypeLoader.parse(POIXMLTypeLoader.java:92)
at org.openxmlformats.schemas.spreadsheetml.x2006.main.WorksheetDocument$Factory.parse(Unknown Source)
at org.apache.poi.xssf.usermodel.XSSFSheet.read(XSSFSheet.java:173)
at org.apache.poi.xssf.usermodel.XSSFSheet.onDocumentRead(XSSFSheet.java:165)
at org.apache.poi.xssf.usermodel.XSSFWorkbook.parseSheet(XSSFWorkbook.java:417)
at org.apache.poi.xssf.usermodel.XSSFWorkbook.onDocumentRead(XSSFWorkbook.java:382)
at org.apache.poi.POIXMLDocument.load(POIXMLDocument.java:178)
at org.apache.poi.xssf.usermodel.XSSFWorkbook.<init>(XSSFWorkbook.java:279)
at com.dip.SendXlsxToDb.doPost(SendXlsxToDb.java:44)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:650)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:731)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:303)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:747)
at org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationDispatcher.java:603)

My code: 我的代码:

import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.Statement;
import java.util.Iterator;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import javax.swing.text.ZoneView;

import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.xssf.usermodel.XSSFSheet;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;

public class SendXlsxToDb extends HttpServlet{

@Override
public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    try
    {
        RetriveData rdata= new RetriveData();
        //System.out.println("ZoneId is :"+rdata.zoneId);
        //System.out.println("Location is :"+rdata.location);
        HttpSession hs = request.getSession(false);
        System.out.println("=======================SendXlsxToDb========================");
        //creating db connection
        Class.forName("com.mysql.jdbc.Driver");
        Connection con1 = DriverManager.getConnection("jdbc:mysql://localhost:3306/xlsx","root","Inf123#");
        PreparedStatement ps = con1.prepareStatement("INSERT INTO userdetails(ZONEID, LOCATION, ID, NAME, AGE, GENDER, ADDRESS) VALUES(?, ?, ?, ?, ?, ?, ?)");


        FileInputStream file = new FileInputStream(new File("C:/Users/Desktop/New folder/"+hs.getAttribute("filename1")));

        //Create Workbook instance holding reference to .xlsx file
        XSSFWorkbook workbook = new XSSFWorkbook(file);

        //Get first/desired sheet from the workbook
        XSSFSheet sheet = workbook.getSheetAt(0);

        //Iterate through each rows one by one
        Iterator<Row> rowIterator = sheet.iterator();
        while (rowIterator.hasNext()) 
        {
            int i = 3;
            Row row = rowIterator.next();
            //For each row, iterate through all the columns
            Iterator<Cell> cellIterator = row.cellIterator();
            ps.setString(1, (String)hs.getAttribute("zoneId1"));
            ps.setString(2, (String)hs.getAttribute("location1"));
            while (cellIterator.hasNext()) 
            {
                Cell cell = cellIterator.next();
                ps.setString(i, cell.toString());
                i++;

                //Check the cell type and format accordingly
               /* switch (cell.getCellType()) 
                {
                    case Cell.CELL_TYPE_NUMERIC:
                        System.out.print(cell.getNumericCellValue() + "\t");

                        break;
                    case Cell.CELL_TYPE_STRING:
                        System.out.print(cell.getStringCellValue() + "\t");
                        break;
                }*/
            }
            ps.executeUpdate();
            //System.out.println("");
        }
        file.close();
        ps.close();
        con1.close();
        System.out.println("THE EXECUTION OF THE PROGRAM IS COMPLETED");
        request.setAttribute("message","The XLSX File Data Transferred Successfully");
    } 
    catch (Exception e) 
    {
        e.printStackTrace();
    }

}


}

How to remove this error? 如何清除此错误? I am using java 1.7 and windows system 我正在使用Java 1.7和Windows系统

This exception tells you that the VM spends more than 98% of its time garbage collecting. 此异常告诉您VM花费了其98%以上的时间进行垃圾回收。 You can try to user other collectors (eg, -XX:+UseG1GC is very well suited for big heaps) but it is far more likely you have a memory leak somewhere. 您可以尝试使用其他收集器(例如,-XX:+ UseG1GC非常适合大堆),但是您在某处发生内存泄漏的可能性更大。 Examine your code closely, maybe with a tool like VisualVM or AntTracks to find out what is in your heap. 仔细检查您的代码,也许使用VisualVM或AntTracks之类的工具来查找您堆中的内容。

EDIT: in case you really need that much heap, try increasing the heap size with -Xmx4G or even more ... 编辑:万一您确实需要那么多堆,请尝试使用-Xmx4G甚至更多来增加堆大小...

Try to use a File instead of a FileInputStream when constructing your workbook: 构造工作簿时,尝试使用File而不是FileInputStream:

https://poi.apache.org/spreadsheet/quick-guide.html#FileInputStream https://poi.apache.org/spreadsheet/quick-guide.html#FileInputStream

This should consume less memory. 这应该消耗更少的内存。

Also try to use SXSSFWorkbook instead of XSSFWorkbook to have a small memory footprint. 另外,请尝试使用SXSSFWorkbook而不是XSSFWorkbook来占用较小的内存。 Please see this link: 请查看此链接:

http://poi.apache.org/spreadsheet/how-to.html#sxssf http://poi.apache.org/spreadsheet/how-to.html#sxssf

暂无
暂无

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

相关问题 Maven“线程中的异常”http-bio-8080-exec-32“java.lang.OutOfMemoryError:PermGen space” - Maven “Exception in thread ”http-bio-8080-exec-32“ java.lang.OutOfMemoryError: PermGen space” 如何解决'java.lang.OutOfMemoryError:超出GC开销限制' - how to solve 'java.lang.OutOfMemoryError: GC overhead limit exceeded' 线程“main”中的异常java.lang.OutOfMemoryError:GWT应用程序中超出了GC开销限制 - Exception in thread “main” java.lang.OutOfMemoryError: GC overhead limit exceeded in GWT application Eclipse Stanford CoreNLP执行错误“线程“ main”中的异常“ java.lang.OutOfMemoryError:超出了GC开销限制” - Eclipse Stanford CoreNLP execution error “Exception in thread ”main“ java.lang.OutOfMemoryError: GC overhead limit exceeded” 线程“主”java.lang.OutOfMemoryError 中的异常:超出 GC 开销限制 - Exception in thread “main” java.lang.OutOfMemoryError: GC overhead limit exceeded 线程“dispatcher-event-loop-5”java.lang.OutOfMemoryError 中的异常:超出 GC 开销限制:Spark - Exception in thread "dispatcher-event-loop-5" java.lang.OutOfMemoryError: GC overhead limit exceeded : Spark Java PreparedStatement java.lang.OutOfMemoryError:超出了GC开销限制 - Java PreparedStatement java.lang.OutOfMemoryError: GC overhead limit exceeded 超出Junit java.lang.OutOfMemoryError GC开销限制 - Junit java.lang.OutOfMemoryError GC overhead limit exceeded 获取错误:java.lang.OutOfMemoryError:超出了GC开销限制 - Getting Error:java.lang.OutOfMemoryError: GC overhead limit exceeded 获取java.lang.OutOfMemoryError:Jboss中超出了GC开销限制 - Getting java.lang.OutOfMemoryError: GC overhead limit exceeded in Jboss
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM