【问题标题】:Apache MetaModel - bad performance querying spreadsheetApache MetaModel - 性能不佳的查询电子表格
【发布时间】:2016-06-29 17:02:02
【问题描述】:

我需要用 Java 查询一个电子表格文件。我正在使用Apache MetaModel

我使用 maven 导入它

<dependency>
    <groupId>org.apache.metamodel</groupId>
    <artifactId>MetaModel-excel</artifactId>
    <version>4.5.2</version>
</dependency>

一切正常,但 next() 指令应该返回 false 需要几秒钟,为什么?

import org.apache.metamodel.DataContext;
import org.apache.metamodel.excel.ExcelDataContext;
import org.apache.metamodel.schema.Schema;
import org.apache.metamodel.schema.Column; 
import org.apache.metamodel.schema.Table; 
import org.apache.metamodel.query.Query;
import org.apache.metamodel.query.OperatorType; 
import org.apache.metamodel.data.DataSet; 
import org.apache.metamodel.data.Row; 
import org.apache.metamodel.MetaModelException;


public class SpreadsheetReader {

    private File spreadsheet;


    public SpreadsheetReader(String spreadsheetLocation, String spreadsheetName){

        this.spreadsheet = new File( spreadsheetLocation + spreadsheetName );

        if( !"OK".equals( checkSpreadSheet() ) ){
            throw new IllegalStateException("Error in spreadsheet. Cause: "+spreadsheetStatus);
        }

    }


    /** query the excel spreadsheet for the given  ID
    */
    public List<String> query( String givenProgId ){

        List<String> linksArray = new ArrayList<String>();
        int rowCount = 0;

        ExcelConfiguration conf = new ExcelConfiguration( 1, true, true ); // columnNameLineNumber, skipEmptyLines, sEColumns
        DataContext dataContext = new ExcelDataContext( this.spreadsheet, conf );

        System.out.println( "PROFILING >>> "+(new org.joda.time.DateTime())+" START-1" ); // ## 

        Schema schema = dataContext.getDefaultSchema();

        System.out.println( "PROFILING >>> "+(new org.joda.time.DateTime())+" STOP-1" ); // ## 
       // Takes 2 seconds. Will be moved into constructor.

        Table table = schema.getTables()[0];

        Column idsColumn = table.getColumnByName("ProgID");
        Column titlesColumn = table.getColumnByName("Titles");

        Query query = new Query().select(titlesColumn)
                                 .from(table)
                                 .where(idsColumn, OperatorType.EQUALS_TO, givenProgId);

        try( DataSet dataSet = dataContext.executeQuery(query) ){ // try-with-resource, no need to close dataset

            while (dataSet.next()) {

                // the rows are read quite quickly, problem will be when next() is false

                ++rowCount;

                Row currentRow = dataSet.getRow();
                String currentTitle = (String)currentRow.getValue(0);

                linksArray.add( "my-service/titles/"+currentTitle );

                System.out.println( "PROFILING >>> "+(new org.joda.time.DateTime())+" START-2" ); // @@@@@@@
            }
            System.out.println( "PROFILING >>> "+(new org.joda.time.DateTime())+" STOP-2" ); // @@@@@@@ 
            // TAKES ABOUT 6 SECONDS - (Excel file has just 14.779 rows and 114 columns)

        }catch(MetaModelException xx){
            //logger
            throw xx;
        }

        return linksArray;
    }
}}

更新使用只有 3 个条目的电子表格文档进行更多分析

现在的代码是:

try( DataSet dataSet = this.dataContext.executeQuery(query) ){


    // FIRST NEXT() with result => quite fast

    System.out.println( "\n PROFILING >>> "+(new org.joda.time.DateTime())+" START a\n" );
    System.out.println( "\n 88888 NEXT >>> "+(dataSet.next())+" <<<< \n" ); 
    Row currentRow = dataSet.getRow();
    String currentTitle = (String)currentRow.getValue(0);
    System.out.println( "\n READ: "+(new org.joda.time.DateTime())+" >>> "+currentTitle+" \n" );

    System.out.println( "\n PROFILING >>> "+(new org.joda.time.DateTime())+" STOP a\n" );


    // SECOND AND LAST NEXT() => very SLOW

    System.out.println( "\n PROFILING >>> "+(new org.joda.time.DateTime())+" START b\n" );
    System.out.println( "\n 88888 NEXT >>> "+(dataSet.next())+" <<<< \n" );
    System.out.println( "\n PROFILING >>> "+(new org.joda.time.DateTime())+" STOP b\n" );

}

并且电子表格预加载在类构造函数中。

日志(带时间)一系列后续相同查询中的最后一个是:

Jun 30, 2016 10:59:38 AM log my-project.logging.ITVLogger
INFO: CODE00012 - Query on spreadsheet started for ID 123456



PROFILING >>> 2016-06-30T10:59:38.651+01:00 START a

10:59:38.652 [main] INFO  o.a.m.d.RowPublisherDataSet - 
Starting separate thread for publishing action: org.apache.metamodel.excel.XlsxRowPublisherAction@4977e527

88888 NEXT >>> true <<<< 

READ: 2016-06-30T10:59:39.756+01:00 >>> A_TITLE

PROFILING >>> 2016-06-30T10:59:39.756+01:00 STOP a



PROFILING >>> 2016-06-30T10:59:39.756+01:00 START b

88888 NEXT >>> false <<<< 

PROFILING >>> 2016-06-30T10:59:44.735+01:00 STOP b

所以回顾一下,检索结果大约需要 1 秒,最后一次执行 next() 需要 4~6 秒。

【问题讨论】:

  • 在第一个next() 之后,应用记录o.a.m.d.RowPublisherDataSet - Starting separate thread for publishing action: org.apache.metamodel.excel.XlsxRowPublisherAction@3d6e18b4。它是否正在等待其终止?
  • 切换到 github.com/monitorjbl/excel-streaming-reader,在启动时阅读整个文档并将我需要的列保存在内存中,以便后续查询更快

标签: java spreadsheet apache-metamodel


【解决方案1】:

Excel DataContext 实现在后台解包和解析压缩的 .xlsx 文件。这意味着DataContext.executeQuery(...) 方法会快速返回,但DataSet.next() 调用是在它必须等待内存中可用的数据之后立即调用的。我看不出有什么办法可以避免这种情况,这只是 Excel 文件处理起来相当复杂的结果。

【讨论】:

  • 是的,但关键是假设我们只有一行作为结果,第一次调用dataset.next() 和随后的dataset.getRow().getValue(0) 很快打印出从电子表格中获得的值(在更少超过一秒)但是当它第二次调用dataset.next()(这将返回false)时,调用需要4~8秒才能完成。这就是瓶颈,我想知道为什么会这样。我还尝试在构造函数中初始化 DataSet,但任何后续查询都有完全相同的延迟。谢谢 - 顺便说一句,不错的图书馆,它非常易读:)
  • DataContext 现在在构造函数中初始化,电子表格现在只有 3 个条目 => 最后执行的 next() 仍然需要 6 秒每个查询
  • 这是一个非常有趣的观察。我建议将其作为 MetaModel 开发人员邮件列表中的潜在错误提出。需要更深入地研究它以找出它实际上是一个错误还是其他东西。
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2013-09-22
  • 1970-01-01
  • 2020-04-12
  • 1970-01-01
  • 2021-06-09
  • 1970-01-01
相关资源
最近更新 更多