Valentin Crettaz
Valentin Crettaz
In the [Search-As-You-Type, Completion, and Suggestion (Elasticsearch).ipynb](https://github.com/o19s/relevant-search-book/blob/master/ipython/Chapter%208%20%28Providing%20Relevance%20Feedback%29.ipynb/Search-As-You-Type%2C%20Completion%2C%20and%20Suggestion%20%28Elasticsearch%29.ipynb) notebook, the two following typos (file name + path) needs to be corrected: `movies=pickle.load(open("../../movies_list.p","rb"))` should read `movies=pickle.load(open("../movies.p","rb"))`
When bringing up the notebook for chapter 7, the following error popped up on screen ``` Notebook Validation failed: u'*' is not of type u'integer', u'null': "*" ``` , the `tie_breaker: 0.3` parameter is missing in the Combined section (content sub query).
In [Search-As-You-Type, Completion, and Suggestion (Elasticsearch).ipynb](https://github.com/o19s/relevant-search-book/blob/master/ipython/Chapter%208%20%28Providing%20Relevance%20Feedback%29.ipynb/Search-As-You-Type%2C%20Completion%2C%20and%20Suggestion%20%28Elasticsearch%29.ipynb), in the "Post-Search Suggest" section, `suggest_body` contains a small typo: ``` suggest_body = { "title_completion": {
On [line 3](https://github.com/jscomplete/graphql-in-action/blob/8.7/api/src/schema/types/approach-detail-category.js#L3) and [line 12](https://github.com/jscomplete/graphql-in-action/blob/3b3cf5090208312700498728a41f77ac99cdbb48/api/src/schema/types/approach-detail-category.js#L12) of `approach-detail-category.js`: `ApproachDetailCategroy` should read `ApproachDetailCategory`
In order to show the state of the tokens at each step of the analysis process, elyzer performs an analyze query for each stage: [first char filters](https://github.com/o19s/elyzer/blob/master/elyzer/elyzer.py#L86-L91), then [tokenizer](https://github.com/o19s/elyzer/blob/master/elyzer/elyzer.py#L86-L91), and...
The [two remaining shortcomings](https://github.com/o19s/elyzer#shortcomings) could be addressed by setting `explain: true` when calling the [Analyze API](https://www.elastic.co/guide/en/elasticsearch/reference/5.3/_explain_analyze.html) (available since ES 2.2) * Only works for custom analyzers right now (as it...
Occasionally, my update by query requests are failing with the following output: ``` { "ok": true, "took": 69, "total": 0, "updated": 0, "indices": [ { "logs_2007": { "0": { "error":...
**Context** - ElasticDump version: 6.88.0 - Elasticsearch version: 7.17.5 - Node.js version *(note that nodejs v10+ is required for this tool)*: 10.24.1 **Describe the bug** When exporting data to CSV...
While investigating the root cause of [indexing failures](https://github.com/elastic/elasticsearch/issues/107601) (also reported [here](https://github.com/elastic/elasticsearch/issues/80802#issuecomment-1285039063) in the past), we discovered that when using Metricbeat to feed Stack Monitoring, the `elasticsearch` module of Metricbeat ships...