Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Learning log-hbase learning (maximum version query)

2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

In HBase, there is only one row for the same column corresponding to a row. Use scan or get to get the latest data

If we change the column corresponding to this row, we will not generate another piece of data, unlike RDBMS.

One more record is generated in insert, and the modification or insertion of the same data in HBase is only a put operation, and all you see in the end is

The latest data, other data is saved in different version, just like hidden things.

So how can I see these hidden version values?

Get get = new Get (startRow)

Get.setMaxVersions ()

Result result = table.get (get)

List list = result.list ()

For (final KeyValue v:list) {

Logger.info ("value:" + v + "str:" + Bytes.toString (v.getValue ()

}

Add the setMaxVersions () method and you can take out all the versions

Example code:

@ Test public void test4 () throws Exception {Configuration config = HBaseConfiguration.create (); config.set ("hbase.zookeeper.quorum", "hadoop1,hadoop2,hadoop3"); HTable hTable = new HTable (config, "t_xuanxuan"); Get get = new Get ("29129101029" 1444038378601 ".getBytes ()); get.setMaxVersions () / / 2 Result result = hTable.get (get); System.out.println (result.size ()); List list = result.list (); for (final KeyValue v:list) {System.out.println ("value:" + v + "str:" + Bytes.toString (v.getValue () }}

The number of result will be 2, because it is hidden, so it can not be queried on the hbase command line, only this way.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report