Skip to main content

Elasticsearch integration for OneGov Cloud

Project description

Run the Tests

Install tox and run it:

pip install tox
tox

Limit the tests to a specific python version:

tox -e py27

Conventions

Onegov Search follows PEP8 as close as possible. To test for it run:

tox -e pep8

Onegov Search uses Semantic Versioning

Build Status

Build Status

Coverage

Project Coverage

Latests PyPI Release

Latest PyPI Release

License

onegov.search is released under GPLv2

Changelog

1.6.2 (2019-01-14)

  • Improves autocomplete search results. [href]

1.6.1 (2018-09-27)

  • Adds the ability to stop the ORM event processing temporarily. [href]

  • Updates elasticsearch release. [href]

1.6.0 (2018-06-11)

  • Adds a date to each document to support decaying date search. [href]

1.5.1 (2018-06-01)

  • Drastically reduces the number of shards used. [href]

1.5.0 (2018-05-24)

  • Uses elasticesarch/elasticsearch-dsl 6.x releases (backwards compatible). [href]

1.4.2 (2018-04-26)

  • Fixes language changes resulting in duplicated documents in the search index. [href]

1.4.1 (2018-04-26)

  • Uses a higher timeout during reindex operations. [href]

1.4.0 (2018-04-10)

  • Greatly improves reindex performance (2x - 10x faster). [href]

1.3.2 (2018-03-16)

  • Fixes transport catching not working right. [href]

1.3.1 (2018-03-16)

  • Catches more connection related errors. [href]

  • Fixes verify_cert=False option being ignored. [href]

1.3.0 (2018-03-09)

  • Improves the handling of elasticsearch outages.

    Now, whenver elasticsearch is offline, a SearchOfflineError is raised. During subsequent method calls to the elasticsearch client reconnects are only attempted after increasingly longer timeouts (up to 5 minutes).

    This ensures that an elasticsearch outage doesn’t slow down the rest of the application as it attempts to reconnect to the server. [href]

1.2.4 (2017-12-29)

  • Slightly improves reindex performance. [href]

  • Requires Python 3.6. [href]

1.2.3 (2017-12-22)

  • Uses less memory during reindexing. [href]

  • Switches to onegov core’s custom json module. [href]

1.2.2 (2017-11-14)

  • Specifically excludes the broken elasticsearch 5.5.1 release. [href]

1.2.1 (2017-10-10)

  • Adds the ability to reindex from code. [href]

1.2.0 (2017-09-26)

  • Adds automatic language detection for localisable content. [href]

1.1.1 (2017-07-06)

  • Switch onegov.testing to onegov_testing. [href]

1.1.0 (2017-06-22)

  • Removes Elasticsearch 2.x string to keyword,text translation. [href]

1.0.1 (2017-05-02)

  • Adds a helper function to retrieve the fields registered by the mappings. [href]

1.0.0 (2017-03-28)

  • Drops support for Elasticsearch 2.x and adds support for Elasticsearch 5.x. [href]

0.6.4 (2016-09-21)

  • Adds the ability to define which request gets access to private searches. [href]

  • Moves some code to onegov.core. [href]

0.6.3 (2016-05-30)

  • Adds compatibility with onegov.core 0.21.0. [href]

0.6.2 (2016-04-29)

  • Fixes reindex command not working with Morepath 0.14. [href]

0.6.1 (2016-04-06)

  • Adds compatibility with Morepath 0.13. [href]

0.6.0 (2016-03-22)

  • Uses a simpler analyzer for autocompletion.

    This change leads to the autocompletion working more literally. That is if we enter ‘A1’, we will find ‘A1’ and ‘A11’ but not ‘A’. Before, all numbers were stripped from the autocompletion which is not what we want because we use autocompletion quite lierally (search for FRM-1234-5678 for example). [href]

0.5.0 (2016-02-22)

  • Migrates to latest elasticsearch-dsl release. [href]

0.4.0 (2016-02-03)

  • Adds support for query explanations. [href]

0.3.2 (2016-02-02)

  • Fixes connection pool exhaustion occuring when reindexing many tennants. [href]

0.3.1 (2016-01-26)

  • Keep elasticsearch-dsl below 0.0.9 until there’s a release that supports elasticsearch 2.0.0. [href]

0.3.0 (2016-01-11)

  • Require elasticsearch 2.1.1 or newer. [href]

0.2.0 (2016-01-11)

  • Pin elasticsearch to 2.1 for now.

    With 2.2 it’s no longer possible to support elasticsearch 1.0 and 2.0 with 2.x. So we have to support either or.

    Currently we support Elasticsearch 1.x. Soon we’ll upgrade to 2.x and use that exclusively.

    This release is therefore the last release that supports both 1.x and 2.x of elasticsearch. [href]

0.1.2 (2015-12-22)

  • Lowers the connection timeout to 5 seconds and uses sniff_on_connection_fail. [href]

  • Adds compatibility with Elasticsearch 2.1. [href]

  • Fixes a number of Elasticsearch 2.0 specific bugs. [href]

0.1.1 (2015-10-15)

  • Adds compatibility with Elasticserach 2.0. [href]

  • Use ‘de_CH’ translation instead of ‘de’. [href]

0.1.0 (2015-10-12)

  • Fixes the delete process failing under certain polymorphic configurations. [href]

  • Removes Python 2.x support. [href]

0.0.7 (2015-09-29)

  • Catch all significant errors during indexing. [href]

0.0.6 (2015-09-28)

  • Adds the ability to define multiple suggestion inputs per document. [href]

  • Adds a switch to disable elasticsearch integration. [href]

0.0.5 (2015-09-25)

  • The certificates of elasticsearch hosts are now verified by default. [href]

  • Adds completion suggestions for search-as-you-type. [href]

  • Fixes reindex not properly working with onegov.town. [href]

0.0.4 (2015-09-22)

  • Fixes localized mapping not working correctly in certain cases. [href]

  • Stops the reindex command to create unwanted indices. [href]

  • Exclude all _source fields by default. [href]

  • Adds support for polymorphic SQLAlchemy models. [href]

  • ORM Models now may use any name for their primary key attribute. [href]

0.0.3 (2015-09-18)

  • No longer require elasticsearch to run when configuring the application. [href]

0.0.2 (2015-09-18)

  • Adds the ability to reindex all elasticsearch records. [href]

  • Fixes a number of issues with the onegov.town integration. [href]

0.0.1 (2015-09-17)

  • Initial Release

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

onegov.search-1.6.2.tar.gz (27.8 kB view details)

Uploaded Source

Built Distribution

onegov.search-1.6.2-py3-none-any.whl (29.4 kB view details)

Uploaded Python 3

File details

Details for the file onegov.search-1.6.2.tar.gz.

File metadata

  • Download URL: onegov.search-1.6.2.tar.gz
  • Upload date:
  • Size: 27.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.29.1 CPython/3.6.3

File hashes

Hashes for onegov.search-1.6.2.tar.gz
Algorithm Hash digest
SHA256 4e91070c9362e78eb7c1f0bcc4396c14f3cac3054b1d91d9a021d131bda22112
MD5 f2b5fe9f959bc012eaea2eb430923bda
BLAKE2b-256 3a9e80e8d08195bdf8a6e70543ee5713b78fd6b7fb14452ad525987e7fae6043

See more details on using hashes here.

Provenance

File details

Details for the file onegov.search-1.6.2-py3-none-any.whl.

File metadata

  • Download URL: onegov.search-1.6.2-py3-none-any.whl
  • Upload date:
  • Size: 29.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.29.1 CPython/3.6.3

File hashes

Hashes for onegov.search-1.6.2-py3-none-any.whl
Algorithm Hash digest
SHA256 ad0c5b02fd0fd2f31f9218dadd09334ee41f86bafa6c68bfa9c3cc6b5ead5c42
MD5 1329e208c8d433f1b8117ff89e27b63b
BLAKE2b-256 3fcf0b461fd8985f6be7cfdd470ac42edc5163b308713de7828e9adacc77c680

See more details on using hashes here.

Provenance

Supported by

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