> On Jan 20, 2018, at 7:20 PM, Rajesh Kishore <rajesh10si...@gmail.com> wrote: > > Hi, > > I have requirement that my schema is not fixed , so I have to use the > BinaryObject approach instead of fixed POJO > > I am relying on OOTB file system persistence mechanism > > My questions are: > - How can I specify the indexes on BinaryObject?
https://apacheignite-sql.readme.io/docs/create-index https://apacheignite-sql.readme.io/docs/schema-and-indexes > - If I have to use sql query for retrieving objects , what table name should > I specify, the one which is used for cache name does not work > Was the table and its queryable fields/indexes created with CREATE TABLE or Java annotations/QueryEntity? If the latter approach was taken then the table name corresponds to the Java type name as shown in this doc: https://apacheignite-sql.readme.io/docs/schema-and-indexes — Denis > -Rajesh