Skip to content

Commit

Permalink
Upgrade from HBase 0.90 to 0.94.
Browse files Browse the repository at this point in the history
  • Loading branch information
tomwhite committed Jan 12, 2014
1 parent 9ffc052 commit 0087add
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README
Expand Up @@ -13,7 +13,7 @@ This version of the code has been tested with:
* Avro 1.5.4
* Pig 0.9.1
* Hive 0.8.0
* HBase 0.90.4
* HBase 0.90.4/0.94.15
* ZooKeeper 3.4.2
* Sqoop 1.4.0-incubating
* MRUnit 0.8.0-incubating
Expand Down
2 changes: 1 addition & 1 deletion book/pom.xml
Expand Up @@ -17,7 +17,7 @@
<avro.version>1.5.4</avro.version>
<pig.version>0.9.1</pig.version>
<hive.version>0.8.0</hive.version>
<hbase.version>0.90.4</hbase.version>
<hbase.version>0.94.15</hbase.version>
<zookeeper.version>3.4.2</zookeeper.version>
<sqoop.version>1.4.0-incubating</sqoop.version>
</properties>
Expand Down
4 changes: 2 additions & 2 deletions ch13/pom.xml
Expand Up @@ -3,9 +3,9 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.hadoopbook</groupId>
<artifactId>book</artifactId>
<artifactId>hadoop-meta</artifactId>
<version>3.0</version>
<relativePath>../book/pom.xml</relativePath>
<relativePath>../hadoop-meta/pom.xml</relativePath>
</parent>
<groupId>com.hadoopbook</groupId>
<artifactId>ch13</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion ch13/src/main/java/HBaseStationCli.java
Expand Up @@ -20,7 +20,7 @@ public class HBaseStationCli extends Configured implements Tool {
public Map<String, String> getStationInfo(HTable table, String stationId)
throws IOException {
Get get = new Get(Bytes.toBytes(stationId));
get.addColumn(INFO_COLUMNFAMILY);
get.addFamily(INFO_COLUMNFAMILY);
Result res = table.get(get);
if (res == null) {
return null;
Expand Down

0 comments on commit 0087add

Please sign in to comment.