Giter VIP home page Giter VIP logo

haystack-demos's Introduction

Haystack demos

Haystack is an open source NLP framework by deepset to help you build production ready search systems or applications powered by various NLP tasks such as Question Answering. Haystack is designed to help you build systems that work intelligently over large document collections. It achieves this with the concept of Pipelines consisting of various Nodes such as a DocumentStore, a Retriever and a Reader.

This repository contains fully working applications that demonstrate how to use Haystack to implement common NLP use cases: some of these applications are available online and all of them can run locally.

Demo apps

In this repository

Name Use case Available online
Explore the world Question Answering Link
Air-gapped rest_api Deployment
Healthcare Question Answering
Qdrant Indexing Question Answering

By the community

Name Use case Available online
What Would Mother Say - Tweet Customizer Content Generation Link

haystack-demos's People

Contributors

bilgeyucel avatar brianjking avatar greenomy-matteo avatar julian-risch avatar masci avatar mayankjobanputra avatar rgstephens avatar ronail avatar tuanacelik avatar zansara avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

haystack-demos's Issues

Error when trying to load new data into Haystack Demo application

I have recently spun up my own version of the Haystack Explore the World Demo. I have swapped out the data store with OpenSearch and I have used an indexing pipeline to load in my own markdown and CSV files.

Whenever I try to query the data from those files I get an error on the frontend saying "🐞 An error occurred during the request." There are no further details in the web console or network tracker. In the logs for the REST backend I am seeing that it is attempting to generate an answer, but it is unclear why the frontend is able to process this result:

INFO:haystack.schema:Setting the ID manually. This might cause a mismatch with the ID that would be generated from the document content and id_hash_keys value.
Inferencing Samples: 100%|██████████| 1/1 [00:08<00:00,  8.22s/ Batches]
INFO:haystack:{"request": "query='What trainings are required to setup a new project?' params={'filters': {}, 'Retriever': {'top_k': 3}, 'Reader': {'top_k': 3}, 'Query': {'debug': False}} debug=False", "response": {"query": "What trainings are required to setup a new project?", "no_ans_gap": -0.034327149391174316, "answers": ["<Answer: answer='', score=0.5485038046700377, context=None>", "<Answer: answer='process', score=0.3887302279472351, context='\"Could you please assist me to complete the requir...'>", "<Answer: answer='HTML/pdf/word-\nbased', score=0.14553304016590118, context='porting - HTML-\nbased report and logs,\nDetailed xm...'>"], "documents": ["<Document: id=a549f704cfcceb139c73c64a63950a81, content='\"Could you please assist me to complete the required trainings and process for setup a new Project\"'>", "<Document: id=bf3d4a8bb8c33fdc3ad76c4f57edfe1, content='Therefore, it\nshould be always be under consideration before making a decision on\nautomation framewo...'>", "<Document: id=210f19dbb5a8ca0052e4077d61adc570, content=' Verify user is able to view the failure message in Xray/Jira for test script\n...'>"], "root_node": "Query", "params": {"filters": {}, "Retriever": {"top_k": 3}, "Reader": {"top_k": 3}, "Query": {}}, "node_id": "Reader"}, "time": "8.25"}

I have tried using both a CSVConverter for my Q&A docs, and a MarkdownConverter for my Documentation. Data from either indexing pipeline is unable to be queried.

FAQ Check

  • Have you had a look at our new FAQ page? Yes

  • Haystack version (commit or version number): deepset/haystack:cpu-main docker image

  • DocumentStore: Opensearch

  • Reader/Retriever: haystack docker image default

Api changes from >=1.14 break demo

Api changes from >=1.14 are reflected in explore_the_world/ui/utils.py --> query function. With these changes there now is a check for answers "document_ids" that value did not exist <1.14.

However, the haystack-api image: "deepset/haystack:cpu" was not updated in the last six months. Hence, the explore_the_world demo is still using API version 1.12. Resulting in a bug.

Suggesting to change image in docker compose file:

haystack-api:
    image: "deepset/haystack:cpu-main"

Same for explore_the_world/deploy/docker-compose.prod.yml ( currently image: "deepset/haystack:gpu-v1.12.2" )

Permission denied on `json-schemas`

Hi @masci, hope you are open to contributions to this repo. It's a great example project for learning Haystack.

I'd like to submit a PR on the build.sh script to parameterize some things that are hard coded and I have a prototype that I'm working on to learn Haystack which I may ask you to add in the coming weeks.

For now, I'm running into this permission error. Here's the command and output.

DATA_IMAGE_NAME=stephens/elasticsearch-custom ./build.sh

When I review the haystack container I see:

[2022-12-31 19:28:41 +0000] [1] [INFO] Starting gunicorn 20.1.0
[2022-12-31 19:28:41 +0000] [1] [INFO] Listening at: http://0.0.0.0:8000 (1)
[2022-12-31 19:28:41 +0000] [1] [INFO] Using worker: uvicorn.workers.UvicornWorker
[2022-12-31 19:28:41 +0000] [8] [INFO] Booting worker with pid: 8
[2022-12-31 19:28:43 +0000] [8] [ERROR] Exception in worker process
Traceback (most recent call last):
  File "/opt/venv/lib/python3.10/site-packages/gunicorn/arbiter.py", line 589, in spawn_worker
    worker.init_process()
  File "/opt/venv/lib/python3.10/site-packages/uvicorn/workers.py", line 66, in init_process
    super(UvicornWorker, self).init_process()
  File "/opt/venv/lib/python3.10/site-packages/gunicorn/workers/base.py", line 134, in init_process
    self.load_wsgi()
  File "/opt/venv/lib/python3.10/site-packages/gunicorn/workers/base.py", line 146, in load_wsgi
    self.wsgi = self.app.wsgi()
  File "/opt/venv/lib/python3.10/site-packages/gunicorn/app/base.py", line 67, in wsgi
    self.callable = self.load()
  File "/opt/venv/lib/python3.10/site-packages/gunicorn/app/wsgiapp.py", line 58, in load
    return self.load_wsgiapp()
  File "/opt/venv/lib/python3.10/site-packages/gunicorn/app/wsgiapp.py", line 48, in load_wsgiapp
    return util.import_app(self.app_uri)
  File "/opt/venv/lib/python3.10/site-packages/gunicorn/util.py", line 359, in import_app
    mod = importlib.import_module(module)
  File "/usr/local/lib/python3.10/importlib/__init__.py", line 126, in import_module
    return _bootstrap._gcd_import(name[level:], package, level)
  File "<frozen importlib._bootstrap>", line 1050, in _gcd_import
  File "<frozen importlib._bootstrap>", line 1027, in _find_and_load
  File "<frozen importlib._bootstrap>", line 1006, in _find_and_load_unlocked
  File "<frozen importlib._bootstrap>", line 688, in _load_unlocked
  File "<frozen importlib._bootstrap_external>", line 883, in exec_module
  File "<frozen importlib._bootstrap>", line 241, in _call_with_frames_removed
  File "/opt/venv/lib/python3.10/site-packages/rest_api/application.py", line 13, in <module>
    app = get_app()
  File "/opt/venv/lib/python3.10/site-packages/rest_api/utils.py", line 28, in get_app
    from rest_api.controller import file_upload, search, feedback, document, health
  File "/opt/venv/lib/python3.10/site-packages/rest_api/controller/file_upload.py", line 20, in <module>
    indexing_pipeline: Pipeline = get_pipelines().get("indexing_pipeline", None)
  File "/opt/venv/lib/python3.10/site-packages/rest_api/utils.py", line 59, in get_pipelines
    pipelines = setup_pipelines()
  File "/opt/venv/lib/python3.10/site-packages/rest_api/pipeline/__init__.py", line 28, in setup_pipelines
    query_pipeline = Pipeline.load_from_yaml(Path(config.PIPELINE_YAML_PATH), pipeline_name=config.QUERY_PIPELINE_NAME)
  File "/opt/venv/lib/python3.10/site-packages/haystack/pipelines/base.py", line 1908, in load_from_yaml
    return cls.load_from_config(
  File "/opt/venv/lib/python3.10/site-packages/haystack/pipelines/base.py", line 1969, in load_from_config
    validate_config(pipeline_config, strict_version_check=strict_version_check)
  File "/opt/venv/lib/python3.10/site-packages/haystack/pipelines/config.py", line 245, in validate_config
    validate_schema(pipeline_config=pipeline_config, strict_version_check=strict_version_check, extras=extras)
  File "/opt/venv/lib/python3.10/site-packages/haystack/pipelines/config.py", line 302, in validate_schema
    schema = load_schema()
  File "/opt/venv/lib/python3.10/site-packages/haystack/nodes/_json_schema.py", line 423, in load_schema
    raise e
  File "/opt/venv/lib/python3.10/site-packages/haystack/nodes/_json_schema.py", line 417, in load_schema
    update_json_schema(main_only=True)
  File "/opt/venv/lib/python3.10/site-packages/haystack/nodes/_json_schema.py", line 437, in update_json_schema
    os.makedirs(destination_path, exist_ok=True)
  File "/usr/local/lib/python3.10/os.py", line 225, in makedirs
    mkdir(name, mode)
PermissionError: [Errno 13] Permission denied: '/opt/venv/lib/python3.10/site-packages/haystack/json-schemas'
[2022-12-31 19:28:43 +0000] [8] [INFO] Worker exiting (pid: 8)
[2022-12-31 19:28:45 +0000] [1] [INFO] Shutting down: Master
[2022-12-31 19:28:45 +0000] [1] [INFO] Reason: Worker failed to boot.

Add env options to build script

Add env options to the build script to make it easier to use the demo with your own data.

Var Use
DATA_IMAGE_NAME Elastic docker image, default is deepset/elasticsearch-countries-and-capitals
DATASET_DIR Data/Corpus directory, default is dataset
HAYSTACK_IMAGE_NAME Haystack build image, default is deepset/haystack:cpu-main
NETWORK Docker network name, default is explore_the_world

source code of components

Hi, I miss the source code for some of the components of the health demo. For testing it properly I need all the source code.

Regards.

Both demos broken

Seems both demos are currently broken:

  • explore_the_world: broken because ElasticSearch fails to come up
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-03-31T11:48:07,987Z", "level": "ERROR", "component": "o.e.i.g.GeoIpDownloader", "cluster.name": "docker-cluster", "node.name": "397ae3798dd8", "message": "exception during geoip databases update", "cluster.uuid": "5oCHsPiTRL2jIKWM9n1Ccg", "node.id": "1KZabzNUQC2r0Pwhu8Eaag" ,
explore_the_world-elasticsearch-1  | "stacktrace": ["org.elasticsearch.ElasticsearchException: not all primary shards of [.geoip_databases] index are active",
explore_the_world-elasticsearch-1  | "at org.elasticsearch.ingest.geoip.GeoIpDownloader.updateDatabases(GeoIpDownloader.java:137) ~[ingest-geoip-7.17.6.jar:7.17.6]",
explore_the_world-elasticsearch-1  | "at org.elasticsearch.ingest.geoip.GeoIpDownloader.runDownloader(GeoIpDownloader.java:284) [ingest-geoip-7.17.6.jar:7.17.6]",
explore_the_world-elasticsearch-1  | "at org.elasticsearch.ingest.geoip.GeoIpDownloaderTaskExecutor.nodeOperation(GeoIpDownloaderTaskExecutor.java:100) [ingest-geoip-7.17.6.jar:7.17.6]",
explore_the_world-elasticsearch-1  | "at org.elasticsearch.ingest.geoip.GeoIpDownloaderTaskExecutor.nodeOperation(GeoIpDownloaderTaskExecutor.java:46) [ingest-geoip-7.17.6.jar:7.17.6]",
explore_the_world-elasticsearch-1  | "at org.elasticsearch.persistent.NodePersistentTasksExecutor$1.doRun(NodePersistentTasksExecutor.java:42) [elasticsearch-7.17.6.jar:7.17.6]",
explore_the_world-elasticsearch-1  | "at org.elasticsearch.common.util.concurrent.ThreadContext$ContextPreservingAbstractRunnable.doRun(ThreadContext.java:777) [elasticsearch-7.17.6.jar:7.17.6]",
explore_the_world-elasticsearch-1  | "at org.elasticsearch.common.util.concurrent.AbstractRunnable.run(AbstractRunnable.java:26) [elasticsearch-7.17.6.jar:7.17.6]",
explore_the_world-elasticsearch-1  | "at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) [?:?]",
explore_the_world-elasticsearch-1  | "at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) [?:?]",
explore_the_world-elasticsearch-1  | "at java.lang.Thread.run(Thread.java:833) [?:?]"] }
  • airgapped-rest_api
❯ dc up
[+] Running 0/1
 ⠿ haystack-airgapped Warning                                                                                                                                                                                                                                                                                            1.9s
[+] Building 2.2s (7/8)
 => [internal] load build definition from Dockerfile                                                                                                                                                                                                                                                                     0.0s
 => => transferring dockerfile: 69B                                                                                                                                                                                                                                                                                      0.0s
 => [internal] load .dockerignore                                                                                                                                                                                                                                                                                        0.0s
 => => transferring context: 2B                                                                                                                                                                                                                                                                                          0.0s
 => [internal] load metadata for docker.io/deepset/haystack:cpu-v1.14.0                                                                                                                                                                                                                                                  2.1s
 => CANCELED [1/4] FROM docker.io/deepset/haystack:cpu-v1.14.0@sha256:e9a61db2d143303b8bf8409544e94dde0b59a2842a0471a9e19d6f3d31801a4a                                                                                                                                                                                   0.0s
 => => resolve docker.io/deepset/haystack:cpu-v1.14.0@sha256:e9a61db2d143303b8bf8409544e94dde0b59a2842a0471a9e19d6f3d31801a4a                                                                                                                                                                                            0.0s
 => => sha256:e9a61db2d143303b8bf8409544e94dde0b59a2842a0471a9e19d6f3d31801a4a 1.61kB / 1.61kB                                                                                                                                                                                                                           0.0s
 => => sha256:dc77f5a8317c824d70e98ace1604c962112a6d76178196a9e4370f800b3d89e4 2.59kB / 2.59kB                                                                                                                                                                                                                           0.0s
 => [internal] load build context                                                                                                                                                                                                                                                                                        0.0s
 => => transferring context: 173B                                                                                                                                                                                                                                                                                        0.0s
 => CACHED [2/4] RUN python3 -c "from haystack.utils.docker import cache_models;cache_models(['sentence-transformers/all-MiniLM-L6-v2'])"                                                                                                                                                                                0.0s
 => ERROR [3/4] COPY local_farm_minilm /opt/models/fine-tuned-reader                                                                                                                                                                                                                                                     0.0s
------
 > [3/4] COPY local_farm_minilm /opt/models/fine-tuned-reader:
------
failed to solve: failed to compute cache key: "/local_farm_minilm" not found: not found

Auto-detected model language

Hi,
I've tried to use the explore the world demo with a german model. Unfortunately, the auto language detection is still english:


`The tokenizer class you load from this checkpoint is 'DPRQuestionEncoderTokenizer'. 
2023-04-12 14:10:56 The class this function is called from is 'DPRContextEncoderTokenizerFast'.
2023-04-12 14:10:58 04/12/2023 12:10:58 PM Auto-detected model language: english
2023-04-12 14:10:58 04/12/2023 12:10:58 PM Using devices: CPU - Number of GPUs: 0
2023-04-12 14:10:58 04/12/2023 12:10:58 PM Using devices: CPU - Number of GPUs: 0
2023-04-12 14:10:58 04/12/2023 12:10:58 PM  * LOADING MODEL: '**deepset/gelectra-large-germanquad' (Electra)**
2023-04-12 14:11:03 04/12/2023 12:11:03 PM Auto-detected model language: german
2023-04-12 14:11:03 04/12/2023 12:11:03 PM Loaded 'deepset/gelectra-large-germanquad' (Electra model) from model hub.
2023-04-12 14:11:09 04/12/2023 12:11:09 PM Using devices: CPU - Number of GPUs: 0
2023-04-12 14:11:09 04/12/2023 12:11:09 PM Param 'host' of component 'DocumentStore' overwritten with environment variable 'DOCUMENTSTORE_PARAMS_HOST' value 'elasticsearch'.
2023-04-12 14:11:09 04/12/2023 12:11:09 PM This pipeline is version 'ignore', but you're using Haystack 1.15.1
2023-04-12 14:11:09 This might cause bugs and unexpected behaviors.Please check out the release notes (https://github.com/deepset-ai/haystack/releases/latest), the documentation (https://haystack.deepset.ai/components/pipelines#yaml-file-definitions) and fix your configuration accordingly.
2023-04-12 14:11:09 04/12/2023 12:11:09 PM Param 'host' of component 'DocumentStore' overwritten with environment variable 'DOCUMENTSTORE_PARAMS_HOST' value 'elasticsearch'.
2023-04-12 14:11:09 04/12/2023 12:11:09 PM Param 'host' of component 'DocumentStore' overwritten with environment variable 'DOCUMENTSTORE_PARAMS_HOST' value 'elasticsearch'.
2023-04-12 14:11:09 04/12/2023 12:11:09 PM Param 'host' of component 'DocumentStore' overwritten with environment variable 'DOCUMENTSTORE_PARAMS_HOST' value 'elasticsearch'.
2023-04-12 14:11:09 pdftotext version 4.04 [www.xpdfreader.com]
2023-04-12 14:11:09 Copyright 1996-2022 Glyph & Cog, LLC
2023-04-12 14:11:09 /opt/venv/lib/python3.10/site-packages/elasticsearch/connection/base.py:190: ElasticsearchDeprecationWarning: Elasticsearch built-in security features are not enabled. Without authentication, your cluster could be accessible to anyone. See https://www.elastic.co/guide/en/elasticsearch/reference/7.17/security-minimal-setup.html to enable security.
2023-04-12 14:11:09   warnings.warn(message, category=ElasticsearchDeprecationWarning)
2023-04-12 14:11:09 /opt/venv/lib/python3.10/site-packages/elasticsearch/connection/http_urllib3.py:275: DeprecationWarning: HTTPResponse.getheaders() is deprecated and will be removed in urllib3 v2.1.0. Instead access HTTPResponse.headers directly.
2023-04-12 14:11:09   return response.status, response.getheaders(), raw_data
2023-04-12 14:11:09 04/12/2023 12:11:09 PM Using devices: CPU - Number of GPUs: 0
2023-04-12 14:11:09 /opt/venv/lib/python3.10/site-packages/torch/_utils.py:776: UserWarning: TypedStorage is deprecated. It will be removed in the future and UntypedStorage will be the only storage class. This should only matter to you if you are using storages directly.  To access UntypedStorage directly, use tensor.untyped_storage() instead of tensor.storage()
2023-04-12 14:11:09   return self.fget.__get__(instance, owner)()
2023-04-12 14:11:11 04/12/2023 12:11:11 PM Auto-detected model language: english
2023-04-12 14:11:11 The tokenizer class you load from this checkpoint is not the same type as the class this function is called from. It may result in unexpected tokenization. 
2023-04-12 14:11:11 The tokenizer class you load from this checkpoint is 'DPRQuestionEncoderTokenizer'. 
2023-04-12 14:11:11 The class this function is called from is 'DPRContextEncoderTokenizerFast'.
2023-04-12 14:11:13 04/12/2023 12:11:13 PM **Auto-detected model language: english`**

So, how can I force haystack switching to german language?

TIA!
Alex

No documents with embeddings. Run the document store's update_embeddings()

Hello!

I followed the Evaluation Mode, Query different data and Development steps:

Putting a specific txt inside the dataset folder,

but I am getting this message:
image

And it doesn't return any answer.

I have these logs:

sudo docker compose up elasticsearch haystack-api[+] Running 3/0
 ⠿ Network explore_the_world_default            Created                                                               0.0s
 ⠿ Container explore_the_world-elasticsearch-1  Created                                                               0.0s
 ⠿ Container explore_the_world-haystack-api-1   Created                                                               0.0s
Attaching to explore_the_world-elasticsearch-1, explore_the_world-haystack-api-1
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:22,793Z", "level": "INFO", "component": "o.e.n.Node", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "version[7.17.6], pid[7], build[default/docker/f65e9d338dc1d07b642e14a27f338990148ee5b6/2022-08-23T11:08:48.893373482Z], OS[Linux/5.19.0-29-generic/amd64], JVM[Oracle Corporation/OpenJDK 64-Bit Server VM/18.0.2/18.0.2+9-61]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:22,797Z", "level": "INFO", "component": "o.e.n.Node", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "JVM home [/usr/share/elasticsearch/jdk], using bundled JDK [true]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:22,797Z", "level": "INFO", "component": "o.e.n.Node", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "JVM arguments [-Xshare:auto, -Des.networkaddress.cache.ttl=60, -Des.networkaddress.cache.negative.ttl=10, -XX:+AlwaysPreTouch, -Xss1m, -Djava.awt.headless=true, -Dfile.encoding=UTF-8, -Djna.nosys=true, -XX:-OmitStackTraceInFastThrow, -XX:+ShowCodeDetailsInExceptionMessages, -Dio.netty.noUnsafe=true, -Dio.netty.noKeySetOptimization=true, -Dio.netty.recycler.maxCapacityPerThread=0, -Dio.netty.allocator.numDirectArenas=0, -Dlog4j.shutdownHookEnabled=false, -Dlog4j2.disable.jmx=true, -Dlog4j2.formatMsgNoLookups=true, -Djava.locale.providers=SPI,COMPAT, --add-opens=java.base/java.io=ALL-UNNAMED, -Djava.security.manager=allow, -XX:+UseG1GC, -Djava.io.tmpdir=/tmp/elasticsearch-11156399035269127395, -XX:+HeapDumpOnOutOfMemoryError, -XX:+ExitOnOutOfMemoryError, -XX:HeapDumpPath=data, -XX:ErrorFile=logs/hs_err_pid%p.log, -Xlog:gc*,gc+age=trace,safepoint:file=logs/gc.log:utctime,pid,tags:filecount=32,filesize=64m, -Des.cgroups.hierarchy.override=/, -Xms1024m, -Xmx1024m, -XX:MaxDirectMemorySize=536870912, -XX:G1HeapRegionSize=4m, -XX:InitiatingHeapOccupancyPercent=30, -XX:G1ReservePercent=15, -Des.path.home=/usr/share/elasticsearch, -Des.path.conf=/usr/share/elasticsearch/config, -Des.distribution.flavor=default, -Des.distribution.type=docker, -Des.bundled_jdk=true]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,139Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [aggs-matrix-stats]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,139Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [analysis-common]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,139Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [constant-keyword]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,139Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [frozen-indices]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,140Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [ingest-common]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,140Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [ingest-geoip]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,140Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [ingest-user-agent]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,140Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [kibana]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,140Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [lang-expression]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,140Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [lang-mustache]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,140Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [lang-painless]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,141Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [legacy-geo]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,141Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [mapper-extras]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,141Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [mapper-version]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,141Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [parent-join]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,141Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [percolator]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,141Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [rank-eval]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,141Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [reindex]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,141Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [repositories-metering-api]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,142Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [repository-encrypted]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,142Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [repository-url]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,142Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [runtime-fields-common]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,142Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [search-business-rules]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,142Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [searchable-snapshots]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,142Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [snapshot-repo-test-kit]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,142Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [spatial]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,143Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [transform]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,143Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [transport-netty4]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,143Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [unsigned-long]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,143Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [vector-tile]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,143Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [vectors]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,143Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [wildcard]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,143Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [x-pack-aggregate-metric]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,143Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [x-pack-analytics]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,144Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [x-pack-async]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,144Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [x-pack-async-search]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,144Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [x-pack-autoscaling]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,144Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [x-pack-ccr]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,144Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [x-pack-core]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,144Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [x-pack-data-streams]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,144Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [x-pack-deprecation]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,145Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [x-pack-enrich]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,145Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [x-pack-eql]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,145Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [x-pack-fleet]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,145Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [x-pack-graph]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,145Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [x-pack-identity-provider]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,145Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [x-pack-ilm]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,145Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [x-pack-logstash]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,145Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [x-pack-ml]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,146Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [x-pack-monitoring]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,146Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [x-pack-ql]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,146Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [x-pack-rollup]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,146Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [x-pack-security]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,146Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [x-pack-shutdown]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,146Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [x-pack-sql]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,146Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [x-pack-stack]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,146Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [x-pack-text-structure]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,146Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [x-pack-voting-only-node]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,147Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "loaded module [x-pack-watcher]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,147Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "no plugins loaded" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,176Z", "level": "INFO", "component": "o.e.e.NodeEnvironment", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "using [1] data paths, mounts [[/ (overlay)]], net usable_space [247.2gb], net total_space [456.8gb], types [overlay]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,176Z", "level": "INFO", "component": "o.e.e.NodeEnvironment", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "heap size [1gb], compressed ordinary object pointers [true]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:24,225Z", "level": "INFO", "component": "o.e.n.Node", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "node name [b1f322c8baad], node ID [jgQimNWHRtSG4px60gLXsQ], cluster name [docker-cluster], roles [transform, data_frozen, master, remote_cluster_client, data, ml, data_content, data_hot, data_warm, data_cold, ingest]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:26,872Z", "level": "INFO", "component": "o.e.x.m.p.l.CppLogMessageHandler", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "[controller/240] [Main.cc@122] controller (64 bit): Version 7.17.6 (Build ea0305ae2a3b09) Copyright (c) 2022 Elasticsearch BV" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:27,135Z", "level": "INFO", "component": "o.e.x.s.a.s.FileRolesStore", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "parsed [0] roles from file [/usr/share/elasticsearch/config/roles.yml]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:27,568Z", "level": "INFO", "component": "o.e.i.g.ConfigDatabases", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "initialized default databases [[GeoLite2-Country.mmdb, GeoLite2-City.mmdb, GeoLite2-ASN.mmdb]], config databases [[]] and watching [/usr/share/elasticsearch/config/ingest-geoip] for changes" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:27,568Z", "level": "INFO", "component": "o.e.i.g.DatabaseNodeService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "initialized database registry, using geoip-databases directory [/tmp/elasticsearch-11156399035269127395/geoip-databases/jgQimNWHRtSG4px60gLXsQ]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:27,906Z", "level": "INFO", "component": "o.e.t.NettyAllocator", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "creating NettyAllocator with the following configs: [name=unpooled, suggested_max_allocation_size=1mb, factors={es.unsafe.use_unpooled_allocator=null, g1gc_enabled=true, g1gc_region_size=4mb, heap_size=1gb}]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:27,931Z", "level": "INFO", "component": "o.e.i.r.RecoverySettings", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "using rate limit [40mb] with [default=40mb, read=0b, write=0b, max=0b]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:27,967Z", "level": "INFO", "component": "o.e.d.DiscoveryModule", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "using discovery type [single-node] and seed hosts providers [settings]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:28,256Z", "level": "INFO", "component": "o.e.g.DanglingIndicesState", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "gateway.auto_import_dangling_indices is disabled, dangling indices will not be automatically detected or imported and must be managed manually" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:28,662Z", "level": "INFO", "component": "o.e.n.Node", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "initialized" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:28,662Z", "level": "INFO", "component": "o.e.n.Node", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "starting ..." }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:28,670Z", "level": "INFO", "component": "o.e.x.s.c.f.PersistentCache", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "persistent cache index loaded" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:28,671Z", "level": "INFO", "component": "o.e.x.d.l.DeprecationIndexingComponent", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "deprecation component started" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:28,753Z", "level": "INFO", "component": "o.e.t.TransportService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "publish_address {192.168.16.2:9300}, bound_addresses {0.0.0.0:9300}" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:28,958Z", "level": "WARN", "component": "o.e.b.BootstrapChecks", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:28,959Z", "level": "INFO", "component": "o.e.c.c.Coordinator", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "cluster UUID [g0FQIhGbT7O-dJKGjk6egw]" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:29,013Z", "level": "INFO", "component": "o.e.c.s.MasterService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "elected-as-master ([1] nodes joined)[{b1f322c8baad}{jgQimNWHRtSG4px60gLXsQ}{oWWac-HBSUCrU2teY8LPEw}{192.168.16.2}{192.168.16.2:9300}{cdfhilmrstw} elect leader, _BECOME_MASTER_TASK_, _FINISH_ELECTION_], term: 2, version: 62, delta: master node changed {previous [], current [{b1f322c8baad}{jgQimNWHRtSG4px60gLXsQ}{oWWac-HBSUCrU2teY8LPEw}{192.168.16.2}{192.168.16.2:9300}{cdfhilmrstw}]}" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:29,062Z", "level": "INFO", "component": "o.e.c.s.ClusterApplierService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "master node changed {previous [], current [{b1f322c8baad}{jgQimNWHRtSG4px60gLXsQ}{oWWac-HBSUCrU2teY8LPEw}{192.168.16.2}{192.168.16.2:9300}{cdfhilmrstw}]}, term: 2, version: 62, reason: Publication{term=2, version=62}" }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:29,096Z", "level": "INFO", "component": "o.e.h.AbstractHttpServerTransport", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "publish_address {192.168.16.2:9200}, bound_addresses {0.0.0.0:9200}", "cluster.uuid": "g0FQIhGbT7O-dJKGjk6egw", "node.id": "jgQimNWHRtSG4px60gLXsQ"  }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:29,096Z", "level": "INFO", "component": "o.e.n.Node", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "started", "cluster.uuid": "g0FQIhGbT7O-dJKGjk6egw", "node.id": "jgQimNWHRtSG4px60gLXsQ"  }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:29,262Z", "level": "INFO", "component": "o.e.l.LicenseService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "license [531f381e-3e92-47f8-ad41-e37bf8329961] mode [basic] - valid", "cluster.uuid": "g0FQIhGbT7O-dJKGjk6egw", "node.id": "jgQimNWHRtSG4px60gLXsQ"  }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:29,263Z", "level": "INFO", "component": "o.e.x.s.s.SecurityStatusChangeListener", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "Active license is now [BASIC]; Security is disabled", "cluster.uuid": "g0FQIhGbT7O-dJKGjk6egw", "node.id": "jgQimNWHRtSG4px60gLXsQ"  }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:29,263Z", "level": "WARN", "component": "o.e.x.s.s.SecurityStatusChangeListener", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "Elasticsearch built-in security features are not enabled. Without authentication, your cluster could be accessible to anyone. See https://www.elastic.co/guide/en/elasticsearch/reference/7.17/security-minimal-setup.html to enable security.", "cluster.uuid": "g0FQIhGbT7O-dJKGjk6egw", "node.id": "jgQimNWHRtSG4px60gLXsQ"  }
explore_the_world-elasticsearch-1  | {"type": "deprecation.elasticsearch", "timestamp": "2023-02-11T06:02:29,264Z", "level": "CRITICAL", "component": "o.e.d.x.s.s.SecurityStatusChangeListener", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "The default behavior of disabling security on basic licenses is deprecated. In a later version of Elasticsearch, the value of [xpack.security.enabled] will default to \"true\" , regardless of the license level. See https://www.elastic.co/guide/en/elasticsearch/reference/7.17/security-minimal-setup.html to enable security, or explicitly disable security by setting [xpack.security.enabled] to false in elasticsearch.yml", "key": "security_implicitly_disabled", "category": "security", "cluster.uuid": "g0FQIhGbT7O-dJKGjk6egw", "node.id": "jgQimNWHRtSG4px60gLXsQ"  }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:29,268Z", "level": "INFO", "component": "o.e.g.GatewayService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "recovered [5] indices into cluster_state", "cluster.uuid": "g0FQIhGbT7O-dJKGjk6egw", "node.id": "jgQimNWHRtSG4px60gLXsQ"  }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:29,530Z", "level": "ERROR", "component": "o.e.i.g.GeoIpDownloader", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "exception during geoip databases update", "cluster.uuid": "g0FQIhGbT7O-dJKGjk6egw", "node.id": "jgQimNWHRtSG4px60gLXsQ" , 
explore_the_world-elasticsearch-1  | "stacktrace": ["org.elasticsearch.ElasticsearchException: not all primary shards of [.geoip_databases] index are active",
explore_the_world-elasticsearch-1  | "at org.elasticsearch.ingest.geoip.GeoIpDownloader.updateDatabases(GeoIpDownloader.java:137) ~[ingest-geoip-7.17.6.jar:7.17.6]",
explore_the_world-elasticsearch-1  | "at org.elasticsearch.ingest.geoip.GeoIpDownloader.runDownloader(GeoIpDownloader.java:284) [ingest-geoip-7.17.6.jar:7.17.6]",
explore_the_world-elasticsearch-1  | "at org.elasticsearch.ingest.geoip.GeoIpDownloaderTaskExecutor.nodeOperation(GeoIpDownloaderTaskExecutor.java:100) [ingest-geoip-7.17.6.jar:7.17.6]",
explore_the_world-elasticsearch-1  | "at org.elasticsearch.ingest.geoip.GeoIpDownloaderTaskExecutor.nodeOperation(GeoIpDownloaderTaskExecutor.java:46) [ingest-geoip-7.17.6.jar:7.17.6]",
explore_the_world-elasticsearch-1  | "at org.elasticsearch.persistent.NodePersistentTasksExecutor$1.doRun(NodePersistentTasksExecutor.java:42) [elasticsearch-7.17.6.jar:7.17.6]",
explore_the_world-elasticsearch-1  | "at org.elasticsearch.common.util.concurrent.ThreadContext$ContextPreservingAbstractRunnable.doRun(ThreadContext.java:777) [elasticsearch-7.17.6.jar:7.17.6]",
explore_the_world-elasticsearch-1  | "at org.elasticsearch.common.util.concurrent.AbstractRunnable.run(AbstractRunnable.java:26) [elasticsearch-7.17.6.jar:7.17.6]",
explore_the_world-elasticsearch-1  | "at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) [?:?]",
explore_the_world-elasticsearch-1  | "at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) [?:?]",
explore_the_world-elasticsearch-1  | "at java.lang.Thread.run(Thread.java:833) [?:?]"] }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:29,552Z", "level": "INFO", "component": "o.e.i.g.DatabaseNodeService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "retrieve geoip database [GeoLite2-Country.mmdb] from [.geoip_databases] to [/tmp/elasticsearch-11156399035269127395/geoip-databases/jgQimNWHRtSG4px60gLXsQ/GeoLite2-Country.mmdb.tmp.gz]", "cluster.uuid": "g0FQIhGbT7O-dJKGjk6egw", "node.id": "jgQimNWHRtSG4px60gLXsQ"  }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:29,553Z", "level": "INFO", "component": "o.e.i.g.DatabaseNodeService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "retrieve geoip database [GeoLite2-ASN.mmdb] from [.geoip_databases] to [/tmp/elasticsearch-11156399035269127395/geoip-databases/jgQimNWHRtSG4px60gLXsQ/GeoLite2-ASN.mmdb.tmp.gz]", "cluster.uuid": "g0FQIhGbT7O-dJKGjk6egw", "node.id": "jgQimNWHRtSG4px60gLXsQ"  }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:29,554Z", "level": "INFO", "component": "o.e.i.g.DatabaseNodeService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "retrieve geoip database [GeoLite2-City.mmdb] from [.geoip_databases] to [/tmp/elasticsearch-11156399035269127395/geoip-databases/jgQimNWHRtSG4px60gLXsQ/GeoLite2-City.mmdb.tmp.gz]", "cluster.uuid": "g0FQIhGbT7O-dJKGjk6egw", "node.id": "jgQimNWHRtSG4px60gLXsQ"  }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:29,619Z", "level": "INFO", "component": "o.e.c.r.a.AllocationService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "Cluster health status changed from [RED] to [YELLOW] (reason: [shards started [[.ds-.logs-deprecation.elasticsearch-default-2023.02.11-000001][0]]]).", "cluster.uuid": "g0FQIhGbT7O-dJKGjk6egw", "node.id": "jgQimNWHRtSG4px60gLXsQ"  }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:29,702Z", "level": "INFO", "component": "o.e.i.g.DatabaseNodeService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "successfully reloaded changed geoip database file [/tmp/elasticsearch-11156399035269127395/geoip-databases/jgQimNWHRtSG4px60gLXsQ/GeoLite2-Country.mmdb]", "cluster.uuid": "g0FQIhGbT7O-dJKGjk6egw", "node.id": "jgQimNWHRtSG4px60gLXsQ"  }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:29,720Z", "level": "INFO", "component": "o.e.i.g.DatabaseNodeService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "successfully reloaded changed geoip database file [/tmp/elasticsearch-11156399035269127395/geoip-databases/jgQimNWHRtSG4px60gLXsQ/GeoLite2-ASN.mmdb]", "cluster.uuid": "g0FQIhGbT7O-dJKGjk6egw", "node.id": "jgQimNWHRtSG4px60gLXsQ"  }
explore_the_world-elasticsearch-1  | {"type": "server", "timestamp": "2023-02-11T06:02:30,153Z", "level": "INFO", "component": "o.e.i.g.DatabaseNodeService", "cluster.name": "docker-cluster", "node.name": "b1f322c8baad", "message": "successfully reloaded changed geoip database file [/tmp/elasticsearch-11156399035269127395/geoip-databases/jgQimNWHRtSG4px60gLXsQ/GeoLite2-City.mmdb]", "cluster.uuid": "g0FQIhGbT7O-dJKGjk6egw", "node.id": "jgQimNWHRtSG4px60gLXsQ"  }
explore_the_world-haystack-api-1   | [2023-02-11 06:02:32 +0000] [1] [INFO] Starting gunicorn 20.1.0
explore_the_world-haystack-api-1   | [2023-02-11 06:02:32 +0000] [1] [INFO] Listening at: http://0.0.0.0:8000 (1)
explore_the_world-haystack-api-1   | [2023-02-11 06:02:32 +0000] [1] [INFO] Using worker: uvicorn.workers.UvicornWorker
explore_the_world-haystack-api-1   | [2023-02-11 06:02:32 +0000] [7] [INFO] Booting worker with pid: 7
explore_the_world-haystack-api-1   | WARNING:root:This pipeline is version 'ignore', but you're using Haystack 1.12.1
explore_the_world-haystack-api-1   | This might cause bugs and unexpected behaviors.Please check out the release notes (https://github.com/deepset-ai/haystack/releases/latest), the documentation (https://haystack.deepset.ai/components/pipelines#yaml-file-definitions) and fix your configuration accordingly.
explore_the_world-haystack-api-1   | INFO:haystack.pipelines.config:Param 'host' of component 'DocumentStore' overwritten with environment variable 'DOCUMENTSTORE_PARAMS_HOST' value 'elasticsearch'.
explore_the_world-haystack-api-1   | INFO:haystack.pipelines.config:Param 'host' of component 'DocumentStore' overwritten with environment variable 'DOCUMENTSTORE_PARAMS_HOST' value 'elasticsearch'.
explore_the_world-haystack-api-1   | INFO:haystack.pipelines.config:Param 'host' of component 'DocumentStore' overwritten with environment variable 'DOCUMENTSTORE_PARAMS_HOST' value 'elasticsearch'.
explore_the_world-haystack-api-1   | /opt/venv/lib/python3.10/site-packages/elasticsearch/connection/base.py:190: ElasticsearchDeprecationWarning: Elasticsearch built-in security features are not enabled. Without authentication, your cluster could be accessible to anyone. See https://www.elastic.co/guide/en/elasticsearch/reference/7.17/security-minimal-setup.html to enable security.
explore_the_world-haystack-api-1   |   warnings.warn(message, category=ElasticsearchDeprecationWarning)
explore_the_world-haystack-api-1   | /opt/venv/lib/python3.10/site-packages/elasticsearch/connection/http_urllib3.py:275: DeprecationWarning: HTTPResponse.getheaders() is deprecated and will be removed in urllib3 v2.1.0. Instead access HTTResponse.headers directly.
explore_the_world-haystack-api-1   |   return response.status, response.getheaders(), raw_data
explore_the_world-haystack-api-1   | INFO:haystack.modeling.utils:Using devices: CPU - Number of GPUs: 0
Downloading: 100%|██████████| 28.0/28.0 [00:00<00:00, 16.9kB/s]
Downloading: 100%|██████████| 232k/232k [00:00<00:00, 413kB/s]  
Downloading: 100%|██████████| 466k/466k [00:02<00:00, 230kB/s]  
Downloading: 100%|██████████| 493/493 [00:00<00:00, 385kB/s]
Downloading: 100%|██████████| 438M/438M [00:55<00:00, 7.85MB/s] 
explore_the_world-haystack-api-1   | INFO:haystack.modeling.model.language_model:Auto-detected model language: english
Downloading: 100%|██████████| 28.0/28.0 [00:00<00:00, 18.9kB/s]
Downloading: 100%|██████████| 232k/232k [00:00<00:00, 395kB/s]  
Downloading: 100%|██████████| 466k/466k [00:00<00:00, 633kB/s]  
Downloading: 100%|██████████| 492/492 [00:00<00:00, 317kB/s]
explore_the_world-haystack-api-1   | The tokenizer class you load from this checkpoint is not the same type as the class this function is called from. It may result in unexpected tokenization. 
explore_the_world-haystack-api-1   | The tokenizer class you load from this checkpoint is 'DPRQuestionEncoderTokenizer'. 
explore_the_world-haystack-api-1   | The class this function is called from is 'DPRContextEncoderTokenizerFast'.
Downloading: 100%|██████████| 438M/438M [00:33<00:00, 13.2MB/s] 
explore_the_world-haystack-api-1   | INFO:haystack.modeling.model.language_model:Auto-detected model language: english
explore_the_world-haystack-api-1   | INFO:haystack.modeling.utils:Using devices: CPU - Number of GPUs: 0
explore_the_world-haystack-api-1   | INFO:haystack.modeling.utils:Using devices: CPU - Number of GPUs: 0
Downloading: 100%|██████████| 571/571 [00:00<00:00, 388kB/s]
explore_the_world-haystack-api-1   | INFO:haystack.modeling.model.language_model: * LOADING MODEL: 'deepset/roberta-base-squad2' (Roberta)
Downloading:  97%|█████████▋| 483M/496M [00:59<00:01, 11.5MB/s][2023-02-11 06:05:32 +0000] [1] [CRITICAL] WORKER TIMEOUT (pid:7)
explore_the_world-haystack-api-1   | [2023-02-11 06:05:33 +0000] [1] [WARNING] Worker with pid 7 was terminated due to signal 9
explore_the_world-haystack-api-1   | [2023-02-11 06:05:33 +0000] [51] [INFO] Booting worker with pid: 51
explore_the_world-haystack-api-1   | WARNING:root:This pipeline is version 'ignore', but you're using Haystack 1.12.1
explore_the_world-haystack-api-1   | This might cause bugs and unexpected behaviors.Please check out the release notes (https://github.com/deepset-ai/haystack/releases/latest), the documentation (https://haystack.deepset.ai/components/pipelines#yaml-file-definitions) and fix your configuration accordingly.
explore_the_world-haystack-api-1   | INFO:haystack.pipelines.config:Param 'host' of component 'DocumentStore' overwritten with environment variable 'DOCUMENTSTORE_PARAMS_HOST' value 'elasticsearch'.
explore_the_world-haystack-api-1   | INFO:haystack.pipelines.config:Param 'host' of component 'DocumentStore' overwritten with environment variable 'DOCUMENTSTORE_PARAMS_HOST' value 'elasticsearch'.
explore_the_world-haystack-api-1   | INFO:haystack.pipelines.config:Param 'host' of component 'DocumentStore' overwritten with environment variable 'DOCUMENTSTORE_PARAMS_HOST' value 'elasticsearch'.
explore_the_world-haystack-api-1   | /opt/venv/lib/python3.10/site-packages/elasticsearch/connection/base.py:190: ElasticsearchDeprecationWarning: Elasticsearch built-in security features are not enabled. Without authentication, your cluster could be accessible to anyone. See https://www.elastic.co/guide/en/elasticsearch/reference/7.17/security-minimal-setup.html to enable security.
explore_the_world-haystack-api-1   |   warnings.warn(message, category=ElasticsearchDeprecationWarning)
explore_the_world-haystack-api-1   | /opt/venv/lib/python3.10/site-packages/elasticsearch/connection/http_urllib3.py:275: DeprecationWarning: HTTPResponse.getheaders() is deprecated and will be removed in urllib3 v2.1.0. Instead access HTTResponse.headers directly.
explore_the_world-haystack-api-1   |   return response.status, response.getheaders(), raw_data
explore_the_world-haystack-api-1   | INFO:haystack.modeling.utils:Using devices: CPU - Number of GPUs: 0
explore_the_world-haystack-api-1   | INFO:haystack.modeling.model.language_model:Auto-detected model language: english
explore_the_world-haystack-api-1   | The tokenizer class you load from this checkpoint is not the same type as the class this function is called from. It may result in unexpected tokenization. 
explore_the_world-haystack-api-1   | The tokenizer class you load from this checkpoint is 'DPRQuestionEncoderTokenizer'. 
explore_the_world-haystack-api-1   | The class this function is called from is 'DPRContextEncoderTokenizerFast'.
explore_the_world-haystack-api-1   | INFO:haystack.modeling.model.language_model:Auto-detected model language: english
explore_the_world-haystack-api-1   | INFO:haystack.modeling.utils:Using devices: CPU - Number of GPUs: 0
explore_the_world-haystack-api-1   | INFO:haystack.modeling.utils:Using devices: CPU - Number of GPUs: 0
explore_the_world-haystack-api-1   | INFO:haystack.modeling.model.language_model: * LOADING MODEL: 'deepset/roberta-base-squad2' (Roberta)
Downloading: 100%|██████████| 496M/496M [00:43<00:00, 11.4MB/s] 
explore_the_world-haystack-api-1   | INFO:haystack.modeling.model.language_model:Auto-detected model language: english
explore_the_world-haystack-api-1   | INFO:haystack.modeling.model.language_model:Loaded 'deepset/roberta-base-squad2' (Roberta model) from model hub.
Downloading: 100%|██████████| 79.0/79.0 [00:00<00:00, 59.6kB/s]
Downloading: 100%|██████████| 899k/899k [00:00<00:00, 1.05MB/s] 
Downloading: 100%|██████████| 456k/456k [00:00<00:00, 628kB/s]  
Downloading: 100%|██████████| 772/772 [00:00<00:00, 545kB/s]
explore_the_world-haystack-api-1   | INFO:haystack.modeling.utils:Using devices: CPU - Number of GPUs: 0
explore_the_world-haystack-api-1   | INFO:haystack.pipelines.config:Param 'host' of component 'DocumentStore' overwritten with environment variable 'DOCUMENTSTORE_PARAMS_HOST' value 'elasticsearch'.
explore_the_world-haystack-api-1   | WARNING:root:This pipeline is version 'ignore', but you're using Haystack 1.12.1
explore_the_world-haystack-api-1   | This might cause bugs and unexpected behaviors.Please check out the release notes (https://github.com/deepset-ai/haystack/releases/latest), the documentation (https://haystack.deepset.ai/components/pipelines#yaml-file-definitions) and fix your configuration accordingly.
explore_the_world-haystack-api-1   | INFO:haystack.pipelines.config:Param 'host' of component 'DocumentStore' overwritten with environment variable 'DOCUMENTSTORE_PARAMS_HOST' value 'elasticsearch'.
explore_the_world-haystack-api-1   | INFO:haystack.pipelines.config:Param 'host' of component 'DocumentStore' overwritten with environment variable 'DOCUMENTSTORE_PARAMS_HOST' value 'elasticsearch'.
explore_the_world-haystack-api-1   | INFO:haystack.pipelines.config:Param 'host' of component 'DocumentStore' overwritten with environment variable 'DOCUMENTSTORE_PARAMS_HOST' value 'elasticsearch'.
explore_the_world-haystack-api-1   | pdftotext version 4.04 [www.xpdfreader.com]
explore_the_world-haystack-api-1   | Copyright 1996-2022 Glyph & Cog, LLC
explore_the_world-haystack-api-1   | [nltk_data] Downloading package punkt to /root/nltk_data...
explore_the_world-haystack-api-1   | [nltk_data]   Unzipping tokenizers/punkt.zip.
explore_the_world-haystack-api-1   | /opt/venv/lib/python3.10/site-packages/elasticsearch/connection/base.py:190: ElasticsearchDeprecationWarning: Elasticsearch built-in security features are not enabled. Without authentication, your cluster could be accessible to anyone. See https://www.elastic.co/guide/en/elasticsearch/reference/7.17/security-minimal-setup.html to enable security.
explore_the_world-haystack-api-1   |   warnings.warn(message, category=ElasticsearchDeprecationWarning)
explore_the_world-haystack-api-1   | /opt/venv/lib/python3.10/site-packages/elasticsearch/connection/http_urllib3.py:275: DeprecationWarning: HTTPResponse.getheaders() is deprecated and will be removed in urllib3 v2.1.0. Instead access HTTResponse.headers directly.
explore_the_world-haystack-api-1   |   return response.status, response.getheaders(), raw_data
explore_the_world-haystack-api-1   | INFO:haystack.modeling.utils:Using devices: CPU - Number of GPUs: 0
explore_the_world-haystack-api-1   | INFO:haystack.modeling.model.language_model:Auto-detected model language: english
explore_the_world-haystack-api-1   | The tokenizer class you load from this checkpoint is not the same type as the class this function is called from. It may result in unexpected tokenization. 
explore_the_world-haystack-api-1   | The tokenizer class you load from this checkpoint is 'DPRQuestionEncoderTokenizer'. 
explore_the_world-haystack-api-1   | The class this function is called from is 'DPRContextEncoderTokenizerFast'.
explore_the_world-haystack-api-1   | INFO:haystack.modeling.model.language_model:Auto-detected model language: english
explore_the_world-haystack-api-1   | INFO:haystack.pipelines.config:Param 'host' of component 'DocumentStore' overwritten with environment variable 'DOCUMENTSTORE_PARAMS_HOST' value 'elasticsearch'.
explore_the_world-haystack-api-1   | [2023-02-11 06:06:46 +0000] [51] [INFO] Started server process [51]
explore_the_world-haystack-api-1   | [2023-02-11 06:06:46 +0000] [51] [INFO] Waiting for application startup.
explore_the_world-haystack-api-1   | [2023-02-11 06:06:46 +0000] [51] [INFO] Application startup complete.
explore_the_world-haystack-api-1   | WARNING:haystack.document_stores.elasticsearch:Index is empty. First add some documents to search them.
explore_the_world-haystack-api-1   | WARNING:haystack.document_stores.elasticsearch:No documents with embeddings. Run the document store's update_embeddings() method.
explore_the_world-haystack-api-1   | INFO:haystack:{"request": "query='What are the Ten Commandments?' params={'filters': {}, 'Retriever': {'top_k': 3}, 'Reader': {'top_k': 3}, 'Query': {'debug': False}} debug=False", "response": {"answers": [], "documents": [], "root_node": "Query", "params": {"filters": {}, "Retriever": {"top_k": 3}, "Reader": {"top_k": 3}, "Query": {}}, "query": "What are the Ten Commandments?", "node_id": "Reader"}, "time": "0.71"}
explore_the_world-haystack-api-1   | WARNING:haystack.document_stores.elasticsearch:Index is empty. First add some documents to search them.
explore_the_world-haystack-api-1   | WARNING:haystack.document_stores.elasticsearch:No documents with embeddings. Run the document store's update_embeddings() method.
explore_the_world-haystack-api-1   | INFO:haystack:{"request": "query='What are the Ten Commandments?' params={'filters': {}, 'Retriever': {'top_k': 3}, 'Reader': {'top_k': 3}, 'Query': {'debug': False}} debug=False", "response": {"answers": [], "documents": [], "root_node": "Query", "params": {"filters": {}, "Retriever": {"top_k": 3}, "Reader": {"top_k": 3}, "Query": {}}, "query": "What are the Ten Commandments?", "node_id": "Reader"}, "time": "0.14"}
explore_the_world-haystack-api-1   | WARNING:haystack.document_stores.elasticsearch:Index is empty. First add some documents to search them.
explore_the_world-haystack-api-1   | WARNING:haystack.document_stores.elasticsearch:No documents with embeddings. Run the document store's update_embeddings() method.
explore_the_world-haystack-api-1   | INFO:haystack:{"request": "query='What are the Ten Commandments?' params={'filters': {}, 'Retriever': {'top_k': 3}, 'Reader': {'top_k': 3}, 'Query': {'debug': False}} debug=False", "response": {"answers": [], "documents": [], "root_node": "Query", "params": {"filters": {}, "Retriever": {"top_k": 3}, "Reader": {"top_k": 3}, "Query": {}}, "query": "What are the Ten Commandments?", "node_id": "Reader"}, "time": "0.13"}
explore_the_world-haystack-api-1   | WARNING:haystack.document_stores.elasticsearch:Index is empty. First add some documents to search them.
explore_the_world-haystack-api-1   | WARNING:haystack.document_stores.elasticsearch:No documents with embeddings. Run the document store's update_embeddings() method.
explore_the_world-haystack-api-1   | INFO:haystack:{"request": "query='What are the Ten Commandments?' params={'filters': {}, 'Retriever': {'top_k': 3}, 'Reader': {'top_k': 3}, 'Query': {'debug': False}} debug=False", "response": {"answers": [], "documents": [], "root_node": "Query", "params": {"filters": {}, "Retriever": {"top_k": 3}, "Reader": {"top_k": 3}, "Query": {}}, "query": "What are the Ten Commandments?", "node_id": "Reader"}, "time": "0.12"}
explore_the_world-haystack-api-1   | WARNING:haystack.document_stores.elasticsearch:Index is empty. First add some documents to search them.
explore_the_world-haystack-api-1   | WARNING:haystack.document_stores.elasticsearch:No documents with embeddings. Run the document store's update_embeddings() method.
explore_the_world-haystack-api-1   | INFO:haystack:{"request": "query='What are the Ten Commandments?' params={'filters': {}, 'Retriever': {'top_k': 3}, 'Reader': {'top_k': 3}, 'Query': {'debug': False}} debug=False", "response": {"answers": [], "documents": [], "root_node": "Query", "params": {"filters": {}, "Retriever": {"top_k": 3}, "Reader": {"top_k": 3}, "Query": {}}, "query": "What are the Ten Commandments?", "node_id": "Reader"}, "time": "0.11"}
explore_the_world-haystack-api-1   | WARNING:haystack.document_stores.elasticsearch:Index is empty. First add some documents to search them.
explore_the_world-haystack-api-1   | WARNING:haystack.document_stores.elasticsearch:No documents with embeddings. Run the document store's update_embeddings() method.
explore_the_world-haystack-api-1   | INFO:haystack:{"request": "query='What are the Ten Commandments?' params={'filters': {}, 'Retriever': {'top_k': 3}, 'Reader': {'top_k': 3}, 'Query': {'debug': False}} debug=False", "response": {"answers": [], "documents": [], "root_node": "Query", "params": {"filters": {}, "Retriever": {"top_k": 3}, "Reader": {"top_k": 3}, "Query": {}}, "query": "What are the Ten Commandments?", "node_id": "Reader"}, "time": "0.12"}
explore_the_world-haystack-api-1   | WARNING:haystack.document_stores.elasticsearch:Index is empty. First add some documents to search them.
explore_the_world-haystack-api-1   | WARNING:haystack.document_stores.elasticsearch:No documents with embeddings. Run the document store's update_embeddings() method.
explore_the_world-haystack-api-1   | INFO:haystack:{"request": "query='What are the Ten Commandments?' params={'filters': {}, 'Retriever': {'top_k': 3}, 'Reader': {'top_k': 3}, 'Query': {'debug': False}} debug=False", "response": {"answers": [], "documents": [], "root_node": "Query", "params": {"filters": {}, "Retriever": {"top_k": 3}, "Reader": {"top_k": 3}, "Query": {}}, "query": "What are the Ten Commandments?", "node_id": "Reader"}, "time": "0.12"}
explore_the_world-haystack-api-1   | WARNING:haystack.document_stores.elasticsearch:Index is empty. First add some documents to search them.
explore_the_world-haystack-api-1   | WARNING:haystack.document_stores.elasticsearch:No documents with embeddings. Run the document store's update_embeddings() method.
explore_the_world-haystack-api-1   | INFO:haystack:{"request": "query='What are the Ten Commandments?' params={'filters': {}, 'Retriever': {'top_k': 3}, 'Reader': {'top_k': 3}, 'Query': {'debug': False}} debug=False", "response": {"answers": [], "documents": [], "root_node": "Query", "params": {"filters": {}, "Retriever": {"top_k": 3}, "Reader": {"top_k": 3}, "Query": {}}, "query": "What are the Ten Commandments?", "node_id": "Reader"}, "time": "0.12"}
explore_the_world-haystack-api-1   | WARNING:haystack.document_stores.elasticsearch:Index is empty. First add some documents to search them.
explore_the_world-haystack-api-1   | WARNING:haystack.document_stores.elasticsearch:No documents with embeddings. Run the document store's update_embeddings() method.
explore_the_world-haystack-api-1   | INFO:haystack:{"request": "query='What are the Ten Commandments?' params={'filters': {}, 'Retriever': {'top_k': 3}, 'Reader': {'top_k': 3}, 'Query': {'debug': False}} debug=False", "response": {"answers": [], "documents": [], "root_node": "Query", "params": {"filters": {}, "Retriever": {"top_k": 3}, "Reader": {"top_k": 3}, "Query": {}}, "query": "What are the Ten Commandments?", "node_id": "Reader"}, "time": "0.12"}
explore_the_world-haystack-api-1   | WARNING:haystack.document_stores.elasticsearch:Index is empty. First add some documents to search them.
explore_the_world-haystack-api-1   | WARNING:haystack.document_stores.elasticsearch:No documents with embeddings. Run the document store's update_embeddings() method.
explore_the_world-haystack-api-1   | INFO:haystack:{"request": "query='What are the Ten Commandments?' params={'filters': {}, 'Retriever': {'top_k': 3}, 'Reader': {'top_k': 3}, 'Query': {'debug': False}} debug=False", "response": {"answers": [], "documents": [], "root_node": "Query", "params": {"filters": {}, "Retriever": {"top_k": 3}, "Reader": {"top_k": 3}, "Query": {}}, "query": "What are the Ten Commandments?", "node_id": "Reader"}, "time": "0.11"}
explore_the_world-haystack-api-1   | WARNING:haystack.document_stores.elasticsearch:Index is empty. First add some documents to search them.
explore_the_world-haystack-api-1   | WARNING:haystack.document_stores.elasticsearch:No documents with embeddings. Run the document store's update_embeddings() method.
explore_the_world-haystack-api-1   | INFO:haystack:{"request": "query='What are the Ten Commandments?' params={'filters': {}, 'Retriever': {'top_k': 3}, 'Reader': {'top_k': 3}, 'Query': {'debug': False}} debug=False", "response": {"answers": [], "documents": [], "root_node": "Query", "params": {"filters": {}, "Retriever": {"top_k": 3}, "Reader": {"top_k": 3}, "Query": {}}, "query": "What are the Ten Commandments?", "node_id": "Reader"}, "time": "0.12"}

Maybe can be this line

WARNING:haystack.document_stores.elasticsearch:No documents with embeddings. Run the document store's update_embeddings() method.

What can I do? I really appreciate any help with this!

Thanks

Change default language

Hello!

First of all, awesome project! Thank you for this demo.

I am trying to use a file that is in Portuguese.

When I run the demo, I get this message:
"INFO:haystack.modeling.model.language_model:Auto-detected model language: english"

Is it possible to change the default language of the content in dataset folder and the answers to Portuguese?

If yes, how can I do this? What can I change in the code to achieve this goal?

Thank you!!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.