日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

hbase,根据前缀匹配进行搜索并分批次获取结果

發(fā)布時(shí)間:2025/6/16 编程问答 41 豆豆
生活随笔 收集整理的這篇文章主要介紹了 hbase,根据前缀匹配进行搜索并分批次获取结果 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

1,獲取hbase client

/*** Create a new Connection instance using the passed <code>conf</code> instance. Connection* encapsulates all housekeeping for a connection to the cluster. All tables and interfaces* created from returned connection share zookeeper connection, meta cache, and connections* to region servers and masters.* <br>* The caller is responsible for calling {@link Connection#close()} on the returned* connection instance.** Typical usage:* <pre>* Connection connection = ConnectionFactory.createConnection(conf);* Table table = connection.getTable(TableName.valueOf("mytable"));* try {* table.get(...);* ...* } finally {* table.close();* connection.close();* }* </pre>** @param conf configuration* @return Connection object for <code>conf</code>*/public static Connection createConnection(Configuration conf) throws IOException {return createConnection(conf, null, null);}

  

2,根據(jù)前綴匹配進(jìn)行搜索并分批次獲取結(jié)果

private static AtomicLong filterAndDeleRowkeysByYearMonth(String yearMonth,String tableName,String devNo,String[] dayDateRange,String zkIp,String esIp,String esTableName) throws IOException { // Set dates = new HashSet<>(Arrays.asList("20180124")); //需要查詢的日期集合Set dates = new HashSet<>(Arrays.asList(dayDateRange));Table table = HBaseUtil.getTable(tableName, zkIp);TransportClient client = ESConnectFactory.getTransportClientInstance(esIp);Scan s = new Scan();s.setCaching(10000000);s.setFilter(new PrefixFilter(yearMonth.getBytes())); // s.setFilter(new PrefixFilter(yearMonth.getBytes())); // s.setMaxResultSize(100000000);ResultScanner resultScanner = table.getScanner(s);AtomicLong atomicLong1 = new AtomicLong();Result[] next = null;do {next = resultScanner.next(100000); // long l = runDelete(next, devNo, dates, atomicLong, table, client);ThreadPoolManager.getInstance().getProduceThreadPool().execute(new RowKeyProducerThread(next, devNo, dates));ThreadPoolManager.getInstance().getConsumeThreadPool().execute(new RowKeyConsumerThread(table,devNo,atomicLong1,client, esTableName));}while(next != null && next.length > 0 );try {Thread.sleep(10000);} catch (InterruptedException e) {e.printStackTrace();}ThreadPoolManager.getInstance().getProduceThreadPool().shutdown();ThreadPoolManager.getInstance().getConsumeThreadPool().shutdown();return atomicLong1;}

  

轉(zhuǎn)載于:https://www.cnblogs.com/yanyuechao/p/8367517.html

總結(jié)

以上是生活随笔為你收集整理的hbase,根据前缀匹配进行搜索并分批次获取结果的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。