Skip to content

Commit

Permalink
Update read me
Browse files Browse the repository at this point in the history
  • Loading branch information
wdavidw committed Feb 9, 2012
1 parent 07be7ea commit ded21f9
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
# Thrift Hive - Hive client with multi versions support and a Readable Stream API.
# Thrift Hive - Hive client using the Apache Thrift RPC system

Hive client with the following main features:
- fetch rows with optional batch size
- implement Node Readable Stream API (including `pipe`)
- hive multiple version support
- multiple query support through the `multi_execute` and `multi_query` functions
- advanced comments parsing

The project export the [Hive API][1] using [Apache Thrift RPC system][2]. It
support multiple versions and a readable stream API.
Expand All @@ -20,8 +27,9 @@ var client = hive.createClient({
port: 10000,
timeout: 1000
});
// Execute query
// Execute call
client.execute('use default', function(err){
// Query call
client.query('show tables')
.on('row', function(database){
console.log(database);
Expand Down

0 comments on commit ded21f9

Please sign in to comment.