Setup & Configuration
- Hi! I am testing in Dataiku 11.4 with user profile (or license) setting, via LDAP mapping. In my tests the profile is only assigned when the user logs in for the first time and registers his user. Sub…Solution by Turribeach
This is by design. Last time I asked Dataiku about this they said you could be breaching your licensing terms if you start switching users between licenses. You will need to check with your Customer Success Manager / Account Manager to see what you are allowed to do in terms of swtching Designer licenses around. One way you can prevent this issue is by setting the Groups Restriction field in your LDAP configuration to all the AD groups which grant any sort of Dataiku license type (Reader, Explorer, Designer). This will prevent random users from being able to login to Dataiku unless they have been granted a license type in advance. This in turn will prevent their accounts created and their profile defaulting to Reader. So hopefully that solves most of your issues. With regards to real cases where the user license type needs to change, I will again suggest you consult with Dataiku to make sure you stay within the Dataiku licensing terms. But as you have seen there is no built-in functionality to handle these cases so you would need to handle them manually or via the Python API. Below is sample Dataiku Pyhton API code on how to modify the user's profile:
import dataiku client = dataiku.api_client() user = client.get_user("theuserslogin") settings = user.get_settings() # Modify the settings in the `get_raw()` dict settings.get_raw()["userProfile"] = "DESIGNER" # Save the modifications settings.save()
- I have installed DSS on linux Centos 7 this morning. DSS was started without error. When access the DSS URL the first time I was asked to select license. At page 2- Select your license, I selected Fre…Solution by Clément_Stenac
Hi,
We can unfortunately not comment on why your corporate proxy is specifically blocking https://my.dataiku.com
If, after discussion with our business team, they provide you with an evaluation license, no registration call will be sent so you will not have this issue.
- Solution by
- Hello, I am a student from a French IT Engineering School where one of a french employee did a presentation of Dataiku DSS enterprise with a free trial for Data Science classes. But for now, I use the…Last answer by
- Hi, what is the support in Dataiku for distributing grid searches/training? Not speaking of spark or hadoop existing dataiku integration, but mainly sending the regular python based jobs to other node…Solution by