Re: Use SQL to query IgniteRDD with scala at Zeppelin

2018-01-12 Thread Alexey Popov
Hi, Please note that REST protocol puts keys as String. So you have 3 Integer keys and 1 String key in a cache. That is the reason for your results. You can find details in topic [1] [1] http://apache-ignite-users.70518.x6.nabble.com/Rest-API-PUT-command-syntax-tc19158.html Thank you, Alexey

Use SQL to query IgniteRDD with scala at Zeppelin

2018-01-11 Thread itriA40453
Hi, Below is my code and result where I am trying to query IgniteRDD through SQL statement with scala at Zeppelin. First I use restful API to put a pair of data(key=10, val=45) into Ignite cache. %python import requests requests.put("http://127.0.0.1:8080/ignite?cmd=put=10=45=zeppelincache;)