Source code for causallift.context.flexible_context

# Copyright 2018-2019 QuantumBlack Visual Analytics Limited
#
# 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
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND
# NONINFRINGEMENT. IN NO EVENT WILL THE LICENSOR OR OTHER CONTRIBUTORS
# BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN
# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
# The QuantumBlack Visual Analytics Limited ("QuantumBlack") name and logo
# (either separately or in combination, "QuantumBlack Trademarks") are
# trademarks of QuantumBlack. The License does not grant you any right or
# license to the QuantumBlack Trademarks. You may not use the QuantumBlack
# Trademarks or any confusingly similar mark as a trademark for your product,
#     or use the QuantumBlack Trademarks in any other manner that might cause
# confusion in the marketplace, including but not limited to in advertising,
# on websites, or on software.
#
# See the License for the specific language governing permissions and
# limitations under the License.

"""Application entry point."""

import logging
import logging.config
from pathlib import Path
from typing import Any, Dict, Iterable, Optional, Union  # NOQA

from kedro.io import DataCatalog
from kedro.pipeline import Pipeline
from kedro.runner import AbstractRunner, ParallelRunner, SequentialRunner

from causallift.context.base_context import BaseKedroContext, KedroContextError
from causallift.pipeline import create_pipeline

log = logging.getLogger(__name__)


[docs]class ProjectContext(BaseKedroContext): """Users can override the remaining methods from the parent class here, or create new ones (e.g. as required by plugins) """ project_name = "CausalLift" project_version = "0.15.0" @property def pipeline(self): # type: (...) -> Pipeline return create_pipeline()
[docs] def run( self, tags=None, # type: Iterable[str] runner=None, # type: AbstractRunner node_names=None, # type: Iterable[str] only_missing=False, # type: bool ): # type: (...) -> Dict[str, Any] """Runs the pipeline wi th a specified runner. Args: tags: An optional list of node tags which should be used to filter the nodes of the ``Pipeline``. If specified, only the nodes containing *any* of these tags will be run. runner: An optional parameter specifying the runner that you want to run the pipeline with. node_names: An optional list of node names which should be used to filter the nodes of the ``Pipeline``. If specified, only the nodes with these names will be run. only_missing: An option to run only missing nodes. Raises: KedroContextError: If the resulting ``Pipeline`` is empty or incorrect tags are provided. Returns: Any node outputs that cannot be processed by the ``DataCatalog``. These are returned in a dictionary, where the keys are defined by the node outputs. """ # Load the pipeline pipeline = self.pipeline if node_names: pipeline = pipeline.only_nodes(*node_names) if tags: pipeline = pipeline.only_nodes_with_tags(*tags) if not pipeline.nodes: msg = "Pipeline contains no nodes" if tags: msg += " with tags: {}".format(str(tags)) raise KedroContextError(msg) # Run the runner runner = runner or SequentialRunner() if only_missing and _skippable(self.catalog): return runner.run_only_missing(pipeline, self.catalog) return runner.run(pipeline, self.catalog)
def _skippable( catalog, # type: DataCatalog ): # type: (...) -> bool missing = {ds for ds in catalog.list() if not catalog.exists(ds)} return not missing
[docs]class ProjectContext1(ProjectContext): r"""Allow to specify runner by string."""
[docs] def run( self, runner=None, # type: Union[AbstractRunner, str] **kwargs # type: Any ): # type: (...) -> Dict[str, Any] if isinstance(runner, str): assert runner in {"ParallelRunner", "SequentialRunner"} runner = ( ParallelRunner() if runner == "ParallelRunner" else SequentialRunner() ) return super().run(runner=runner, **kwargs)
[docs]class ProjectContext2(ProjectContext1): r"""Keep the output datasets in the catalog."""
[docs] def run( self, **kwargs # type: Any ): # type: (...) -> Dict[str, Any] d = super().run(**kwargs) self.catalog.add_feed_dict(d, replace=True) return d
[docs]class FlexibleKedroContext(ProjectContext2): r"""Overwrite the default runner and only_missing option for the run."""
[docs] def __init__( self, runner=None, # type: Optional[str] only_missing=False, # type: bool **kwargs # type: Any ): # type: (...) -> None super().__init__(**kwargs) self._runner = runner self._only_missing = only_missing
[docs] def run( self, tags=None, # type: Optional[Iterable[str] ] runner=None, # type: Optional[AbstractRunner] node_names=None, # type: Optional[Iterable[str]] only_missing=False, # type: bool ): # type: (...) -> Dict[str, Any] runner = runner or self._runner only_missing = only_missing or self._only_missing log.info( "Run pipeline (" + ("nodes: {}, ".format(node_names) if node_names else "") + ("tags: {}, ".format(tags) if tags else "") + "{}, ".format(runner) + "only_missing: {}".format(only_missing) + ")" ) return super().run( tags=tags, runner=runner, node_names=node_names, only_missing=only_missing )