欧美一级特黄大片做受成人-亚洲成人一区二区电影-激情熟女一区二区三区-日韩专区欧美专区国产专区

python中elasticsearch如何創(chuàng)建索引并寫入數(shù)據(jù)-創(chuàng)新互聯(lián)

這篇文章將為大家詳細(xì)講解有關(guān)python中elasticsearch如何創(chuàng)建索引并寫入數(shù)據(jù),小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

成都創(chuàng)新互聯(lián)專注于尼金平企業(yè)網(wǎng)站建設(shè),成都響應(yīng)式網(wǎng)站建設(shè)公司,電子商務(wù)商城網(wǎng)站建設(shè)。尼金平網(wǎng)站建設(shè)公司,為尼金平等地區(qū)提供建站服務(wù)。全流程按需搭建網(wǎng)站,專業(yè)設(shè)計(jì),全程項(xiàng)目跟蹤,成都創(chuàng)新互聯(lián)專業(yè)和態(tài)度為您提供的服務(wù)

python elasticsearch從創(chuàng)建索引到寫入數(shù)據(jù)

創(chuàng)建索引

from elasticsearch import Elasticsearch
es = Elasticsearch('192.168.1.1:9200')
mappings = {
      "mappings": {
        "type_doc_test": {              #type_doc_test為doc_type
          "properties": {
            "id": {
              "type": "long",
              "index": "false"
            },
            "serial": {
              "type": "keyword", # keyword不會(huì)進(jìn)行分詞,text會(huì)分詞
              "index": "false" # 不建索引
            },
            #tags可以存json格式,訪問(wèn)tags.content
            "tags": {
              "type": "object",
              "properties": {
                "content": {"type": "keyword", "index": True},
                "dominant_color_name": {"type": "keyword", "index": True},
                "skill": {"type": "keyword", "index": True},
              }
            },
            "hasTag": {
              "type": "long",
              "index": True
            },
            "status": {
              "type": "long",
              "index": True
            },
            "createTime": {
              "type": "date",
              "format": "yyyy-MM-dd HH:mm:ss||yyyy-MM-dd||epoch_millis"
            },
            "updateTime": {
              "type": "date",
              "format": "yyyy-MM-dd HH:mm:ss||yyyy-MM-dd||epoch_millis"
            }
          }
        }
      }
    }
res = es.indices.create(index = 'index_test',body =mappings)

通過(guò)以上代碼即可創(chuàng)建es索引

寫入一條數(shù)據(jù)

寫入數(shù)據(jù)需要根據(jù) 創(chuàng)建的es索引類型對(duì)應(yīng)的數(shù)據(jù)結(jié)構(gòu)寫入:

from elasticsearch import Elasticsearch
es = Elasticsearch('192.168.1.1:9200')
action ={
       "id": "1111122222",
       "serial":"版本",
       #以下tags.content是錯(cuò)誤的寫法
       #"tags.content" :"標(biāo)簽2",
       #"tags.dominant_color_name": "域名的顏色黃色",
       #正確的寫法如下:
       "tags":{"content":"標(biāo)簽3","dominant_color_name": "域名的顏色黃色"},
       #按照字典的格式寫入,如果用上面的那種寫法,會(huì)直接寫成一個(gè)tags.content字段。
       #而不是在tags中content添加數(shù)據(jù),這點(diǎn)需要注意
       "tags.skill":"分類信息",
       "hasTag":"123",
       "status":"11",
       "createTime" :"2018-2-2",
       "updateTime":"2018-2-3",
        }
es.index(index="index_test",doc_type="doc_type_test",body = action)

即可寫入一條數(shù)據(jù)

錯(cuò)誤的寫入

python中elasticsearch如何創(chuàng)建索引并寫入數(shù)據(jù)

正確的寫入

python中elasticsearch如何創(chuàng)建索引并寫入數(shù)據(jù)

寫入多條數(shù)據(jù)

from elasticsearch import Elasticsearch
from elasticsearch.helpers import bulk
es = Elasticsearch('192.168.1.1:9200')
ACTIONS = []
action1 ={
          "_index": "indes_test",
          "_type": "doc_type_test",
          "_id":"bSlegGUBmJ2C8ZCSC1R1",
          "_source":{
            "id": "1111122222",
            "serial":"版本",
            "tags.content" :"標(biāo)簽2",
            "tags.dominant_color_name": "域名的顏色黃色",
            "tags.skill":"分類信息",
            "hasTag":"123",
            "status":"11",
            "createTime" :"2018-2-2",
            "updateTime":"2018-2-3",
          }
        }
action2 ={
          "_index": "indes_test",
          "_type": "doc_type_test",
          "_id":"bSlegGUBmJ2C8ZCSC1R2",
          "_source":{
            "id": "1111122222",
            "serial":"版本",
            "tags.content" :"標(biāo)簽2",
            "tags.dominant_color_name": "域名的顏色黃色",
            "tags.skill":"分類信息",
            "hasTag":"123",
            "status":"11",
            "createTime" :"2018-2-2",
            "updateTime":"2018-2-3",
          }
        }
ACTIONS.append(action1)
ACTIONS.append(action2)
res,_ =bulk(es, ACTIONS, index="indes_test", raise_on_error=True)
print(res)

這個(gè)方式是手動(dòng)指定了id,如果把”_id”這個(gè)參數(shù)去掉即可自動(dòng)生成id數(shù)據(jù).
如下:

action2 ={
          "_index": "indes_test",
          "_type": "doc_type_test",
          "_source":{
            "id": "1111122222",
            "serial":"版本",
            "tags.content" :"標(biāo)簽2",
            "tags.dominant_color_name": "域名的顏色黃色",
            "tags.skill":"分類信息",
            "hasTag":"123",
            "status":"11",
            "createTime" :"2018-2-2",
            "updateTime":"2018-2-3",
          }
        }

刪除一條數(shù)據(jù)

from elasticsearch import Elasticsearch
es = Elasticsearch('192.168.1.1:9200')
res = es.delete(index="index_test",doc_type="doc_type_test", id ="bSlegGUBmJ2C8ZCSC1R1")
print(res)

直接替換id的即可刪除所需的id

查詢一條數(shù)據(jù)

from elasticsearch import Elasticsearch
es = Elasticsearch('192.168.1.1:9200')
res = es.get(index="index_test",doc_type="doc_type_test", id ="bSlegGUBmJ2C8ZCSC1R2")
print(res)

直接替換id的即可查詢所需的id

查詢所有數(shù)據(jù)

from elasticsearch import Elasticsearch

es = Elasticsearch('192.168.1.1:9200')

res = es.search(index="index_test",doc_type="doc_type_test")
print(res)
print(res['hits']['hits'])

通過(guò)['hits']參數(shù),可以解析出查詢數(shù)據(jù)的詳細(xì)內(nèi)容

根據(jù)關(guān)鍵詞查找

from elasticsearch import Elasticsearch
es = Elasticsearch('192.168.1.1:9200')
doc = {
      "query": {
        "match": {
          "_id": "aSlZgGUBmJ2C8ZCSPVRO"
        }
      }
    }
res = es.search(index="index_test",doc_type="doc_type_test",body=doc)
print(res)

關(guān)于“python中elasticsearch如何創(chuàng)建索引并寫入數(shù)據(jù)”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無(wú)理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場(chǎng)景需求。

當(dāng)前名稱:python中elasticsearch如何創(chuàng)建索引并寫入數(shù)據(jù)-創(chuàng)新互聯(lián)
文章轉(zhuǎn)載:http://aaarwkj.com/article18/jsedp.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供品牌網(wǎng)站建設(shè)App設(shè)計(jì)、虛擬主機(jī)、網(wǎng)站建設(shè)、建站公司、全網(wǎng)營(yíng)銷推廣

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

網(wǎng)站建設(shè)網(wǎng)站維護(hù)公司
欧美三级影院网上在线| 麻豆映画传媒在线播放| 色噜噜噜欧美人妻色综合| 亚洲国产精品va在线香蕉| 国产精品一品二品国精品| 日韩美女后入式在线视频| 日韩美少妇大胆一区二区| 日韩欧美亚洲国产另类| 久久久久久成人亚洲| 少妇高潮试看二十分钟| 日本黄色av一区二区| 欧美黄片视频免费观看| 国产精品免费观看在线国产| 国产中文字幕婷婷丁香| 亚洲一区精品二人人爽久久| 亚洲精品一区二区激情| 欧美日韩综合在线第一页| 久久精品中文字幕人妻| 亚洲成av人片又粗又长| 日韩欧美国产综合一区二区| 日韩国产一区二区三区精品| 亚洲一区二区三区蜜桃av| 国产a情人一区二区国产| 两性色午夜视频免费网站| 亚洲欧美成人高清在线观看| 又黄又爽区一区二区三| 国产日韩亚洲欧美在线| 丰满的熟妇女教师水多| 蜜臀午夜精品视频在线观看| 欧美一级特黄免费大片| 亚洲精品国产熟女av| 精品久久人人做爽综合| 日韩精品中文字幕欧美乱| 日韩午夜电影一区二区三区| 久久99国产精品成人免费| 国产精品国产三级丝袜| 饥渴少妇高潮露脸嗷嗷叫| 18岁未成年禁止观看视频| 中文字幕久久亚洲一区| 日本中文字幕免费一区| 国产精品国产精品三级在线观看|