Hi Shawn, Classes that you want to use in queries should be set via setQueryEntities.
*Table name* in Ignite has name of type. E.g if you want to get some record of class "my.org.Person" you should use "Person" as table name: Select * from Person. To make cross cache query you should use full table name as "cache_name".class_name: Select ... from Person, "other_cache".Org Where ... For JDK classes like java.lang.Integer, table name will be "Integer" On Mon, Dec 12, 2016 at 12:09 PM, Shawn Du <[email protected]> wrote: > Hi, > > > > Today, I had a try of zeppelin. After setup a zeppelin node and began to > issue SQL for query, I don’t know how to input the *table name* of SQL. > > For my cache are built with BinaryObject and config with setQueryEntities. > > > > It is possible to do query in zeppinlin for these caches? > > > > Thanks > > Shawn >
