/ / Apache Solr não é possível armazenar dados JSON aninhados - java, json, apache, solr, solr6

Apache Solr Não é possível armazenar dados JSON aninhados - java, json, apache, solr, solr6

Estou tentando carregar os seguintes dados em um núcleo SOLR (6.6) existente usando a seção de upload de documentos

   {
"id": "1234",
"nationality":"India",
"phonenumber":"232323",
"personname":"babu rao",
"paid":"credi card",
"status":"success",
"access" :[
{"port":"port1","gate":"Gate1"}
],
"approved_by":[
{"name":"appr1","date":"2006-11-30"},
{"name":"appr2","date":"2006-11-30"}
]
}

Meu esquema para este item é

 <field name="created_date" type="tdate" indexed="true" stored="true" />
<field name="passType" type="string" indexed="true" stored="true" />
<field name="duration" type="int" indexed="true" stored="true" />
<field name="nationality" type="string" indexed="true" stored="true" />
<field name="phonenumber" type="string" indexed="true" stored="true" />
<field name="personname" type="string" indexed="true" stored="true" />
<field name="paid" type="string" indexed="true" stored="true" />
<field name="passamount" type="float" indexed="true" stored="true" />
<field name="status" type="string" indexed="true" stored="true" />
<field name="approved_by" type="string" indexed="true" stored="true" multiValued="true"/>
<field name="approved_by.name" type="string" indexed="true" stored="true" />
<field name="approved_by.date" type="tdate" indexed="true" stored="true" />
<field name="access" type="string" indexed="true" stored="true" multiValued="true"/>
<field name="access.port" type="string" indexed="true" stored="true" />
<field name="access.gate" type="string" indexed="true" stored="true" />

Estou tendo o erro a seguir

Error parsing JSON field value. Unexpected OBJECT_START at [177],
field=access

Solicite sua ajuda para resolvê-lo.

Respostas:

1 para resposta № 1

_childDocuments_ É necessário indicar os documentos aninhados no JSON. Eu atualizei o documento agora ele será indexado.

{
"id": "1234",
"nationality":"India",
"phonenumber":"232323",
"personname":"babu rao",
"paid":"credi card",
"status":"success",
"_childDocuments_" :[
{"id":456,"port":"port1","gate":"Gate1"},
{"id":786,"name":"appr1","date":"2006-11-30"},
{"id":232,"name":"appr2","date":"2006-11-30"}
]
}

Você também precisa alterar o schema.xml.
[Schema.xml]

<field name="created_date" type="tdate" indexed="true" stored="true" />
<field name="passType" type="string" indexed="true" stored="true" />
<field name="duration" type="int" indexed="true" stored="true" />
<field name="nationality" type="string" indexed="true" stored="true" />
<field name="phonenumber" type="string" indexed="true" stored="true" />
<field name="personname" type="string" indexed="true" stored="true" />
<field name="paid" type="string" indexed="true" stored="true" />
<field name="passamount" type="float" indexed="true" stored="true" />
<field name="status" type="string" indexed="true" stored="true" />
<field name="name" type="string" indexed="true" stored="true" />
<field name="date" type="tdate" indexed="true" stored="true" />
<field name="port" type="string" indexed="true" stored="true" />
<field name="gate" type="string" indexed="true" stored="true" />

Para mais informações, você pode conferir este artigo de Yonik: - http://yonik.com/solr-nested-objects/