/usr/share/pyshared/mrjob/conf.py is in python-mrjob 0.3.3.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 | # Copyright 2009-2012 Yelp
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
""""mrjob.conf" is the name of both this module, and the global config file
for :py:mod:`mrjob`.
"""
from __future__ import with_statement
import glob
import logging
import os
import shlex
from mrjob.util import expand_path
try:
import simplejson as json # preferred because of C speedups
json # quiet "redefinition of unused ..." warning from pyflakes
except ImportError:
import json # built in to Python 2.6 and later
# yaml is nice to have, but we can fall back on JSON if need be
try:
import yaml
yaml # quiet "redefinition of unused ..." warning from pyflakes
except ImportError:
yaml = None
log = logging.getLogger('mrjob.conf')
### READING AND WRITING mrjob.conf ###
def find_mrjob_conf():
"""Look for :file:`mrjob.conf`, and return its path. Places we look:
- The location specified by :envvar:`MRJOB_CONF`
- :file:`~/.mrjob.conf`
- :file:`~/.mrjob` (deprecated)
- :file:`mrjob.conf` in any directory in :envvar:`PYTHONPATH` (deprecated)
- :file:`/etc/mrjob.conf`
Return ``None`` if we can't find it. Print a warning if its location is
deprecated.
"""
def candidates():
"""Return (path, deprecation_warning)"""
if 'MRJOB_CONF' in os.environ:
yield (expand_path(os.environ['MRJOB_CONF']), None)
# $HOME isn't necessarily set on Windows, but ~ works
# use os.path.join() so we don't end up mixing \ and /
yield (expand_path(os.path.join('~', '.mrjob.conf')), None)
# DEPRECATED:
yield (expand_path(os.path.join('~', '.mrjob')),
'use ~/.mrjob.conf instead.')
if os.environ.get('PYTHONPATH'):
for dirname in os.environ['PYTHONPATH'].split(os.pathsep):
yield (os.path.join(dirname, 'mrjob.conf'),
'Use $MRJOB_CONF to explicitly specify the path'
' instead.')
# this only really makes sense on Unix, so no os.path.join()
yield ('/etc/mrjob.conf', None)
for path, deprecation_message in candidates():
log.debug('looking for configs in %s' % path)
if os.path.exists(path):
log.info('using configs in %s' % path)
if deprecation_message:
log.warning('This config path is deprecated and will stop'
' working in mrjob 0.4. %s' % deprecation_message)
return path
else:
log.info("no configs found; falling back on auto-configuration")
return None
def real_mrjob_conf_path(conf_path=None):
if conf_path is False:
return None
elif conf_path is None:
return find_mrjob_conf()
else:
return expand_path(conf_path)
def conf_object_at_path(conf_path):
if conf_path is None:
return None
with open(conf_path) as f:
if yaml:
return yaml.safe_load(f)
else:
try:
return json.load(f)
except json.JSONDecodeError, e:
msg = ('If your mrjob.conf is in YAML, you need to install'
' yaml; see http://pypi.python.org/pypi/PyYAML/')
# JSONDecodeError currently has a msg attr, but it may not in
# the future
if hasattr(e, 'msg'):
e.msg = '%s (%s)' % (e.msg, msg)
else:
e.msg = msg
raise e
# TODO 0.4: move to tests.test_conf
def load_mrjob_conf(conf_path=None):
""".. deprecated:: 0.3.3
Load the entire data structure in :file:`mrjob.conf`, which should
look something like this::
{'runners':
'emr': {'OPTION': VALUE, ...},
'hadoop: {'OPTION': VALUE, ...},
'inline': {'OPTION': VALUE, ...},
'local': {'OPTION': VALUE, ...},
}
Returns ``None`` if we can't find :file:`mrjob.conf`.
:type conf_path: str
:param conf_path: an alternate place to look for mrjob.conf. If this is
``False``, we'll always return ``None``.
"""
# Only used by mrjob tests and possibly third parties.
log.warn('mrjob.conf.load_mrjob_conf is deprecated.')
conf_path = real_mrjob_conf_path(conf_path)
return conf_object_at_path(conf_path)
def load_opts_from_mrjob_conf(runner_alias, conf_path=None,
already_loaded=None):
"""Load a list of dictionaries representing the options in a given
mrjob.conf for a specific runner. Returns ``[(path, values)]``. If conf_path
is not found, return [(None, {})].
:type runner_alias: str
:param runner_alias: String identifier of the runner type, e.g. ``emr``,
``local``, etc.
:type conf_path: str
:param conf_path: an alternate place to look for mrjob.conf. If this is
``False``, we'll always return ``{}``.
:type already_loaded: list
:param already_loaded: list of :file:`mrjob.conf` paths that have already
been loaded
"""
# Used to use load_mrjob_conf() here, but we need both the 'real' path and
# the conf object, which we can't get cleanly from load_mrjob_conf. This
# means load_mrjob_conf() is basically useless now except for in tests,
# but it's exposed in the API, so we shouldn't kill it until 0.4 at least.
conf_path = real_mrjob_conf_path(conf_path)
conf = conf_object_at_path(conf_path)
if conf is None:
return [(None, {})]
if already_loaded is None:
already_loaded = []
already_loaded.append(conf_path)
try:
values = conf['runners'][runner_alias] or {}
except (KeyError, TypeError, ValueError):
log.warning('no configs for runner type %r in %s; returning {}' %
(runner_alias, conf_path))
values = {}
inherited = []
if conf.get('include', None):
includes = conf['include']
if isinstance(includes, basestring):
includes = [includes]
for include in includes:
if include in already_loaded:
log.warn('%s tries to recursively include %s! (Already included:'
' %s)' % (conf_path, conf['include'],
', '.join(already_loaded)))
else:
inherited.extend(load_opts_from_mrjob_conf(
runner_alias, include, already_loaded))
return inherited + [(conf_path, values)]
def dump_mrjob_conf(conf, f):
"""Write out configuration options to a file.
Useful if you don't want to bother to figure out YAML.
*conf* should look something like this:
{'runners':
'local': {'OPTION': VALUE, ...}
'emr': {'OPTION': VALUE, ...}
'hadoop: {'OPTION': VALUE, ...}
}
:param f: a file object to write to (e.g. ``open('mrjob.conf', 'w')``)
"""
if yaml:
yaml.safe_dump(conf, f, default_flow_style=False)
else:
json.dump(conf, f, indent=2)
f.flush()
### COMBINING OPTIONS ###
# combiners generally consider earlier values to be defaults, and later
# options to override or add on to them.
def combine_values(*values):
"""Return the last value in *values* that is not ``None``.
The default combiner; good for simple values (booleans, strings, numbers).
"""
for v in reversed(values):
if v is not None:
return v
else:
return None
def combine_lists(*seqs):
"""Concatenate the given sequences into a list. Ignore ``None`` values.
Generally this is used for a list of commands we want to run; the
"default" commands get run before any commands specific to your job.
"""
result = []
for seq in seqs:
if seq:
result.extend(seq)
return result
def combine_cmds(*cmds):
"""Take zero or more commands to run on the command line, and return
the last one that is not ``None``. Each command should either be a list
containing the command plus switches, or a string, which will be parsed
with :py:func:`shlex.split`
Returns either ``None`` or a list containing the command plus arguments.
"""
cmd = combine_values(*cmds)
if cmd is None:
return None
elif isinstance(cmd, basestring):
return shlex.split(cmd)
else:
return list(cmd)
def combine_cmd_lists(*seqs_of_cmds):
"""Concatenate the given commands into a list. Ignore ``None`` values,
and parse strings with :py:func:`shlex.split`.
Returns a list of lists (each sublist contains the command plus arguments).
"""
seq_of_cmds = combine_lists(*seqs_of_cmds)
return [combine_cmds(cmd) for cmd in seq_of_cmds]
def combine_dicts(*dicts):
"""Combine zero or more dictionaries. Values from dicts later in the list
take precedence over values earlier in the list.
If you pass in ``None`` in place of a dictionary, it will be ignored.
"""
result = {}
for d in dicts:
if d:
result.update(d)
return result
def combine_envs(*envs):
"""Combine zero or more dictionaries containing environment variables.
Environment variables later from dictionaries later in the list take
priority over those earlier in the list. For variables ending with
``PATH``, we prepend (and add a colon) rather than overwriting.
If you pass in ``None`` in place of a dictionary, it will be ignored.
"""
return _combine_envs_helper(envs, local=False)
def combine_local_envs(*envs):
"""Same as :py:func:`combine_envs`, except that paths are combined
using the local path separator (e.g ``;`` on Windows rather than ``:``).
"""
return _combine_envs_helper(envs, local=True)
def _combine_envs_helper(envs, local):
if local:
pathsep = os.pathsep
else:
pathsep = ':'
result = {}
for env in envs:
if env:
for key, value in env.iteritems():
if key.endswith('PATH') and result.get(key):
result[key] = value + pathsep + result[key]
else:
result[key] = value
return result
def combine_paths(*paths):
"""Returns the last value in *paths* that is not ``None``.
Resolve ``~`` (home dir) and environment variables."""
return expand_path(combine_values(*paths))
def combine_path_lists(*path_seqs):
"""Concatenate the given sequences into a list. Ignore None values.
Resolve ``~`` (home dir) and environment variables, and expand globs
that refer to the local filesystem."""
results = []
for path in combine_lists(*path_seqs):
expanded = expand_path(path)
# if we can't expand a glob, leave as-is (maybe it refers to
# S3 or HDFS)
paths = sorted(glob.glob(expanded)) or [expanded]
results.extend(paths)
return results
def combine_opts(combiners, *opts_list):
"""The master combiner, used to combine dictionaries of options with
appropriate sub-combiners.
:param combiners: a map from option name to a combine_*() function to
combine options by that name. By default, we combine
options using :py:func:`combine_values`.
:param opts_list: one or more dictionaries to combine
"""
final_opts = {}
keys = set()
for opts in opts_list:
if opts:
keys.update(opts)
for key in keys:
values = []
for opts in opts_list:
if opts and key in opts:
values.append(opts[key])
combine_func = combiners.get(key) or combine_values
final_opts[key] = combine_func(*values)
return final_opts
### PRIORITY ###
def calculate_opt_priority(opts, opt_dicts):
"""Keep track of where in the order opts were specified,
to handle opts that affect the same thing (e.g. ec2_*instance_type).
Here is a rough guide to the values set by this function. They are
Where specified Priority
unset everywhere -1
blank 0
non-blank default 1
base conf file 2
inheriting conf [3-n]
command line n+1
:type opts: iterable
:type opt_dicts: list of dicts with keys also appearing in **opts**
"""
opt_priority = dict((opt, -1) for opt in opts)
for priority, opt_dict in enumerate(opt_dicts):
if opt_dict:
for opt, value in opt_dict.iteritems():
if value is not None:
opt_priority[opt] = priority
return opt_priority
|