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实战的主要内容,如果未能解决你的问题,请参考以下文章