1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package com.highdatas.mdm.service;
|
| import org.apache.hadoop.hbase.client.Result;
| import org.springframework.stereotype.Service;
|
| import java.util.List;
|
| /**
| * @author kimi
| * @description
| * @date 2020-03-31 16:01
| */
|
| @Service
| public interface HBaseService {
|
| List<Result> getRowKeyAndColumn(String tableName, String startRowkey, String stopRowkey, String column, String qualifier);
| List<Result> getListRowkeyData(String tableName, List<String> rowKeys, String familyColumn, String column);
|
| void createTable(String tableName);
| }
|
|