使用java代码对zookeeper集群中的solrCloud数据进行CURD

Posted 剑来

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用java代码对zookeeper集群中的solrCloud数据进行CURD相关的知识,希望对你有一定的参考价值。

1 导入相关的pom依赖

<dependencies>
      <dependency>
          <groupId>org.apache.solr</groupId>
          <artifactId>solr-solrj</artifactId>
          <version>4.10.2</version>
      </dependency>
       <dependency>
          <groupId>commons-logging</groupId>
          <artifactId>commons-logging-api</artifactId>
          <version>1.1</version>
      </dependency>
  </dependencies>

2 编写代码,完成CURD

    //添加索引
    @Test
    public void createIndexToSolrCloud() throws IOException, SolrServerException {
        //创建连接solrCloud的服务对象
        //String zkHost: 需要传递zookeeper集群的地址
        String zkHost = "192.168.44.28:2181,192.168.44.29:2181,192.168.44.30:2181";
        CloudSolrServer solrServer = new CloudSolrServer(zkHost);

        //设置连接哪个solr的索引库
        solrServer.setDefaultCollection("collection2");
        //可选的参数
        //设置连接zookeeper的时间
        solrServer.setZkClientTimeout(5000);
        //设置获取和solr的连接的时间
        solrServer.setZkConnectTimeout(5000);

        //执行获取连接
        solrServer.connect();

        //添加索引操作
        SolrInputDocument document = new SolrInputDocument();
        document.addField("id", "1");
        document.addField("name", "hello solrCloud");
        solrServer.add(document);

        //执行提交
        solrServer.commit();
    }


    //删除索引
    @Test
    public void deleteIndex() throws IOException, SolrServerException {
        //创建连接solrCloud的服务对象
        //String zkHost: 需要传递zookeeper集群的地址
        String zkHost = "192.168.44.28:2181,192.168.44.29:2181,192.168.44.30:2181";
        CloudSolrServer solrServer = new CloudSolrServer(zkHost);
        //设置连接哪个solr的索引库
        solrServer.setDefaultCollection("collection2");
        //可选的参数
        //设置连接zookeeper的时间
        solrServer.setZkClientTimeout(5000);
        //设置获取和solr的连接的时间
        solrServer.setZkConnectTimeout(5000);
        //执行获取连接
        solrServer.connect();

        //删除索引
        solrServer.deleteById("1");

        //执行提交
        solrServer.commit();
    }

    //查询
    @Test
    public void queryIndex() throws SolrServerException {
        //创建连接solrCloud的服务对象
        //String zkHost: 需要传递zookeeper集群的地址
        String zkHost = "192.168.44.28:2181,192.168.44.29:2181,192.168.44.30:2181";
        CloudSolrServer solrServer = new CloudSolrServer(zkHost);
        //设置连接哪个solr的索引库
        solrServer.setDefaultCollection("collection2");
        //可选的参数
        //设置连接zookeeper的时间
        solrServer.setZkClientTimeout(5000);
        //设置获取和solr的连接的时间
        solrServer.setZkConnectTimeout(5000);
        //执行获取连接
        solrServer.connect();

        //添加查询操作
        SolrQuery query = new SolrQuery("*:*");
        QueryResponse response = solrServer.query(query);

        SolrDocumentList documents = response.getResults();
        for (SolrDocument document : documents) {
            Object id = document.get("id");
            Object name = document.get("name");
            System.out.println(id + "--" + name);
        }
    }

 

以上是关于使用java代码对zookeeper集群中的solrCloud数据进行CURD的主要内容,如果未能解决你的问题,请参考以下文章

Solr6.2.0 + zookeeper 集群配置

HBase连接数据库(集群)

zookeeper集群搭建

zookeeper集群搭建

ZooKeeper系列3.ZooKeeper源码环境搭建

Kafka 0.9+Zookeeper3.4.6集群搭建配置,新版Java Client的使用要点,高可用性测试,以及各种坑