[jira] [Updated] (SOLR-9864) SolrQuery.getCopy() doesn't copy sortClauses

2016-12-13 Thread Lyubov Romanchuk (JIRA)

 [ 
https://issues.apache.org/jira/browse/SOLR-9864?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Lyubov Romanchuk updated SOLR-9864:
---
Attachment: SOLR-9864_4_8_1.patch

The patch for version 4.8.1

> SolrQuery.getCopy() doesn't copy sortClauses
> 
>
> Key: SOLR-9864
> URL: https://issues.apache.org/jira/browse/SOLR-9864
> Project: Solr
>  Issue Type: Bug
>  Security Level: Public(Default Security Level. Issues are Public) 
>Affects Versions: 4.8.1, 6.3
>Reporter: Lyubov Romanchuk
> Attachments: SOLR-9864_4_8_1.patch
>
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Updated] (SOLR-9864) SolrQuery.getCopy() doesn't copy sortClauses

2016-12-13 Thread Lyubov Romanchuk (JIRA)

 [ 
https://issues.apache.org/jira/browse/SOLR-9864?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Lyubov Romanchuk updated SOLR-9864:
---
Affects Version/s: 4.8.1
   6.3
Fix Version/s: (was: 6.3.1)

> SolrQuery.getCopy() doesn't copy sortClauses
> 
>
> Key: SOLR-9864
> URL: https://issues.apache.org/jira/browse/SOLR-9864
> Project: Solr
>  Issue Type: Bug
>  Security Level: Public(Default Security Level. Issues are Public) 
>Affects Versions: 4.8.1, 6.3
>Reporter: Lyubov Romanchuk
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Updated] (SOLR-9864) SolrQuery.getCopy() doesn't copy sortClauses

2016-12-13 Thread Lyubov Romanchuk (JIRA)

 [ 
https://issues.apache.org/jira/browse/SOLR-9864?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Lyubov Romanchuk updated SOLR-9864:
---
Fix Version/s: 6.3.1

> SolrQuery.getCopy() doesn't copy sortClauses
> 
>
> Key: SOLR-9864
> URL: https://issues.apache.org/jira/browse/SOLR-9864
> Project: Solr
>  Issue Type: Bug
>  Security Level: Public(Default Security Level. Issues are Public) 
>Reporter: Lyubov Romanchuk
> Fix For: 6.3.1
>
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Created] (SOLR-9864) SolrQuery.getCopy() doesn't copy sortClauses

2016-12-13 Thread Lyubov Romanchuk (JIRA)
Lyubov Romanchuk created SOLR-9864:
--

 Summary: SolrQuery.getCopy() doesn't copy sortClauses
 Key: SOLR-9864
 URL: https://issues.apache.org/jira/browse/SOLR-9864
 Project: Solr
  Issue Type: Bug
  Security Level: Public (Default Security Level. Issues are Public)
Reporter: Lyubov Romanchuk






--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (SOLR-5972) new statistics facet capabilities to StatsComponent facet - limit, sort and missing.

2016-11-24 Thread Lyubov Romanchuk (JIRA)

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

Lyubov Romanchuk commented on SOLR-5972:


Hi all,

Attached the patch for multi value docvalue fields. 

Best regards,
Lyuba

> new statistics facet capabilities to StatsComponent facet - limit, sort and 
> missing.
> 
>
> Key: SOLR-5972
> URL: https://issues.apache.org/jira/browse/SOLR-5972
> Project: Solr
>  Issue Type: New Feature
>Reporter: Elran Dvir
> Attachments: SOLR-5972.patch, SOLR-5972.patch, 
> SOLR-5972_multivalue_docvalue.patch
>
>
> I thought it would be very useful to enable limiting and sorting 
> StatsComponent facet response.
> I chose to implement it in Stats Component rather than Analytics component 
> because Analytics doesn't support distributed queries yet. 
> The default for limit is -1 - returns all facet values.
> The default for sort is no sorting.
> The default for missing is true.
> So if you use stats component exactly as before, the response won't change as 
> of nowadays.
> If ask for sort or limit, missing facet value will be the last, as in regular 
> facet.
> Sort types supported: min, max, sum and countdistinct for stats fields, and 
> count and index for facet fields (all sort types are lower cased).
> Sort directions asc and desc are supported.
> Sorting by multiple fields is supported.
> our example use case will be employees' monthly salaries:
> The follwing query returns the 10 most "expensive" employees: 
> "q=*:*&stats=true&stats.field=salary&stats.facet=employee_name&f.employee_name.stats.facet.sort=salary
>  sum desc&f.employee_name.stats.facet.limit=10" 
> The follwing query returns the 10 least "expensive" employees:
> "q=*:*&stats=true&stats.field=salary&stats.facet=employee_name&f.employee_name.stats.facet.sort=salary
>  sum asc&f.employee_name.stats.facet.limit=10" 
> The follwing query returns the employee that got the highest salary ever:
> "q=*:*&stats=true&stats.field=salary&stats.facet=employee_name&f.employee_name.stats.facet.sort=salary
>  max desc&f.employee_name.stats.facet.limit=1" 
> The follwing query returns the employee that got the lowest salary ever:
> "q=*:*&stats=true&stats.field=salary&stats.facet=employee_name&f.employee_name.stats.facet.sort=salary
>  min asc&f.employee_name.stats.facet.limit=1" 
> The follwing query returns the 10 first (lexicographically) employees:
> "q=*:*&stats=true&stats.field=salary&stats.facet=employee_name&f.employee_name.stats.facet.sort=employee_name
>  index asc&f.employee_name.stats.facet.limit=10" 
> The follwing query returns the 10 employees that have worked for the longest 
> period:
> "q=*:*&stats=true&stats.field=salary&stats.facet=employee_name&f.employee_name.stats.facet.sort=employee_name
>  count desc&f.employee_name.stats.facet.limit=10" 
> The follwing query returns the 10 employee whose salaries vary the most:
> "q=*:*&stats=true&stats.field=salary&stats.facet=employee_name&f.employee_name.stats.facet.sort=salary
>  countdistinct desc&f.employee_name.stats.facet.limit=10" 
> Attached a patch implementing this in StatsComponent.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Updated] (SOLR-5972) new statistics facet capabilities to StatsComponent facet - limit, sort and missing.

2016-11-24 Thread Lyubov Romanchuk (JIRA)

 [ 
https://issues.apache.org/jira/browse/SOLR-5972?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Lyubov Romanchuk updated SOLR-5972:
---
Attachment: SOLR-5972_multivalue_docvalue.patch

> new statistics facet capabilities to StatsComponent facet - limit, sort and 
> missing.
> 
>
> Key: SOLR-5972
> URL: https://issues.apache.org/jira/browse/SOLR-5972
> Project: Solr
>  Issue Type: New Feature
>Reporter: Elran Dvir
> Attachments: SOLR-5972.patch, SOLR-5972.patch, 
> SOLR-5972_multivalue_docvalue.patch
>
>
> I thought it would be very useful to enable limiting and sorting 
> StatsComponent facet response.
> I chose to implement it in Stats Component rather than Analytics component 
> because Analytics doesn't support distributed queries yet. 
> The default for limit is -1 - returns all facet values.
> The default for sort is no sorting.
> The default for missing is true.
> So if you use stats component exactly as before, the response won't change as 
> of nowadays.
> If ask for sort or limit, missing facet value will be the last, as in regular 
> facet.
> Sort types supported: min, max, sum and countdistinct for stats fields, and 
> count and index for facet fields (all sort types are lower cased).
> Sort directions asc and desc are supported.
> Sorting by multiple fields is supported.
> our example use case will be employees' monthly salaries:
> The follwing query returns the 10 most "expensive" employees: 
> "q=*:*&stats=true&stats.field=salary&stats.facet=employee_name&f.employee_name.stats.facet.sort=salary
>  sum desc&f.employee_name.stats.facet.limit=10" 
> The follwing query returns the 10 least "expensive" employees:
> "q=*:*&stats=true&stats.field=salary&stats.facet=employee_name&f.employee_name.stats.facet.sort=salary
>  sum asc&f.employee_name.stats.facet.limit=10" 
> The follwing query returns the employee that got the highest salary ever:
> "q=*:*&stats=true&stats.field=salary&stats.facet=employee_name&f.employee_name.stats.facet.sort=salary
>  max desc&f.employee_name.stats.facet.limit=1" 
> The follwing query returns the employee that got the lowest salary ever:
> "q=*:*&stats=true&stats.field=salary&stats.facet=employee_name&f.employee_name.stats.facet.sort=salary
>  min asc&f.employee_name.stats.facet.limit=1" 
> The follwing query returns the 10 first (lexicographically) employees:
> "q=*:*&stats=true&stats.field=salary&stats.facet=employee_name&f.employee_name.stats.facet.sort=employee_name
>  index asc&f.employee_name.stats.facet.limit=10" 
> The follwing query returns the 10 employees that have worked for the longest 
> period:
> "q=*:*&stats=true&stats.field=salary&stats.facet=employee_name&f.employee_name.stats.facet.sort=employee_name
>  count desc&f.employee_name.stats.facet.limit=10" 
> The follwing query returns the 10 employee whose salaries vary the most:
> "q=*:*&stats=true&stats.field=salary&stats.facet=employee_name&f.employee_name.stats.facet.sort=salary
>  countdistinct desc&f.employee_name.stats.facet.limit=10" 
> Attached a patch implementing this in StatsComponent.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (SOLR-5023) deleteInstanceDir is added to CoreAdminHandler but can't be passed with solrj

2013-10-06 Thread Lyubov Romanchuk (JIRA)

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

Lyubov Romanchuk commented on SOLR-5023:


Hi Shalin, 
I saw that you had added a test for the patch. Thank you very much.
As I understand the last released version 4.5 doesn't include the fix.
What should be done in order to commit the patch?
Thank you.
Best regards.


> deleteInstanceDir is added to CoreAdminHandler but can't be passed with solrj
> -
>
> Key: SOLR-5023
> URL: https://issues.apache.org/jira/browse/SOLR-5023
> Project: Solr
>  Issue Type: Improvement
>  Components: multicore
>Affects Versions: 4.2.1
>Reporter: Lyubov Romanchuk
>Assignee: Shalin Shekhar Mangar
> Fix For: 4.6
>
> Attachments: SOLR-5023.patch, SOLR-5023.patch
>
>
> deleteInstanceDir is added to CoreAdminHandler but is not supported in Unload 
> CoreAdminRequest



--
This message was sent by Atlassian JIRA
(v6.1#6144)

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



[jira] [Commented] (SOLR-5023) deleteInstanceDir is added to CoreAdminHandler but can't be passed with solrj

2013-08-26 Thread Lyubov Romanchuk (JIRA)

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

Lyubov Romanchuk commented on SOLR-5023:


Did anyone have a chance to look at the code?
deleteDataDir option was already added (at least in 4.3.1 version).

> deleteInstanceDir is added to CoreAdminHandler but can't be passed with solrj
> -
>
> Key: SOLR-5023
> URL: https://issues.apache.org/jira/browse/SOLR-5023
> Project: Solr
>  Issue Type: Improvement
>  Components: multicore
>Affects Versions: 4.2.1
>Reporter: Lyubov Romanchuk
>Assignee: Mark Miller
> Fix For: 4.5, 5.0
>
> Attachments: SOLR-5023.patch
>
>
> deleteInstanceDir is added to CoreAdminHandler but is not supported in Unload 
> CoreAdminRequest

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

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



[jira] [Updated] (SOLR-5023) deleteInstanceDir is added to CoreAdminHandler but can't be passed with solrj

2013-07-10 Thread Lyubov Romanchuk (JIRA)

 [ 
https://issues.apache.org/jira/browse/SOLR-5023?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Lyubov Romanchuk updated SOLR-5023:
---

Attachment: SOLR-5023.patch

Patch for review. Created for 4.3.1 version.

> deleteInstanceDir is added to CoreAdminHandler but can't be passed with solrj
> -
>
> Key: SOLR-5023
> URL: https://issues.apache.org/jira/browse/SOLR-5023
> Project: Solr
>  Issue Type: Improvement
>  Components: multicore
>Affects Versions: 4.2.1
>Reporter: Lyubov Romanchuk
>Assignee: Mark Miller
> Fix For: 5.0, 4.5
>
> Attachments: SOLR-5023.patch
>
>
> deleteInstanceDir is added to CoreAdminHandler but is not supported in Unload 
> CoreAdminRequest

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

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



[jira] [Created] (SOLR-5023) deleteInstanceDir is added to CoreAdminHandler but can't be passed with solrj

2013-07-09 Thread Lyubov Romanchuk (JIRA)
Lyubov Romanchuk created SOLR-5023:
--

 Summary: deleteInstanceDir is added to CoreAdminHandler but can't 
be passed with solrj
 Key: SOLR-5023
 URL: https://issues.apache.org/jira/browse/SOLR-5023
 Project: Solr
  Issue Type: Improvement
  Components: multicore
Affects Versions: 4.2.1
Reporter: Lyubov Romanchuk


deleteInstanceDir is added to CoreAdminHandler but is not supported in Unload 
CoreAdminRequest

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

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



[jira] [Created] (SOLR-4850) Cores defined as loadOnStartup="true" and transient="true" can't be queried

2013-05-22 Thread Lyubov Romanchuk (JIRA)
Lyubov Romanchuk created SOLR-4850:
--

 Summary: Cores defined as loadOnStartup="true" and 
transient="true" can't be queried 
 Key: SOLR-4850
 URL: https://issues.apache.org/jira/browse/SOLR-4850
 Project: Solr
  Issue Type: Bug
  Components: multicore
Affects Versions: 4.3, 4.2.1
Reporter: Lyubov Romanchuk


It seems like in order to query transient cores they must be defined with
loadOnStartup="false".

I define one core loadOnStartup="true" and transient="false", and another
cores to be  loadOnStartup="true" and transient="true", and
transientCacheSize is default (=Integer.MAX_VALUE).

In this case CoreContainer.dynamicDescriptors will be empty and then
CoreContainer.getCoreFromAnyList(String) and CoreContainer.getCore(String)
returns null for all transient cores.

As a result such cores (loadOnStartup="true" and transient="true") can't be 
queried at all (neither from Query nor from Overview). 


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

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



[jira] [Issue Comment Edited] (SOLR-3408) org.apache.lucene.store.AlreadyClosedException: MMapIndexInput already closed: MMapIndexInput(path="/eneeds/fs/apache-solr-ra-4.0/example/solr/data/index/_5e9

2012-05-03 Thread Lyubov Romanchuk (JIRA)

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

Lyubov Romanchuk edited comment on SOLR-3408 at 5/3/12 10:22 AM:
-

The scenario to reproduce this issue is described in 
[^SOLR-3408-scenario_for_reproduction.txt](attached).

   

   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
 
 id
 id
 

  was (Author: lyuba):
The scenario to reproduce this issue is described in 
[^SOLR-3408-scenario_for_reproduction.txt](attached).
  
> org.apache.lucene.store.AlreadyClosedException: MMapIndexInput already 
> closed: 
> MMapIndexInput(path="/eneeds/fs/apache-solr-ra-4.0/example/solr/data/index/_5e9_0.frq")
> --
>
> Key: SOLR-3408
> URL: https://issues.apache.org/jira/browse/SOLR-3408
> Project: Solr
>  Issue Type: Bug
>  Components: search
>Affects Versions: 4.0
> Environment: Linux Fedora 12 (2.6.32.16-141.fc12.x86_64 #1 SMP)
> JDK 1.6.0_17-b04
>Reporter: Nagendra Nagarajayya
>  Labels: faceted-search, nrt,
> Fix For: 4.0
>
> Attachments: SOLR-3408-scenario_for_reproduction.txt, solrconfig.xml
>
>
> {noformat}
> Apr 21, 2012 2:22:22 PM org.apache.solr.core.SolrCore execute
> INFO: [] webapp=/solr path=/select/ 
> params={facet=true&debugQuery=true&start=0&q=*:*&facet.field=action_str&wt=xml&rows=10}
>  hits=8136707 status=500 QTime=29339 
> Apr 21, 2012 2:22:22 PM org.apache.solr.common.SolrException log
> SEVERE: null:org.apache.lucene.store.AlreadyClosedException: MMapIndexInput 
> already closed: 
> MMapIndexInput(path="/eneeds/fs/apache-solr-ra-4.0/example/solr/data/index/_5e9_0.frq")
> ...
> {noformat}
> (*EDIT*: see comments below for full stack trace)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira



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



[jira] [Issue Comment Edited] (SOLR-3408) org.apache.lucene.store.AlreadyClosedException: MMapIndexInput already closed: MMapIndexInput(path="/eneeds/fs/apache-solr-ra-4.0/example/solr/data/index/_5e9

2012-04-29 Thread Lyubov Romanchuk (JIRA)

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

Lyubov Romanchuk edited comment on SOLR-3408 at 4/29/12 11:25 AM:
--

The scenario to reproduce this issue is described in 
[^SOLR-3408-scenario_for_reproduction.txt](attached).

  was (Author: lyuba):
The scenario to reproduce this issue is described in 
{noformat}SOLR-3408-scenario_for_reproduction.txt{noformat}  (attached).
  
> org.apache.lucene.store.AlreadyClosedException: MMapIndexInput already 
> closed: 
> MMapIndexInput(path="/eneeds/fs/apache-solr-ra-4.0/example/solr/data/index/_5e9_0.frq")
> --
>
> Key: SOLR-3408
> URL: https://issues.apache.org/jira/browse/SOLR-3408
> Project: Solr
>  Issue Type: Bug
>  Components: search
>Affects Versions: 4.0
> Environment: Linux Fedora 12 (2.6.32.16-141.fc12.x86_64 #1 SMP)
> JDK 1.6.0_17-b04
>Reporter: Nagendra Nagarajayya
>  Labels: faceted-search, nrt,
> Fix For: 4.0
>
> Attachments: SOLR-3408-scenario_for_reproduction.txt, solrconfig.xml
>
>
> {noformat}
> Apr 21, 2012 2:22:22 PM org.apache.solr.core.SolrCore execute
> INFO: [] webapp=/solr path=/select/ 
> params={facet=true&debugQuery=true&start=0&q=*:*&facet.field=action_str&wt=xml&rows=10}
>  hits=8136707 status=500 QTime=29339 
> Apr 21, 2012 2:22:22 PM org.apache.solr.common.SolrException log
> SEVERE: null:org.apache.lucene.store.AlreadyClosedException: MMapIndexInput 
> already closed: 
> MMapIndexInput(path="/eneeds/fs/apache-solr-ra-4.0/example/solr/data/index/_5e9_0.frq")
> ...
> {noformat}
> (*EDIT*: see comments below for full stack trace)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira



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



[jira] [Issue Comment Edited] (SOLR-3408) org.apache.lucene.store.AlreadyClosedException: MMapIndexInput already closed: MMapIndexInput(path="/eneeds/fs/apache-solr-ra-4.0/example/solr/data/index/_5e9

2012-04-29 Thread Lyubov Romanchuk (JIRA)

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

Lyubov Romanchuk edited comment on SOLR-3408 at 4/29/12 11:22 AM:
--

The scenario to reproduce this issue is described in 
{noformat}SOLR-3408-scenario_for_reproduction.txt{noformat}  (attached).

  was (Author: lyuba):
The scenario to reproduce this issue is described in 
!SOLR-3408-scenario_for_reproduction.txt (attached).
  
> org.apache.lucene.store.AlreadyClosedException: MMapIndexInput already 
> closed: 
> MMapIndexInput(path="/eneeds/fs/apache-solr-ra-4.0/example/solr/data/index/_5e9_0.frq")
> --
>
> Key: SOLR-3408
> URL: https://issues.apache.org/jira/browse/SOLR-3408
> Project: Solr
>  Issue Type: Bug
>  Components: search
>Affects Versions: 4.0
> Environment: Linux Fedora 12 (2.6.32.16-141.fc12.x86_64 #1 SMP)
> JDK 1.6.0_17-b04
>Reporter: Nagendra Nagarajayya
>  Labels: faceted-search, nrt,
> Fix For: 4.0
>
> Attachments: SOLR-3408-scenario_for_reproduction.txt, solrconfig.xml
>
>
> {noformat}
> Apr 21, 2012 2:22:22 PM org.apache.solr.core.SolrCore execute
> INFO: [] webapp=/solr path=/select/ 
> params={facet=true&debugQuery=true&start=0&q=*:*&facet.field=action_str&wt=xml&rows=10}
>  hits=8136707 status=500 QTime=29339 
> Apr 21, 2012 2:22:22 PM org.apache.solr.common.SolrException log
> SEVERE: null:org.apache.lucene.store.AlreadyClosedException: MMapIndexInput 
> already closed: 
> MMapIndexInput(path="/eneeds/fs/apache-solr-ra-4.0/example/solr/data/index/_5e9_0.frq")
> ...
> {noformat}
> (*EDIT*: see comments below for full stack trace)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira



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



[jira] [Issue Comment Edited] (SOLR-3408) org.apache.lucene.store.AlreadyClosedException: MMapIndexInput already closed: MMapIndexInput(path="/eneeds/fs/apache-solr-ra-4.0/example/solr/data/index/_5e9

2012-04-29 Thread Lyubov Romanchuk (JIRA)

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

Lyubov Romanchuk edited comment on SOLR-3408 at 4/29/12 11:19 AM:
--

The scenario to reproduce this issue is described in 
!SOLR-3408-scenario_for_reproduction.txt (attached).

  was (Author: lyuba):
The scenario to reproduce this issue is described in 
SOLR-3408-scenario_for_reproduction.txt.
  
> org.apache.lucene.store.AlreadyClosedException: MMapIndexInput already 
> closed: 
> MMapIndexInput(path="/eneeds/fs/apache-solr-ra-4.0/example/solr/data/index/_5e9_0.frq")
> --
>
> Key: SOLR-3408
> URL: https://issues.apache.org/jira/browse/SOLR-3408
> Project: Solr
>  Issue Type: Bug
>  Components: search
>Affects Versions: 4.0
> Environment: Linux Fedora 12 (2.6.32.16-141.fc12.x86_64 #1 SMP)
> JDK 1.6.0_17-b04
>Reporter: Nagendra Nagarajayya
>  Labels: faceted-search, nrt,
> Fix For: 4.0
>
> Attachments: SOLR-3408-scenario_for_reproduction.txt, solrconfig.xml
>
>
> {noformat}
> Apr 21, 2012 2:22:22 PM org.apache.solr.core.SolrCore execute
> INFO: [] webapp=/solr path=/select/ 
> params={facet=true&debugQuery=true&start=0&q=*:*&facet.field=action_str&wt=xml&rows=10}
>  hits=8136707 status=500 QTime=29339 
> Apr 21, 2012 2:22:22 PM org.apache.solr.common.SolrException log
> SEVERE: null:org.apache.lucene.store.AlreadyClosedException: MMapIndexInput 
> already closed: 
> MMapIndexInput(path="/eneeds/fs/apache-solr-ra-4.0/example/solr/data/index/_5e9_0.frq")
> ...
> {noformat}
> (*EDIT*: see comments below for full stack trace)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira



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



[jira] [Updated] (SOLR-3408) org.apache.lucene.store.AlreadyClosedException: MMapIndexInput already closed: MMapIndexInput(path="/eneeds/fs/apache-solr-ra-4.0/example/solr/data/index/_5e9_0.frq")

2012-04-29 Thread Lyubov Romanchuk (JIRA)

 [ 
https://issues.apache.org/jira/browse/SOLR-3408?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Lyubov Romanchuk updated SOLR-3408:
---

Attachment: (was: solrconfig.xml)

> org.apache.lucene.store.AlreadyClosedException: MMapIndexInput already 
> closed: 
> MMapIndexInput(path="/eneeds/fs/apache-solr-ra-4.0/example/solr/data/index/_5e9_0.frq")
> --
>
> Key: SOLR-3408
> URL: https://issues.apache.org/jira/browse/SOLR-3408
> Project: Solr
>  Issue Type: Bug
>  Components: search
>Affects Versions: 4.0
> Environment: Linux Fedora 12 (2.6.32.16-141.fc12.x86_64 #1 SMP)
> JDK 1.6.0_17-b04
>Reporter: Nagendra Nagarajayya
>  Labels: faceted-search, nrt,
> Fix For: 4.0
>
> Attachments: SOLR-3408-scenario_for_reproduction.txt, solrconfig.xml
>
>
> {noformat}
> Apr 21, 2012 2:22:22 PM org.apache.solr.core.SolrCore execute
> INFO: [] webapp=/solr path=/select/ 
> params={facet=true&debugQuery=true&start=0&q=*:*&facet.field=action_str&wt=xml&rows=10}
>  hits=8136707 status=500 QTime=29339 
> Apr 21, 2012 2:22:22 PM org.apache.solr.common.SolrException log
> SEVERE: null:org.apache.lucene.store.AlreadyClosedException: MMapIndexInput 
> already closed: 
> MMapIndexInput(path="/eneeds/fs/apache-solr-ra-4.0/example/solr/data/index/_5e9_0.frq")
> ...
> {noformat}
> (*EDIT*: see comments below for full stack trace)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira



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



[jira] [Updated] (SOLR-3408) org.apache.lucene.store.AlreadyClosedException: MMapIndexInput already closed: MMapIndexInput(path="/eneeds/fs/apache-solr-ra-4.0/example/solr/data/index/_5e9_0.frq")

2012-04-29 Thread Lyubov Romanchuk (JIRA)

 [ 
https://issues.apache.org/jira/browse/SOLR-3408?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Lyubov Romanchuk updated SOLR-3408:
---

Attachment: solrconfig.xml
SOLR-3408-scenario_for_reproduction.txt

The scenario to reproduce this issue is described in 
SOLR-3408-scenario_for_reproduction.txt.

> org.apache.lucene.store.AlreadyClosedException: MMapIndexInput already 
> closed: 
> MMapIndexInput(path="/eneeds/fs/apache-solr-ra-4.0/example/solr/data/index/_5e9_0.frq")
> --
>
> Key: SOLR-3408
> URL: https://issues.apache.org/jira/browse/SOLR-3408
> Project: Solr
>  Issue Type: Bug
>  Components: search
>Affects Versions: 4.0
> Environment: Linux Fedora 12 (2.6.32.16-141.fc12.x86_64 #1 SMP)
> JDK 1.6.0_17-b04
>Reporter: Nagendra Nagarajayya
>  Labels: faceted-search, nrt,
> Fix For: 4.0
>
> Attachments: SOLR-3408-scenario_for_reproduction.txt, solrconfig.xml, 
> solrconfig.xml
>
>
> {noformat}
> Apr 21, 2012 2:22:22 PM org.apache.solr.core.SolrCore execute
> INFO: [] webapp=/solr path=/select/ 
> params={facet=true&debugQuery=true&start=0&q=*:*&facet.field=action_str&wt=xml&rows=10}
>  hits=8136707 status=500 QTime=29339 
> Apr 21, 2012 2:22:22 PM org.apache.solr.common.SolrException log
> SEVERE: null:org.apache.lucene.store.AlreadyClosedException: MMapIndexInput 
> already closed: 
> MMapIndexInput(path="/eneeds/fs/apache-solr-ra-4.0/example/solr/data/index/_5e9_0.frq")
> ...
> {noformat}
> (*EDIT*: see comments below for full stack trace)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira



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



[jira] [Updated] (SOLR-3408) org.apache.lucene.store.AlreadyClosedException: MMapIndexInput already closed: MMapIndexInput(path="/eneeds/fs/apache-solr-ra-4.0/example/solr/data/index/_5e9_0.frq")

2012-04-29 Thread Lyubov Romanchuk (JIRA)

 [ 
https://issues.apache.org/jira/browse/SOLR-3408?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Lyubov Romanchuk updated SOLR-3408:
---

Attachment: solrconfig.xml

> org.apache.lucene.store.AlreadyClosedException: MMapIndexInput already 
> closed: 
> MMapIndexInput(path="/eneeds/fs/apache-solr-ra-4.0/example/solr/data/index/_5e9_0.frq")
> --
>
> Key: SOLR-3408
> URL: https://issues.apache.org/jira/browse/SOLR-3408
> Project: Solr
>  Issue Type: Bug
>  Components: search
>Affects Versions: 4.0
> Environment: Linux Fedora 12 (2.6.32.16-141.fc12.x86_64 #1 SMP)
> JDK 1.6.0_17-b04
>Reporter: Nagendra Nagarajayya
>  Labels: faceted-search, nrt,
> Fix For: 4.0
>
> Attachments: solrconfig.xml
>
>
> {noformat}
> Apr 21, 2012 2:22:22 PM org.apache.solr.core.SolrCore execute
> INFO: [] webapp=/solr path=/select/ 
> params={facet=true&debugQuery=true&start=0&q=*:*&facet.field=action_str&wt=xml&rows=10}
>  hits=8136707 status=500 QTime=29339 
> Apr 21, 2012 2:22:22 PM org.apache.solr.common.SolrException log
> SEVERE: null:org.apache.lucene.store.AlreadyClosedException: MMapIndexInput 
> already closed: 
> MMapIndexInput(path="/eneeds/fs/apache-solr-ra-4.0/example/solr/data/index/_5e9_0.frq")
> ...
> {noformat}
> (*EDIT*: see comments below for full stack trace)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira



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