-
python api client SSL ERROR
I am getting the following error while trying to connect to the automation node using the python api client requests.exceptions.SSLError: HTTPSConnectionPool(host='dataiku-auto.fg.rbc.com', port=443): Max retries exceeded with url: /dip/publicapi/projects/card_engagement_class/scenarios/scheduled_partition/run (Ca\ used by…
-
Failing to train on a python 3.7 code env
As of 18 feb 2022, newly createdpython 3.7+ code envs may fail to train models with the following error message : MarkupSafe>=2.0.1,<2.1.0 This is due to Markupsafe releasing a new version incompatible with other libs in the code env. To avoid/fix the problem, one has to manually pin Markupsafe to the 2.0.1 version. This…
-
Code sample for setting (granting) permissions on projects for a specific group
Would it be possible to add a code sample for setting (granting) permissions on projects for a specific group into the documentation? Thanks
-
Certificate verify failed python api client with ansible
Hi, i am trying to administrate DSS with Dataiku DSS modules via ansible and I am getting this error: "msg":"SSLError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:618)" how can I fix this?
-
Create a LDAP connector
Hello, I'm often performing access and account controls on users in a LDAP server (Active Directory to be precise), I would like to have the ability to directly connect to the LDAP server and import some data in a dataset. To date in Dataiku, LDAP is only handled for user authentication on Dataiku. Best regards.
-
Set project's security with DSS API
Hi, I would like to set the project's security settings in automated way during the deployment. Does DSS API support this kind of action? If not, is there any way how to do that? (dssadmin?) Thanks
-
Error Running HDFS Command in Python Recipe
I have some code where I need to run an HDFS command in Python to check if a file is present. See below for an example: import subproces command = 'hdfs dfs -ls /sandbox' ssh = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE).communicate() print(ssh) When I run this in a Jupyter notebook in Dataiku, the…
-
Not authorized Your user profile does not allow you to write project content
When I try to import a dataset on this project, I get a message "Not authorized Your user profile does not allow you to write project content", I have checked my user profile and found both data scientist and reader are active. Please assist.
-
BUG: Connection to elasticsearch fails when using SSL certifcates
I setup a connection to elasticsearch and configure it to ignore server certificate verification by checking:"Trust any SSL certificate". The test connection gives me a positive result so my connection is working. But when i create a dataset based on the this connection it fails with this message: Failed to connect:…
-
How to lock a given dataset?
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 the api? 2) Is it possible to lock data writing on a dataset using the api? If it's not possible to do this using the api,…