mysql - Solr 4.6.0 DataImportHandler 加快性能

标签 mysql performance solr dataimporthandler

我正在使用 Solr 4.6.0,一次索引大约 10'000 个元素,但导入性能很差。这意味着导入这 10,000 个文档大约需要 10 分钟。当然我知道,这几乎取决于服务器硬件,但我仍然想知道,如何实现性能提升以及其中哪些在现实世界中实际上有用情况(加入等)?我也非常感谢精确的示例,而不仅仅是官方文档的链接。

这是data-config.xml

<dataConfig>
    <dataSource name="mysql" type="JdbcDataSource" 
        driver="com.mysql.jdbc.Driver" 
        url="jdbc:mysql://xxxx" 
        batchSize="-1" 
        user="xxxx" password="xxxx" />
    <document name="publications">
        <entity name="publication" transformer="RegexTransformer" pk="id" query="
            SELECT 
                sm_publications.id AS p_id, 
                CONCAT(sm_publications.title, ' ', sm_publications.abstract) AS p_text,
                sm_publications.year AS p_year,
                sm_publications.doi AS p_doi,
                sm_conferences.full_name AS c_fullname,
                sm_journals.full_name AS j_fullname,
                GROUP_CONCAT(DISTINCT sm_query_publications.query_id SEPARATOR '_-_-_-_-_') AS q_id
            FROM sm_publications 
            LEFT JOIN sm_conferences ON sm_conferences.id = sm_publications.conference_id 
            LEFT JOIN sm_journals ON sm_journals.id = sm_publications.journal_id 
            INNER JOIN sm_query_publications ON sm_query_publications.publication_id = sm_publications.id 
            WHERE '${dataimporter.request.clean}' != 'false' OR 
                sm_publications.modified > '${dataimporter.last_index_time}' GROUP BY sm_publications.id">
            <field column="p_id" name="id" />
            <field column="p_text" name="text" />
            <field column="p_text" name="text_tv" />
            <field column="p_year" name="year" />
            <field column="p_doi" name="doi" />
            <field column="c_fullname" name="conference" />
            <field column="j_fullname" name="journal" />
            <field column="q_id" name="queries" splitBy="_-_-_-_-_" />

            <entity name="publication_authors" query="
                SELECT 
                    CONCAT(
                        IF(sm_authors.first_name != '',sm_authors.first_name,''), 
                        IF(sm_authors.middle_name != '',CONCAT(' ',sm_authors.middle_name),''), 
                        IF(sm_authors.last_name != '',CONCAT(' ',sm_authors.last_name),'')
                    ) AS a_name, 
                    sm_affiliations.display_name AS aa_display_name, 
                    CONCAT(sm_affiliations.latitude, ',', sm_affiliations.longitude) AS aa_geo, 
                    sm_affiliations.country_name AS aa_country_name
                FROM sm_publication_authors 
                INNER JOIN sm_authors ON sm_authors.id = sm_publication_authors.author_id 
                LEFT JOIN sm_affiliations ON sm_affiliations.id = sm_authors.affiliation_id 
                WHERE sm_publication_authors.publication_id = '${publication.p_id}'">
                    <field column="a_name" name="authors" />
                    <field column="aa_display_name" name="affiliations" />
                    <field column="aa_geo" name="geo" />
                    <field column="aa_country_name" name="countries" />
            </entity>

            <entity name="publication_keywords" query="
                SELECT sm_keywords.name FROM sm_publication_keywords 
                INNER JOIN sm_keywords ON sm_keywords.id = sm_publication_keywords.keyword_id
                WHERE sm_publication_keywords.publication_id = '${publication.p_id}'">
                    <field column="name" name="keywords" />
            </entity>

        </entity>
    </document>
</dataConfig>

最佳答案

我所说的查询缓存是指CachedSqlEntityProcessor。我喜欢您的其他问题中的合并解决方案 MySQL GROUP_CONCAT duplicate entries 。但是 CachedSqlEntityProcessor 也会有所帮助,如果 p_id 在主查询的结果集中一遍又一遍地重复 publication_authors,并且您不必担心额外的内存使用。

更新:看起来您还解决了另外两个问题,可能您可以采取任何一种方式,无论如何,我都会按照您的要求发布简短的示例/指针,以防其他人发现它很方便

<entity name="x" query="select * from x">
    <entity name="y" query="select * from y" processor="CachedSqlEntityProcessor"  where="xid=x.id">
    </entity>
<entity>

此示例取自wiki 。这仍将运行主查询“select * from x”中每个 id 的每个查询“select * from y where xid=id”。但它不会重复发送同一查询。

关于mysql - Solr 4.6.0 DataImportHandler 加快性能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21841186/

相关文章:

php - ChartJS 和 Ajax 调用

php - 数组输入值在 mysql 中插入空记录

xml - 在 Solr 5.1.X 中使用 schema.xml 而不是托管模式

sql-server - 识别 SQL Server 性能问题

Solr - 检索未过滤版本的查询的方面计数

Solr 默认字段值在原子更新时刷新

mysql - 将行转换为带有ID的mySQL列(不旋转)

mysql - Rails 3 精细搜索

java - Java对象之间的有效通信

c# - 为什么我的对象需要很长时间才能创建?