摘要:
一、指令部分:1.search管理界面地址: http://172.20.230.110:9200/_plugin/head/ 2.集群状态查看命令: curl -XGET 'localhost:9200/_cluster/health?pretty' curl -XGET 'localhost:9 阅读全文
posted @ 2018-09-06 17:35
日月心诚
阅读(690)
评论(0)
推荐(0)
摘要:
一、kafka原理:1.broker:一个kafka实例,多个broker组成kafka集群; 2.topic:逻辑概念,同一类数据的集合,可以看做一张表; 3.producer:将数据写入topic,作为broker写数据的客户端; 4.consumer:从topic中取数据,作为broker消费 阅读全文
posted @ 2018-09-06 17:33
日月心诚
阅读(441)
评论(0)
推荐(0)
摘要:
一、HBASE shell 命令操作;1.建表: create ‘tableName’,'f1','f2'; 注:列簇,裂限定符都要尽量短; 2.插入数据: put 'tableName','RowKey','f1:c1','value1' 3.查询数据:整表:scan 'tableName'; 单 阅读全文
posted @ 2018-09-06 17:31
日月心诚
阅读(810)
评论(0)
推荐(0)