Hi all,

There is a problem when I use solr delta-imports to update the index. I have
added the "last_modified" column in the table. After I use the "full-import"
command to index the database data, the "dataimport.properties" file
contains nothing, and when I use the "delta-import" command to update index,
the solr list all the data in database not the lasted data. My
db-data-config.xml: 

<dataConfig>
    <dataSource driver="com.mysql.jdbc.Driver"
url="jdbc:mysql://localhost:3306/funguide" user="root" password="root"/>  
     <document name="shopinfo">
        <entity name="shop" pk="shop_id" query="select
shop_id,title,description,tel,address,longitude,latitude from shop"
                deltaQuery="select shop_id from shop where last_modified >
'${dataimporter.last_index_time}'">
                        
                        <field column="shop_id" name="id" />                    
            <field column="title" name="title" />                       
                        <field column="description" name="description" />       
                
                        <field column="tel" name="tel" />                       
                        <field column="address" name="address" />               
        
                        <field column="longitude" name="longitude" />           
        
                        <field column="latitude" name="latitude" />             
        
        
        </entity>
    </document>
</dataConfig>

Anyboby know how to solve the problem? Thanks!

enzhao...@gmail.com


-- 
View this message in context: 
http://www.nabble.com/%E3%80%90solr-DIH%E3%80%91A-problem-about-solr-delta-imports-tp25055788p25055788.html
Sent from the Solr - User mailing list archive at Nabble.com.

Reply via email to