Skip to content
This repository was archived by the owner on Feb 12, 2022. It is now read-only.

Phoenix Guest Blog for Apache

James Taylor edited this page Oct 25, 2013 · 6 revisions

logo

I'm thrilled to be guest blogging today about Phoenix, an open source SQL skin for HBase that powers the HBase use cases at Salesforce.com. As opposed to relying on map-reduce to execute SQL queries as other similar projects, Phoenix compiles your SQL query into a series of HBase scans, and orchestrates the running of those scans to produce regular JDBC result sets. On top of that, you can add secondary indexes to your tables to transform what would normally be a full table scan into a series of point gets (and we all know how good HBase performs with those).

Clone this wiki locally