from elasticsearch import Elasticsearch from elasticsearch import helpers import time es = Elasticsearch() individialVideoDocs = [] docs = [] subscriberUserID = ["kishlay" , "raj"] allVideosFullText = { "_index": "pipa", "_type": "video", # "_id": videoId, "_source": { "SusbcriberUserId": subscriberUserID, "script": "alltext"} } docs.append(allVideosFullText) k = helpers.bulk(es, docs) arr = []; time.sleep(2) res = es.search(index="pipa", doc_type="video", body={"query": {"match": {"script": "alltext"}}}) print("%d documents found" % res['hits']['total']) # print(res)es.indices.refresh(index="pipa") for doc in res['hits']['hits']: # print("%s) %s" % (doc['_id'], doc['_source']['SusbcriberUserId'])) arr = doc['_source']['SusbcriberUserId'] print(arr) arr = ["kika","mina"] idResult = doc['_id'] resOfApp = es.update(index='pipa', doc_type='video', id=idResult, body={"doc":{"SusbcriberUserId": arr}}) print(resOfApp) # es.update(index='pipa',doc_type='video',id=res.meta.id, # body={ "SusbcriberUserId": subscriberUserID})
Location for the config yml file /home/example/.ngrok2/ngrok.yml content of config file authtoken: 4nq9771bPxe8ctg7LKr_2ClH7Y15Zqe4bWLWF9p tunnels: app-foo: addr: 80 proto: http host_header: app-foo.dev app-bar: addr: 80 proto: http host_header: app-bar.dev how to start ngrok with considering the config file: ngrok start --all
Comments
Post a Comment