1. 启动hbase-indexer服务
nohup ./hbase-indexer server -z s1:,s2:,s3:,s4:,s5: > /work/hbase-indexer.log &
- 参数说明
- -z hbase-indexer要用到的zooKeeper的链接信息
- /work/hbase-indexer.log 输出日志文件路径
2. 添加索引
./hbase-indexer add-indexer -n indexer_vip -c /opt/lucidworks-hdpsearch/hbase-indexer/demo/vip_indexer_mapper.xml -cp solr.zk=s1:,s2:,s3:,s4:,s5:/solr -cp solr.collection=collection_vip
- 参数说明
- -indexer 动作命令
- -n 要创建的索引名称参数,indexer_vip 索引名称
- -c 索引映射文件路径
- solr.zk zooKeeper 链接信息
- solr.collection 索引映射的集合信息,collection_vip 集合名称
<xml version="1.0" encoding="UTF-8"?>
<!--
/*
* Copyright 2013 NGDATA nv
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-->
<indexer table="BizvaneV2.Vip" mapper="com.ngdata.hbaseindexer.morphline.MorphlineResultToSolrMapper">
<field name="firstname" value="info:firstname"/>
<field name="age" value="info:age" type="int"/>
</indexer>
3. 删除索引
./hbase-indexer delete-indexer --name 'indexer_vip'
- 参数说明
- delete-indexer 动作命令
- indexer_vip 要被删除的索引名称
4. 查看所有索引清单
./hbase-indexer list-indexers -dump
- 参数说明
- list-indexers 动作命令
- -dump 添加此参数可以显示索引的配置详情