elasticsearch 5.x 給定時間范圍查詢數據


curl -XPOST 'localhost:9200/_search?pretty' -d '{
  "size": 100,  # 返回100條樣例結果
  "query": {
    "range": {
      "date_idate": {
        "lt": "2018-06-05T00:00:00",    # 最大日期
        "gte": "2018-05-04T00:00:00"    #最小日期
      }
    }
  }}'

結果示例:

{
  "took" : 29,    # 查詢總耗時
  "timed_out" : false,
  "_shards" : {
    "total" : 145,    # 總共查詢到多少分片
    "successful" : 145,
    "failed" : 0
  },
  "hits" : {
    "total" : 5536,    # 給定時間范圍內命中的數據條數
    "max_score" : 1.0,
    "hits" : [    # 結果數據示例
      {
        "_index" : "ik_sl_v1_201607",
        "_type" : "taonei",
        "_id" : "0_200226979717",
        "_score" : 1.0,
        "_source" : {
          "text_title" : "SUGARMAN T恤",
          "kw_province" : null,
          "date_originalPublishedAt" : null,
          "kw_userAttr" : "時尚搭配師",
          "kw_supplier" : "admaster",
          "kw_gender" : "未知",
          "kw_source" : "taobao.com",
          "double_sentimentNeutral" : 0.4345,
          "text_content" : "好在哪里這個來自香港的潮牌,上學的時候已經在穿了,后來和老公的情侶裝也會選擇,現在有個寶寶又買了親子裝,一家三口走上街頭,回頭率不要不要的,可愛的大黃鴨,寶寶每次穿都會嘎嘎的學鴨子叫,真心推薦品牌故事Sugarman堅持香港時尚特色,以個性設計、大膽用色、經典印花為流行要素,着重體現潮人風范;sugarman兼有兒童款與成人款,親子裝、情侶裝的獨到設計,完美再現愛與分享的品牌文化主旋律。",
          "kw_nickName" : "愛搭配小助手",
          "text_channel" : "aiguangjie",
          "date_publishedAt" : "2016-07-17T22:35:00",
          "kw_userUrl" : "https://daren.taobao.com/account_page/daren_home.htm?wh_weex=true&_wx_appbar=true&user_id=42096364&content_id=200226979717&source=aiguangjie",
          "kw_thirdChannel" : null,
          "long_commentCount" : 0,
          "text_thirdChannel" : null,
          "kw_city" : null,
          "double_sentimentNegative" : 0.1085,
          "date_udate" : "2018-06-04T14:33:55",
          "kw_url" : "https://market.m.taobao.com/apps/market/content/index.html?wh_weex=true&data_prefetch=true&contentId=200226979717&source=aiguangjie&wx_navbar_transparent=true&wx_navbar_hidden=false&params=%7B%22csid%22%3A%229e1f87d33f37993f1503ac2c1c4f63cb%22%7D",
          "long_viewCount" : 193822,
          "long_followerCount" : 14961,
          "kw_commonSentiment" : "正面",
          "nested_goods" : [ ],
          "text_skill" : "",
          "date_idate" : "2018-06-04T14:33:55",
          "long_floor" : 0,
          "date_published" : "2018-05-28T16:36:23",
          "double_sentimentPositive" : 0.457,
          "kw_images" : [
            "https://gw3.alicdn.com/tfscom/tuitui/mt/TB11w3eOVXXXXXeXpXXXXXXXXXX-48-18.png",
            "https://gw3.alicdn.com/tfscom/tuitui/mt/TB11w3eOVXXXXXeXpXXXXXXXXXX-48-18.png",
            "https://gw.alicdn.com/tps/TB10SRRQVXXXXb5XVXXXXXXXXXX"
          ],
          "kw_channel" : "aiguangjie",
          "kw_hashCode" : "2a9c6c63e106e499aa07ee5d7bebdcc2",
          "text_channalDescription" : null,
          "kw_projectID" : "0",
          "long_likeCount" : 0,
          "text_originalContent" : null,
          "text_nickName" : "愛搭配小助手",
          "kw_originalUrl" : null,
          "kw_secondChannel" : null,
          "bool_isComment" : false,
          "long_uid" : 42096364,
          "text_secondChannel" : null
        }
      }
    ]
  }
}

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM