boundlessgeo/geonode-elasticsearch

Name: geonode-elasticsearch

Owner: Boundless

Description: null

Created: 2016-04-25 17:38:42.0

Updated: 2018-04-30 20:51:51.0

Pushed: 2018-04-26 18:54:52.0

Homepage: null

Size: 37

Language: Python

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

geonode-elasticsearch

This application serves as an interface to elasticsearch in geonode via elasticsearch-dsl. Additionally provides some management commands for an easier upgrade from django-haystack.

To use, add following to settings:

asticsearch-dsl settings
asticsearch-dsl Backend Configuration. To enable,
t ES_SEARCH to True
n "python manage.py clear_haystack" (if upgrading from haystack)
n "python manage.py rebuild_index"
EARCH = strtobool(os.getenv('ES_SEARCH', 'False'))

S_SEARCH:
INSTALLED_APPS = (
    'elasticsearch_app',
) + INSTALLED_APPS
ES_URL = os.getenv('ES_URL', 'http://127.0.0.1:9200/')
# Disable Haystack
HAYSTACK_SEARCH = False
# Avoid permissions prefiltering
SKIP_PERMS_FILTER = False
# Update facet counts from Haystack
HAYSTACK_FACET_COUNTS = False

This app will provide a search api at /api//search/

search.py contains definitions for the elasticsearch indices as well as functions to convert django models into form to go into elasticsearch.

views.py contains all the logic for running the search and providing facets


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.