[jira] [Commented] (SOLR-6282) ArrayIndexOutOfBoundsException during search
[ https://issues.apache.org/jira/browse/SOLR-6282?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14151096#comment-14151096 ] Anurag Sharma commented on SOLR-6282: - Jason - So far there is no clarity on the steps to reproduce this issue. Also from the above comment it looks like the issue doesn't exist at all. If you still see the issue please update with the detailed steps. Otherwise with the above comments and information we are bound to close it. > ArrayIndexOutOfBoundsException during search > > > Key: SOLR-6282 > URL: https://issues.apache.org/jira/browse/SOLR-6282 > Project: Solr > Issue Type: Bug > Components: query parsers >Affects Versions: 4.8 >Reporter: Jason Emeric >Priority: Critical > Labels: difficulty-medium, impact-low > > When executing a search with the following query strings a > ERROR org.apache.solr.servlet.SolrDispatchFilter â > null:java.lang.ArrayIndexOutOfBoundsException > error is thrown and no stack trace is provided. This is happening on > searches that seem to have no similar pattern to them (special characters, > length, spaces, etc.) > q=((work_title_search:(%22+zoe%22%20)%20OR%20work_title_search:%22+zoe%22^100)%20AND%20(performer_name_search:(+big~0.75%20+b%27z%20%20)^7%20OR%20performer_name_search:%22+big%20+b%27z%20%20%22^30)) > q=((work_title_search:(%22+rtb%22%20)%20OR%20work_title_search:%22+rtb%22^100)%20AND%20(performer_name_search:(+fly~0.75%20+street~0.75%20+gang~0.75%20)^7%20OR%20performer_name_search:%22+fly%20+street%20+gang%20%22^30)) -- 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-6282) ArrayIndexOutOfBoundsException during search
[ https://issues.apache.org/jira/browse/SOLR-6282?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14142610#comment-14142610 ] Anurag Sharma commented on SOLR-6282: - Jason - There is syntax error of unequal parenthesis in your query. Tried similar query scenario having special characters, length, spaces, etc. using books.csv schema in exampledocs. It works without any issue. The request and response are: http://localhost:8983/solr/select?q=((title%22%20rtb%22%20)%20OR%20title:%22%20rtb%22^100)%20AND%20((author%20fly~0.75%20street~0.75%20gang~0.75%20)^7%20OR%20author:%22%20fly%20street%20gang%20%22^30) 0 4 ((title" rtb" ) OR title:" rtb"^100) AND ((author fly~0.75 street~0.75 gang~0.75 )^7 OR author:" fly street gang "^30) Also tried query with unequal parentheses which clearly gave syntax error. Here are the request and response: http://localhost:8983/solr/select?q=((title%22%20rtb%22%20)%20OR%20title:%22%20rtb%22^100)%20AND%20((author%20fly~0.75%20street~0.75%20gang~0.75%20)^7%20OR%20author:%22%20fly%20street%20gang%20%22^30)) 400 10 ((title" rtb" ) OR title:" rtb"^100) AND ((author fly~0.75 street~0.75 gang~0.75 )^7 OR author:" fly street gang "^30)) org.apache.solr.search.SyntaxError: Cannot parse '((title" rtb" ) OR title:" rtb"^100) AND ((author fly~0.75 street~0.75 gang~0.75 )^7 OR author:" fly street gang "^30))': Encountered " ")" ") "" at line 1, column 118. Was expecting one of: ... ... ... "+" ... "-" ... ... "(" ... "*" ... "^" ... ... ... ... ... ... "[" ... "{" ... ... ... 400 I did not see ArrayIndexOutOfBoundsException for any of the above queries. Please provide valid schema and data to reproduce the issue. > ArrayIndexOutOfBoundsException during search > > > Key: SOLR-6282 > URL: https://issues.apache.org/jira/browse/SOLR-6282 > Project: Solr > Issue Type: Bug > Components: query parsers >Affects Versions: 4.8 >Reporter: Jason Emeric >Priority: Critical > Labels: difficulty-medium, impact-low > > When executing a search with the following query strings a > ERROR org.apache.solr.servlet.SolrDispatchFilter â > null:java.lang.ArrayIndexOutOfBoundsException > error is thrown and no stack trace is provided. This is happening on > searches that seem to have no similar pattern to them (special characters, > length, spaces, etc.) > q=((work_title_search:(%22+zoe%22%20)%20OR%20work_title_search:%22+zoe%22^100)%20AND%20(performer_name_search:(+big~0.75%20+b%27z%20%20)^7%20OR%20performer_name_search:%22+big%20+b%27z%20%20%22^30)) > q=((work_title_search:(%22+rtb%22%20)%20OR%20work_title_search:%22+rtb%22^100)%20AND%20(performer_name_search:(+fly~0.75%20+street~0.75%20+gang~0.75%20)^7%20OR%20performer_name_search:%22+fly%20+street%20+gang%20%22^30)) -- 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-6282) ArrayIndexOutOfBoundsException during search
[ https://issues.apache.org/jira/browse/SOLR-6282?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14142566#comment-14142566 ] Anurag Sharma commented on SOLR-6282: - Jason, Can you send the details about creating this schema and populating the values to clearly understand the steps to reproduce. > ArrayIndexOutOfBoundsException during search > > > Key: SOLR-6282 > URL: https://issues.apache.org/jira/browse/SOLR-6282 > Project: Solr > Issue Type: Bug > Components: query parsers >Affects Versions: 4.8 >Reporter: Jason Emeric >Priority: Critical > Labels: difficulty-medium, impact-low > > When executing a search with the following query strings a > ERROR org.apache.solr.servlet.SolrDispatchFilter â > null:java.lang.ArrayIndexOutOfBoundsException > error is thrown and no stack trace is provided. This is happening on > searches that seem to have no similar pattern to them (special characters, > length, spaces, etc.) > q=((work_title_search:(%22+zoe%22%20)%20OR%20work_title_search:%22+zoe%22^100)%20AND%20(performer_name_search:(+big~0.75%20+b%27z%20%20)^7%20OR%20performer_name_search:%22+big%20+b%27z%20%20%22^30)) > q=((work_title_search:(%22+rtb%22%20)%20OR%20work_title_search:%22+rtb%22^100)%20AND%20(performer_name_search:(+fly~0.75%20+street~0.75%20+gang~0.75%20)^7%20OR%20performer_name_search:%22+fly%20+street%20+gang%20%22^30)) -- 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-6282) ArrayIndexOutOfBoundsException during search
[ https://issues.apache.org/jira/browse/SOLR-6282?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14076304#comment-14076304 ] Erick Erickson commented on SOLR-6282: -- It's also not actionable. I have no clue how to even start figuring it out. My point is that JIRAs are usually opened after you've at least had the courtesy to see if it's a known problem by pinging the user's list. You might also get more help there since there are a lot more eyes on the problem. If you don't particularly want to bother, that's your business though. > ArrayIndexOutOfBoundsException during search > > > Key: SOLR-6282 > URL: https://issues.apache.org/jira/browse/SOLR-6282 > Project: Solr > Issue Type: Bug > Components: search >Affects Versions: 4.8 >Reporter: Jason Emeric >Priority: Critical > > When executing a search with the following query strings a > ERROR org.apache.solr.servlet.SolrDispatchFilter â > null:java.lang.ArrayIndexOutOfBoundsException > error is thrown and no stack trace is provided. This is happening on > searches that seem to have no similar pattern to them (special characters, > length, spaces, etc.) > q=((work_title_search:(%22+zoe%22%20)%20OR%20work_title_search:%22+zoe%22^100)%20AND%20(performer_name_search:(+big~0.75%20+b%27z%20%20)^7%20OR%20performer_name_search:%22+big%20+b%27z%20%20%22^30)) > q=((work_title_search:(%22+rtb%22%20)%20OR%20work_title_search:%22+rtb%22^100)%20AND%20(performer_name_search:(+fly~0.75%20+street~0.75%20+gang~0.75%20)^7%20OR%20performer_name_search:%22+fly%20+street%20+gang%20%22^30)) -- This message was sent by Atlassian JIRA (v6.2#6252) - To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org For additional commands, e-mail: dev-h...@lucene.apache.org
[jira] [Commented] (SOLR-6282) ArrayIndexOutOfBoundsException during search
[ https://issues.apache.org/jira/browse/SOLR-6282?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14076176#comment-14076176 ] Jason Emeric commented on SOLR-6282: If I had any more information, I would have posted it. As mentioned, there is no other info in the Solr logs and no stacktrace. The location this exception is being thrown from in the DigesterServlet, is only printing the exception message. I can reproduce it every time, it's not random. I have no other information to post besides that we are running Solr 4.8. > ArrayIndexOutOfBoundsException during search > > > Key: SOLR-6282 > URL: https://issues.apache.org/jira/browse/SOLR-6282 > Project: Solr > Issue Type: Bug > Components: search >Affects Versions: 4.8 >Reporter: Jason Emeric >Priority: Critical > > When executing a search with the following query strings a > ERROR org.apache.solr.servlet.SolrDispatchFilter â > null:java.lang.ArrayIndexOutOfBoundsException > error is thrown and no stack trace is provided. This is happening on > searches that seem to have no similar pattern to them (special characters, > length, spaces, etc.) > q=((work_title_search:(%22+zoe%22%20)%20OR%20work_title_search:%22+zoe%22^100)%20AND%20(performer_name_search:(+big~0.75%20+b%27z%20%20)^7%20OR%20performer_name_search:%22+big%20+b%27z%20%20%22^30)) > q=((work_title_search:(%22+rtb%22%20)%20OR%20work_title_search:%22+rtb%22^100)%20AND%20(performer_name_search:(+fly~0.75%20+street~0.75%20+gang~0.75%20)^7%20OR%20performer_name_search:%22+fly%20+street%20+gang%20%22^30)) -- This message was sent by Atlassian JIRA (v6.2#6252) - To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org For additional commands, e-mail: dev-h...@lucene.apache.org