3 from __future__ import absolute_import, print_function
5 from operator import attrgetter
7 import libcloud.common.types as cloud_types
8 from libcloud.compute.base import NodeDriver, NodeAuthSSHKey
10 from ...config import NETWORK_ERRORS
12 class BaseComputeNodeDriver(object):
13 """Abstract base class for compute node drivers.
15 libcloud drivers abstract away many of the differences between
16 cloud providers, but managing compute nodes requires some
17 cloud-specific features (e.g., keeping track of node FQDNs and
18 boot times). Compute node drivers are responsible for translating
19 the node manager's cloud requests to a specific cloud's
22 Subclasses must implement arvados_create_kwargs, sync_node,
23 node_fqdn, and node_start_time.
25 CLOUD_ERRORS = NETWORK_ERRORS + (cloud_types.LibcloudError,)
27 def __init__(self, auth_kwargs, list_kwargs, create_kwargs, driver_class):
28 """Base initializer for compute node drivers.
31 * auth_kwargs: A dictionary of arguments that are passed into the
32 driver_class constructor to instantiate a libcloud driver.
33 * list_kwargs: A dictionary of arguments that are passed to the
34 libcloud driver's list_nodes method to return the list of compute
36 * create_kwargs: A dictionary of arguments that are passed to the
37 libcloud driver's create_node method to create a new compute node.
38 * driver_class: The class of a libcloud driver to use.
40 self.real = driver_class(**auth_kwargs)
41 self.list_kwargs = list_kwargs
42 self.create_kwargs = create_kwargs
43 # Transform entries in create_kwargs. For each key K, if this class
44 # has an _init_K method, remove the entry and call _init_K with the
45 # corresponding value. If _init_K returns None, the entry stays out
46 # of the dictionary (we expect we're holding the value somewhere
47 # else, like an instance variable). Otherwise, _init_K returns a
48 # key-value tuple pair, and we add that entry to create_kwargs.
49 for key in self.create_kwargs.keys():
50 init_method = getattr(self, '_init_' + key, None)
51 if init_method is not None:
52 new_pair = init_method(self.create_kwargs.pop(key))
53 if new_pair is not None:
54 self.create_kwargs[new_pair[0]] = new_pair[1]
56 self.sizes = {sz.id: sz for sz in self.real.list_sizes()}
58 def _init_ping_host(self, ping_host):
59 self.ping_host = ping_host
61 def _init_ssh_key(self, filename):
62 with open(filename) as ssh_file:
63 key = NodeAuthSSHKey(ssh_file.read())
66 def search_for(self, term, list_method, key=attrgetter('id'), **kwargs):
67 """Return one matching item from a list of cloud objects.
69 Raises ValueError if the number of matching objects is not exactly 1.
72 * term: The value that identifies a matching item.
73 * list_method: A string that names the method to call on this
74 instance's libcloud driver for a list of objects.
75 * key: A function that accepts a cloud object and returns a
76 value search for a `term` match on each item. Returns the
77 object's 'id' attribute by default.
79 cache_key = (list_method, term)
80 if cache_key not in self.SEARCH_CACHE:
81 items = getattr(self.real, list_method)(**kwargs)
82 results = [item for item in items
86 raise ValueError("{} returned {} results for '{}'".format(
87 list_method, count, term))
88 self.SEARCH_CACHE[cache_key] = results[0]
89 return self.SEARCH_CACHE[cache_key]
92 return self.real.list_nodes(**self.list_kwargs)
94 def arvados_create_kwargs(self, arvados_node):
95 """Return dynamic keyword arguments for create_node.
97 Subclasses must override this method. It should return a dictionary
98 of keyword arguments to pass to the libcloud driver's create_node
99 method. These arguments will extend the static arguments in
103 * arvados_node: The Arvados node record that will be associated
104 with this cloud node, as returned from the API server.
106 raise NotImplementedError("BaseComputeNodeDriver.arvados_create_kwargs")
108 def broken(self, cloud_node):
109 """Return true if libcloud has indicated the node is in a "broken" state."""
112 def _make_ping_url(self, arvados_node):
113 return 'https://{}/arvados/v1/nodes/{}/ping?ping_secret={}'.format(
114 self.ping_host, arvados_node['uuid'],
115 arvados_node['info']['ping_secret'])
117 def create_node(self, size, arvados_node):
118 kwargs = self.create_kwargs.copy()
119 kwargs.update(self.arvados_create_kwargs(arvados_node))
120 kwargs['size'] = size
121 return self.real.create_node(**kwargs)
123 def post_create_node(self, cloud_node):
124 # ComputeNodeSetupActor calls this method after the cloud node is
125 # created. Any setup tasks that need to happen afterward (e.g.,
126 # tagging) should be done in this method.
129 def sync_node(self, cloud_node, arvados_node):
130 # When a compute node first pings the API server, the API server
131 # will automatically assign some attributes on the corresponding
132 # node record, like hostname. This method should propagate that
133 # information back to the cloud node appropriately.
134 raise NotImplementedError("BaseComputeNodeDriver.sync_node")
137 def node_fqdn(cls, node):
138 # This method should return the FQDN of the node object argument.
139 # Different clouds store this in different places.
140 raise NotImplementedError("BaseComputeNodeDriver.node_fqdn")
143 def node_start_time(cls, node):
144 # This method should return the time the node was started, in
145 # seconds since the epoch UTC.
146 raise NotImplementedError("BaseComputeNodeDriver.node_start_time")
149 def is_cloud_exception(cls, exception):
150 # libcloud compute drivers typically raise bare Exceptions to
151 # represent API errors. Return True for any exception that is
152 # exactly an Exception, or a better-known higher-level exception.
153 return (isinstance(exception, cls.CLOUD_ERRORS) or
154 type(exception) is Exception)
156 # Now that we've defined all our own methods, delegate generic, public
157 # attributes of libcloud drivers that we haven't defined ourselves.
158 def _delegate_to_real(attr_name):
160 lambda self: getattr(self.real, attr_name),
161 lambda self, value: setattr(self.real, attr_name, value),
162 doc=getattr(getattr(NodeDriver, attr_name), '__doc__', None))
165 for _attr_name in dir(NodeDriver):
166 if (not _attr_name.startswith('_')) and (_attr_name not in _locals):
167 _locals[_attr_name] = _delegate_to_real(_attr_name)