-
Re: Uploading image files to managed folder
You could use some code similar to this sample code: import dataiku, iofrom PIL import Imageimport numpy as npa = np.asarray(img)img1 = Image.fromarray(a,'RGB')buf=io.BytesIO()img1.save(bu…1 · -
Re: How to check server's health
Hi, As a most basic DSS status check you can use Fleet manager to see the status of your nodes and deployments. For advanced use – there is dkumomnitor however it is considered legacy software and is…1 · -
Re: Error when creating a code envieroment with Python 3.6
Check this solution https://community.dataiku.com/t5/Setup-Configuration/Could-not-create-python-env-after-upgrading-to-Dataiku-v11-2-1/m-p/32758/highlight/true#M2914 You need to have python 3.6 inst…1 · -
Re: Dataiku not starting due to issue with nginx
Hello You should point your nginx to the following path /usr/sbin/nginx You can do it with symlink command : sudo ln -s /usr/local/nginx/sbin/nginx /usr/sbin/nginx Stop current nginx process and rest…2 · -
Re: PermissionError while trying to run a python recipe
Hi, You should be able to workaround the error by exporting the DOCTR_CACHE_DIR , DOCTR_MULTIPROCESSING_DISABLE environment variables to a directory path, such as a directory outside of the DSS data …2 ·