We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, the elasticsearch search filter in SettingsBuilder.java enforces a minimum length of 3 characters for search terms.
datahub/metadata-io/src/main/java/com/linkedin/metadata/search/elasticsearch/indexbuilder/SettingsBuilder.java
Line 228 in a6e1624
Change the minimum length from 3 to 2 characters:
ImmutableMap.<String, Object>builder().put(TYPE, "length").put("min", "2").build());
Currently, the minimum search length of 3 characters creates significant limitations for multilingual search capabilities, especially for:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Current Behavior
Currently, the elasticsearch search filter in SettingsBuilder.java enforces a minimum length of 3 characters for search terms.
datahub/metadata-io/src/main/java/com/linkedin/metadata/search/elasticsearch/indexbuilder/SettingsBuilder.java
Line 228 in a6e1624
Proposed Change
Change the minimum length from 3 to 2 characters:
Motivation
Currently, the minimum search length of 3 characters creates significant limitations for multilingual search capabilities, especially for:
Expected Impact
Positive Changes
The text was updated successfully, but these errors were encountered: