DagsterDocs

Source code for dagster.core.definitions.decorators.solid

from functools import lru_cache, update_wrapper
from typing import Any, Callable, Dict, List, NamedTuple, Optional, Sequence, Set, Union, cast

from dagster import check
from dagster.core.errors import DagsterInvalidDefinitionError
from dagster.core.types.dagster_type import DagsterTypeKind
from dagster.seven import funcsigs

from ...decorator_utils import (
    get_function_params,
    get_valid_name_permutations,
    positional_arg_name_list,
    validate_expected_params,
)
from ..inference import infer_input_props, infer_output_props
from ..input import InputDefinition
from ..output import OutputDefinition
from ..policy import RetryPolicy
from ..solid import SolidDefinition


class DecoratedSolidFunction(NamedTuple):
    """Wrapper around the decorated solid function to provide commonly used util methods"""

    decorated_fn: Callable[..., Any]

    @lru_cache(maxsize=1)
    def has_context_arg(self) -> bool:
        return is_context_provided(get_function_params(self.decorated_fn))

    @lru_cache(maxsize=1)
    def positional_inputs(self) -> List[str]:
        params = get_function_params(self.decorated_fn)
        input_args = params[1:] if self.has_context_arg() else params
        return positional_arg_name_list(input_args)


class NoContextDecoratedSolidFunction(DecoratedSolidFunction):
    """Wrapper around a decorated solid function, when the decorator does not permit a context
    parameter (such as lambda_solid).
    """

    @lru_cache(maxsize=1)
    def has_context_arg(self) -> bool:
        return False


class _Solid:
    def __init__(
        self,
        name: Optional[str] = None,
        input_defs: Optional[Sequence[InputDefinition]] = None,
        output_defs: Optional[Sequence[OutputDefinition]] = None,
        description: Optional[str] = None,
        required_resource_keys: Optional[Set[str]] = None,
        config_schema: Optional[Union[Any, Dict[str, Any]]] = None,
        tags: Optional[Dict[str, Any]] = None,
        version: Optional[str] = None,
        decorator_takes_context: Optional[bool] = True,
        retry_policy: Optional[RetryPolicy] = None,
    ):
        self.name = check.opt_str_param(name, "name")
        self.input_defs = check.opt_list_param(input_defs, "input_defs", InputDefinition)
        self.output_defs = check.opt_nullable_list_param(
            output_defs, "output_defs", OutputDefinition
        )
        self.decorator_takes_context = check.bool_param(
            decorator_takes_context, "decorator_takes_context"
        )

        self.description = check.opt_str_param(description, "description")

        # these will be checked within SolidDefinition
        self.required_resource_keys = required_resource_keys
        self.tags = tags
        self.version = version
        self.retry_policy = retry_policy

        # config will be checked within SolidDefinition
        self.config_schema = config_schema

    def __call__(self, fn: Callable[..., Any]) -> SolidDefinition:
        check.callable_param(fn, "fn")

        if not self.name:
            self.name = fn.__name__

        if self.output_defs is None:
            output_defs = [OutputDefinition.create_from_inferred(infer_output_props(fn))]
        elif len(self.output_defs) == 1:
            output_defs = [self.output_defs[0].combine_with_inferred(infer_output_props(fn))]
        else:
            output_defs = self.output_defs

        compute_fn = (
            DecoratedSolidFunction(decorated_fn=fn)
            if self.decorator_takes_context
            else NoContextDecoratedSolidFunction(decorated_fn=fn)
        )

        resolved_input_defs = resolve_checked_solid_fn_inputs(
            decorator_name="@solid",
            fn_name=self.name,
            compute_fn=compute_fn,
            explicit_input_defs=self.input_defs,
            context_required=bool(self.config_schema),
            exclude_nothing=True,
        )

        solid_def = SolidDefinition(
            name=self.name,
            input_defs=resolved_input_defs,
            output_defs=output_defs,
            compute_fn=compute_fn,
            config_schema=self.config_schema,
            description=self.description or fn.__doc__,
            required_resource_keys=self.required_resource_keys,
            tags=self.tags,
            version=self.version,
            retry_policy=self.retry_policy,
        )
        update_wrapper(solid_def, compute_fn.decorated_fn)
        return solid_def


[docs]def solid( name: Union[Callable[..., Any], Optional[str]] = None, description: Optional[str] = None, input_defs: Optional[Sequence[InputDefinition]] = None, output_defs: Optional[Sequence[OutputDefinition]] = None, config_schema: Optional[Union[Any, Dict[str, Any]]] = None, required_resource_keys: Optional[Set[str]] = None, tags: Optional[Dict[str, Any]] = None, version: Optional[str] = None, retry_policy: Optional[RetryPolicy] = None, ) -> Union[_Solid, SolidDefinition]: """Create a solid with the specified parameters from the decorated function. This shortcut simplifies the core :class:`SolidDefinition` API by exploding arguments into kwargs of the decorated compute function and omitting additional parameters when they are not needed. Input and output definitions will be inferred from the type signature of the decorated function if not explicitly provided. The decorated function will be used as the solid's compute function. The signature of the decorated function is more flexible than that of the ``compute_fn`` in the core API; it may: 1. Return a value. This value will be wrapped in an :py:class:`Output` and yielded by the compute function. 2. Return an :py:class:`Output`. This output will be yielded by the compute function. 3. Yield :py:class:`Output` or other :ref:`event objects <events>`. Same as default compute behavior. Note that options 1) and 2) are incompatible with yielding other events -- if you would like to decorate a function that yields events, it must also wrap its eventual output in an :py:class:`Output` and yield it. @solid supports ``async def`` functions as well, including async generators when yielding multiple events or outputs. Note that async solids will generally be run on their own unless using a custom :py:class:`Executor` implementation that supports running them together. Args: name (Optional[str]): Name of solid. Must be unique within any :py:class:`PipelineDefinition` using the solid. description (Optional[str]): Human-readable description of this solid. If not provided, and the decorated function has docstring, that docstring will be used as the description. input_defs (Optional[List[InputDefinition]]): Information about the inputs to the solid. Information provided here will be combined with what can be inferred from the function signature, with these explicit InputDefinitions taking precedence. output_defs (Optional[List[OutputDefinition]]): Information about the solids outputs. Information provided here will be combined with what can be inferred from the return type signature if there is only one OutputDefinition and the function does not use yield. config_schema (Optional[ConfigSchema): The schema for the config. If set, Dagster will check that config provided for the solid matches this schema and fail if it does not. If not set, Dagster will accept any config provided for the solid. required_resource_keys (Optional[Set[str]]): Set of resource handles required by this solid. tags (Optional[Dict[str, Any]]): Arbitrary metadata for the solid. Frameworks may expect and require certain metadata to be attached to a solid. Users should generally not set metadata directly. Values that are not strings will be json encoded and must meet the criteria that `json.loads(json.dumps(value)) == value`. version (Optional[str]): (Experimental) The version of the solid's compute_fn. Two solids should have the same version if and only if they deterministically produce the same outputs when provided the same inputs. retry_policy (Optional[RetryPolicy]): The retry policy for this solid. Examples: .. code-block:: python @solid def hello_world(): print('hello') @solid def hello_world(): return {'foo': 'bar'} @solid def hello_world(): return Output(value={'foo': 'bar'}) @solid def hello_world(): yield Output(value={'foo': 'bar'}) @solid def hello_world(foo): return foo @solid( input_defs=[InputDefinition(name="foo", str)], output_defs=[OutputDefinition(str)] ) def hello_world(foo): # explicitly type and name inputs and outputs return foo @solid def hello_world(foo: str) -> str: # same as above inferred from signature return foo @solid def hello_world(context, foo): context.log.info('log something') return foo @solid( config_schema={'str_value' : Field(str)} ) def hello_world(context, foo): # context.solid_config is a dictionary with 'str_value' key return foo + context.solid_config['str_value'] """ # This case is for when decorator is used bare, without arguments. e.g. @solid versus @solid() if callable(name): check.invariant(input_defs is None) check.invariant(output_defs is None) check.invariant(description is None) check.invariant(config_schema is None) check.invariant(required_resource_keys is None) check.invariant(tags is None) check.invariant(version is None) return _Solid()(name) return _Solid( name=name, input_defs=input_defs, output_defs=output_defs, config_schema=config_schema, description=description, required_resource_keys=required_resource_keys, tags=tags, version=version, retry_policy=retry_policy, )
def resolve_checked_solid_fn_inputs( decorator_name: str, fn_name: str, compute_fn: DecoratedSolidFunction, explicit_input_defs: List[InputDefinition], context_required: bool, exclude_nothing: bool, ) -> List[InputDefinition]: """ Validate provided input definitions and infer the remaining from the type signature of the compute_fn. Returns the resolved set of InputDefinitions. Args: decorator_name (str): Name of the decorator that is wrapping the solid function. fn_name (str): Name of the decorated function. compute_fn (DecoratedSolidFunction): The decorated function, wrapped in the DecoratedSolidFunction wrapper. explicit_input_defs (List[InputDefinition]): The input definitions that were explicitly provided in the decorator. context_required (bool): True if a context argument is required due to environment information being provided in the decorator (ie: resources, config). exclude_nothing (bool): True if Nothing type inputs should be excluded from compute_fn arguments. """ expected_positionals = ["context"] if context_required or compute_fn.has_context_arg() else [] if exclude_nothing: explicit_names = set( inp.name for inp in explicit_input_defs if not inp.dagster_type.kind == DagsterTypeKind.NOTHING ) nothing_names = set( inp.name for inp in explicit_input_defs if inp.dagster_type.kind == DagsterTypeKind.NOTHING ) else: explicit_names = set(inp.name for inp in explicit_input_defs) nothing_names = set() params = get_function_params(compute_fn.decorated_fn) if context_required: missing_param = validate_expected_params(params, expected_positionals) if missing_param: raise DagsterInvalidDefinitionError( "{decorator_name} '{solid_name}' decorated function requires positional parameter " "'{missing_param}', but it was not provided. '{missing_param}' is required because " "either 'required_resource_keys' or 'config_schema' was specified.".format( decorator_name=decorator_name, solid_name=fn_name, missing_param=missing_param ) ) input_args = params[len(expected_positionals) :] else: input_args = params[1:] if compute_fn.has_context_arg() else params # Validate input arguments used_inputs = set() inputs_to_infer = set() has_kwargs = False for param in cast(List[funcsigs.Parameter], input_args): if param.kind == funcsigs.Parameter.VAR_KEYWORD: has_kwargs = True elif param.kind == funcsigs.Parameter.VAR_POSITIONAL: raise DagsterInvalidDefinitionError( f"{decorator_name} '{fn_name}' decorated function has positional vararg parameter " f"'{param}'. Solid functions should only have keyword arguments that match " "input names and, if system information is required, a first positional " "parameter named 'context'." ) else: if param.name not in explicit_names: if param.name in nothing_names: raise DagsterInvalidDefinitionError( f"{decorator_name} '{fn_name}' decorated function has parameter '{param.name}' that is " "one of the solid input_defs of type 'Nothing' which should not be included since " "no data will be passed for it. " ) else: inputs_to_infer.add(param.name) else: used_inputs.add(param.name) undeclared_inputs = explicit_names - used_inputs if not has_kwargs and undeclared_inputs: undeclared_inputs_printed = ", '".join(undeclared_inputs) raise DagsterInvalidDefinitionError( f"{decorator_name} '{fn_name}' decorated function does not have parameter(s) " f"'{undeclared_inputs_printed}', which are in solid's input_defs. Solid functions " "should only have keyword arguments that match input names and, if system information " "is required, a first positional parameter named 'context'." ) inferred_props = { inferred.name: inferred for inferred in infer_input_props(compute_fn.decorated_fn, compute_fn.has_context_arg()) } input_defs = [] for input_def in explicit_input_defs: if input_def.name in inferred_props: # combine any information missing on the explicit def that can be inferred input_defs.append(input_def.combine_with_inferred(inferred_props[input_def.name])) else: # pass through those that don't have any inference info, such as Nothing type inputs input_defs.append(input_def) # build defs from the inferred props for those without explicit entries input_defs.extend( InputDefinition.create_from_inferred(inferred) for inferred in inferred_props.values() if inferred.name in inputs_to_infer ) return input_defs def is_context_provided(params: List[funcsigs.Parameter]) -> bool: if len(params) == 0: return False return params[0].name in get_valid_name_permutations("context") def lambda_solid( name: Union[Optional[str], Callable[..., Any]] = None, description: Optional[str] = None, input_defs: Optional[List[InputDefinition]] = None, output_def: Optional[OutputDefinition] = None, ) -> Union[_Solid, SolidDefinition]: """Create a simple solid from the decorated function. This shortcut allows the creation of simple solids that do not require configuration and whose implementations do not require a :py:class:`context <SolidExecutionContext>`. Lambda solids take any number of inputs and produce a single output. Inputs can be defined using :class:`InputDefinition` and passed to the ``input_defs`` argument of this decorator, or inferred from the type signature of the decorated function. The single output can be defined using :class:`OutputDefinition` and passed as the ``output_def`` argument of this decorator, or its type can be inferred from the type signature of the decorated function. The body of the decorated function should return a single value, which will be yielded as the solid's output. Args: name (str): Name of solid. description (str): Solid description. input_defs (List[InputDefinition]): List of input_defs. output_def (OutputDefinition): The output of the solid. Defaults to :class:`OutputDefinition() <OutputDefinition>`. Examples: .. code-block:: python @lambda_solid def hello_world(): return 'hello' @lambda_solid( input_defs=[InputDefinition(name='foo', str)], output_def=OutputDefinition(str) ) def hello_world(foo): # explicitly type and name inputs and outputs return foo @lambda_solid def hello_world(foo: str) -> str: # same as above inferred from signature return foo """ if callable(name): check.invariant(input_defs is None) check.invariant(description is None) return _Solid( output_defs=[output_def] if output_def else None, decorator_takes_context=False )(name) return _Solid( name=name, input_defs=input_defs, output_defs=[output_def] if output_def else None, description=description, decorator_takes_context=False, )