BTW, please properly subscribe to the mailing list, otherwise community doesn't receive email notifications. Here is the instruction: http://apache-ignite-users.70518.x6.nabble.com/mailing_list/MailingListOptions.jtp?forum=1
minisoft_rm wrote > CacheConfig.java <http://apache-ignite-users.70518.x6.nabble.com/file/n3529/CacheConfig.java> > > Hktvproduct.java > <http://apache-ignite-users.70518.x6.nabble.com/file/n3529/Hktvproduct.java> > > HktvproductKey.java > <http://apache-ignite-users.70518.x6.nabble.com/file/n3529/HktvproductKey.java> > > > please review the java files above. hope you could help me out... just > very simple logic... but I cannot make it.. :-( When indexes are created, you should use Java object field name, not database name. For example, instead of this: idxs.add(new QueryIndex("*p_productorderlimit*", true, "productorderlimitRelIDX_20005")); you should do this: idxs.add(new QueryIndex("*pProductorderlimit*", true, "productorderlimitRelIDX_20005")); Is this the code generated by schema utility? -Val -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/org-apache-ignite-IgniteCheckedException-Failed-to-register-query-type-TypeDescriptor-tp3447p3530.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.
