Hbase 学习笔记一 》Example

本文通过一个完整的示例介绍如何与HBase交互。首先定义一个简单的User模型对象,接着封装所有用户相关的HBase操作,包括CRUD操作。最后提供了一个UsersTool主方法,方便与HBase的users表进行交互。用户可以尝试运行示例代码,如添加用户到表中,或者列出表的内容,以此更好地理解HBase的逻辑和物理数据模型。
摘要由CSDN通过智能技术生成

Putting it all together Example

Now that you’ve seen how to interact with HBase, let’s assemble what you know into a

working example. To start, define a simple model object for the User instances, as in

the next listing.

<span style="font-size:14px;">package HBaseIA.TwitBase.model;
public abstract class User {
public String user;
public String name;
public String email;
public String password;
@Override
public String toString() {
return String.format("<User: %s, %s, %s>", user, name, email);
}
}</span>


Let’s wrap all the user-centric HBase interactions in a single class. Start by declaring

the commonly used byte[] constants. Then define some helper methods to encapsulate

command creation. Follow that with the public interfaces and a private implementation

of the User model, as shown next.

<span style="font-size:14px;"><pre name="code" class="java">package HBaseIA.TwitBase.hbase;


//...
public class UsersDAO {
    public static final byte[] TABLE_NAME = Bytes.toBytes("users");
    public static final byte[] INFO_FAM = Bytes.toBytes("info");
    private static final byte[] USER_COL = Bytes.toBytes("user");
    private static final byte[] NAME_COL = Bytes.toBytes("name");
    private static final byte[] EMAIL_COL = Bytes.toBytes("email");
    private static final byte[] PASS_COL = Bytes.toBytes("password");
    public static final byte[] TWEETS_COL = Bytes.toBytes("tweet_count");
    private HTablePool pool;


    public UsersDAO(HTablePool pool) {
        this.pool = pool;
    }


    private static Get mkGet(String user) {
        Get g = new Get(Bytes.toBytes(user));
        g.addFamily(INFO_FAM);


        return g;
    }


    private static Put mkPut(User u) {
        Put p = new Put(Bytes.toBytes(u.user));
        p.add(INFO_FAM, USER_COL, Bytes.toBytes(u.user));
        p.add(INFO_FAM, NAME_COL, Bytes.toBytes(u.name));
        p.add(INFO_FAM, EMAIL_COL, Bytes.toBytes(u.email));
        p.add(INFO_FAM, PASS_COL, Bytes.toBytes(u.password));


        return p;
    }


    private static Delete mkDel(String user) {
        Delete d = new Delete(Bytes.toBytes(user));


        return d;
    }


    public void addUser(String user, String name, String email, String password)
        throws IOException {
        HTableInterface users = pool.getTable(TABLE_NAME);
        Put p = mkPut(new User(user, name, email, password));
        users.put(p);
        users.close();
    }


    public HBaseIA.TwitBase.model.User getUser(String user)
        throws IOException {
        HTableInterface users = pool.getTable(TABLE_NAME);
        Get g = mkGet(user);
        Result result = users.get(g);


        if (result.isEmpty()) {
            return null;
        }


        User u = new User(result);
        users.close();


        return u;
    }


    public void deleteUser(String user) throws IOException {
        HTableInterface users = pool.getTable(TABLE_NAME);
        Delete d = mkDel(user);
        users.delete(d);
        users.close();
    }


    private static class User extends HBaseIA.TwitBase.model.User {
        private User(Result r) {
            this(r.getValue(INFO_FAM, USER_COL),
                r.getValue(INFO_FAM, NAME_COL),
                r.getValue(INFO_FAM, EMAIL_COL),
                r.getValue(INFO_FAM, PASS_COL),
                (r.getValue(INFO_FAM, TWEETS_COL) == null) ? Bytes.toBytes(0L)
                                                           : r.getValue(
                    INFO_FAM, TWEETS_COL));
        }


        private User(byte[] user, byte[] name, byte[] email, byte[] password,
            byte[] tweetCount) {
            this(Bytes.toString(user), Bytes.toString(name),
                Bytes.toString(email), Bytes.toString(password));
            this.tweetCount = Bytes.toLong(tweetCount);
        }


        private User(String user, String name, String email, String password) {
            this.user = user;
            this.name = name;
            this.email = email;
            this.password = password;
        }
    }
}
</span>

 

Listing 2.1 Userdata model

Listing 2.2 CRUD operations in UsersDAO.

The last piece of this puzzle is a main() method. Let’s make a UsersTool, shown in the

next listing, to simplify interaction with the users table in HBase.

<span style="font-size:14px;">package HBaseIA.TwitBase;

//...
public class UsersTool {
    public static final String usage = "UsersTool action ...\n" +
        " help - print this message and exit.\n" +
        " add user name email password" + " - add a new user.\n" +
        " get user - retrieve a specific user.\n" +
        " list - list all installed users.\n";

    public static void main(String[] args) throws IOException {
        if ((args.length == 0) || "help".equals(args[0])) {
            System.out.println(usage);
            System.exit(0);
        }

        HTablePool pool = new HTablePool();
        UsersDAO dao = new UsersDAO(pool);

        if ("get".equals(args[0])) {
            System.out.println("Getting user " + args[1]);

            User u = dao.getUser(args[1]);
            System.out.println(u);
        }

        if ("add".equals(args[0])) {
            System.out.println("Adding user...");
            dao.addUser(args[1], args[2], args[3], args[4]);

            User u = dao.getUser(args[1]);
            System.out.println("Successfully added user " + u);
        }

        if ("list".equals(args[0])) {
            for (User u : dao.getUsers()) {
                System.out.println(u);
            }
        }

        pool.closeTablePool(UsersDAO.TABLE_NAME);
    }
}
</span>

With all the code available, you can try the whole thing. In the root directory of this

book’s source code, compile the application jar:

<span style="font-size:14px;">$ mvn package
...
[INFO] -----------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] -----------------------------------------------------
[INFO] Total time: 20.467s</span>


This produces a twitbase-1.0.0.jar file in the target directory.

Using UsersTool to add Mark to the users table is easy:

$ java -cp target/twitbase-1.0.0.jar \

<span style="font-size:14px;">HBaseIA.TwitBase.UsersTool \
add \
TheRealMT \
"Mark Twain" \
samuel@clemens.org \
abc123
Successfully added user <User: TheRealMT></span>


You can list the contents of your table:

<span style="font-size:14px;">$ java -cp target/twitbase-1.0.0.jar \
HBaseIA.TwitBase.UsersTool \
list
21:49:30 INFO cli.UsersTool: Found 1 users.
<User: TheRealMT></span>


Now that you’ve seen a little of how to interact with HBase, let’s better understand the

logical and physical data models present in HBase.


评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值