We can access a given dataset using the DSS REST API, but we would like this dataset not to be written on while it is accessed. 1) Is it possible to check whether a dataset is currently modified using…
Hi, I am connecting to a rest api with end points in the following form /sensor_1? , where sensor_1 can be one of few hundred different tags. Based on the documentation, I assumed that the best way to…
Hi, I would like to add a new folder to the recipe's output, bases on the documentaion there is just a get method for recipe inputs/outputs. Is there any way to set it? Thanks classdataikuapi.dss.reci…
I have this code: ds1 = dataiku.Dataset("T73RM067") ds2 = dataiku.api_client().get_project("AIIMEINKAUF").get_dataset("T73RM067") print(type(ds1)) print(type(ds2)) Which returns <type 'instance'> <cla…
In my recipe I do: output = dataiku.Dataset(get_output_names_for_role(df_name)[0]) metadata = output.read_metadata() metadata['custom']['kv'].update(meta) output.write_metadata(metadata) yet I get thi…
My dataset is full of empty values which are denoted as string "NULL". Is there any way to interpret those values as NAs when I reading dataset with dkuReadDataset()? Same as it is with function read_…
Hello, it's quite easy to alter an existing file with the DSS REST API with the documented method POST (https://doc.dataiku.com/dss/api/4.1/rest/#plugins-plugin-contents-post) But when i try to create…
Hello I was wondering if with a secrete_key and a Key_api there is a way other than using python to get information from a platform that gives an API to subtract json files.
Hi, I am using the get_definition_and_payload() function of DSSRecipe from the Dataiku API. However, although the recipe involved exists, it is returning a recipe not found error. Upon checking the co…