Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/techjacker/elasticsearchquery

Runs queries against AWS elasticsearch deployments
https://github.com/techjacker/elasticsearchquery

aws aws-elasticsearch elasticsearch

Last synced: about 3 hours ago
JSON representation

Runs queries against AWS elasticsearch deployments

Awesome Lists containing this project

README

        

[![Build Status](https://travis-ci.org/techjacker/elasticsearchquery.svg?branch=master)](https://travis-ci.org/techjacker/elasticsearchquery)

# AWS Elasticsearch Query

This library will run your static queries against elasticsearch deployments on AWS. Supply the endpoint plus the local filepath to your JSON file containing the query payload.

Good for lambda functions setting up mappings for AWS elasticsearch deployments.

-----------------------------------------------------------

## Example Usage

### Command Line

#### 1. Set required environment variables
```Shell
# .env
export ES_ENDPOINT=https://xxx.xxx.es.amazonaws.com
export ES_REGION=eu-west-1
```

```Shell
$ source .env
```

#### 2. Create JSON file with your Elasticsearch query to be run
```Shell
# my_es_query.json
{
"query": {
"match": {
}
}
}
```

#### 3. Run your query
It will automatically pick up your AWS credentials from your shell's environment.
```Shell
$ elasticsearchquery
$ elasticsearchquery places my_es_query.json
```

### Programmatic API

```
from elasticsearchquery import ElasticSearchQuery

esQuery = ElasticSearchQuery(
es_endpoint='https://xxx.xxx.es.amazonaws.com',
index_name='my_index',
query_file='path_to_query.json',
region='eu-west-1',
)
esQuery.run()
```
-----------------------------------------------------------
## Unit Tests

#### 1. Set Environment
Make a virtual environment and intall the dependencies.
```
$ make env
$ source env/bin/activate
$ make deps
```

#### 2. Run Unit Tests
```
$ make test
```