欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

java获取上个月的月份(java获取当前时间的上个月)

程序员文章站 2022-06-10 15:11:47
一、文档批量操作这里多个文档是指,批量操作多个文档,搜索查询文档将在之后的章节讲解1.批量获取文档数据批量获取文档数据是通过_mget的api来实现的(1)在url中不指定index和type请求方式...

一、文档批量操作

这里多个文档是指,批量操作多个文档,搜索查询文档将在之后的章节讲解

1.批量获取文档数据

批量获取文档数据是通过_mget的api来实现的

(1)在url中不指定index和type

  • 请求方式:get
  • 请求地址:_mget
  • 功能说明 : 可以通过id批量获取不同index和type的数据

请求参数:

  • docs : 文档数组参数
  • _index : 指定index
  • _type : 指定type
  • _id : 指定id
  • _source : 指定要查询的字段
1 get _mget2 {3 “docs”: [4 {5 “_index”: “es_db”,6 “_type”: “_doc”,7 “_id”: 18 },9 {10 “_index”: “es_db”,11 “_type”: “_doc”,12 “_id”: 213 }14 ]15 }

响应结果如下:

1 {2 “docs” : [3 {4 “_index” : “es_db”,5 “_type” : “_doc”,6 “_id” : “1”,7 “_version” : 3,8 “_seq_no” : 7,9 “_primary_term” : 1,10 “found” : true,11 “_source” : {12 “name” : “张三666”,13 “sex” : 1,14 “age” : 25,15 “address” : “广州天河公园”,16 “remark” : “java developer”17 }18 },19 {20 “_index” : “es_db”,21 “_type” : “_doc”,22 “_id” : “2”,23 “_version” : 1,24 “_seq_no” : 1,25 “_primary_term” : 1,26 “found” : true,27 “_source” : {28 “name” : “李四”,29 “sex” : 1,30 “age” : 28,31 “address” : “广州荔湾大厦”,32 “remark” : “java assistant”33 }34 }35 ]36 }

(2)在url中指定index

  • 请求方式:get
  • 请求地址:/{{indexname}}/_mget
  • 功能说明 : 可以通过id批量获取不同index和type的数据请求参数:

docs : 文档数组参数

  • _index : 指定index
  • _type : 指定type
  • _id : 指定id
  • _source : 指定要查询的字段
1 get /user/_mget2 {3 “docs”: [4 {5 “_type”:”_doc”,6 “_id”: 37 },8 {9 “_type”:”_doc”,10 “_id”: 411 }12 ]13 }

(3)在url中指定index和type

  • 请求方式:get
  • 请求地址:/{{indexname}}/{{typename}}/_mget
  • 功能说明 : 可以通过id批量获取不同index和type的数据

请求参数:

  • docs : 文档数组参数
  • _index : 指定index
  • _type : 指定type
  • _id : 指定id
  • _source : 指定要查询的字段
1 get /es_db/_doc/_mget2 {3 “docs”: [4 {5 “_id”: 16 },7 {8 “_id”: 29 }10 ]11 }

2.批量操作文档数据

批量对文档进行写操作是通过_bulk的api来实现的

  • 请求方式:post
  • 请求地址:_bulk
  • 请求参数:通过_bulk操作文档,一般至少有两行参数(或偶数行参数)
  • 第一行参数为指定操作的类型及操作的对象

(index,type和id)

  • 第二行参数才是操作的数据

参数类似于:

1 {“actionname”:{“_index”:”indexname”, “_type”:”typename”,”_id”:”id”}}2 {“field1″:”value1”, “field2″:”value2”}
  • actionname:表示操作类型,主要有create,index,delete和update

(1)批量创建文档create

1 post _bulk2 {“create”:{“_index”:”article”, “_type”:”_doc”, “_id”:3}}3 {“id”:3,”title”:”老师1″,”content”:”老师666″,”tags”:[“java”, “面向对象”],”create_time”:155402530}4 {“create”:{“_index”:”article”, “_type”:”_doc”, “_id”:4}}5 {“id”:4,”title”:”老师2″,”content”:”老师nb”,”tags”:[“java”, “面向对象”],”create_time”:15542530}

(2)普通创建或全量替换index

1 post _bulk2 {“index”:{“_index”:”article”, “_type”:”_doc”, “_id”:3}}3 {“id”:3,”title”:”老师(一)”,”content”:”老师666″,”tags”:[“java”, “面向对象”],”create_time”:1552530}4 {“index”:{“_index”:”article”, “_type”:”_doc”, “_id”:4}}5 {“id”:4,”title”:”老师(二)”,”content”:”老师nb”,”tags”:[“java”, “面向对象”],”create_time”:1552530}
  • 如果原文档不存在,则是创建
  • 如果原文档存在,则是替换(全量修改原文档)

(3)批量删除delete

1 post _bulk2 {“delete”:{“_index”:”article”, “_type”:”_doc”, “_id”:3}}3 {“delete”:{“_index”:”article”, “_type”:”_doc”, “_id”:4}}

(4)批量修改update

1 post _bulk2 {“update”:{“_index”:”article”, “_type”:”_doc”, “_id”:3}}3 {“doc”:{“title”:”es大法必修内功”}}4 {“update”:{“_index”:”article”, “_type”:”_doc”, “_id”:4}}5 {“doc”:{“create_time”:15508}}