python将ElasticSearch索引数据读入pandas dataframe实战

Posted Data+Science+Insight

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python将ElasticSearch索引数据读入pandas dataframe实战相关的知识,希望对你有一定的参考价值。

python将ElasticSearch索引数据读入pandas dataframe实战

# 导入基础包和库

import pandas as pd

pd.set_option(\'display.max_columns\', None)
pd.set_option(\'display.max_rows\', None)
pd.set_option(\'display.max_colwidth\',100)

from pandasticsearch import Select
from elasticsearch.helpers import bulk
import logging
from elasticsearch import Elasticsearch, RequestsHttpConnection,ElasticsearchException

# 配置日志系统

LOGGER = logging.getLogger()
LOGGER.setLevel(logging.INFO)

# 笔者使用的AWS云服务中的elasticsearch

# 创建ES client

access_key = \'you-key\'
secret_key = \'you-key\'
# host = \'search-mhb-observatio

以上是关于python将ElasticSearch索引数据读入pandas dataframe实战的主要内容,如果未能解决你的问题,请参考以下文章

elasticsearch 锁

elasticsearch index 之 engine

Elasticsearch:如何把一个索引变为只读

Elasticsearch:如何把一个索引变为只读

Elasticsearch技术解析与实战基础概念及环境搭建

python将pandas dataframe内容写入ElasticSearch实战