Created 04-21-2016 03:08 AM
Does phoenix have a thrift or restful api to interface with it. I found this code on restful api with phoenix but it is not in the HDP stack. Do i need to put this up as a idea?
Created 04-21-2016 03:14 AM
have a look at the phoenix query server. It's a beta feature in HDP, but is installable via Ambari. When you pick which nodes should be clients, datanodes, nodemanagers, etc, you can check the Phoenix Query Server box.
Created 04-21-2016 03:14 AM
have a look at the phoenix query server. It's a beta feature in HDP, but is installable via Ambari. When you pick which nodes should be clients, datanodes, nodemanagers, etc, you can check the Phoenix Query Server box.
Created 04-21-2016 01:03 PM
This!
Query server essentially is built on Apache Calcite and jas a JSON API interface.
https://phoenix.apache.org/server.html
http://calcite.apache.org/avatica/docs/json_reference.html
I would think however that its way too much work to write a client using a REST API over this. If you want to create a web application, something like jquery with the jdbc client sounds much more appealing.
( Or go against HBase directly )