You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/ml/job/config/CategorizationAnalyzerConfig.java
+17Lines changed: 17 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -210,6 +210,23 @@ public static CategorizationAnalyzerConfig buildStandardCategorizationAnalyzer(L
210
210
.build();
211
211
}
212
212
213
+
/**
214
+
* Create a <code>categorization_analyzer</code> that will be used by the ES|QL categorize function.
215
+
* The only difference from the DSL analyzer is the tokenizer (standard instead of ml_standard).
216
+
* This means the results are slightly different from the categorize text aggregation and the ML job,
217
+
* however you can use these tokens for looking up messages in indices generated with the standard
218
+
* tokenizer. The latter is considered more important.
Copy file name to clipboardExpand all lines: x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/aggregation/blockhash/CategorizeBlockHash.java
0 commit comments