Re: Package jar file path for sql Query Entity

2016-12-01 Thread Vladislav Pyatkov
Hi, Ignite stores date as it specify in marshaller. Binary marshaller was configured by default. In case, if Binary marshaller was specified, all internal works will be processed in binary view (hence do not need to store java classes on server). If you want to use binary view in own code, you sho

Re: Package jar file path for sql Query Entity

2016-12-01 Thread rishi007bansod
Thanks. After importing same package on server and client side solved my problem(initially i wrote class in client node instead of importing it). But, I am still unclear about how ignite stores data case I : In both Binary and serialized format, and de-serializes data when required case II : On

Re: Package jar file path for sql Query Entity

2016-12-01 Thread Vladislav Pyatkov
Hi, I think in your case (when you configured "QueryEntity"), have not necessary to copy classe (schema.jar) to a server. Ignite will by use binary[1] format, and execute SQL (or other query) without deserialization. But I definitly do not understand why it does not work... You can to clarify are

Re: Package jar file path for sql Query Entity

2016-11-28 Thread rishi007bansod
I have added warehouse.java containing class warehouse to package schema. Thats why I wrote schema.warehouse. Query I am executing is SELECT * from warehouse w WHERE w.w_id = 1 and entry corresponding to w_id = 1 is present in warehouse cache. schema.jar

Re: Package jar file path for sql Query Entity

2016-11-28 Thread Vladislav Pyatkov
> included when ignite is running. So where should this jar file kept, so > that > i can be automatically loaded when ignite starts? > > > > -- > View this message in context: http://apache-ignite-users. > 70518.x6.nabble.com/Package-jar-file-path-for-sql-Quer

Package jar file path for sql Query Entity

2016-11-28 Thread rishi007bansod
uded when ignite is running. So where should this jar file kept, so that i can be automatically loaded when ignite starts? -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Package-jar-file-path-for-sql-Query-Entity-tp9217.html Sent from the Apache Ignite Us