Skip to main content

In python SDK after fetching pipeline details with use of ControlHub object (sch.pipelines).

How can we get type of pipeline (Data collector or transformer)?

 

 

@dhanraj_shinde 

 

sch = ControlHub(credential_id=<cred_id>,token=<token>)
pipeline= sch.pipelines.get(pipeline_id=<pipeline_id>)
pipeline.executor_type

executor_type will give you the engine type


Reply