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, Does Anyone Know Why I Can'T See The Worker Plots Nor The Training Plots In Clearml Ui (K8S Deployment)? The Error Is:

Hi all, does anyone know why I can't see the worker plots nor the training plots in clearml UI (k8s deployment)? The error is:

"result_msg": "General data error (BadRequestError(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 [worker] in order to load field data by uninverting the inverted index. Note that this can use significant memory.'))", 
  
  
Posted 11 days ago
Votes Newest

Answers 8


its a relatively fresh deploy

  
  
Posted 10 days ago

None

  
  
Posted 10 days ago

i think i found it. we had to replace elasticsearch after install of clearml. then i guess clearml migrations iddn't rerun

  
  
Posted 8 days ago

version 7.14.4

  
  
Posted 10 days ago

i sniffed the traffic

  
  
Posted 10 days ago

on kubernetes

  
  
Posted 10 days ago

also the inability to see workers/queues has the same error but on diferent fields. so i guess i must be missing something bigger than just a misconfigured index ?

  
  
Posted 8 days ago

i did this as a workaround:

curl -XPUT " None " -H 'Content-Type: application/json' -d'
{
"properties": {
"metric": { "type": "text", "fielddata": true },
"variant": { "type": "text", "fielddata": true }
}
}'

but this workaround should not be needed ,right ? is this a compat issue ? or was my elasticsearch not properly initialized ?

  
  
Posted 8 days ago
99 Views
8 Answers
11 days ago
7 days ago
Tags