{% extends "layouts/base.html" %} {% block title %} ElasticSearch connection {% endblock %} {% block stylesheets %}{% endblock stylesheets %} {% block content %}
ElasticSearch Connection
ElasticSearch Settings
ElasticSearch : is a search engine based on the Lucene library. The reason for it is flexibility when it has been querying, data sets (Session, customer, Basket Data Sources) will be stored in ElasticSearch with 2 main indexes, Orders (Sessions) and Downloads (Customers data Source)
ElasticSearch Configurations
- Make sure the platform is eligible to query and update ElasticSearch
- It is possible to download and use the server locally. by default, the port is 9200.
{% if values['es_connection'] == '....' %} {% if values['es_connection_check'] != '....' %}
Can not connect to ElasticSearch. {{ values['es_connection_check'] }}
{% endif %}
- CLV Prediction process will use this folder for import results with '.csv' format.
- In order to import Charts of data in '.csv' format 'built_in_reports' folder will be created at this folder.
It is important to run ElasticSearch server with;
ES_JAVA_OPTS="-Xms4g -Xmx4g"
This will help us to improve the capacity of ElasticSearch that is able to use.
Optional - generated with host and port
{% endif %} {% if values['es_connection'] != '....' %}
connected ElasticSearch!
{{ values['es_connection']['tag'] }} - {{ 'http://'+ values['es_connection']['host'] + ':' +values['es_connection']['port'] }}
Temporary Folder Directory; {{ values['es_connection']['directory'] }}
{% endif %}
{% endblock content %} {% block javascripts %}{% endblock javascripts %}