Trying to have nested child documents inside managed schema in solr 6.5 as -
<fieldType name="_nest_path_" class="solr.NestPathField"/>
<field name="_root_" type="string" indexed="true" stored="false" docValues="false" />
<field name="_childDocuments_" type="_nest_path_">
<field name="id" type="string" multiValued="false" indexed="true" required="true" stored="true"/>
<field name="firstname" type="text_general" indexed="true" stored="true"/>
<field name="lastname" type="text_general" indexed="true" stored="true"/>
But seems _nest_path_
field is not supported in solr 6.5 and getting error Error loading class solr.NestPathField
.
Any alternatives to store child documents without using nest_path
or is there something wrong that I am doing here?
This schema works perfectly fine in Solr 8.4