kedro.runner.run_node¶
-
kedro.runner.run_node(node, catalog, is_async=False, run_id=None)[source]¶ Run a single Node with inputs from and outputs to the catalog.
- Parameters
node (
Node) – TheNodeto run.catalog (
DataCatalog) – ADataCatalogcontaining the node’s inputs and outputs.is_async (
bool) – If True, the node inputs and outputs are loaded and saved asynchronously with threads. Defaults to False.run_id (
Optional[str]) – The id of the pipeline run.
- Return type
- Returns
The node argument.