Project Variables and Git Version Control
Every time I run a scenario it updates the project variables. This is good. However, every time this occurs git sitting under DSS thinks that this project has had an update. I've got hundreds of git commits for each project. One for each time I change a variable in the project file variables.json.
Can one use a .gitignore file with a DSS project? Or is there a setting somewhere that I've not found that implements a similar feature?
Operating system used: Mac OS Ventura 13.0.1
Answers
-
tgb417 Dataiku DSS Core Designer, Dataiku DSS & SQL, Dataiku DSS ML Practitioner, Dataiku DSS Core Concepts, Neuron 2020, Neuron, Registered, Dataiku Frontrunner Awards 2021 Finalist, Neuron 2021, Neuron 2022, Frontrunner 2022 Finalist, Frontrunner 2022 Winner, Dataiku Frontrunner Awards 2021 Participant, Frontrunner 2022 Participant, Neuron 2023 Posts: 1,598 Neuron
for example, can I simply put a .gitignore file into:
dss_home/config/projects/[Project_NAME]
-
tgb417 Dataiku DSS Core Designer, Dataiku DSS & SQL, Dataiku DSS ML Practitioner, Dataiku DSS Core Concepts, Neuron 2020, Neuron, Registered, Dataiku Frontrunner Awards 2021 Finalist, Neuron 2021, Neuron 2022, Frontrunner 2022 Finalist, Frontrunner 2022 Winner, Dataiku Frontrunner Awards 2021 Participant, Frontrunner 2022 Participant, Neuron 2023 Posts: 1,598 Neuron
I see that the project directory
variables.json
already has a .gitignore file.
Does anyone know if I will cause problems by adding the following to the project .gitignore file?
/Users/<username>/Library/DataScienceStudio/dss_home/config/projects/<project_key>
-
tgb417 Dataiku DSS Core Designer, Dataiku DSS & SQL, Dataiku DSS ML Practitioner, Dataiku DSS Core Concepts, Neuron 2020, Neuron, Registered, Dataiku Frontrunner Awards 2021 Finalist, Neuron 2021, Neuron 2022, Frontrunner 2022 Finalist, Frontrunner 2022 Winner, Dataiku Frontrunner Awards 2021 Participant, Frontrunner 2022 Participant, Neuron 2023 Posts: 1,598 Neuron
I tried updating the .gitignore and running this in the project directory
git rm --cached variables.json
Git definitely ignored the file. However, Dataiku DSS was still doing a commit every time the variables were changed.
My intended action is not to make commits for every variable change.
-
tgb417 Dataiku DSS Core Designer, Dataiku DSS & SQL, Dataiku DSS ML Practitioner, Dataiku DSS Core Concepts, Neuron 2020, Neuron, Registered, Dataiku Frontrunner Awards 2021 Finalist, Neuron 2021, Neuron 2022, Frontrunner 2022 Finalist, Frontrunner 2022 Winner, Dataiku Frontrunner Awards 2021 Participant, Frontrunner 2022 Participant, Neuron 2023 Posts: 1,598 Neuron
It looks like I could do the above and set the project to Manual Commit.
Does anyone have a better idea?