X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/68d551b65a837664be72bf08aad55ab76d778d07..0eb72b526bf8bbb011551ecf019f604e17a534f1:/services/nodemanager/arvnodeman/computenode/driver/__init__.py diff --git a/services/nodemanager/arvnodeman/computenode/driver/__init__.py b/services/nodemanager/arvnodeman/computenode/driver/__init__.py index 95b6fa8e0c..8f881b04e3 100644 --- a/services/nodemanager/arvnodeman/computenode/driver/__init__.py +++ b/services/nodemanager/arvnodeman/computenode/driver/__init__.py @@ -1,4 +1,7 @@ #!/usr/bin/env python +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 from __future__ import absolute_import, print_function @@ -8,7 +11,7 @@ from operator import attrgetter import libcloud.common.types as cloud_types from libcloud.compute.base import NodeDriver, NodeAuthSSHKey -from ...config import NETWORK_ERRORS +from ...config import CLOUD_ERRORS from .. import RetryMixin class BaseComputeNodeDriver(RetryMixin): @@ -24,7 +27,7 @@ class BaseComputeNodeDriver(RetryMixin): Subclasses must implement arvados_create_kwargs, sync_node, node_fqdn, and node_start_time. """ - CLOUD_ERRORS = NETWORK_ERRORS + (cloud_types.LibcloudError,) + @RetryMixin._retry() def _create_driver(self, driver_class, **auth_kwargs): @@ -86,13 +89,17 @@ class BaseComputeNodeDriver(RetryMixin): Arguments: * term: The value that identifies a matching item. - * list_method: A string that names the method to call on this - instance's libcloud driver for a list of objects. + * list_method: A string that names the method to call for a + list of objects. * key: A function that accepts a cloud object and returns a value search for a `term` match on each item. Returns the object's 'id' attribute by default. """ - items = getattr(self.real, list_method)(**kwargs) + try: + list_func = getattr(self, list_method) + except AttributeError: + list_func = getattr(self.real, list_method) + items = list_func(**kwargs) results = [item for item in items if key(item) == term] count = len(results) if count != 1: @@ -164,7 +171,7 @@ class BaseComputeNodeDriver(RetryMixin): kwargs.update(self.arvados_create_kwargs(size, arvados_node)) kwargs['size'] = size return self.real.create_node(**kwargs) - except self.CLOUD_ERRORS as create_error: + except CLOUD_ERRORS as create_error: # Workaround for bug #6702: sometimes the create node request # succeeds but times out and raises an exception instead of # returning a result. If this happens, we get stuck in a retry @@ -201,13 +208,22 @@ class BaseComputeNodeDriver(RetryMixin): # seconds since the epoch UTC. raise NotImplementedError("BaseComputeNodeDriver.node_start_time") - @classmethod - def is_cloud_exception(cls, exception): - # libcloud compute drivers typically raise bare Exceptions to - # represent API errors. Return True for any exception that is - # exactly an Exception, or a better-known higher-level exception. - return (isinstance(exception, cls.CLOUD_ERRORS) or - type(exception) is Exception) + def destroy_node(self, cloud_node): + try: + return self.real.destroy_node(cloud_node) + except CLOUD_ERRORS as destroy_error: + # Sometimes the destroy node request succeeds but times out and + # raises an exception instead of returning success. If this + # happens, we get a noisy stack trace. Check if the node is still + # on the node list. If it is gone, we can declare victory. + try: + self.search_for_now(cloud_node.id, 'list_nodes') + except ValueError: + # If we catch ValueError, that means search_for_now didn't find + # it, which means destroy_node actually succeeded. + return True + # The node is still on the list. Re-raise. + raise # Now that we've defined all our own methods, delegate generic, public # attributes of libcloud drivers that we haven't defined ourselves.