We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 586b023 commit a9eb82aCopy full SHA for a9eb82a
fly.toml
@@ -20,3 +20,16 @@ primary_region = 'ewr'
20
memory = '1gb'
21
cpu_kind = 'shared'
22
cpus = 1
23
+
24
+# We reached error when everyone joined during a presentation:
25
+#
26
+# Instance 6e82403da07628 reached hard limit of 25 concurrent connections.
27
+# This usually indicates your app is not closing connections properly or is
28
+# not closing them fast enough for the traffic levels it is handling. Scaling
29
+# resources, number of instances or increasing your hard limit might help.
30
31
+# https://fly.io/docs/reference/load-balancing/#web-service
32
+[services.concurrency]
33
+ type = "connections"
34
+ hard_limit = 200
35
+ soft_limit = 100
0 commit comments