mrjob.util - general utility functions

Utility functions for MRJob that have no external dependencies.

mrjob.util.buffer_iterator_to_line_iterator(iterator)

boto’s file iterator splits by buffer size instead of by newline. This wrapper puts them back into lines.

mrjob.util.bunzip2_stream(fileobj)

Return an uncompressed bz2 stream from a file object

mrjob.util.cmd_line(args)

build a command line that works in a shell.

mrjob.util.expand_path(path)

Resolve ~ (home dir) and environment variables in path.

If path is None, return None.

mrjob.util.extract_dir_for_tar(archive_path, compression='gz')

Get the name of the directory the tar at archive_path extracts into.

Parameters:
  • archive_path (str) – path to archive file
  • compression (str) – Compression type to use. This can be one of '', bz2, or gz.
mrjob.util.file_ext(path)

return the file extension, including the .

>>> file_ext('foo.tar.gz')
'.tar.gz'
mrjob.util.hash_object(obj)

Generate a hash (currently md5) of the repr of the object

mrjob.util.log_to_null(name=None)

Set up a null handler for the given stream, to suppress “no handlers could be found” warnings.

mrjob.util.log_to_stream(name=None, stream=None, format=None, level=None, debug=False)

Set up logging.

Parameters:
  • name (str) – name of the logger, or None for the root logger
  • stderr (file object) – stream to log to (default is sys.stderr)
  • format (str) – log message format (default is ‘%(message)s’)
  • level – log level to use
  • debug (bool) – quick way of setting the log level: if true, use logging.DEBUG, otherwise use logging.INFO
mrjob.util.parse_and_save_options(option_parser, args)

Duplicate behavior of OptionParser, but capture the strings required to reproduce the same values. Ref. optparse.py lines 1414-1548 (python 2.6.5)

mrjob.util.populate_option_groups_with_options(assignments, indexed_options)

Given a dictionary mapping OptionGroup and OptionParser objects to a list of strings represention option dests, populate the objects with options from indexed_options (generated by scrape_options_and_index_by_dest()) in alphabetical order by long option name. This function primarily exists to serve scrape_options_into_new_groups().

Parameters:
  • assignments (dict of the form {my_option_parser: ('verbose', 'help', ...), my_option_group: (...)}) – specification of which parsers/groups should get which options
  • indexed_options (dict generated by util.scrape_options_and_index_by_dest()) – options to use when populating the parsers/groups
mrjob.util.read_file(path, fileobj=None)

Reads a file.

  • Decompress .gz and .bz2 files.
  • If fileobj is not None, stream lines from the fileobj
mrjob.util.read_input(path, stdin=None)

Stream input the way Hadoop would.

  • Resolve globs (foo_*.gz).
  • Decompress .gz and .bz2 files.
  • If path is '-', read from stdin
  • If path is a directory, recursively read its contents.

You can redefine stdin for ease of testing. stdin can actually be any iterable that yields lines (e.g. a list).

mrjob.util.safeeval(expr, globals=None, locals=None)

Like eval, but with nearly everything in the environment blanked out, so that it’s difficult to cause mischief.

globals and locals are optional dictionaries mapping names to values for those names (just like in eval()).

mrjob.util.save_current_environment(*args, **kwds)

Context manager that saves os.environ and loads it back again after execution

mrjob.util.scrape_options_and_index_by_dest(*parsers_and_groups)

Scrapes optparse options from OptionParser and OptionGroup objects and builds a dictionary of dest_var: [option1, option2, ...]. This function primarily exists to serve scrape_options_into_new_groups().

An example return value: {'verbose': [<verbose_on_option>, <verbose_off_option>], 'files': [<file_append_option>]}

Parameters:parsers_and_groups (OptionParser or OptionGroup) – Parsers and groups to scrape option objects from
Returns:dict of the form {dest_var: [option1, option2, ...], ...}
mrjob.util.scrape_options_into_new_groups(source_groups, assignments)

Puts options from the OptionParser and OptionGroup objects in source_groups into the keys of assignments according to the values of assignments. An example:

Parameters:
  • source_groups (list of OptionParser and OptionGroup objects) – parsers/groups to scrape options from
  • assignments (dict with keys that are OptionParser and OptionGroup objects and values that are lists of strings) – map empty parsers/groups to lists of destination names that they should contain options for
mrjob.util.strip_microseconds(delta)

Return the given datetime.timedelta, without microseconds.

Useful for printing datetime.timedelta objects.

mrjob.util.tar_and_gzip(dir, out_path, filter=None, prefix='')

Tar and gzip the given dir to a tarball at out_path.

If we encounter symlinks, include the actual file, not the symlink.

Parameters:
  • dir (str) – dir to tar up
  • out_path (str) – where to write the tarball too
  • filter – if defined, a function that takes paths (relative to dir and returns True if we should keep them
  • prefix (str) – subdirectory inside the tarball to put everything into (e.g. 'mrjob')
mrjob.util.unarchive(archive_path, dest)

Extract the contents of a tar or zip file at archive_path into the directory dest.

Parameters:
  • archive_path (str) – path to archive file
  • dest (str) – path to directory where archive will be extracted

dest will be created if it doesn’t already exist.

tar files can be gzip compressed, bzip2 compressed, or uncompressed. Files within zip files can be deflated or stored.

Previous topic

mrjob.retry - retry on transient errors

Next topic

mrjob.tools.emr - managing EMR job flows

This Page