Skip to content
New issue

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

Remove length check for source-only keyword fields #93299

Merged
merged 3 commits into from
Jan 27, 2023

Conversation

cbuescher
Copy link
Member

@cbuescher cbuescher commented Jan 27, 2023

Since 8.2 we check keyword fields length against Lucenes MAX_TERM_LENGTH size before indexing to prevent later errors and potential need for rollbacks (see #83738). This, however, currently also triggers even if the field is defined as not-indexed, not stored and without doc-values (effectively a source-only field). In this case, we don't need to apply the length check, making storing larger source-only keyword fields possible as before.

Closes #93046

Since 8.2 we check keyword fields length against Lucenes MAX_TERM_LENGTH size
before indexing to prevent later errors and potential need for rollbacks (see
83738). This, however, currently also triggers even if the field is defined as
not-indexed, not stored and without doc-values (effectively a source-only
field). In this case, we don't need to apply the length check, making storing
larger source-only keyword fields possible as before.

Closes elastic#93046
@cbuescher cbuescher added >bug :Search Foundations/Mapping Index mappings, including merging and defining field types v8.7.0 labels Jan 27, 2023
@elasticsearchmachine elasticsearchmachine added the Team:Search Meta label for search team label Jan 27, 2023
@elasticsearchmachine
Copy link
Collaborator

Pinging @elastic/es-search (Team:Search)

@elasticsearchmachine
Copy link
Collaborator

Hi @cbuescher, I've created a changelog YAML for you.

Copy link
Member

@javanna javanna left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@cbuescher cbuescher changed the title No length check for source-only keyword fields Remove length check for source-only keyword fields Jan 27, 2023
@cbuescher
Copy link
Member Author

@elasticsearchmachine update branch

@cbuescher
Copy link
Member Author

@elasticmachine update branch

@cbuescher cbuescher merged commit bd79620 into elastic:main Jan 27, 2023
jmuscireum added a commit to scireum/sirius-biz that referenced this pull request Apr 20, 2023
ES < 8.7.0 has a bug were it wrongfully raises an error for  fields longer than 32766 that are not indexed in lucene (see elastic/elasticsearch#93299).

This PR introduces a temporary limit on the length of some commonly long fields of logging entities and lowers the configured default length of LoggedMessage. We use 30k instead of 32766 as ES checks the byte length and not the character count. 30k should be good enough as the number of non-ASCII characters should be quite low.

Fixes: SIRI-786
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
>bug :Search Foundations/Mapping Index mappings, including merging and defining field types Team:Search Meta label for search team v8.7.0
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Indexing a large (>32k) keyword field without indexing and docvalues (_source only) throws mapping error
4 participants