Re: REST API for Hive queries?

2012-12-13 Thread Manish Malhotra
Ideally, push the aggregated data to some RDBMS like MySQL and have REST API or some API to enable ui to build report or query out of it. If the use case is ad-hoc query then once that qry is submitted, and result is generated in batch mode, the REST API can be provided to get the results from

Re: REST API for Hive queries?

2012-12-13 Thread Jagat Singh
If your requirement is that queries are not going to be run on fly then i would suggest following. 1) Create Hive script 2) Combine it with Oozie workflow to run at scheduled time and push results to some DB say MySQL 3) Use some application to talk to MySQL and generate those reports. Thanks,