SOLR-11178: Change error handling in AutoScalingHandler to be consistent w/ other APIs

This commit is contained in:
Noble Paul 2017-08-03 23:01:35 +09:30
parent b89015a2d4
commit 1c47a85f23
4 changed files with 85 additions and 77 deletions

View File

@ -70,8 +70,8 @@ import org.slf4j.LoggerFactory;
import static java.util.stream.Collectors.collectingAndThen; import static java.util.stream.Collectors.collectingAndThen;
import static java.util.stream.Collectors.toSet; import static java.util.stream.Collectors.toSet;
import static org.apache.solr.common.cloud.ZkStateReader.SOLR_AUTOSCALING_CONF_PATH; import static org.apache.solr.common.cloud.ZkStateReader.SOLR_AUTOSCALING_CONF_PATH;
import static org.apache.solr.common.params.CommonParams.JSON;
import static org.apache.solr.common.params.AutoScalingParams.*; import static org.apache.solr.common.params.AutoScalingParams.*;
import static org.apache.solr.common.params.CommonParams.JSON;
/** /**
* Handler for /cluster/autoscaling * Handler for /cluster/autoscaling
@ -184,9 +184,14 @@ public class AutoScalingHandler extends RequestHandlerBase implements Permission
currentConfig = handleSetClusterPolicy(req, rsp, op, currentConfig); currentConfig = handleSetClusterPolicy(req, rsp, op, currentConfig);
break; break;
default: default:
throw new SolrException(SolrException.ErrorCode.BAD_REQUEST, "Unknown command: " + op.name); op.addError("Unknown command: " + op.name);
} }
} }
List errs = CommandOperation.captureErrors(ops);
if (!errs.isEmpty()) {
throw new ApiBag.ExceptionWithErrObject(SolrException.ErrorCode.BAD_REQUEST, "Error in command payload", errs);
}
if (!currentConfig.equals(initialConfig)) { if (!currentConfig.equals(initialConfig)) {
// update in ZK // update in ZK
if (zkSetAutoScalingConfig(container.getZkController().getZkStateReader(), currentConfig)) { if (zkSetAutoScalingConfig(container.getZkController().getZkStateReader(), currentConfig)) {
@ -242,7 +247,8 @@ public class AutoScalingHandler extends RequestHandlerBase implements Permission
AutoScalingConfig currentConfig) throws KeeperException, InterruptedException, IOException { AutoScalingConfig currentConfig) throws KeeperException, InterruptedException, IOException {
List<Map<String, Object>> clusterPolicy = (List<Map<String, Object>>) op.getCommandData(); List<Map<String, Object>> clusterPolicy = (List<Map<String, Object>>) op.getCommandData();
if (clusterPolicy == null || !(clusterPolicy instanceof List)) { if (clusterPolicy == null || !(clusterPolicy instanceof List)) {
throw new SolrException(SolrException.ErrorCode.BAD_REQUEST, "A list of cluster policies was not found"); op.addError("set-cluster-policy expects an array of objects");
return currentConfig;
} }
List<Clause> cp = clusterPolicy.stream().map(Clause::new).collect(Collectors.toList()); List<Clause> cp = clusterPolicy.stream().map(Clause::new).collect(Collectors.toList());
Policy p = currentConfig.getPolicy().withClusterPolicy(cp); Policy p = currentConfig.getPolicy().withClusterPolicy(cp);
@ -254,7 +260,8 @@ public class AutoScalingHandler extends RequestHandlerBase implements Permission
AutoScalingConfig currentConfig) throws KeeperException, InterruptedException, IOException { AutoScalingConfig currentConfig) throws KeeperException, InterruptedException, IOException {
List<Map<String, Object>> preferences = (List<Map<String, Object>>) op.getCommandData(); List<Map<String, Object>> preferences = (List<Map<String, Object>>) op.getCommandData();
if (preferences == null || !(preferences instanceof List)) { if (preferences == null || !(preferences instanceof List)) {
throw new SolrException(SolrException.ErrorCode.BAD_REQUEST, "A list of cluster preferences not found"); op.addError("A list of cluster preferences not found");
return currentConfig;
} }
List<Preference> prefs = preferences.stream().map(Preference::new).collect(Collectors.toList()); List<Preference> prefs = preferences.stream().map(Preference::new).collect(Collectors.toList());
Policy p = currentConfig.getPolicy().withClusterPreferences(prefs); Policy p = currentConfig.getPolicy().withClusterPreferences(prefs);
@ -264,20 +271,21 @@ public class AutoScalingHandler extends RequestHandlerBase implements Permission
private AutoScalingConfig handleRemovePolicy(SolrQueryRequest req, SolrQueryResponse rsp, CommandOperation op, private AutoScalingConfig handleRemovePolicy(SolrQueryRequest req, SolrQueryResponse rsp, CommandOperation op,
AutoScalingConfig currentConfig) throws KeeperException, InterruptedException, IOException { AutoScalingConfig currentConfig) throws KeeperException, InterruptedException, IOException {
String policyName = (String) op.getCommandData(); String policyName = (String) op.getVal("");
if (op.hasError()) return currentConfig;
if (policyName.trim().length() == 0) {
throw new SolrException(SolrException.ErrorCode.BAD_REQUEST, "The policy name cannot be empty");
}
Map<String, List<Clause>> policies = currentConfig.getPolicy().getPolicies(); Map<String, List<Clause>> policies = currentConfig.getPolicy().getPolicies();
if (policies == null || !policies.containsKey(policyName)) { if (policies == null || !policies.containsKey(policyName)) {
throw new SolrException(SolrException.ErrorCode.BAD_REQUEST, "No policy exists with name: " + policyName); op.addError("No policy exists with name: " + policyName);
return currentConfig;
} }
container.getZkController().getZkStateReader().getClusterState().forEachCollection(coll -> {
if (policyName.equals(coll.getPolicyName())) throw new SolrException(SolrException.ErrorCode.BAD_REQUEST,
StrUtils.formatString("policy : {0} is being used by collection {1}", policyName, coll.getName()));
});
container.getZkController().getZkStateReader().getClusterState().forEachCollection(coll -> {
if (policyName.equals(coll.getPolicyName()))
op.addError(StrUtils.formatString("policy : {0} is being used by collection {1}", policyName, coll.getName()));
});
if (op.hasError()) return currentConfig;
policies = new HashMap<>(policies); policies = new HashMap<>(policies);
policies.remove(policyName); policies.remove(policyName);
Policy p = currentConfig.getPolicy().withPolicies(policies); Policy p = currentConfig.getPolicy().withPolicies(policies);
@ -291,7 +299,8 @@ public class AutoScalingHandler extends RequestHandlerBase implements Permission
for (Map.Entry<String, Object> policy : policiesMap.entrySet()) { for (Map.Entry<String, Object> policy : policiesMap.entrySet()) {
String policyName = policy.getKey(); String policyName = policy.getKey();
if (policyName == null || policyName.trim().length() == 0) { if (policyName == null || policyName.trim().length() == 0) {
throw new SolrException(SolrException.ErrorCode.BAD_REQUEST, "The policy name cannot be null or empty"); op.addError("The policy name cannot be null or empty");
return currentConfig;
} }
} }
List<String> params = new ArrayList<>(currentConfig.getPolicy().getParams()); List<String> params = new ArrayList<>(currentConfig.getPolicy().getParams());
@ -307,14 +316,12 @@ public class AutoScalingHandler extends RequestHandlerBase implements Permission
private AutoScalingConfig handleResumeTrigger(SolrQueryRequest req, SolrQueryResponse rsp, CommandOperation op, private AutoScalingConfig handleResumeTrigger(SolrQueryRequest req, SolrQueryResponse rsp, CommandOperation op,
AutoScalingConfig currentConfig) throws KeeperException, InterruptedException { AutoScalingConfig currentConfig) throws KeeperException, InterruptedException {
String triggerName = op.getStr(NAME); String triggerName = op.getStr(NAME);
if (op.hasError()) return currentConfig;
if (triggerName == null || triggerName.trim().length() == 0) {
throw new SolrException(SolrException.ErrorCode.BAD_REQUEST, "The trigger name cannot be null or empty");
}
Map<String, AutoScalingConfig.TriggerConfig> triggers = currentConfig.getTriggerConfigs(); Map<String, AutoScalingConfig.TriggerConfig> triggers = currentConfig.getTriggerConfigs();
Set<String> changed = new HashSet<>(); Set<String> changed = new HashSet<>();
if (!Policy.EACH.equals(triggerName) && !triggers.containsKey(triggerName)) { if (!Policy.EACH.equals(triggerName) && !triggers.containsKey(triggerName)) {
throw new SolrException(SolrException.ErrorCode.BAD_REQUEST, "No trigger exists with name: " + triggerName); op.addError("No trigger exists with name: " + triggerName);
return currentConfig;
} }
Map<String, AutoScalingConfig.TriggerConfig> newTriggers = new HashMap<>(); Map<String, AutoScalingConfig.TriggerConfig> newTriggers = new HashMap<>();
for (Map.Entry<String, AutoScalingConfig.TriggerConfig> entry : triggers.entrySet()) { for (Map.Entry<String, AutoScalingConfig.TriggerConfig> entry : triggers.entrySet()) {
@ -341,11 +348,7 @@ public class AutoScalingHandler extends RequestHandlerBase implements Permission
private AutoScalingConfig handleSuspendTrigger(SolrQueryRequest req, SolrQueryResponse rsp, CommandOperation op, private AutoScalingConfig handleSuspendTrigger(SolrQueryRequest req, SolrQueryResponse rsp, CommandOperation op,
AutoScalingConfig currentConfig) throws KeeperException, InterruptedException { AutoScalingConfig currentConfig) throws KeeperException, InterruptedException {
String triggerName = op.getStr(NAME); String triggerName = op.getStr(NAME);
if (op.hasError()) return currentConfig;
if (triggerName == null || triggerName.trim().length() == 0) {
throw new SolrException(SolrException.ErrorCode.BAD_REQUEST, "The trigger name cannot be null or empty");
}
String timeout = op.getStr(TIMEOUT, null); String timeout = op.getStr(TIMEOUT, null);
Date resumeTime = null; Date resumeTime = null;
if (timeout != null) { if (timeout != null) {
@ -354,7 +357,8 @@ public class AutoScalingHandler extends RequestHandlerBase implements Permission
resumeTime = new Date(TimeUnit.MILLISECONDS.convert(timeSource.getTime(), TimeUnit.NANOSECONDS) resumeTime = new Date(TimeUnit.MILLISECONDS.convert(timeSource.getTime(), TimeUnit.NANOSECONDS)
+ TimeUnit.MILLISECONDS.convert(timeoutSeconds, TimeUnit.SECONDS)); + TimeUnit.MILLISECONDS.convert(timeoutSeconds, TimeUnit.SECONDS));
} catch (IllegalArgumentException e) { } catch (IllegalArgumentException e) {
throw new SolrException(SolrException.ErrorCode.BAD_REQUEST, "Invalid 'timeout' value for suspend trigger: " + triggerName); op.addError("Invalid 'timeout' value for suspend trigger: " + triggerName);
return currentConfig;
} }
} }
@ -362,7 +366,8 @@ public class AutoScalingHandler extends RequestHandlerBase implements Permission
Set<String> changed = new HashSet<>(); Set<String> changed = new HashSet<>();
if (!Policy.EACH.equals(triggerName) && !triggers.containsKey(triggerName)) { if (!Policy.EACH.equals(triggerName) && !triggers.containsKey(triggerName)) {
throw new SolrException(SolrException.ErrorCode.BAD_REQUEST, "No trigger exists with name: " + triggerName); op.addError("No trigger exists with name: " + triggerName);
return currentConfig;
} }
Map<String, AutoScalingConfig.TriggerConfig> newTriggers = new HashMap<>(); Map<String, AutoScalingConfig.TriggerConfig> newTriggers = new HashMap<>();
for (Map.Entry<String, AutoScalingConfig.TriggerConfig> entry : triggers.entrySet()) { for (Map.Entry<String, AutoScalingConfig.TriggerConfig> entry : triggers.entrySet()) {
@ -393,12 +398,11 @@ public class AutoScalingHandler extends RequestHandlerBase implements Permission
AutoScalingConfig currentConfig) throws KeeperException, InterruptedException { AutoScalingConfig currentConfig) throws KeeperException, InterruptedException {
String listenerName = op.getStr(NAME); String listenerName = op.getStr(NAME);
if (listenerName == null || listenerName.trim().length() == 0) { if (op.hasError()) return currentConfig;
throw new SolrException(SolrException.ErrorCode.BAD_REQUEST, "The listener name cannot be null or empty");
}
Map<String, AutoScalingConfig.TriggerListenerConfig> listeners = currentConfig.getTriggerListenerConfigs(); Map<String, AutoScalingConfig.TriggerListenerConfig> listeners = currentConfig.getTriggerListenerConfigs();
if (listeners == null || !listeners.containsKey(listenerName)) { if (listeners == null || !listeners.containsKey(listenerName)) {
throw new SolrException(SolrException.ErrorCode.BAD_REQUEST, "No listener exists with name: " + listenerName); op.addError("No listener exists with name: " + listenerName);
return currentConfig;
} }
currentConfig = currentConfig.withoutTriggerListenerConfig(listenerName); currentConfig = currentConfig.withoutTriggerListenerConfig(listenerName);
return currentConfig; return currentConfig;
@ -413,37 +417,37 @@ public class AutoScalingHandler extends RequestHandlerBase implements Permission
List<String> beforeActions = op.getStrs(BEFORE_ACTION, Collections.emptyList()); List<String> beforeActions = op.getStrs(BEFORE_ACTION, Collections.emptyList());
List<String> afterActions = op.getStrs(AFTER_ACTION, Collections.emptyList()); List<String> afterActions = op.getStrs(AFTER_ACTION, Collections.emptyList());
if (listenerName == null || listenerName.trim().length() == 0) { if (op.hasError()) return currentConfig;
throw new SolrException(SolrException.ErrorCode.BAD_REQUEST, "The listener name cannot be null or empty");
}
Map<String, AutoScalingConfig.TriggerConfig> triggers = currentConfig.getTriggerConfigs(); Map<String, AutoScalingConfig.TriggerConfig> triggers = currentConfig.getTriggerConfigs();
if (triggers == null || !triggers.containsKey(triggerName)) { if (triggers == null || !triggers.containsKey(triggerName)) {
throw new SolrException(SolrException.ErrorCode.BAD_REQUEST, "A trigger with the name " + triggerName + " does not exist"); op.addError("A trigger with the name " + triggerName + " does not exist");
return currentConfig;
} }
AutoScalingConfig.TriggerConfig triggerConfig = triggers.get(triggerName); AutoScalingConfig.TriggerConfig triggerConfig = triggers.get(triggerName);
if (stageNames.isEmpty() && beforeActions.isEmpty() && afterActions.isEmpty()) { if (stageNames.isEmpty() && beforeActions.isEmpty() && afterActions.isEmpty()) {
throw new SolrException(SolrException.ErrorCode.BAD_REQUEST, "Either 'stage' or 'beforeAction' or 'afterAction' must be specified"); op.addError("Either 'stage' or 'beforeAction' or 'afterAction' must be specified");
return currentConfig;
} }
for (String stage : stageNames) { for (String stage : stageNames) {
try { try {
TriggerEventProcessorStage.valueOf(stage); TriggerEventProcessorStage.valueOf(stage);
} catch (IllegalArgumentException e) { } catch (IllegalArgumentException e) {
throw new SolrException(SolrException.ErrorCode.BAD_REQUEST, "Invalid stage name: " + stage); op.addError("Invalid stage name: " + stage);
} }
} }
if (op.hasError()) return currentConfig;
if (listenerClass == null || listenerClass.trim().length() == 0) {
throw new SolrException(SolrException.ErrorCode.BAD_REQUEST, "The 'class' of the listener cannot be null or empty");
}
// validate that we can load the listener class // validate that we can load the listener class
// todo nocommit -- what about MemClassLoader? // todo nocommit -- what about MemClassLoader?
try { try {
container.getResourceLoader().findClass(listenerClass, TriggerListener.class); container.getResourceLoader().findClass(listenerClass, TriggerListener.class);
} catch (Exception e) { } catch (Exception e) {
throw new SolrException(SolrException.ErrorCode.BAD_REQUEST, "Listener not found: " + listenerClass, e); log.warn("error loading listener class ", e);
op.addError("Listener not found: " + listenerClass + ". error message:" + e.getMessage());
return currentConfig;
} }
Set<String> actionNames = new HashSet<>(); Set<String> actionNames = new HashSet<>();
@ -453,7 +457,8 @@ public class AutoScalingHandler extends RequestHandlerBase implements Permission
actionNames.remove(action.name); actionNames.remove(action.name);
} }
if (!actionNames.isEmpty()) { if (!actionNames.isEmpty()) {
throw new SolrException(SolrException.ErrorCode.BAD_REQUEST, "The trigger '" + triggerName + "' does not have actions named: " + actionNames); op.addError("The trigger '" + triggerName + "' does not have actions named: " + actionNames);
return currentConfig;
} }
AutoScalingConfig.TriggerListenerConfig listener = new AutoScalingConfig.TriggerListenerConfig(listenerName, op.getValuesExcluding("name")); AutoScalingConfig.TriggerListenerConfig listener = new AutoScalingConfig.TriggerListenerConfig(listenerName, op.getValuesExcluding("name"));
// todo - handle races between competing set-trigger and set-listener invocations // todo - handle races between competing set-trigger and set-listener invocations
@ -464,28 +469,25 @@ public class AutoScalingHandler extends RequestHandlerBase implements Permission
private AutoScalingConfig handleSetTrigger(SolrQueryRequest req, SolrQueryResponse rsp, CommandOperation op, private AutoScalingConfig handleSetTrigger(SolrQueryRequest req, SolrQueryResponse rsp, CommandOperation op,
AutoScalingConfig currentConfig) throws KeeperException, InterruptedException { AutoScalingConfig currentConfig) throws KeeperException, InterruptedException {
// we're going to modify the op - use a copy // we're going to modify the op - use a copy
op = new CommandOperation(op.name, Utils.getDeepCopy((Map)op.getCommandData(), 10));
String triggerName = op.getStr(NAME); String triggerName = op.getStr(NAME);
if (triggerName == null || triggerName.trim().length() == 0) {
throw new SolrException(SolrException.ErrorCode.BAD_REQUEST, "The trigger name cannot be null or empty");
}
String eventTypeStr = op.getStr(EVENT); String eventTypeStr = op.getStr(EVENT);
if (eventTypeStr == null || eventTypeStr.trim().length() == 0) {
throw new SolrException(SolrException.ErrorCode.BAD_REQUEST, "The event type cannot be null or empty in trigger: " + triggerName); if (op.hasError()) return currentConfig;
}
TriggerEventType eventType = TriggerEventType.valueOf(eventTypeStr.trim().toUpperCase(Locale.ROOT)); TriggerEventType eventType = TriggerEventType.valueOf(eventTypeStr.trim().toUpperCase(Locale.ROOT));
String waitForStr = op.getStr(WAIT_FOR, null); String waitForStr = op.getStr(WAIT_FOR, null);
CommandOperation opCopy = new CommandOperation(op.name, Utils.getDeepCopy((Map) op.getCommandData(), 10));
if (waitForStr != null) { if (waitForStr != null) {
int seconds = 0; int seconds = 0;
try { try {
seconds = parseHumanTime(waitForStr); seconds = parseHumanTime(waitForStr);
} catch (IllegalArgumentException e) { } catch (IllegalArgumentException e) {
throw new SolrException(SolrException.ErrorCode.BAD_REQUEST, "Invalid 'waitFor' value '" + waitForStr + "' in trigger: " + triggerName); op.addError("Invalid 'waitFor' value '" + waitForStr + "' in trigger: " + triggerName);
return currentConfig;
} }
op.getDataMap().put(WAIT_FOR, seconds); opCopy.getDataMap().put(WAIT_FOR, seconds);
} }
Integer lowerBound = op.getInt(LOWER_BOUND, null); Integer lowerBound = op.getInt(LOWER_BOUND, null);
@ -494,23 +496,26 @@ public class AutoScalingHandler extends RequestHandlerBase implements Permission
List<Map<String, String>> actions = (List<Map<String, String>>) op.getVal(ACTIONS); List<Map<String, String>> actions = (List<Map<String, String>>) op.getVal(ACTIONS);
if (actions == null) { if (actions == null) {
actions = DEFAULT_ACTIONS; actions = DEFAULT_ACTIONS;
op.getDataMap().put(ACTIONS, actions); opCopy.getDataMap().put(ACTIONS, actions);
} }
// validate that we can load all the actions // validate that we can load all the actions
// todo nocommit -- what about MemClassLoader? // todo nocommit -- what about MemClassLoader?
for (Map<String, String> action : actions) { for (Map<String, String> action : actions) {
if (!action.containsKey(NAME) || !action.containsKey(CLASS)) { if (!action.containsKey(NAME) || !action.containsKey(CLASS)) {
throw new SolrException(SolrException.ErrorCode.BAD_REQUEST, "No 'name' or 'class' specified for action: " + action); op.addError("No 'name' or 'class' specified for action: " + action);
return currentConfig;
} }
String klass = action.get(CLASS); String klass = action.get(CLASS);
try { try {
container.getResourceLoader().findClass(klass, TriggerAction.class); container.getResourceLoader().findClass(klass, TriggerAction.class);
} catch (Exception e) { } catch (Exception e) {
throw new SolrException(SolrException.ErrorCode.BAD_REQUEST, "Action not found: " + klass, e); log.warn("Could not load class : ", e);
op.addError("Action not found: " + klass + " " + e.getMessage());
return currentConfig;
} }
} }
AutoScalingConfig.TriggerConfig trigger = new AutoScalingConfig.TriggerConfig(triggerName, op.getValuesExcluding("name")); AutoScalingConfig.TriggerConfig trigger = new AutoScalingConfig.TriggerConfig(triggerName, opCopy.getValuesExcluding("name"));
currentConfig = currentConfig.withTriggerConfig(trigger); currentConfig = currentConfig.withTriggerConfig(trigger);
// check that there's a default SystemLogListener, unless user specified another one // check that there's a default SystemLogListener, unless user specified another one
return withSystemLogListener(currentConfig, triggerName); return withSystemLogListener(currentConfig, triggerName);
@ -563,12 +568,11 @@ public class AutoScalingHandler extends RequestHandlerBase implements Permission
String triggerName = op.getStr(NAME); String triggerName = op.getStr(NAME);
boolean removeListeners = op.getBoolean(REMOVE_LISTENERS, false); boolean removeListeners = op.getBoolean(REMOVE_LISTENERS, false);
if (triggerName == null || triggerName.trim().length() == 0) { if (op.hasError()) return currentConfig;
throw new SolrException(SolrException.ErrorCode.BAD_REQUEST, "The trigger name cannot be null or empty");
}
Map<String, AutoScalingConfig.TriggerConfig> triggerConfigs = currentConfig.getTriggerConfigs(); Map<String, AutoScalingConfig.TriggerConfig> triggerConfigs = currentConfig.getTriggerConfigs();
if (!triggerConfigs.containsKey(triggerName)) { if (!triggerConfigs.containsKey(triggerName)) {
throw new SolrException(SolrException.ErrorCode.BAD_REQUEST, "No trigger exists with name: " + triggerName); op.addError("No trigger exists with name: " + triggerName);
return currentConfig;
} }
triggerConfigs = new HashMap<>(triggerConfigs); triggerConfigs = new HashMap<>(triggerConfigs);
Set<String> activeListeners = new HashSet<>(); Set<String> activeListeners = new HashSet<>();
@ -583,8 +587,8 @@ public class AutoScalingHandler extends RequestHandlerBase implements Permission
listeners = new HashMap<>(listeners); listeners = new HashMap<>(listeners);
listeners.keySet().removeAll(activeListeners); listeners.keySet().removeAll(activeListeners);
} else { } else {
throw new SolrException(SolrException.ErrorCode.BAD_REQUEST, op.addError("Cannot remove trigger: " + triggerName + " because it has active listeners: " + activeListeners);
"Cannot remove trigger: " + triggerName + " because it has active listeners: " + activeListeners); return currentConfig;
} }
} }
triggerConfigs.remove(triggerName); triggerConfigs.remove(triggerName);

View File

@ -342,12 +342,12 @@ public class AutoScalingHandlerTest extends SolrCloudTestCase {
"}"; "}";
req = createAutoScalingRequest(SolrRequest.METHOD.POST, removeTriggerCommand); req = createAutoScalingRequest(SolrRequest.METHOD.POST, removeTriggerCommand);
try { try {
response = solrClient.request(req); solrClient.request(req);
String errorMsg = (String) ((NamedList)response.get("error")).get("msg"); fail("expected exception");
assertTrue(errorMsg.contains("Cannot remove trigger: node_lost_trigger because it has active listeners: ["));
} catch (HttpSolrClient.RemoteSolrException e) { } catch (HttpSolrClient.RemoteSolrException e) {
// expected // expected
assertTrue(e.getMessage().contains("Cannot remove trigger: node_lost_trigger because it has active listeners: [")); assertTrue(String.valueOf(getObjectByPath(((HttpSolrClient.RemoteExecutionException) e).getMetaData(),
false, "error/errorMessages[0]/errorMessages[0]")).contains("Cannot remove trigger: node_lost_trigger because it has active listeners: ["));
} }
String removeListenerCommand = "{\n" + String removeListenerCommand = "{\n" +
@ -398,12 +398,12 @@ public class AutoScalingHandlerTest extends SolrCloudTestCase {
"}"; "}";
req = createAutoScalingRequest(SolrRequest.METHOD.POST, setListenerCommand); req = createAutoScalingRequest(SolrRequest.METHOD.POST, setListenerCommand);
try { try {
response = solrClient.request(req); solrClient.request(req);
String errorMsg = (String) ((NamedList)response.get("error")).get("msg"); fail("should have thrown Exception");
assertTrue(errorMsg.contains("A trigger with the name node_lost_trigger does not exist"));
} catch (HttpSolrClient.RemoteSolrException e) { } catch (HttpSolrClient.RemoteSolrException e) {
// expected // expected
assertTrue(e.getMessage().contains("A trigger with the name node_lost_trigger does not exist")); assertTrue(String.valueOf(getObjectByPath(((HttpSolrClient.RemoteExecutionException) e).getMetaData(),
false, "error/errorMessages[0]/errorMessages[0]")).contains("A trigger with the name node_lost_trigger does not exist"));
} }
} }
@ -753,8 +753,11 @@ public class AutoScalingHandlerTest extends SolrCloudTestCase {
try { try {
solrClient.request(createAutoScalingRequest(SolrRequest.METHOD.POST, removePolicyCommand)); solrClient.request(createAutoScalingRequest(SolrRequest.METHOD.POST, removePolicyCommand));
fail("should have failed"); fail("should have failed");
} catch (HttpSolrClient.RemoteExecutionException e) {
assertTrue(String.valueOf(getObjectByPath(e.getMetaData(), true, "error/errorMessages[0]/errorMessages[0]"))
.contains("is being used by collection"));
} catch (Exception e) { } catch (Exception e) {
assertTrue(e.getMessage().contains("is being used by collection")); fail("Only RemoteExecutionException expected");
} }
solrClient.request(CollectionAdminRequest.deleteCollection("COLL1")); solrClient.request(CollectionAdminRequest.deleteCollection("COLL1"));
} }
@ -764,7 +767,7 @@ public class AutoScalingHandlerTest extends SolrCloudTestCase {
} }
static SolrRequest createAutoScalingRequest(SolrRequest.METHOD m, String subPath, String message) { static SolrRequest createAutoScalingRequest(SolrRequest.METHOD m, String subPath, String message) {
boolean useV1 = random().nextBoolean(); boolean useV1 = false;
String path = useV1 ? "/admin/autoscaling" : "/cluster/autoscaling"; String path = useV1 ? "/admin/autoscaling" : "/cluster/autoscaling";
path += subPath != null ? subPath : ""; path += subPath != null ? subPath : "";
return useV1 return useV1

View File

@ -23,6 +23,7 @@ import java.lang.invoke.MethodHandles;
import java.net.ConnectException; import java.net.ConnectException;
import java.net.SocketTimeoutException; import java.net.SocketTimeoutException;
import java.nio.charset.StandardCharsets; import java.nio.charset.StandardCharsets;
import java.util.Arrays;
import java.util.Collection; import java.util.Collection;
import java.util.Collections; import java.util.Collections;
import java.util.Iterator; import java.util.Iterator;
@ -498,6 +499,8 @@ public class HttpSolrClient extends SolrClient {
} }
private static final List<String> errPath = Arrays.asList("metadata", "error-class");//Utils.getObjectByPath(err, false,"metadata/error-class")
protected NamedList<Object> executeMethod(HttpRequestBase method, final ResponseParser processor, final boolean isV2Api) throws SolrServerException { protected NamedList<Object> executeMethod(HttpRequestBase method, final ResponseParser processor, final boolean isV2Api) throws SolrServerException {
method.addHeader("User-Agent", AGENT); method.addHeader("User-Agent", AGENT);
@ -596,12 +599,10 @@ public class HttpSolrClient extends SolrClient {
} catch (Exception e) { } catch (Exception e) {
throw new RemoteSolrException(baseUrl, httpStatus, e.getMessage(), e); throw new RemoteSolrException(baseUrl, httpStatus, e.getMessage(), e);
} }
if (isV2Api) { Object error = rsp == null ? null : rsp.get("error");
Object err = rsp.get("error"); if (error != null && (isV2Api || String.valueOf(getObjectByPath(error, true, errPath)).endsWith("ExceptionWithErrObject"))) {
if (err != null) {
throw RemoteExecutionException.create(baseUrl, rsp); throw RemoteExecutionException.create(baseUrl, rsp);
} }
}
if (httpStatus != HttpStatus.SC_OK && !isV2Api) { if (httpStatus != HttpStatus.SC_OK && !isV2Api) {
NamedList<String> metadata = null; NamedList<String> metadata = null;
String reason = null; String reason = null;

View File

@ -285,7 +285,7 @@ public class Utils {
public static Object getObjectByPath(Object root, boolean onlyPrimitive, List<String> hierarchy) { public static Object getObjectByPath(Object root, boolean onlyPrimitive, List<String> hierarchy) {
if(root == null) return null; if(root == null) return null;
if(!isMapLike(root)) throw new RuntimeException("must be a Map or NamedList"); if(!isMapLike(root)) return null;
Object obj = root; Object obj = root;
for (int i = 0; i < hierarchy.size(); i++) { for (int i = 0; i < hierarchy.size(); i++) {
int idx = -1; int idx = -1;