Plugins & Extending Dataiku
-
faster approach for a container
Hi Gurus, When I run program on a machine, for getting meta data from big files, it is rather fast, when I make it as a plugin, it is slow. Any idea how I can overcome this problem? it is approximately 20 second vs 22 minutes. Regards Arshia
-
a process which never end at the end of my plugin workflow
Dear Gurus, I have a plugin which finishes in one minutes but I get the following message (every one minute) and it seems it fall into an infinite loop. This is when I write final result in an output file system: [03:54:22] [DEBUG] [dku.resource] - Process stats for pid 1113786:…
-
Help with import error 'BadZipFile' from 'openpyxl'
How do I deal with this error - I am getting this error: Error in Python process: At line 7: <class 'ImportError'>: cannot import name 'BadZipFile' from 'openpyxl' (/data/DATA_DIR/code-envs/python/ERM_Python_38/lib/python3.8/site-packages/openpyxl/__init__.py) this is my library code: import dataiku import pandas as pd,…
-
How to write an excel file in a folder with python where folder use sharepoint plugin
Hi, Python script is not working when I want to write an excel file to a folder associated to sharepoint plugin. Python fails to retrieve path needed to excelwriter. path seems to not be part of folder_info structure of folder when using sharepoint plugin while it is on server's filesystem folder. Here the code used : #…
-
Project Flow Creation w Code
If one has a particular type of project flow that gets used all the time within an organization, what is the best way to duplicate these common project structures to assure quality control. To accomplish this currently I am utilizing a "golden flow pattern" which I clone and rename to a new project manually as needed - but…
-
IP range matcher plugin
Is it possible to use variable in the IP range plugin? I am getting an error when I am trying to do so (Refer attached) I need to compare individual ip address against a long list of IP range so I was thinking of capturing the list in a variable and pass through the variable in the step but the step does not seem to work…
-
Generating Dendrogram
Is there a plugin or visual recipe to obtain dendrogram using Linkage Method ?
-
Authenticating with GCP to use Document AI API
Hi all, I am trying to use the GCP Document AI service within my Dataiku flow. I have a batch of images I would like to process using the GCP API via a Python code recipe. Within GCP I have created the necessary services and enabled the API for use. My Dataiku instance is a cloud deployment on AWS. I have not been able to…
-
Javascript is being cached
Hello, I am developing a plugin with custom UI. However, the javascript source seems to be cached, i.e. the the javascript source does not seem to update even though I update the plugin using the Plugins menu in Admin Tools. the html files and json files seem to be updating. How can I solve this issue? Thanks,
-
How to send a parameter from AngularJS to my do.py file?
I have the following plugin implementation: A dataset is fed to the plugin --> the do.py file extracts the column names --> Using AngularJS, callPythonDo() and the proper HTML, the custom form shows the names of the columns to the user --> the user selects a column-name. So far so good. How do I "send" the selected…