search.integration ================== .. py:module:: search.integration Classes ------- .. autoapisummary:: search.integration.TolerantTransport search.integration.ElasticsearchApp Functions --------- .. autoapisummary:: search.integration.is_5xx_error search.integration.process_indexer_tween_factory Module Contents --------------- .. py:class:: TolerantTransport(*args: Any, **kwargs: Any) Bases: :py:obj:`elasticsearch.Transport` A transport class that is less eager to rejoin connections when there's a failure. Additionally logs all Elasticsearch transport errors in one location. .. py:attribute:: failure_time :type: datetime.datetime | None .. py:attribute:: failures :value: 0 .. py:property:: skip_request :type: bool Returns True if the request should be skipped. .. py:property:: seconds_remaining :type: int Returns the seconds remaining until the next try or 0. For each failure we wait an additional 10s (10s, then 20s, 30s, etc), up to a maximum of 300s (5 minutes). .. py:method:: perform_request(*args: Any, **kwargs: Any) -> Any Perform the actual request. Retrieve a connection from the connection pool, pass all the information to it's perform_request method and return the data. If an exception was raised, mark the connection as failed and retry (up to `max_retries` times). If the operation was successful and the connection used was previously marked as dead, mark it as live, resetting it's failure count. :arg method: HTTP method to use :arg url: absolute url (without host) to target :arg headers: dictionary of headers, will be handed over to the underlying :class:`~elasticsearch.Connection` class :arg params: dictionary of query parameters, will be handed over to the underlying :class:`~elasticsearch.Connection` class for serialization :arg body: body of the request, will be serialized using serializer and passed to the connection .. py:function:: is_5xx_error(error: elasticsearch.TransportError) -> bool .. py:class:: ElasticsearchApp Bases: :py:obj:`morepath.App` Provides elasticsearch integration for :class:`onegov.core.framework.Framework` based applications. The application must be connected to a database. Usage:: from onegov.core import Framework class MyApp(Framework, ESIntegration): pass .. py:attribute:: schema :type: str .. py:attribute:: es_client :type: elasticsearch.Elasticsearch | None .. py:method:: configure_search(**cfg: Any) -> None Configures the elasticsearch client, leaving it as a property on the class:: app.es_client The following configuration options are accepted: :enable_elasticsearch: If True, elasticsearch is enabled (defaults to True). :elasticsearch_hosts: A list of elasticsearch clusters, including username, password, protocol and port. For example: ``https://user:secret@localhost:443`` By default the client connects to the localhost on port 9200 (the default), and on port 19200 (the default of boxen). At least one host in the list of servers must be up at startup. :elasticsearch_may_queue_size: The maximum queue size reserved for documents to be indexed. This queue is filling up if the elasticsearch cluster cannot be reached. Once the queue is full, warnings are emitted. Defaults to 10'000 :elasticsearch_verify_certs: If true, the elasticsearch client verifies the certificates of the ssl connection. Defaults to true. Do not disable, unless you are in testing! :elasticsearch_languages: The languages supported by onegov.search. Defaults to: - en - de - fr .. py:method:: es_configure_client(usage: Literal['default', 'reindex'] = 'default') -> None .. py:method:: es_search(languages: collections.abc.Iterable[str] = '*', types: collections.abc.Iterable[str] = '*', include_private: bool = False, explain: bool = False) -> onegov.search.Search Returns a search scoped to the current application, with the given languages, types and private documents excluded by default. .. py:method:: es_indices(languages: collections.abc.Iterable[str] = '*', types: collections.abc.Iterable[str] = '*') -> str .. py:method:: es_search_by_request(request: onegov.core.request.CoreRequest, types: collections.abc.Iterable[str] = '*', explain: bool = False, limit_to_request_language: bool = False) -> onegov.search.Search Takes the current :class:`~onegov.core.request.CoreRequest` and returns an elastic search scoped to the current application, the requests language and it's access rights. .. py:method:: es_suggestions(query: str, languages: collections.abc.Iterable[str] = '*', types: collections.abc.Iterable[str] = '*', include_private: bool = False) -> tuple[str, Ellipsis] Returns suggestions for the given query. .. py:method:: es_suggestions_by_request(request: onegov.core.request.CoreRequest, query: str, types: collections.abc.Iterable[str] = '*', limit_to_request_language: bool = False) -> tuple[str, Ellipsis] Returns suggestions for the given query, scoped to the language and the login status of the given requst. .. py:method:: es_may_use_private_search(request: onegov.core.request.CoreRequest) -> bool Returns True if the given request is allowed to access private search results. By default every logged in user has access to those. This method may be overwritten if this is not desired. .. py:method:: get_searchable_models() -> list[type[onegov.search.mixins.Searchable]] .. py:method:: es_perform_reindex(fail: bool = False) -> None Re-indexes all content. This is a heavy operation and should be run with consideration. By default, all exceptions during reindex are silently ignored. .. py:function:: process_indexer_tween_factory(app: ElasticsearchApp, handler: collections.abc.Callable[[onegov.core.request.CoreRequest], webob.Response]) -> collections.abc.Callable[[onegov.core.request.CoreRequest], webob.Response]