-
DSS type geopoint is not supported by Parquet writer
In the Fuzzy Join Recipe Tutorial, when I tried to use the Fuzzy Join Recipe, it could not generate the dataset given the error message 'DSS type geopoint is not supported by Parquet writer'.
-
Testing endpoints with postman
Hi, I have created API endpoints using API Designer they are inside the project,and they use api_key secret key etc,now we can deploy these endpoint using API deployer,but is there is a way we can test these endpoints directly through postman,without deploying,they don't have any authorization. Thanks
-
How to import a project from a git remote
Hello, I was wondering if there was any solution on importing a project from Git? I have sync-ed project A with git by pushing on a remote, and now want project B to be created using the repository. I cannot find any solution, and create the project beforehand and pulling changes results in a conflict. I've found this post…
-
How to delete files in Managed Folders if Python process is running remotely?
Hello, I have created a managed folder through Python code whose process is running remotely and direct access to folder is not possible. I have successfully made a Python code with 'xlsxwriter' engine to create files (more than 50) and some folders inside the managed folder without problems. Now I want to remove all…
-
Computation engine
I am new to Dataiku When I use a prepare recipe is it better than using a code recipe in terms of performance optimization, and if a prepare recipe is better which engine would give me better performance Operating system used: Cloud
-
An invalid argument has been encountered : Current node id not found in directory
Hello everyone, wishing you a fantastic 2024! I encountered an issue with the design node yesterday. When attempting to use it, the following message appeared: 'An invalid argument has been encountered: Current node ID not found in directory,' preventing me from establishing a connection. Context: Following the update to…
-
[WebApp] Unbinding between an entry in an HTML search bar and the python script
I have a search bar in HTML which is supposed to send the input to the Python back-end, but despite my attempts in Flask and AJAX no way to achieve this. Do you have any leads? How to retrieve the "input" which I have in my HTML code in my Python code as a string of caracter ?
-
unusual behaviour of SQL probes on a partitioned dataset
I've implemented a SQL probe on a partitioned dataset that leverages AWS Athena to query an AWS S3 dataset : A check has been configured on the SQL result of this probe to ensure the value is equal to 1, essentially validating the absence of duplicate keys in my data. I asked dataiku to automatically compute the SQL probe…
-
How to save file in subfolder when I using dataiku.Folder("xxxxxx")?
python code, I save dataframe as csv: #df is pd.DataFramecsv_name = "data.csv"handle = dataiku.Folder("xxxxxxx") with handle.get_writer(csv_name) as w: w.write(df.to_csv().encode('utf-8')) Now I want to save csv in subfolder, for example save_path = dataiku.Folder("xxxxxxx")/subfolder1/data.csv how to change my code?…
-
how to save files in python API?
In a project, I created a python code API in API-designer. API input : day1,day2 API function: query a table, select * from table where date>day1 and date<day2 and then save result into CSV file, save in a folder(in this project) I tried in API code: #1 disign_node, can read path1 =…