You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#encoding=utf-8
|
|
import json
|
|
|
|
from isoc.utils.esUtil import EsUtil
|
|
|
|
|
|
def createIndex():
|
|
map={
|
|
"field1": "text",
|
|
"field2": "text"
|
|
}
|
|
es_util_instance = EsUtil()
|
|
res = es_util_instance.create_index_simple("bsa_traffic*",3,scroll_search)
|
|
return res
|
|
|
|
res = createIndex()
|
|
|
|
print(res) |