What is the standard / best practice / convenient way to call another Lambda in IronFunctions?

What is the standard / best practice / convenient way to call another lambda in IronFunctions?

As I understand it, the response may be an HTTP request to localhost as an external call. But this method does not cover clustering situations (e.g. Swarm) due to different hosts and load balancing.

Maybe there is a library for this (high-level shell)?

+4
source share
1 answer

in the case of a cluster, for example, swarm, we can also use HTTP, because replicas are created and called part of the Service. We can call this function using Service Name or IP

0
source

Source: https://habr.com/ru/post/1685544/


All Articles