Hi,
The query had to be executed only from server nodes.
I've taken a look at Ignite sources and found out that there is a silly
bug that includes client nodes to the list of those where a query should
be executed.
The ticket is created:
https://issues.apache.org/jira/browse/IGNITE-2394
If you're interested you can pick it up and contribute to Ignite ;)
--
Denis
On 1/15/2016 9:25 AM, babu prasad wrote:
I was loading data from AWS Redshift into Ignite through the loadcache
API.
cache.loadCache(null, "java.lang.Integer", "select * from lineorder
where lo_orderdate > 19970101");
I ran this from a single client. The query basically ran on all the nodes.
I had 1 client and 2 servers and the same query ran thrice on the
database server.
Is this expected behaviour?
Thanks!