zoukankan      html  css  js  c++  java
  • ElasticSearch IndexApi

    如果选择JSON字符串进行插入,要先将字符串反转义,不然会提示错误请求导致无法插入数据
    /**
     * @author wjc
     * @description
     * @date 2020/5/9
     */
    @Component
    public class IndexApi {
    
        @Autowired
        private RestHighLevelClient highLevelClient;
        @Autowired
        @Qualifier("indexListener")
        private ActionListener listener;
    
        //添加索引
        //json格式
        public void source(String index, String id, String jsonString, String routing, TimeValue timeValue, WriteRequest.RefreshPolicy policy,
                           Integer version, VersionType versionType, String opType, String pipeline){
            IndexRequest request = new IndexRequest("posts");
            request.id("1");
            jsonString = "{" +
                    ""user":"kimchy"," +
                    ""postDate":"2013-01-30"," +
                    ""message":"trying out Elasticsearch1"" +
                    "}";
    
            request.source(jsonString, XContentType.JSON);
            //设置路由
            if(StringUtils.isNotBlank(routing)){
                request.routing("routing");
            }
    //        //设置超时
            if(timeValue != null){
                request.timeout(timeValue);
    //            request.timeout(TimeValue.timeValueSeconds(1));
    //        request.timeout("1s");
            }
    //
    //        //将策略刷新为WriteRequest。RefreshPolicy实例
            if(policy != null){
                request.setRefreshPolicy(policy);
    //            request.setRefreshPolicy(WriteRequest.RefreshPolicy.WAIT_UNTIL);
    //        //将策略刷新为字符串
    //        request.setRefreshPolicy("wait_for");
            }
    
            if(version != null){
                request.version(version);
            }
            if(versionType != null){
                request.versionType(VersionType.EXTERNAL);
            }
    //
    //        //作为DocWriteRequest提供的操作类型。OpType价值
    //        request.opType(DocWriteRequest.OpType.CREATE);
    //        //以字符串形式提供的操作类型:可以创建或索引(默认)
            if(StringUtils.isNotBlank(opType)){
                request.opType("create");
            }
    //
    //        //索引文档之前要执行的摄取管道的名称
            if(StringUtils.isNotBlank(pipeline)){
                request.setPipeline(pipeline);
            }
    
            //同步 需创建索引后执行后续代码
            try {
                highLevelClient.index(request, RequestOptions.DEFAULT);
            }catch (IOException e){
                e.printStackTrace();
            }catch (ElasticsearchException e){
                if (e.status() == RestStatus.CONFLICT) {
                    //引发的异常表明返回了版本冲突错误
                }
            }
            //异步方法不会阻塞并立即返回。一旦它完成了,ActionListener就会被调用回onResponse方法(如果执行成功的话),
            // 或者使用onFailure方法(如果执行失败的话)。失败场景和预期的异常与同步执行情况相同。
    //        highLevelClient.indexAsync(request, RequestOptions.DEFAULT, listener);
        }
    
        public void source(String index, String id, String jsonString){
            IndexRequest request = new IndexRequest(index);
            request.id(id);
            request.source(jsonString, XContentType.JSON);
            try {
                highLevelClient.index(request, RequestOptions.DEFAULT);
            }catch (IOException e){
                e.printStackTrace();
            }catch (ElasticsearchException e){
                if (e.status() == RestStatus.CONFLICT) {}
            }
        }
    
        //map
        public void source(String index, String id, Map<String, Object> jsonMap){
    //        jsonMap = new HashMap<>();
    //        jsonMap.put("user", "wjc");
    //        jsonMap.put("postDate", new Date());
    //        jsonMap.put("message", "trying out Elasticsearch2");
    
    //        IndexRequest request = new IndexRequest("posts").id("2").source(jsonMap);
            IndexRequest request = new IndexRequest(index).id(id).source(jsonMap);
            try {
                IndexResponse indexResponse = highLevelClient.index(request, RequestOptions.DEFAULT);
            }catch (IOException e){
                e.printStackTrace();
            }catch (ElasticsearchException e){
                if (e.status() == RestStatus.CONFLICT) {
                    //引发的异常表明返回了版本冲突错误
                }
            }
        }
    
        public void sourceForBuilder() throws IOException{
            XContentBuilder builder = XContentFactory.jsonBuilder();
            builder.startObject();
            {
                builder.field("user", "wjc");
                builder.timeField("postDate", new Date());
                builder.field("message", "trying out Elasticsearch3");
            }
            builder.endObject();
    
            IndexRequest request = new IndexRequest("posts").id("3").source(builder);
            IndexResponse indexResponse = highLevelClient.index(request, RequestOptions.DEFAULT);
        }
    
        public void source() throws IOException{
            IndexRequest request = new IndexRequest("posts")
                    .id("1")
                    .source("user", "kimchy",
                            "postDate", new Date(),
                            "message", "trying out Elasticsearch");
    
            IndexResponse indexResponse = highLevelClient.index(request, RequestOptions.DEFAULT);
        }
    }
    /**
     * @author wjc
     * @description
     * @date 2020/5/10
     */
    @Configuration
    public class ESIndexListener {
        @Bean("indexListener")
        public ActionListener listener(){
            ActionListener listener = new ActionListener<IndexResponse>() {
                @Override
                public void onResponse(IndexResponse indexResponse) {
                    System.out.println(indexResponse.status().getStatus());
                    System.out.println(indexResponse.getIndex());
    
                    String index = indexResponse.getIndex();
                    String id = indexResponse.getId();
                    if (indexResponse.getResult() == DocWriteResponse.Result.CREATED) {
                        //(如果需要处理)文档第一次创建的情况
                    } else if (indexResponse.getResult() == DocWriteResponse.Result.UPDATED) {
                        //(如果需要处理)文档已经被重写的情况
                    }
                    ReplicationResponse.ShardInfo shardInfo = indexResponse.getShardInfo();
                    if (shardInfo.getTotal() != shardInfo.getSuccessful()) {
                        //处理成功分片的数量少于总分片的情况
                    }
                    if (shardInfo.getFailed() > 0) {
                        for (ReplicationResponse.ShardInfo.Failure failure :
                                shardInfo.getFailures()) {
                            //处理潜在的故障
                            String reason = failure.reason();
                        }
                    }
                }
    
                @Override
                public void onFailure(Exception e) {
                    e.printStackTrace();
                }
            };
            return listener;
        }
    }

    Service

    @Service
    public class ElasticSearchService {
    
        @Autowired
        private IndexApi indexApi;
    
        @SuppressWarnings("unchecked")
        public void source(String index, String id, Object object){
            if(object == null){
                return;
            }else{
                if(object instanceof String){
                    indexApi.source(index, id, object.toString());
                }else if (object instanceof Map){
                    indexApi.source(index, id, (HashMap) object);
                }
            }
        }
        
    }

    Controller

    @RestController
    public class ElasticSearchController {
        @Autowired
        private ElasticSearchService elasticSearchService;
    
        @PostMapping("/es/index/source")
        public String source(@RequestBody JSONObject jsonObject){
            String index = jsonObject.getString("index");
            String id = jsonObject.getString("id");
            JSONObject source = jsonObject.getJSONObject("source");
            Map<String, String> map = JSON.parseObject(source.toJSONString(), HashMap.class);
            elasticSearchService.source(index, id, map);
            return "success";
        }
    
        
    }

     请求示例

  • 相关阅读:
    flex
    导航守卫 -vue
    H5 History
    JSX -react
    插槽slot -vue
    js 模拟鼠标绘制方块
    js 模拟滚动条
    js 实现简易留言板功能
    js 实现端口列表话
    js 为数组编写该方法;indexOf
  • 原文地址:https://www.cnblogs.com/gqymy/p/12891294.html
Copyright © 2011-2022 走看看