An Azure service that provides customers with a serverless container experience.
anonymous user Wang-4727 , Thank you for your question.
I wonder if the network throughput is influenced by how busy the physical machine that they are running on.
Yes, the containers' network throughput is constrained by the network bandwidth of the underlying host. More information on expected network bandwidth can be browsed for different types of Azure VMs mentioned here.
Is it possible to tell whether two container instances are running on the same physical machine?
Azure Container Instances being a Container-as-a-Service offering, currently it is not possible to determine (as a customer) the physical machine on which a container group is running. As shared in the answer by @Cristian SPIRIDON , containers running in the same container group will be running on the same physical machine.
Also you can now deploy Azure Container Instances on dedicated hosts (although the underlying host will not be visible to you). "Dedicated" is an Azure Container Instances (ACI) sku that provides an isolated and dedicated compute environment for securely running containers. Using the dedicated sku results in each container group having a dedicated physical server in an Azure datacenter, ensuring full workload isolation to help meet your organization's security and compliance requirements.
The dedicated sku is appropriate for container workloads that require workload isolation from a physical server perspective.
For more information please check this document.
Hope this helps.
Please "Accept as Answer" if it helped, so that it can help others in the community looking for help on similar topics.