码迷,mamicode.com
首页 > Windows程序 > 详细

hbase REST API

时间:2015-11-28 06:40:27      阅读:740      评论:0      收藏:0      [点我收藏+]

标签:rest api


-- rest api --

http://wiki.apache.org/hadoop/Hbase/Stargate

curl -H "Accept: text/xml" http://itr-hbasetest01:20550/version -v

curl -H "Accept: text/xml" http://itr-hbasetest01:20550/version/cluster -v

curl -H "Accept: application/json" http://itr-hbasetest01:20550/status/cluster | python -mjson.tool

curl -X PUT -H "Content-Type: application/json" http://itr-hbasetest01:20550/tbl_rest/schema -d ‘{"ColumnSchema":[{"name":"cf"}]}‘ -v

curl -H "Accept: application/json" http://itr-hbasetest01:20550/tbl_rest/regions | python -mjson.tool

./hbase_put_rest_json.sh tbl_rest cf test sku_1 123
./hbase_put_rest_xml.sh tbl_rest cf test1 sku_2 789

curl -H "Accept: application/json" http://itr-hbasetest01:20550/tbl_rest/sku_2 | python -mjson.tool

echo -n "c2t1XzI=" | base64 -d
echo -n "Nzg5" | base64 -d
 
curl -H "Accept: application/octet-stream" http://itr-hbasetest01:20550/tbl_rest/sku2/cf:test1

curl -X DELETE -H "Accept: application/json" http://itr-hbasetest01:20550/tbl_rest/schema -v


-- JRuby script --

alter ‘test1‘, NAME => ‘cf‘, METHOD => ‘delete‘
alter ‘test1‘, ‘delete‘ => ‘cf‘

alter ‘test1‘, NAME => ‘cf‘

put ‘test1‘, ‘user1‘, ‘cf:1399999999‘, "\x00\x00\x00\x09"
put ‘test1‘, ‘user1‘, ‘cf:1400000000‘, "\x00\x00\x00\x08"
put ‘test1‘, ‘user1‘, ‘cf:1400000001‘, "\x00\x00\x00\x07"
put ‘test1‘, ‘user1‘, ‘cf:1400000002‘, "\x00\x00\x20\xFB"
put ‘test1‘, ‘user2‘, ‘cf:1500000000‘, "\x00\x00\x00\x11"
put ‘test1‘, ‘user2‘, ‘cf:1500000001‘, "\x00\x00\x20\xFC"

require ‘/home/hduser/hbase/scan_binary_values‘
scan_binary_values ‘test1‘, ‘cf‘

scan_binary_values ‘test1‘, ‘lf‘


shell脚本

hbase_put_rest_json.sh

table=$1
cf=$2
column=$3
key=$4
value=$5

cq_enc=`echo -ne $cf:$column | base64`

key_enc=`echo -ne $key | base64`
value_enc=`echo -ne $value | base64`

data=‘{ "Row": [ { "key": "‘$key_enc‘", "Cell": [ { "column": "‘$cq_enc‘", "$": "‘$value_enc‘" } ] } ] }‘
echo $data
curl -H "Content-Type: application/json" --data "$data" http://itr-hbasetest01.zalando:20550/$table/$key -v


hbase_put_rest_xml.sh

table=$1
cf=$2
column=$3
key=$4
value=$5

cq_enc=`echo -ne $cf:$column | base64`

key_enc=`echo -ne $key | base64`
value_enc=`echo -ne $value | base64`

xml=‘<?xml version="1.0" encoding="UTF-8" standalone="yes"?><CellSet><Row key="‘$key_enc‘"><Cell column="‘$cq_enc‘">‘$value_enc‘</Cell></Row></CellSet>‘
echo $xml
curl -H "Content-Type: text/xml" --data "$xml" http://itr-hbasetest01.zalando:20550/$table/$key -v


本文出自 “厚积薄发,磨刀不误砍柴工” 博客,请务必保留此出处http://tianxingzhe.blog.51cto.com/3390077/1717615

hbase REST API

标签:rest api

原文地址:http://tianxingzhe.blog.51cto.com/3390077/1717615

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!