我已将弹性搜索更新为5.x版!并尝试连接我的R Studio(带弹性包)。但它给了我一个错误In [1]: import dask.array as da
In [2]: x = da.ones((5, 5, 5), chunks=(5, 2, 2))
In [3]: x.map_blocks(lambda x: x[0, :, :], drop_axis=0)
Out[3]: dask.array<lambda, shape=(5, 5), dtype=float64, chunksize=(2, 2)>
。
我这样连接:
Error: 404 - no such index
它给了我:
elastic::connect(es_host = "http://kibana.smasell.com", es_port = "9200/es", es_user = "****", es_pwd = "****")
然后尝试搜索:
transport: http
host: kibana.smasell.com
port: 9200/es
path: NULL
username: *****
password: <secret>
errors: simple
headers (names): NULL
给了我
elastic::Search(index = "data_month_2016-01", size =1)
有人能帮助我吗?