Source code for airflow.providers.singularity.operators.singularity

#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements.  See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership.  The ASF licenses this file
# to you 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.

import ast
import os
import shutil
from typing import Any, Dict, List, Optional, Union

from spython.main import Client

from airflow.exceptions import AirflowException
from airflow.models import BaseOperator
from airflow.utils.decorators import apply_defaults


[docs]class SingularityOperator(BaseOperator): """ Execute a command inside a Singularity container Singularity has more seamless connection to the host than Docker, so no special binds are needed to ensure binding content in the user $HOME and temporary directories. If the user needs custom binds, this can be done with --volumes :param image: Singularity image or URI from which to create the container. :type image: str :param auto_remove: Delete the container when the process exits The default is False. :type auto_remove: bool :param command: Command to be run in the container. (templated) :type command: str or list :param start_command: start command to pass to the container instance :type start_command: string or list :param environment: Environment variables to set in the container. (templated) :type environment: dict :param working_dir: Set a working directory for the instance. :type working_dir: str :param force_pull: Pull the image on every run. Default is False. :type force_pull: bool :param volumes: List of volumes to mount into the container, e.g. ``['/host/path:/container/path', '/host/path2:/container/path2']``. :param options: other flags (list) to provide to the instance start :type options: list :param working_dir: Working directory to set on the container (equivalent to the -w switch the docker client) :type working_dir: str """
[docs] template_fields = ( 'command', 'environment',
)
[docs] template_ext = ( '.sh', '.bash',
) @apply_defaults def __init__( # pylint: disable=too-many-arguments self, *, image: str, command: Union[str, ast.AST], start_command: Optional[Union[str, List[str]]] = None, environment: Optional[Dict[str, Any]] = None, pull_folder: Optional[str] = None, working_dir: Optional[str] = None, force_pull: Optional[bool] = False, volumes: Optional[List[str]] = None, options: Optional[List[str]] = None, auto_remove: Optional[bool] = False, **kwargs, ) -> None: super().__init__(**kwargs) self.auto_remove = auto_remove self.command = command self.start_command = start_command self.environment = environment or {} self.force_pull = force_pull self.image = image self.instance = None self.options = options or [] self.pull_folder = pull_folder self.volumes = volumes or [] self.working_dir = working_dir self.cli = None self.container = None
[docs] def execute(self, context) -> None: self.log.info('Preparing Singularity container %s', self.image) self.cli = Client if not self.command: raise AirflowException('You must define a command.') # Pull the container if asked, and ensure not a binary file if self.force_pull and not os.path.exists(self.image): self.log.info('Pulling container %s', self.image) image = self.cli.pull( # type: ignore[attr-defined] self.image, stream=True, pull_folder=self.pull_folder ) # If we need to stream result for the user, returns lines if isinstance(image, list): lines = image.pop() image = image[0] for line in lines: self.log.info(line) # Update the image to be a filepath on the system self.image = image # Prepare list of binds for bind in self.volumes: self.options += ['--bind', bind] # Does the user want a custom working directory? if self.working_dir is not None: self.options += ['--workdir', self.working_dir] # Export environment before instance is run for enkey, envar in self.environment.items(): self.log.debug('Exporting %s=%s', envar, enkey) os.putenv(enkey, envar) os.environ[enkey] = envar # Create a container instance self.log.debug('Options include: %s', self.options) self.instance = self.cli.instance( # type: ignore[attr-defined] self.image, options=self.options, args=self.start_command, start=False ) self.instance.start() # type: ignore[attr-defined] self.log.info(self.instance.cmd) # type: ignore[attr-defined] self.log.info('Created instance %s from %s', self.instance, self.image) self.log.info('Running command %s', self._get_command()) self.cli.quiet = True # type: ignore[attr-defined] result = self.cli.execute( # type: ignore[attr-defined] self.instance, self._get_command(), return_result=True ) # Stop the instance self.log.info('Stopping instance %s', self.instance) self.instance.stop() # type: ignore[attr-defined] if self.auto_remove is True: if self.auto_remove and os.path.exists(self.image): shutil.rmtree(self.image) # If the container failed, raise the exception if result['return_code'] != 0: message = result['message'] raise AirflowException(f'Singularity failed: {message}') self.log.info('Output from command %s', result['message'])
[docs] def _get_command(self) -> Optional[Any]: if self.command is not None and self.command.strip().find('[') == 0: # type: ignore commands = ast.literal_eval(self.command) else: commands = self.command return commands
[docs] def on_kill(self) -> None: if self.instance is not None: self.log.info('Stopping Singularity instance') self.instance.stop() # If an image exists, clean it up if self.auto_remove is True: if self.auto_remove and os.path.exists(self.image): shutil.rmtree(self.image)

Was this entry helpful?