You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 9, 2024. It is now read-only.
@@ -700,9 +700,9 @@ further processed by the Event Gateway.
700
700
701
701
For more details, see [the example plugin](plugin/example).
702
702
703
-
## Client Libraries
703
+
## SDK
704
704
705
-
*[FDK for Node.js](https://github.com/serverless/fdk)
705
+
*[SDK for Node.js](https://github.com/serverless/event-gateway-sdk)
706
706
707
707
## Versioning
708
708
@@ -841,7 +841,7 @@ The greatest benefit of serverless/FaaS is that it solves almost all of above pr
841
841
2. load balancing: I don't care! I know that there will be a function to handle my request (blue/green deployments still an issue though)
842
842
3. retries: It's highly unusual that my request will not proceed as function instances are ephemeral and failing function is immediately replaced with a new instance. If it happens I can easily send another request. In case of failure, it's easy to understand what is the cause.
843
843
4. circuit breaking: Functions are ephemeral and auto-scaled, low possibility of flooding/DoS & [cascading failures](https://landing.google.com/sre/book/chapters/addressing-cascading-failures.html).
844
-
5. sidecar: calling function is as simple as calling method from cloud provider fdk.
844
+
5. sidecar: calling function is as simple as calling method from cloud provider SDK.
845
845
6. in FaaS setting up persistent connection between two functions defeats the purpose as functions instances are ephemeral.
846
846
847
847
Tools like Envoy/Linkerd solve different domain of technical problems that doesn't occur in serverless space. They have a lot of features that are unnecessary in the context of serverless computing.
0 commit comments