3 from __future__ import absolute_import, print_function
13 from apiclient import errors as apierror
15 from .fullstopactor import FullStopActor
17 # IOError is the base class for socket.error, ssl.SSLError, and friends.
18 # It seems like it hits the sweet spot for operations we want to retry:
19 # it's low-level, but unlikely to catch code bugs.
20 NETWORK_ERRORS = (IOError,)
21 ARVADOS_ERRORS = NETWORK_ERRORS + (apierror.Error,)
23 actor_class = FullStopActor
25 class NodeManagerConfig(ConfigParser.SafeConfigParser):
26 """Node Manager Configuration class.
28 This a standard Python ConfigParser, with additional helper methods to
29 create objects instantiated with configuration information.
32 LOGGING_NONLEVELS = frozenset(['file'])
34 def __init__(self, *args, **kwargs):
35 # Can't use super() because SafeConfigParser is an old-style class.
36 ConfigParser.SafeConfigParser.__init__(self, *args, **kwargs)
37 for sec_name, settings in {
38 'Arvados': {'insecure': 'no',
40 'Daemon': {'min_nodes': '0',
43 'max_poll_time': '300',
44 'poll_stale_after': '600',
45 'max_total_price': '0',
46 'boot_fail_after': str(sys.maxint),
47 'node_stale_after': str(60 * 60 * 2)},
48 'Logging': {'file': '/dev/stderr',
51 if not self.has_section(sec_name):
52 self.add_section(sec_name)
53 for opt_name, value in settings.iteritems():
54 if not self.has_option(sec_name, opt_name):
55 self.set(sec_name, opt_name, value)
57 def get_section(self, section, transformer=None):
59 for key, value in self.items(section):
60 if transformer is not None:
62 value = transformer(value)
63 except (TypeError, ValueError):
69 return {key: getattr(logging, self.get('Logging', key).upper())
70 for key in self.options('Logging')
71 if key not in self.LOGGING_NONLEVELS}
73 def dispatch_classes(self):
74 mod_name = 'arvnodeman.computenode.dispatch'
75 if self.has_option('Daemon', 'dispatcher'):
76 mod_name = '{}.{}'.format(mod_name,
77 self.get('Daemon', 'dispatcher'))
78 module = importlib.import_module(mod_name)
79 return (module.ComputeNodeSetupActor,
80 module.ComputeNodeShutdownActor,
81 module.ComputeNodeUpdateActor,
82 module.ComputeNodeMonitorActor)
84 def new_arvados_client(self):
85 if self.has_option('Daemon', 'certs_file'):
86 certs_file = self.get('Daemon', 'certs_file')
89 insecure = self.getboolean('Arvados', 'insecure')
90 http = httplib2.Http(timeout=self.getint('Arvados', 'timeout'),
92 disable_ssl_certificate_validation=insecure)
93 return arvados.api(version='v1',
94 host=self.get('Arvados', 'host'),
95 token=self.get('Arvados', 'token'),
99 def new_cloud_client(self):
100 module = importlib.import_module('arvnodeman.computenode.driver.' +
101 self.get('Cloud', 'provider'))
102 auth_kwargs = self.get_section('Cloud Credentials')
103 if 'timeout' in auth_kwargs:
104 auth_kwargs['timeout'] = int(auth_kwargs['timeout'])
105 return module.ComputeNodeDriver(auth_kwargs,
106 self.get_section('Cloud List'),
107 self.get_section('Cloud Create'))
109 def node_sizes(self, all_sizes):
110 """Finds all acceptable NodeSizes for our installation.
112 Returns a list of (NodeSize, kwargs) pairs for each NodeSize object
113 returned by libcloud that matches a size listed in our config file.
117 for sec_name in self.sections():
118 sec_words = sec_name.split(None, 2)
119 if sec_words[0] != 'Size':
121 size_spec = self.get_section(sec_name, int)
122 if 'price' in size_spec:
123 size_spec['price'] = float(size_spec['price'])
124 size_kwargs[sec_words[1]] = size_spec
125 # EC2 node sizes are identified by id. GCE sizes are identified by name.
127 for size in all_sizes:
128 if size.id in size_kwargs:
129 matching_sizes.append((size, size_kwargs[size.id]))
130 elif size.name in size_kwargs:
131 matching_sizes.append((size, size_kwargs[size.name]))
132 return matching_sizes
134 def shutdown_windows(self):
136 for n in self.get('Cloud', 'shutdown_windows').split(',')]