Hello
I'm experiencing the same error while trying to run remote query :
org.infinispan.client.hotrod.exceptions.HotRodClientException:Request for message id[8] returned server error (status=0x85): org.hibernate.search.SearchException: Can't build query for type org.infinispan.query.remote.indexing.ProtobufValueWrapper which is neither indexed nor has any indexed sub-types.
I'm running ISPN clustered server 6.0 final with indexing enabled :
<distributed-cache name="default" mode="SYNC" segments="20" owners="2" remote-timeout="30000" >
<locking isolation="READ_COMMITTED" acquire-timeout="30000" concurrency-level="1000" striping="false" />
<transaction mode="NONE" />
<indexing index="ALL">
<property name="default.directory_provider">ram</property>
<property name="lucene_version">LUCENE_CURRENT</property>
</indexing>
</distributed-cache>
Protobin descriptor is registered on both client and server, both infinispan-remote-query-server.jar and infinispan-query.jar are on server classpath
No warnings/errors on server side logs.
Am I missing something ?
Thanks
Alexander
Fixed by adding start="EAGER" attribute :
<distributed-cache ...... start="EAGER">
</distributed-cache>
Is it a bug or there is explanation for this ?