Dataiku DSS integrates with VSCode
Although Jupyter notebooks are integrated into the Dataiku DSS interface, some developers favor writing code in an external IDE. DSS has integrations with a number of popular IDEs, including VSCode, that make it easy to manage code.
The short video below demonstrates how the DSS extension allows developers to pull and push code between DSS and VSCode:
Configuration
From within VSCode, you can install the dataiku extension and then configure VSCode to connect to an existing Dataiku instance.
Functionality
Once the connection to Dataiku is established, you can pull code from an existing code recipe, web app, or plugin into VSCode, edit and test the code, and then synchronize your changes back to the code recipe or plugin when you save the file.
This feature allows developers to collaborate with teammates and contribute to DSS projects while still being able to use their preferred IDE to write and test code.
What’s Next?
Try out this hands-on tutorial to see how this feature works in action.
Comments
-
Can advise on "configure VSCode to connect to an existing Dataiku instance" how to configure the V
-
dima_naboka Dataiker, Dataiku DSS Core Designer, Dataiku DSS & SQL, Dataiku DSS Core Concepts Posts: 28 Dataiker
To confiure connection settings, please follow details from https://github.com/dataiku/dss-integration-vscode#extension-settings
For example, you could create config.json with following contents in OS home folder
(base) â ~ cat .dataiku/config.json { "dss_instances": { "default": { "url": "http://127.0.0.1:11200/", "api_key": "XG7hmZifBuAN2nLJoPyz517XFaHmjcTL" } }, "default_instance": "default" }
-
rmoore Partner, Dataiku DSS Core Designer, Dataiku DSS ML Practitioner, Dataiku DSS Core Concepts, Neuron, Dataiku DSS Adv Designer, Registered, Neuron 2022, Frontrunner 2022 Finalist, Frontrunner 2022 Participant, Neuron 2023 Posts: 33 Neuron
I've also written a blog post about this Visual Studio Code / DSS integration.
-
Thanks for this
-
p_phanwong Dataiku DSS Core Designer, Dataiku DSS ML Practitioner, Dataiku DSS Adv Designer, Registered Posts: 7 ✭✭✭
Can we run the code in external IDE?
-
I know I can run code locally using laptop's CPU power.
But can I run code on the DSS code env and cluster?