The non-container LDM workflow allows easy post-processing with external scripts driven by pqact. For instance, the Unidata ldm-alchemy project is used to stitch together GOES imagery tiles, and simply receives the product stream over a PIPE. (I'm interested in doing this over the next week)
I'm opening this issue to request advice (or documentation) of how each of the pqact action categories should be used in the context of an isolated, containerized environment that (by philosophy) isolates access to other software installations and inter-process communication. I can think of a few ways:
- fork ldm-docker and heavily customize the Dockerfile to add additional post processing to same container
- expose a
PIPE with ldm-docker that is read by another container. (If that's even possible!)
- only use ldm-docker to write files, and then have other processes watch that directory for further processing.
- somehow have LDM trigger a script in another container
The non-container LDM workflow allows easy post-processing with external scripts driven by
pqact. For instance, the Unidataldm-alchemyproject is used to stitch together GOES imagery tiles, and simply receives the product stream over aPIPE. (I'm interested in doing this over the next week)I'm opening this issue to request advice (or documentation) of how each of the pqact action categories should be used in the context of an isolated, containerized environment that (by philosophy) isolates access to other software installations and inter-process communication. I can think of a few ways:
PIPEwith ldm-docker that is read by another container. (If that's even possible!)