IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 大数据 -> SpringBoot集成ES简单使用 -> 正文阅读

[大数据]SpringBoot集成ES简单使用

SpringBoot 集成 ES 使用API(一)

创建Client客户端

@Configuration
public class ESConfig {

    @Bean
    public RestHighLevelClient restHighLevelClient(){
        RestHighLevelClient client = new RestHighLevelClient(
                RestClient.builder(
                        new HttpHost("127.0.0.1", 9200, "http")
                )
        );
        return client;
    }
}

测试类

@SpringBootTest
class EsApiApplicationTests {

    @Autowired
    @Qualifier("restHighLevelClient")
    private RestHighLevelClient client;
}

索引API 使用

  1. 创建索引
	//创建索引 client.indices().create
    @Test
    void testCreatedIndex() throws IOException {
        //创建索引请求
        CreateIndexRequest request = new CreateIndexRequest("caw_index");
        //客户端执行请求 IndicesClient,请求获得响应
        CreateIndexResponse createIndexResponse = client.indices().create(request, RequestOptions.DEFAULT);
        System.out.println(createIndexResponse);
    }
    //输出
    //org.elasticsearch.client.indices.CreateIndexResponse@825209df
  1. 删除索引
	//删除索引 client.indices().delete
    @Test
    void textDeleteIndex() throws IOException {
        DeleteIndexRequest request = new DeleteIndexRequest("caw_index");
        AcknowledgedResponse delete = client.indices().delete(request, RequestOptions.DEFAULT);
        System.out.println(delete.isAcknowledged()); //true
    }
  1. 判断索引是否存在
	//判断索引是否存在 client.indices().exists
    @Test
    void textExistIndex() throws IOException {
        GetIndexRequest request = new GetIndexRequest("caw_index");
        boolean exists = client.indices().exists(request, RequestOptions.DEFAULT);
        System.out.println(exists);
    }

文档API 使用

  1. 创建文档
 	//创建文档 client.index
 	@Test
    void creteDocument() throws IOException {
        User user = new User("李四", 34);
        //创建请求 请求到具体的索引
        IndexRequest request = new IndexRequest("caw_index");
        //规则 put /caw_index/_doc/1 
        //设置文档id,不指定ES会随机产生
        request.id("3");
        request.timeout(TimeValue.timeValueSeconds(1));
        request.timeout("1s");

        //将User数据放入请求 json
        request.source(JSON.toJSONString(user), XContentType.JSON);

        //客户端发送请求,获取响应结果
        IndexResponse response = client.index(request, RequestOptions.DEFAULT);

        System.out.println(response.toString());
        //IndexResponse[index=caw_index,type=_doc,id=id,version=1,result=created,seqNo=0,primaryTerm=1,shards={"total":2,"successful":1,"failed":0}]
        System.out.println(response.status());
        //CREATED
    }
  1. 查看文档
	//查看文档 client.get
    @Test
    void testGetDocument() throws IOException {
    	//查看 索引caw_index下id为1 的文档
        GetRequest request = new GetRequest("caw_index","1");
        GetResponse response = client.get(request, RequestOptions.DEFAULT);
        //打印文档内容  {"age":34,"name":"李四"}
        System.out.println(response.getSourceAsString());
        //返回全部内容 和命令行一样
        //{"_index":"caw_index","_type":"_doc","_id":"1","_version":1,"_seq_no":6,"_primary_term":1,"found":true,"_source":{"age":22,"name":"常奥文"}}
        System.out.println(response);
    }
  1. 判断文档是否存在
	//判断文档是否存在 client.exists
    @Test
    void testIsExists() throws IOException {
        GetRequest request = new GetRequest("caw_index", "1");
        request.fetchSourceContext(new FetchSourceContext(false));

        boolean exists = client.exists(request, RequestOptions.DEFAULT);
        System.out.println(exists);
    }
  1. 修改文档
	//修改文档 client.update
    @Test
    void testUpdateDocument() throws IOException {
        UpdateRequest request = new UpdateRequest("caw_index", "1");
        User user = new User("李四学java",23);
        //将修改的内容放入请求体 也就是 doc中
        request.doc(JSON.toJSONString(user), XContentType.JSON);
        UpdateResponse response = client.update(request, RequestOptions.DEFAULT);
        System.out.println(response.status());
    }
  1. 删除文档
 	//删除文档 client.delete
    @Test
    void testDeleteDocument() throws IOException {
        DeleteRequest request = new DeleteRequest("caw_index", "id");
        request.timeout("1s");
        DeleteResponse response = client.delete(request, RequestOptions.DEFAULT);
        System.out.println(response.status());
    }
  1. 批量操作文档
	//批量添加   BulkRequest  client.bulk
    @Test
    void testBulkDocument() throws IOException {
        BulkRequest request = new BulkRequest();
        request.timeout("10s");

        ArrayList<User> list = new ArrayList<>();
        list.add(new User("请求", 11));
        list.add(new User("亲戚", 13));
        list.add(new User("融入", 10));
        list.add(new User("一哦", 23));
        list.add(new User("一样", 45));
        list.add(new User("看看", 67));
        list.add(new User("到底", 3));

        for (int i = 0; i < list.size(); i++) {
            request.add(new IndexRequest("caw_index")
                    .id(""+i)
                    .source(JSON.toJSONString(list.get(i)), XContentType.JSON));
        }
        client.bulk(request, RequestOptions.DEFAULT);
    }

在这里插入图片描述
BulkRequest可执行多种操作 具体New相对应的请求

  1. 文档集合查询
	//集合查询 SearchRequest   client.search
    @Test
    void testSearchDocument() throws IOException {
        SearchRequest request = new SearchRequest("caw_index");
        //构建搜索条件
        SearchSourceBuilder builder = new SearchSourceBuilder();

        //查询条件 QueryBuilders
        //精准搜索  termQuery
        //所有搜索   matchAllQuery

		//精准查询  name 包含 “一”
//        TermQueryBuilder query = QueryBuilders.termQuery("name", "一");
		//查询所有
        MatchAllQueryBuilder allQuery = QueryBuilders.matchAllQuery();
        builder.query(allQuery);
        builder.from(0);		//分页 pageIndex  有默认值
        builder.size(5);		//分页 pageSize
        builder.sort("age", SortOrder.DESC);	//排序
        builder.timeout(new TimeValue(60, TimeUnit.SECONDS));
	
		//将搜索条件 放入请求中
        request.source(builder);
        SearchResponse search = client.search(request, RequestOptions.DEFAULT);
        System.out.println(JSON.toJSONString(search.getHits()));
        System.out.println("=========================");
        ArrayList<Object> list = new ArrayList<>();
        for (SearchHit hit: search.getHits().getHits()) {
            list.add(hit.getSourceAsString());
        }
        System.out.println(list);
    }
  大数据 最新文章
实现Kafka至少消费一次
亚马逊云科技:还在苦于ETL?Zero ETL的时代
初探MapReduce
【SpringBoot框架篇】32.基于注解+redis实现
Elasticsearch:如何减少 Elasticsearch 集
Go redis操作
Redis面试题
专题五 Redis高并发场景
基于GBase8s和Calcite的多数据源查询
Redis——底层数据结构原理
上一篇文章      下一篇文章      查看所有文章
加:2022-04-15 00:05:37  更:2022-04-15 00:09:32 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 3:13:59-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码