Azure 容器实例是否共享 HTTP 连接池?

Do Azure Container Instances share a HTTP connection pool?

我了解 ACI(Azure 容器实例)在容器组中共享资源。记录了相当数量 here

但是,有谁知道容器实例是否在各自的容器组中共享一个 HTTP 连接池?

我问,因为我 运行 一个进程的许多并发 HTTP 请求(同一进程的多个副本 运行),我想知道拆分工作是否更有益到单独的容器组或实例中。

Does anyone know if Container Instances share a HTTP connection pool in their respective Container Group?

一般情况下,HTTP连接池是在主机上定义的。一台主机将共享同一个 HTTP 连接池。您可以在您提供的文档中看到以下描述:

A container group is a collection of containers that get scheduled on the same host machine.

所以据此,我认为同一个容器组云中的容器共享同一个HTTP连接池。