Maybe You can Change the title later
I think there is not a particular place for asking regualr questions in implementin Pyblish and everyone has any question have to ask it in new topic, anyway…
in CEVI we have this:
Methodology
A CVEI-compatible stack assumes that publishes are idempotent and
that published content is immutable. What does that mean? To be
idempotent means that publishing once has the exact same effect as
publishing twice. It means that publishing doesn’t have any effect on
subsequent publishes. The one exception to this rule is immutability. To
be immutable means to never change. Which means that once content has
been published, it is never modified in any way, such as overwriting it
with more recent data. Because it can never be altered, it means that new
data must be created each time a publish occurs, which is the exception
to idempotency as publishing twice then means to output onto different
locations.
CVEI consists of four stages of orthogonal responsibilities.
- Collection is about collecting information
- Validation is about validating this information
- Extraction serialises this information
- Integration then integrates the serialised information with the surrounding pipeline
Each stage runs after the other and hinges on the success of Validation; if Validation fails, nothing is written.
Questions:
- in extraction area, where does it save data? on temporary folders structure? and we define our temporary folders? and after integration can we delete the temporary folders?
- if we want to have a final published folder and save published data on one file with supervisors, it is possible to do that in our plugins? i mean can we ignore immutabity of it based on our needs?
thanks