Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
Hi All! I Can'T Use Scalar Tab In All Experiments Due To Elastic Search Error:

Hi all!

I can't use scalar tab in all experiments due to elastic search error:

Error 100 : General data error (RequestError(400, 'search_phase_execution_exception', 'Text fields are not optimised for operations that require per-document field data like aggregations and sorting, so these operations are disabled by default. Please use a keyword field instead. Alternatively, set fielddata=true on [metric] in order to load field data by uninverting the inverted index. Note that this can use significant memory.'))
Error 100 : General data error (RequestError(400, 'search_phase_execution_exception', 'Text fields are not optimised for operations that require per-document field data like aggregations and sorting, so these operations are disabled by default. Please use a keyword field instead. Alternatively, set fielddata=true on [metric] in order to load field data by uninverting the inverted index. Note that this can use significant memory.'))

I don't know when it started, but when I try reboot clearml-server - this error appears again.

P. S. None of the basic elastic search parameters were overridden before.

  
  
Posted 10 months ago
Votes Newest

Answers 3


@<1569496075083976704:profile|SweetShells3> were you able to fix this?

  
  
Posted 16 days ago

Please run the following commands and share the results. Chances are that somehow the default mappings that we apply on the index creation were not applied to your events scalar index.

  • First run the following command
curl -XGET "localhost:9200/_cat/indices/events-training_stats_scalar-*"
  1. And then for each of the returned indices run the following:
curl -XGET "localhost:9200/<index_name>/_mappings"
  
  
Posted 10 months ago

Hi @<1569496075083976704:profile|SweetShells3>
Are you using the standard docker-compose ? are using the default elastic container ?
What exactly changed ?

  
  
Posted 10 months ago