I'm learning the concepts of spring cloud dataflow and wondering what is the common way of storing global resources.
For example, when I have a stream with a pmml-processor and I would like to retrain the underlying pmml-model periodically via a spring-cloud-task.
Where would I store the model, so that it can be used as a (read-only)-resource by the processor and updated by the task every night? Is there a concept of a global storage in spring cloud dataflow? Should I just use a traditional database outside of the spring-cloud or is there a better way?