The second how-to in a series about using the Apache HBase Thrift API Last time, we covered the fundamentals about connecting to Thrift via Python. This time, you’ll learn how to insert and get multiple rows at a time. Working with Tables Using the Thrift interface, you can create or delete tables. Let’s take a look […]
There are various way to access and interact with Apache HBase. Most notably, the Java API provides the most functionality. But some people want to use HBase without Java. Those people have two main options: One is the Thrift interface (the more lightweight and hence faster of the two options), and the other is the REST interface (aka […]