I have an ECS cluster set up. I can launch several tasks that all point to the same task definition, and I see them running with different container runtime id.
What I want to understand is does each task gets its own disk space as well? Suppose I append logs to a static file (logs/application_logs.txt). Will each running task only have its own logs in that file?
If 3 tasks are running together, will the logs of all 3 tasks end up in logs/application_logs.txt?