Creates a step in a given pipeline.
REQUIRED | KEY | TYPE | DESCRIPTION |
---|---|---|---|
Yes | pipelineId | str | The ID of the pipeline to run. |
Yes | stepName | str | The name of the step. |
No | functionName | str | The name of the Python function. |
No | sourceCode | str | Contents of a valid Python source code file. The source code should contain the transform feature group functions. A list of allowed imports and system libraries for each language is specified in the user functions documentation section. |
No | stepInputMappings | List[PythonFunctionArgument] | List of Python function arguments. |
No | outputVariableMappings | List[OutputVariableMapping] | List of Python function outputs. |
No | stepDependencies | List[str] | List of step names this step depends on. |
No | packageRequirements | list | List of package requirement strings. For example: ['numpy==1.2.3', 'pandas>=1.4.0']. |
No | cpuSize | str | Size of the CPU for the step function. |
No | memory | int | Memory (in GB) for the step function. |
No | timeout | int | Timeout for the step in minutes, default is 300 minutes. |
KEY | TYPE | DESCRIPTION | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
success | Boolean | true if the call succeeded, false if there was an error | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
result | Pipeline |
|
TYPE | WHEN |
---|---|
DataNotFoundError |
|
InvalidEnumParameterError | An invalid value is passed for |
curl
curl "https://api.abacus.ai/api/v0/createPipelineStep" \
-X POST \
-H "apiKey:**********c74043986d6087446810a1" \
-d
'{
"pipelineId": "",
"stepName": "double_things",
"functionName": "double_val",
"sourceCode": "def double_val(some_constant: int):\n return {'doubled': some_constant * 2}\n",
"stepInputMappings": [{'name': 'some_constant', 'variable_type': 'INTEGER', 'pipeline_variable': 'dataset_refresh.constant_val'}],
"outputVariableMappings": [{'name': 'doubled', 'variable_type': 'INTEGER'}],
"stepDependencies": ['dataset_refresh']
}'
{
'success': true,
'result': {
'createdAt': datetime.datetime(2023, 4, 13, 15, 39, 55, tzinfo=datetime.timezone.utc),
'pipelineId': 'c277bc341',
'pipelineName': 'test_pipeline',
'pipelineVariableMappings': [{'is_required': True,
'name': 'dataset_id',
'variable_type': 'STRING'}],
'steps': [{'createdAt': datetime.datetime(2023, 4, 13, 15, 39, 59, tzinfo=datetime.timezone.utc),
'pipelineId': 'c277bc341',
'pipelineStepId': 'c63168d41',
'pythonFunction': {'functionType': 'STEP_FUNCTION',
'functionVariableMappings': [{'is_required': True,
'name': 'dataset_id',
'variable_type': 'STRING'}],
'notebookId': '9df7a9a82',
'outputVariableMappings': [{'name': 'new_dataset_id',
'variable_type': 'STRING'},
{'name': 'constant_val',
'variable_type': 'INTEGER'}],
'pythonFunctionId': '139ad50341'},
'pythonFunctionId': '139ad50341',
'stepName': 'dataset_refresh',
'updatedAt': datetime.datetime(2023, 4, 13, 15, 39, 59, tzinfo=datetime.timezone.utc)},
{'createdAt': datetime.datetime(2023, 4, 13, 15, 39, 59, tzinfo=datetime.timezone.utc),
'pipelineId': 'c277bc341',
'pipelineStepId': '136b44f482',
'pythonFunction': {'functionType': 'STEP_FUNCTION',
'functionVariableMappings': [{'is_required': True,
'name': 'some_constant',
'pipeline_variable': 'dataset_refresh.constant_val',
'variable_type': 'INTEGER'}],
'notebookId': '10e7a901c3',
'outputVariableMappings': [{'name': 'doubled',
'variable_type': 'INTEGER'}],
'pythonFunctionId': '35a8c8282'},
'pythonFunctionId': '35a8c8282',
'stepDependencies': ['dataset_refresh'],
'stepName': 'double_things',
'updatedAt': datetime.datetime(2023, 4, 13, 15, 39, 59, tzinfo=datetime.timezone.utc)}]}
}
python
client.createPipelineStep(pipeline_id='c277bc341',
step_name='double_things',
function_name='double_val',
source_code='def double_val(some_constant: int):\n return {'doubled': some_constant * 2}\n',
step_input_mappings=[
{'name': 'some_constant', 'variable_type': 'INTEGER', 'pipeline_variable': 'dataset_refresh.constant_val'}],
output_variable_mappings=[
{'name': 'doubled', 'variable_type': 'INTEGER'}],
step_dependencies=['dataset_refresh'])
Pipeline(
created_at='2023-04-13T15:39:55+00:00',
pipeline_id='c277bc341',
pipeline_name='test_pipeline',
pipeline_variable_mappings=[
PythonFunctionArgument(
is_required=True,
name='dataset_id',
variable_type='STRING'
)
],
steps=[
PipelineStep(
created_at='2023-04-13T15:39:55+00:00',
pipeline_id='c277bc341',
pipeline_step_id='c63168d41',
python_function=PythonFunction(
function_type'='STEP_FUNCTION',
function_variable_mappings=[{'is_required': True,
'name': 'dataset_id',
'variable_type': 'STRING'}],
notebook_id='9df7a9a82',
output_variable_mappings=[{'name': 'new_dataset_id',
'variable_type': 'STRING'},
{'name': 'constant_val',
'variable_type': 'INTEGER'}],
python_function_id='139ad50341'},
python_function_id='139ad50341',
step_name='dataset_refresh',
created_at='2023-04-13T15:39:55+00:00',
),
PipelineStep(
created_at='2023-04-13T15:39:55+00:00',
pipeline_id='c277bc341',
pipeline_step_id='136b44f482',
'pythonFunction'=PythonFunction(
function_type'='STEP_FUNCTION',
function_variable_mappings=[{'is_required': True,
'name': 'some_constant',
'pipeline_variable': 'dataset_refresh.constant_val',
'variable_type': 'INTEGER'}],
notebook_id='10e7a901c3',
output_variable_mappings=[{'name': 'doubled',
'variable_type': 'INTEGER'}],
python_function_id='35a8c8282'},
python_function_id='35a8c8282',
step_name='double_things',
created_at='2023-04-13T15:39:55+00:00',
)
]
)