-
Re: Is it possible to get notified when a job exceeds a pre-determined duration
I wasn't aware of any changes around this but to be honest running list_jobs() for every project it's unfeasable for us as we have over 2000 projects in some instances. If you really want t…1 · -
Re: Get the run error message from Dataiku API
Something like this should do: import dataikufrom dataiku.scenario import Scenariocurrent_scenario = Scenario()client = dataiku.api_client()p = client.get_default_project()scenario_id = current_scena…1 · -
Re: Accessing a saved model from dataiku api endpoint
One option could go export it as MLflow model to managed folder and then load it from there in the API node: https://doc.dataiku.com/dss/latest/mlops/mlflow-models/importing.html1 · -
Re: How do I find an Archived Project?
On the home page click on See All under Projects. Then on the Status drop down select Show Archives:1 · -
Re: How to run a job sequentially with "job_builder" that consists of multiple recipes?
As I said Scenarios is the solution. A Scenario doesn't have to be scheduled or have any triggers, it can be created and executed manually at will. You can run a scenario via API calls synchrono…1 ·