我想要执行增量导入,我需要将更新日期与Solr的last_index_time进行比较。所以我有一个问题要比较两种不同的格式,我的更新日期格式是2019-01-29T05:06:02.192Z但是Solr last_index_Time格式是2019-01-30 10:07:58,所以,我想更改我的Solr last_index_time格式为我的对象Date格式。有人可以帮我吗?
答案 0 :(得分:1)
通常, propertyWriter 用于更改SOLR (SOLR-2658)
中的last_index_time
格式
<propertyWriter dateFormat="yyyy-MM-dd'T'HH:mm:ss.SSSXXX" type="SimplePropertiesWriter" filename="dataimport.properties" locale="en_US"/>
注意:另外,这会向DIH的data-config.xml文件中添加一个<propertyWriter />
元素,从而允许用户为“ data-config.properties”文件指定位置,文件名和语言环境。