Ok, you link to a deployment, and also the docs say this:
> Collaborative GIS Environment: Work together on geographic data projects in real-time.
How does that work? I can apparently make changes to the files, and even save them, but then my changes are gone when I reload it. Where were the changes saved? This is exactly what I'm wary of when using Jupyter...
> How does that work? I can apparently make changes to the files, and even save them, but then my changes are gone when I reload it. Where were the changes saved? This is exactly what I'm wary of when using Jupyter...
The GP linked to JupyterLite, which is browser-based Jupyter based on WebAssembly...
Then there is JupyterLab which runs on your own machine, or on a server somewhere (e.g. a K8S pod)...
And then there are options like JupyterHub and Kubeflow which start K8S pods for you dynamically to run JupyterLab in...
So "where is my data stored" all depends on how Jupyter is deployed... at the moment, when I use Jupyter, I'm mainly using it running inside a Docker container which in turn runs inside a K8S pod (weird way of deploying it, but I have my reasons)... and then the notebooks are stored in a volume (PVC) attached to the K8S pod (statefulset actually), but that's just temporary storage while I work on them, anything I want to keep permanently is put in Git and pushed to our corporate Git host... and then our actual datasets are mostly on S3 (or something else which speaks the S3 protocol)
I don't know! They said "collaborative" and they provided a link. I tried making some changes to test the collaboration and clicked the "save" button. It changed the "last changed" to "now" and upon reload my changes were gone.
It lied to me: my changes weren't saved! If I can't save a thing, I want to be explicitly told so!