1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
| object HbaseUtil { var conn: Connection = null var tables: HashMap[String, Table] = new HashMap[String, Table]
def initConn() { if (conn == null || conn.isClosed) { println("---- Init Conn -----") val conf = HBaseConfiguration.create() conf.set("hbase.zookeeper.quorum", HBASE_ZOOKEEPER) conf.set("hbase.zookeeper.property.clientPort", "2181") conn = ConnectionFactory.createConnection(conf) } }
def getConn() = { initConn conn }
def getTable(tablename: String) = { if (!getConn().getAdmin.tableExists(TableName.valueOf(tablename))) { conn.getAdmin.createTable( new HTableDescriptor( TableName.valueOf(tablename) ).addFamily( new HColumnDescriptor("info") )) } tables.getOrElse(tablename, { initConn conn.getTable(TableName.valueOf(tablename)) }) }
def put(tableName: String, p: Put) { getTable(tableName) .put(p) }
def get(tableName: String, get: Get, cf: String, column: String) = { val r = getTable(tableName) .get(get) if (r != null && !r.isEmpty()) { new String(r.getValue(cf.getBytes, column.getBytes)) } else null }
def getConf(properties: Properties) = { val conf = HBaseConfiguration.create() conf.set("hbase.zookeeper.quorum", properties.getProperty("hbase.zookeeper.quorum")) conf.set("hbase.zookeeper.property.clientPort", properties.getProperty("hbase.zookeeper.property.clientPort")) conf.set("hbase.master", properties.getProperty("hbase.master")) conf }
def getConn(conf: Configuration) = { if (conn == null || conn.isClosed) { conn = ConnectionFactory.createConnection(conf) } conn }
def getTable(conn: Connection, tableName: String) = { createTable(conn, tableName) conn.getTable(TableName.valueOf(tableName)) }
def createTable(conn: Connection, tableName: String) = { if (!conn.getAdmin.tableExists(TableName.valueOf(tableName))) { val tableDescriptor = new HTableDescriptor(TableName.valueOf(tableName)) tableDescriptor.addFamily(new HColumnDescriptor("info".getBytes())) conn.getAdmin.createTable(tableDescriptor) } }
def putData(conn: Connection, tableName: String, data: Put) = { getTable(conn, tableName).put(data) }
def getNewJobConf(conf: Configuration, tableName: String) = { conf.set("hbase.defaults.for.version.skip", "true") conf.set(org.apache.hadoop.hbase.mapreduce.TableOutputFormat.OUTPUT_TABLE, tableName) conf.setClass("mapreduce.job.outputformat.class", classOf[org.apache.hadoop.hbase.mapreduce.TableOutputFormat[String]], classOf[org.apache.hadoop.mapreduce.OutputFormat[String, Mutation]]) new JobConf(conf) } }
wordCounts.map(x => { val put = new Put((x._1).getBytes) put.addColumn("info".getBytes, "count".getBytes, x._2.toString.getBytes) HbaseUtil.put("test.demo_", put) })
|