Problem with many p2p conn

I use libp2p to upload files to ipfsCluster and disable resource manager in cluster and kubo. But i have this exception if RPS > 64. “cannot reserve outbound stream: resource limit exceeded (0)”
How fix this, help pls

That sounds as if you have not disabled the resource manager.

ipfs config Swarm.ResourceMgr

{
  "Enabled": false
}

In cluster

"resource_manager": {
      "enabled": false,
      "memory_limit_bytes": 0,
      "file_descriptors_limit": 0
    },

It`s my config. Or do I need to install something else.

it might be a bug. Try enabling it with very high limits.

We put this config, but the situation has not changed
ipfs config Swarm.ResourceMgr

{
  "Enabled": true,
  "MaxFileDescriptors": 10000000,
  "Memory": 268435456000
}

Cluster

 "resource_manager": {
      "enabled": true,
      "memory_limit_bytes": 268435456000,
      "file_descriptors_limit": 10000000
    },