An oyster-farm importer writes nightly CSVs that disappear when the Azure Container Instances group restarts because the filesystem was ephemeral. How should the developer keep that state?
Select an answer to reveal the explanation.
Short Explanation
The container’s local disk is scratch paper—gone when the group restarts. Mount an Azure Files share so those nightly CSVs live in a real filing cabinet outside the container.
Full Explanation
ACI container filesystems are ephemeral by default; restarts lose local writes. Mounting an Azure Files share into the group persists data across recreations. Scaling CPU/memory does not make local disk durable, AKS is not required for file persistence on ACI, and baking nightly outputs into image layers is the wrong lifecycle for runtime data.