You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by "Christine Poerschke (JIRA)" <ji...@apache.org> on 2019/02/27 21:33:00 UTC

[jira] [Created] (SOLR-13280) strengthen ScheduledTrigger's preferredOperation parameter validation

Christine Poerschke created SOLR-13280:
------------------------------------------

             Summary: strengthen ScheduledTrigger's preferredOperation parameter validation
                 Key: SOLR-13280
                 URL: https://issues.apache.org/jira/browse/SOLR-13280
             Project: Solr
          Issue Type: Improvement
          Components: AutoScaling
            Reporter: Christine Poerschke
            Assignee: Christine Poerschke


Currently a typo such as (say) {{MOVE_REPLICA}} instead of the correct {{MOVEREPLICA}} results in a "success" response for the "set-trigger" call but in the Solr logs NullPointerException stuff is happening e.g.

{code}
  "eventType":"SCHEDULED",
  "properties":{
    "actualEventTime":...,
    "preferredOperation":"MOVE_REPLICA",
    "_enqueue_time_":...}}
        at org.apache.solr.cloud.autoscaling.ComputePlanAction.process(ComputePlanAction.java:160) ~[?:?]
        at org.apache.solr.cloud.autoscaling.ScheduledTriggers.lambda$null$3(ScheduledTriggers.java:324) ~[?:?]
        ... 6 more
Caused by: java.lang.NullPointerException
        at org.apache.solr.client.solrj.cloud.autoscaling.Policy$Session.getSuggester(Policy.java:628) ~[?:?]
        at org.apache.solr.cloud.autoscaling.ComputePlanAction.getSuggester(ComputePlanAction.java:262) ~[?:?]
        at org.apache.solr.cloud.autoscaling.ComputePlanAction.process(ComputePlanAction.java:97) ~[?:?]
        at org.apache.solr.cloud.autoscaling.ScheduledTriggers.lambda$null$3(ScheduledTriggers.java:324) ~[?:?]
        ... 6 more
{code}

Proposed patch to follow.




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

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