Skip to main content

Elasticsearch utils for the curator core project

Project description

Elasticsearch utils for the curator core project.

Quick start

1. Add “core_elasticsearch_app” to your INSTALLED_APPS setting

INSTALLED_APPS = [
  ...
  'core_elasticsearch_app',
]

The package should be placed above core_explore_keyword_app in the INSTALLED_APPS to enable autocomplete powered by elasticsearch.

2. Include the core_elasticsearch_app URLconf in your project urls.py

url(r'^elasticsearch/', include('core_elasticsearch_app.urls')),

3. Configure what should be indexed in Elasticsearch

It is recommended to configure the mapping between the CDCS templates and the Elasticsearch indices before starting to insert data, so that data can be indexed as soon as they are published in the CDCS. For that, set the following setting:

ELASTICSEARCH_AUTO_INDEX = True

Then, configure the mapping between the XSD templates and the Elasticsearch indices. Documents stored in Elasticsearch have a common structure. They are composed of a data_id, a title and a description field. A mapping can be defined to tell where in the XML data the values for the title and for the description of a resource can be found. Below is an example to set this mapping via REST, for a given template:

import requests
payload = {
    "template": "5f43ba192b8fd5c092e30e62",
    "title_path": "Resource/identity/title",
    "description_paths": ["Resource/content/description", "Resource/content/subject"],
}

requests.post(
    SERVER_URI + "/elaticsearch/rest/elasticsearch_template/", data=payload, auth=(USER, PASSWORD)
)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

core_elasticsearch_app-1.0.0a1.tar.gz (14.0 kB view details)

Uploaded Source

File details

Details for the file core_elasticsearch_app-1.0.0a1.tar.gz.

File metadata

  • Download URL: core_elasticsearch_app-1.0.0a1.tar.gz
  • Upload date:
  • Size: 14.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.41.1 CPython/3.6.8

File hashes

Hashes for core_elasticsearch_app-1.0.0a1.tar.gz
Algorithm Hash digest
SHA256 a6070d27b9a0e955acd171d8b1a2c33ae4fdc936bdc0f2cf0496859a4ba15192
MD5 ca8176966ff8fff0481cb3f11264c69e
BLAKE2b-256 4d0c3e6b4e730f663e07b442cb1df2d8fc516a5ee46eb40999d162aea44e1e76

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page