-
Notifications
You must be signed in to change notification settings - Fork 810
SOLR-18071 Support Stored Fields in Export Writer #4053
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
Merged
+633
−64
Merged
Changes from all commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
c7c2703
opus assisted first pass
kotman12 7a41252
clean up cruft
kotman12 a16594d
change expected exception message and remove duplication
kotman12 ec14338
allow arbitrary index shift in field writer
kotman12 58e9a5b
add udvas test
kotman12 9d25470
avoid DV lookup if we're reading StoredFields
kotman12 cad9607
revert ... overridden by mistake
kotman12 8f08d35
clean up comment
kotman12 e064f6e
better comment
kotman12 815892a
actually test glob pattern
kotman12 093af42
changelog entry
kotman12 ac7966a
add unreleased changelog entry
kotman12 d510972
move StoredFieldsWriter to its own file
kotman12 c30ed95
simplify logic (subjective)
dsmiley 9f7d53f
drop fieldIndex from FieldWriter + other cleanup
kotman12 ee88b4b
still can't sort without DVs (document and test) + document compariso…
kotman12 6220814
simplify testSortingWithoutDocValues
kotman12 92cef30
improve document accuracy
kotman12 314949b
italicize
kotman12 83dd652
missing comma
kotman12 c1c183f
format and wording
kotman12 6bd8b03
Update solr/solr-ref-guide/modules/query-guide/pages/exporting-result…
kotman12 c7f90f6
extract canUseDocValues method and doc note
kotman12 bc836fe
2X2 table
kotman12 c836921
2X2 table tweak
kotman12 a88370f
2X2 table tweak
kotman12 1f34207
simplify
kotman12 608fd6c
wording
kotman12 9ec8052
ref guide tweaks
dsmiley File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
changelog/unreleased/SOLR-18071-support-stored-fields-export-writer.yml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| # See https://github.com/apache/solr/blob/main/dev-docs/changelog.adoc | ||
| title: Support including stored fields in Export Writer output. | ||
| type: added # added, changed, fixed, deprecated, removed, dependency_update, security, other | ||
| authors: | ||
| - name: Luke Kot-Zaniewski | ||
| links: | ||
| - name: SOLR-18071 | ||
| url: https://issues.apache.org/jira/browse/SOLR-18071 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Love this! I've been burned so many times on wanting to do this and discovering missing DocValues.