Skip to content
This repository was archived by the owner on Mar 29, 2023. It is now read-only.

Latest commit

 

History

History
205 lines (98 loc) · 5.36 KB

lazycluster.utils.md

File metadata and controls

205 lines (98 loc) · 5.36 KB

module lazycluster.utils


class ExecutionFileLogUtil

Generic class used to write log files.

method __init__

__init__(runtime_host: str, taskname: str) → None

Initialization method.

Note:

The log file file be placed in directory named runtime_host within the Environment.main_directory.

Args:

  • runtime_host: The host of the Runtime, where the execution takes place.
  • taskname: The name of the RuntimeTask to be executed.

property directory_path

Get the full path to the directory where this logfile gets written to.


property file_path

Get the full path to the log file.

Note:

Although, you can access the path, it does not necessary mean that it already exists. The file eventually gets written when the execution of the RuntimeTask is started.


method get_write_mode

get_write_mode() → str

class Environment

This class contains environment variables.


classmethod set_main_directory

set_main_directory(dir: str) → None

Setter for the library's main directory on the manager.

Note:

A relative path ist also accepted and translated to an absolute path.

Args:

  • dir: Relative or absolute path.

classmethod set_third_party_log_level

set_third_party_log_level(log_level: int) → None

Setter for third_party_log_level to control the standard python logging behavior of used libraries.

Affected libraries: paramiko

Note:

The class variable third_party_log_level defaults to logging.Error, e.g. only paramiko errors will be shown.

Args:

  • log_level: Standard python log level values as defined in logging like logging.ERROR.

classmethod use_lazycluster_dev_version

use_lazycluster_dev_version() → None

This methods makes sure that the latest lazycluster developement version will be installed on the Runtimes.

This means the latest commit in the develop branch will be installed on the Runtimes.

Note:

Please make sure that you install the same version on the manager as well.


class Timestamp

Custom Timestamp class with convenient methods.

method __init__

__init__() → None

Initializes the object with the current date/time.


method get_formatted

get_formatted() → str

Formatted fixed length representation with delimiters in format: yyyy-mm-dd hh:mm:ss.


method get_unformatted

get_unformatted() → str

Fixed length representation w/o delimiters in format: yyyymmddhhmmss.


This file was automatically generated via lazydocs.