我試圖導入到Solr 5.1.0和5.2.1中,該數據配置應該生成具有以下結構的文檔:Solr 5.1.0和5.2.1:使用DIH創建親子文檔使用DIH
<parentDoc>
<someParentStuff/>
<childDoc>
<someChildStuff/>
</childDoc>
</parentDoc>
從我從this question about nested entities in DIH答案的一個理解,我的Solr的版本應該可以用下面的data-config.xml
創建上面的結構:
<dataConfig>
<dataSource type="JdbcDataSource" driver="com.mysql.jdbc.Driver"
url=""
user=""
password=""
batchSize="-1"
/>
<document name="">
<entity rootEntity="true" name="parent" pk="parent_id" query="select * from parent">
<field column="parent_id" name="parent_id" />
<entity child="true" name="child" query="select * from child where parent_id='${parent.parent_id}'">
<field column="parent_id" name="parent_id" />
<field column="item_status" name="item_status" />
</entity>
</entity>
</document>
</dataConfig>
然而,當我執行full-import
,我得到:
<result name="response" numFound="2" start="0">
<doc>
<long name="parent_id">477</long> <!-- This is from the child -->
<str name="item_status">WS</str>
</doc>
<doc>
<long name="parent_id">477</long> <!-- This is from the parent -->
</doc>
</result>
我理解的是你應該得到5.1.0之前的非規格化佈局;不過,我預計:
<result name="response" numFound="1" start="0">
<doc>
<long name="parent_id">477</long>
<doc>
<long name="parent_id">477</long>
<str name="item_status">WS</str>
</doc>
</doc>
</result>
我需要做什麼來獲得我想要的文檔結構?我誤解了DIH中的嵌套實體應該做什麼?