[jira] [Commented] (SOLR-12962) add an 'uninvertible' field(type) option (that defaults to "true" for backcompat)

2019-01-10 Thread David Smiley (JIRA)


[ 
https://issues.apache.org/jira/browse/SOLR-12962?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16739802#comment-16739802
 ] 

David Smiley commented on SOLR-12962:
-

Good point Hoss -- this is a more widespread issue.

BTW I'm quite aware that a separate issue would be appropriate should we take 
further action.  I occasionally comment on closed issues when I think my 
comment is of interest to the creator and watchers of that issue.

> add an 'uninvertible' field(type) option (that defaults to "true" for 
> backcompat)
> -
>
> Key: SOLR-12962
> URL: https://issues.apache.org/jira/browse/SOLR-12962
> Project: Solr
>  Issue Type: Sub-task
>Reporter: Hoss Man
>Assignee: Hoss Man
>Priority: Major
> Fix For: 7.6, 8.0
>
> Attachments: SOLR-12962.patch, SOLR-12962.patch, SOLR-12962.patch, 
> SOLR-12962.patch, SOLR-12962.patch
>
>
> field & fieldtype declarations should support an {{uninvertible}} option 
> (which defaults to "true") for backcompat that dictates wether or not 
> Uninversion can be performed on fields.
> See parent issue for more background/discussion.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



[jira] [Commented] (SOLR-12962) add an 'uninvertible' field(type) option (that defaults to "true" for backcompat)

2019-01-09 Thread Hoss Man (JIRA)


[ 
https://issues.apache.org/jira/browse/SOLR-12962?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16738876#comment-16738876
 ] 

Hoss Man commented on SOLR-12962:
-

I think the oddity you're seeing isn't specific/special to {{uninvertible}} ... 
it's the same kind of oddity that can exist if you look at techproduct's 
{{random_*}} dynamic field in the schema browser: it says it's "stored" even 
though the concept of being stored makes no sense (and the corresponding 
FieldProperty is unused) in RandomSortField because it's inheriting the global 
(implicit) default.

Likewise if you define an {{ExternalFileField}} it also picks up all sorts of 
(implicit default) FieldProperties ("indexed", "stored", "uninvertible", 
"omitTermFreqAndPositions") that make no sense for that field type, but are 
still inherited by any SchemaField's that use that type and show up in the 
schema browser.

Lots of other oddities like this exist, but many are only visable in the Schema 
API (because of the limited info returned by Luke which is what the schema 
browser uses) when using the {{showDefaults=true}} option. Example: all 
FieldTypes have an implicit default of "useDocValuesAsStored=true" when the 
schema version>1.6 ... even for fields where doc values make no sense like 
TextField, ExternalFileField, etc...

I'm not saying there isn't room for improvement here, just that it's a much 
more widespread issue of implicit default FieldProperties that don't always 
make sense for all FieldType _classes_ (let alone {{}} and 
{{}} instances based on other explicit properties) above and beyond 
{{uninvertible}} and should be tackled more broadly in a distinct issue 
(although even if we *only* wanted to try to fix this for {{uninveritible}} it 
needs a new issue for tracking since this code has already been released)

> add an 'uninvertible' field(type) option (that defaults to "true" for 
> backcompat)
> -
>
> Key: SOLR-12962
> URL: https://issues.apache.org/jira/browse/SOLR-12962
> Project: Solr
>  Issue Type: Sub-task
>Reporter: Hoss Man
>Assignee: Hoss Man
>Priority: Major
> Fix For: 7.6, 8.0
>
> Attachments: SOLR-12962.patch, SOLR-12962.patch, SOLR-12962.patch, 
> SOLR-12962.patch, SOLR-12962.patch
>
>
> field & fieldtype declarations should support an {{uninvertible}} option 
> (which defaults to "true") for backcompat that dictates wether or not 
> Uninversion can be performed on fields.
> See parent issue for more background/discussion.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



[jira] [Commented] (SOLR-12962) add an 'uninvertible' field(type) option (that defaults to "true" for backcompat)

2019-01-09 Thread David Smiley (JIRA)


[ 
https://issues.apache.org/jira/browse/SOLR-12962?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16738681#comment-16738681
 ] 

David Smiley commented on SOLR-12962:
-

I see an oddity in what we have.  I look in the schema browser and look at a 
field type that I _know_ is fundamentally not uninvertible -- a 
SortableTextField.  To my surprise, I see a green checkmark under 
"UnInvertible".  A SortableTextField overrides {{getUninversionType}} to return 
null.  A FieldType has two related aspects to its state that together need to 
be examined to know if it's uninvertible -- the bit flag and the type getter.  
It would be good to somehow make this consistent or it leads to confusion (as I 
report here) or perhaps bugs.  Perhaps setArgs() could call getUninversionType 
and see if it's null in order to disable the flag?  Or perhaps better use 
checkSchemaField().  And if the user explicitly set uninvertible then throw an 
error.  WDYT?

> add an 'uninvertible' field(type) option (that defaults to "true" for 
> backcompat)
> -
>
> Key: SOLR-12962
> URL: https://issues.apache.org/jira/browse/SOLR-12962
> Project: Solr
>  Issue Type: Sub-task
>Reporter: Hoss Man
>Assignee: Hoss Man
>Priority: Major
> Fix For: 7.6, 8.0
>
> Attachments: SOLR-12962.patch, SOLR-12962.patch, SOLR-12962.patch, 
> SOLR-12962.patch, SOLR-12962.patch
>
>
> field & fieldtype declarations should support an {{uninvertible}} option 
> (which defaults to "true") for backcompat that dictates wether or not 
> Uninversion can be performed on fields.
> See parent issue for more background/discussion.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



[jira] [Commented] (SOLR-12962) add an 'uninvertible' field(type) option (that defaults to "true" for backcompat)

2018-11-09 Thread ASF subversion and git services (JIRA)


[ 
https://issues.apache.org/jira/browse/SOLR-12962?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16681678#comment-16681678
 ] 

ASF subversion and git services commented on SOLR-12962:


Commit 36ca27c36e90e33abbae8b6ce5359c7655c898c5 in lucene-solr's branch 
refs/heads/branch_7x from Chris Hostetter
[ https://git-wip-us.apache.org/repos/asf?p=lucene-solr.git;h=36ca27c ]

SOLR-12962: Added a new 'uninvertible' option for fields and fieldtypes. This 
defaults to 'true' for backcompat allowing a FieldCache to be built for indexed 
fields as needed, but users are encouraged to set this to false (using 
docValues as needed) to reduce the risk of large fluxuations in heap size due 
to unexpected attempts to sort/facet/function on non-docValue fields.

(cherry picked from commit 77a4bfaa90637cd3d9a8a2ef4889e163dab143aa)

Conflicts:
solr/core/src/test/org/apache/solr/BasicFunctionalityTest.java


> add an 'uninvertible' field(type) option (that defaults to "true" for 
> backcompat)
> -
>
> Key: SOLR-12962
> URL: https://issues.apache.org/jira/browse/SOLR-12962
> Project: Solr
>  Issue Type: Sub-task
>Reporter: Hoss Man
>Assignee: Hoss Man
>Priority: Major
> Fix For: 7.6, master (8.0)
>
> Attachments: SOLR-12962.patch, SOLR-12962.patch, SOLR-12962.patch, 
> SOLR-12962.patch, SOLR-12962.patch
>
>
> field & fieldtype declarations should support an {{uninvertible}} option 
> (which defaults to "true") for backcompat that dictates wether or not 
> Uninversion can be performed on fields.
> See parent issue for more background/discussion.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



[jira] [Commented] (SOLR-12962) add an 'uninvertible' field(type) option (that defaults to "true" for backcompat)

2018-11-09 Thread ASF subversion and git services (JIRA)


[ 
https://issues.apache.org/jira/browse/SOLR-12962?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16681594#comment-16681594
 ] 

ASF subversion and git services commented on SOLR-12962:


Commit 77a4bfaa90637cd3d9a8a2ef4889e163dab143aa in lucene-solr's branch 
refs/heads/master from Chris Hostetter
[ https://git-wip-us.apache.org/repos/asf?p=lucene-solr.git;h=77a4bfa ]

SOLR-12962: Added a new 'uninvertible' option for fields and fieldtypes. This 
defaults to 'true' for backcompat allowing a FieldCache to be built for indexed 
fields as needed, but users are encouraged to set this to false (using 
docValues as needed) to reduce the risk of large fluxuations in heap size due 
to unexpected attempts to sort/facet/function on non-docValue fields.


> add an 'uninvertible' field(type) option (that defaults to "true" for 
> backcompat)
> -
>
> Key: SOLR-12962
> URL: https://issues.apache.org/jira/browse/SOLR-12962
> Project: Solr
>  Issue Type: Sub-task
>Reporter: Hoss Man
>Assignee: Hoss Man
>Priority: Major
> Fix For: 7.6, master (8.0)
>
> Attachments: SOLR-12962.patch, SOLR-12962.patch, SOLR-12962.patch, 
> SOLR-12962.patch, SOLR-12962.patch
>
>
> field & fieldtype declarations should support an {{uninvertible}} option 
> (which defaults to "true") for backcompat that dictates wether or not 
> Uninversion can be performed on fields.
> See parent issue for more background/discussion.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



[jira] [Commented] (SOLR-12962) add an 'uninvertible' field(type) option (that defaults to "true" for backcompat)

2018-11-08 Thread Lucene/Solr QA (JIRA)


[ 
https://issues.apache.org/jira/browse/SOLR-12962?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16680964#comment-16680964
 ] 

Lucene/Solr QA commented on SOLR-12962:
---

| (x) *{color:red}-1 overall{color}* |
\\
\\
|| Vote || Subsystem || Runtime || Comment ||
|| || || || {color:brown} Prechecks {color} ||
| {color:green}+1{color} | {color:green} test4tests {color} | {color:green}  0m 
 0s{color} | {color:green} The patch appears to include 10 new or modified test 
files. {color} |
|| || || || {color:brown} master Compile Tests {color} ||
| {color:green}+1{color} | {color:green} compile {color} | {color:green}  2m 
18s{color} | {color:green} master passed {color} |
|| || || || {color:brown} Patch Compile Tests {color} ||
| {color:green}+1{color} | {color:green} compile {color} | {color:green}  1m 
55s{color} | {color:green} the patch passed {color} |
| {color:green}+1{color} | {color:green} javac {color} | {color:green}  1m 
55s{color} | {color:green} the patch passed {color} |
| {color:green}+1{color} | {color:green} Release audit (RAT) {color} | 
{color:green}  1m 47s{color} | {color:green} the patch passed {color} |
| {color:green}+1{color} | {color:green} Check forbidden APIs {color} | 
{color:green}  1m 35s{color} | {color:green} the patch passed {color} |
| {color:green}+1{color} | {color:green} Validate source patterns {color} | 
{color:green}  1m 35s{color} | {color:green} the patch passed {color} |
| {color:green}+1{color} | {color:green} Validate ref guide {color} | 
{color:green}  1m 35s{color} | {color:green} the patch passed {color} |
|| || || || {color:brown} Other Tests {color} ||
| {color:red}-1{color} | {color:red} unit {color} | {color:red} 46m 36s{color} 
| {color:red} core in the patch failed. {color} |
| {color:red}-1{color} | {color:red} unit {color} | {color:red}  3m 39s{color} 
| {color:red} solrj in the patch failed. {color} |
| {color:black}{color} | {color:black} {color} | {color:black} 58m 16s{color} | 
{color:black} {color} |
\\
\\
|| Reason || Tests ||
| Failed junit tests | solr.cloud.DeleteReplicaTest |
|   | solr.client.solrj.impl.CloudSolrClientTest |
\\
\\
|| Subsystem || Report/Notes ||
| JIRA Issue | SOLR-12962 |
| JIRA Patch URL | 
https://issues.apache.org/jira/secure/attachment/12947492/SOLR-12962.patch |
| Optional Tests |  compile  javac  unit  ratsources  checkforbiddenapis  
validatesourcepatterns  validaterefguide  |
| uname | Linux lucene1-us-west 4.4.0-137-generic #163~14.04.1-Ubuntu SMP Mon 
Sep 24 17:14:57 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux |
| Build tool | ant |
| Personality | 
/home/jenkins/jenkins-slave/workspace/PreCommit-SOLR-Build/sourcedir/dev-tools/test-patch/lucene-solr-yetus-personality.sh
 |
| git revision | master / fbb9872 |
| ant | version: Apache Ant(TM) version 1.9.3 compiled on July 24 2018 |
| Default Java | 1.8.0_191 |
| unit | 
https://builds.apache.org/job/PreCommit-SOLR-Build/221/artifact/out/patch-unit-solr_core.txt
 |
| unit | 
https://builds.apache.org/job/PreCommit-SOLR-Build/221/artifact/out/patch-unit-solr_solrj.txt
 |
|  Test Results | 
https://builds.apache.org/job/PreCommit-SOLR-Build/221/testReport/ |
| modules | C: solr/core solr/solrj solr/solr-ref-guide solr/webapp U: solr |
| Console output | 
https://builds.apache.org/job/PreCommit-SOLR-Build/221/console |
| Powered by | Apache Yetus 0.7.0   http://yetus.apache.org |


This message was automatically generated.



> add an 'uninvertible' field(type) option (that defaults to "true" for 
> backcompat)
> -
>
> Key: SOLR-12962
> URL: https://issues.apache.org/jira/browse/SOLR-12962
> Project: Solr
>  Issue Type: Sub-task
>Reporter: Hoss Man
>Assignee: Hoss Man
>Priority: Major
> Fix For: 7.6, master (8.0)
>
> Attachments: SOLR-12962.patch, SOLR-12962.patch, SOLR-12962.patch, 
> SOLR-12962.patch, SOLR-12962.patch
>
>
> field & fieldtype declarations should support an {{uninvertible}} option 
> (which defaults to "true") for backcompat that dictates wether or not 
> Uninversion can be performed on fields.
> See parent issue for more background/discussion.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



[jira] [Commented] (SOLR-12962) add an 'uninvertible' field(type) option (that defaults to "true" for backcompat)

2018-11-08 Thread Lucene/Solr QA (JIRA)


[ 
https://issues.apache.org/jira/browse/SOLR-12962?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16680659#comment-16680659
 ] 

Lucene/Solr QA commented on SOLR-12962:
---

| (/) *{color:green}+1 overall{color}* |
\\
\\
|| Vote || Subsystem || Runtime || Comment ||
|| || || || {color:brown} Prechecks {color} ||
| {color:green}+1{color} | {color:green} test4tests {color} | {color:green}  0m 
 0s{color} | {color:green} The patch appears to include 9 new or modified test 
files. {color} |
|| || || || {color:brown} master Compile Tests {color} ||
| {color:green}+1{color} | {color:green} compile {color} | {color:green}  3m 
56s{color} | {color:green} master passed {color} |
|| || || || {color:brown} Patch Compile Tests {color} ||
| {color:green}+1{color} | {color:green} compile {color} | {color:green}  3m  
7s{color} | {color:green} the patch passed {color} |
| {color:green}+1{color} | {color:green} javac {color} | {color:green}  3m  
7s{color} | {color:green} the patch passed {color} |
| {color:green}+1{color} | {color:green} Release audit (RAT) {color} | 
{color:green}  2m 30s{color} | {color:green} the patch passed {color} |
| {color:green}+1{color} | {color:green} Check forbidden APIs {color} | 
{color:green}  2m  5s{color} | {color:green} the patch passed {color} |
| {color:green}+1{color} | {color:green} Validate source patterns {color} | 
{color:green}  2m  5s{color} | {color:green} the patch passed {color} |
| {color:green}+1{color} | {color:green} Validate ref guide {color} | 
{color:green}  2m  5s{color} | {color:green} the patch passed {color} |
|| || || || {color:brown} Other Tests {color} ||
| {color:green}+1{color} | {color:green} unit {color} | {color:green} 77m 
21s{color} | {color:green} core in the patch passed. {color} |
| {color:green}+1{color} | {color:green} unit {color} | {color:green}  8m 
29s{color} | {color:green} solrj in the patch passed. {color} |
| {color:black}{color} | {color:black} {color} | {color:black} 99m 39s{color} | 
{color:black} {color} |
\\
\\
|| Subsystem || Report/Notes ||
| JIRA Issue | SOLR-12962 |
| JIRA Patch URL | 
https://issues.apache.org/jira/secure/attachment/12947462/SOLR-12962.patch |
| Optional Tests |  compile  javac  unit  ratsources  checkforbiddenapis  
validatesourcepatterns  validaterefguide  |
| uname | Linux lucene2-us-west.apache.org 4.4.0-112-generic #135-Ubuntu SMP 
Fri Jan 19 11:48:36 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux |
| Build tool | ant |
| Personality | 
/home/jenkins/jenkins-slave/workspace/PreCommit-SOLR-Build/sourcedir/dev-tools/test-patch/lucene-solr-yetus-personality.sh
 |
| git revision | master / 73005d4 |
| ant | version: Apache Ant(TM) version 1.9.6 compiled on July 20 2018 |
| Default Java | 1.8.0_191 |
|  Test Results | 
https://builds.apache.org/job/PreCommit-SOLR-Build/220/testReport/ |
| modules | C: solr/core solr/solrj solr/solr-ref-guide solr/webapp U: solr |
| Console output | 
https://builds.apache.org/job/PreCommit-SOLR-Build/220/console |
| Powered by | Apache Yetus 0.7.0   http://yetus.apache.org |


This message was automatically generated.



> add an 'uninvertible' field(type) option (that defaults to "true" for 
> backcompat)
> -
>
> Key: SOLR-12962
> URL: https://issues.apache.org/jira/browse/SOLR-12962
> Project: Solr
>  Issue Type: Sub-task
>Reporter: Hoss Man
>Assignee: Hoss Man
>Priority: Major
> Fix For: 7.6, master (8.0)
>
> Attachments: SOLR-12962.patch, SOLR-12962.patch, SOLR-12962.patch, 
> SOLR-12962.patch, SOLR-12962.patch
>
>
> field & fieldtype declarations should support an {{uninvertible}} option 
> (which defaults to "true") for backcompat that dictates wether or not 
> Uninversion can be performed on fields.
> See parent issue for more background/discussion.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



[jira] [Commented] (SOLR-12962) add an 'uninvertible' field(type) option (that defaults to "true" for backcompat)

2018-11-08 Thread David Smiley (JIRA)


[ 
https://issues.apache.org/jira/browse/SOLR-12962?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16680426#comment-16680426
 ] 

David Smiley commented on SOLR-12962:
-

The patch looks good Hoss; nice work!
* FieldType.getUninversionMap: why do you propose that it would be nice to 
throw an error here?  I think returning null is quite correct -- it's how we 
communicate the field should not be uninverted.

I know it's too late but I wonder what it would look like to conceive of this 
setting as a special docValuesFormat instead -- an uninverting docValuesFormat. 
 I think long ago when docValues first appeared that could have been more 
viable since it would have been how we communicate to uninvert a field.  But 
with today's legacy concerns, that would just create back-compat pain since 
you'd have to go set docValues=true docValuesFormat=UNINVERT on all fields you 
want to uninvert when migrating a schema to such a setting.

> add an 'uninvertible' field(type) option (that defaults to "true" for 
> backcompat)
> -
>
> Key: SOLR-12962
> URL: https://issues.apache.org/jira/browse/SOLR-12962
> Project: Solr
>  Issue Type: Sub-task
>Reporter: Hoss Man
>Assignee: Hoss Man
>Priority: Major
> Fix For: 7.6, master (8.0)
>
> Attachments: SOLR-12962.patch, SOLR-12962.patch, SOLR-12962.patch, 
> SOLR-12962.patch
>
>
> field & fieldtype declarations should support an {{uninvertible}} option 
> (which defaults to "true") for backcompat that dictates wether or not 
> Uninversion can be performed on fields.
> See parent issue for more background/discussion.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



[jira] [Commented] (SOLR-12962) add an 'uninvertible' field(type) option (that defaults to "true" for backcompat)

2018-11-08 Thread Lucene/Solr QA (JIRA)


[ 
https://issues.apache.org/jira/browse/SOLR-12962?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16679789#comment-16679789
 ] 

Lucene/Solr QA commented on SOLR-12962:
---

| (x) *{color:red}-1 overall{color}* |
\\
\\
|| Vote || Subsystem || Runtime || Comment ||
|| || || || {color:brown} Prechecks {color} ||
| {color:green}+1{color} | {color:green} test4tests {color} | {color:green}  0m 
 0s{color} | {color:green} The patch appears to include 9 new or modified test 
files. {color} |
|| || || || {color:brown} master Compile Tests {color} ||
| {color:green}+1{color} | {color:green} compile {color} | {color:green}  2m 
47s{color} | {color:green} master passed {color} |
|| || || || {color:brown} Patch Compile Tests {color} ||
| {color:green}+1{color} | {color:green} compile {color} | {color:green}  3m 
28s{color} | {color:green} the patch passed {color} |
| {color:green}+1{color} | {color:green} javac {color} | {color:green}  3m 
29s{color} | {color:green} the patch passed {color} |
| {color:green}+1{color} | {color:green} Release audit (RAT) {color} | 
{color:green}  3m 31s{color} | {color:green} the patch passed {color} |
| {color:green}+1{color} | {color:green} Check forbidden APIs {color} | 
{color:green}  3m  6s{color} | {color:green} the patch passed {color} |
| {color:red}-1{color} | {color:red} Validate source patterns {color} | 
{color:red}  3m  6s{color} | {color:red} Validate source patterns 
validate-source-patterns failed {color} |
| {color:red}-1{color} | {color:red} Validate ref guide {color} | {color:red}  
3m  6s{color} | {color:red} Validate source patterns validate-source-patterns 
failed {color} |
|| || || || {color:brown} Other Tests {color} ||
| {color:green}+1{color} | {color:green} unit {color} | {color:green} 80m  
9s{color} | {color:green} core in the patch passed. {color} |
| {color:green}+1{color} | {color:green} unit {color} | {color:green}  8m 
29s{color} | {color:green} solrj in the patch passed. {color} |
| {color:black}{color} | {color:black} {color} | {color:black}100m 11s{color} | 
{color:black} {color} |
\\
\\
|| Subsystem || Report/Notes ||
| JIRA Issue | SOLR-12962 |
| JIRA Patch URL | 
https://issues.apache.org/jira/secure/attachment/12947338/SOLR-12962.patch |
| Optional Tests |  compile  javac  unit  ratsources  checkforbiddenapis  
validatesourcepatterns  validaterefguide  |
| uname | Linux lucene2-us-west.apache.org 4.4.0-112-generic #135-Ubuntu SMP 
Fri Jan 19 11:48:36 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux |
| Build tool | ant |
| Personality | 
/home/jenkins/jenkins-slave/workspace/PreCommit-SOLR-Build/sourcedir/dev-tools/test-patch/lucene-solr-yetus-personality.sh
 |
| git revision | master / 1b084db |
| ant | version: Apache Ant(TM) version 1.9.6 compiled on July 20 2018 |
| Default Java | 1.8.0_191 |
| Validate source patterns | 
https://builds.apache.org/job/PreCommit-SOLR-Build/219/artifact/out/patch-validate-source-patterns-root.txt
 |
| Validate ref guide | 
https://builds.apache.org/job/PreCommit-SOLR-Build/219/artifact/out/patch-validate-source-patterns-root.txt
 |
|  Test Results | 
https://builds.apache.org/job/PreCommit-SOLR-Build/219/testReport/ |
| modules | C: solr/core solr/solrj solr/solr-ref-guide solr/webapp U: solr |
| Console output | 
https://builds.apache.org/job/PreCommit-SOLR-Build/219/console |
| Powered by | Apache Yetus 0.7.0   http://yetus.apache.org |


This message was automatically generated.



> add an 'uninvertible' field(type) option (that defaults to "true" for 
> backcompat)
> -
>
> Key: SOLR-12962
> URL: https://issues.apache.org/jira/browse/SOLR-12962
> Project: Solr
>  Issue Type: Sub-task
>Reporter: Hoss Man
>Assignee: Hoss Man
>Priority: Major
> Fix For: 7.6, master (8.0)
>
> Attachments: SOLR-12962.patch, SOLR-12962.patch, SOLR-12962.patch
>
>
> field & fieldtype declarations should support an {{uninvertible}} option 
> (which defaults to "true") for backcompat that dictates wether or not 
> Uninversion can be performed on fields.
> See parent issue for more background/discussion.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org