aws-sdk-cpp icon indicating copy to clipboard operation
aws-sdk-cpp copied to clipboard

cURL error on concurrent Lambda invocations

Open mcopik opened this issue 8 months ago • 1 comments

Describe the bug

I wrote a client that uses the Lambda component to invoke functions asynchronously. I created my own callback, and it seemed to work pretty well. However, when I scaled up to 512 functions, the performance dropped quite quickly - I expected behavior close to linear scaling. I investigated it further, and I found out that there's a default configuration limit of a maximum of 25 TCP connections. So, I changed this parameter to the value of 520, and it started scaling again, although performance became very unpredictable. Unfortunately, for 256 concurrent invocations, we now get an error inside the SDK.

I do not believe this is an issue with Lambda. Our custom implementation of Lambda invoker, based on an HTTP2 client, can scale up much higher concurrent invocations without any issues.

Expected Behavior

The Lambda client from SDK should scale up to the limit of concurrent connections without (a) errors and (b) performance degradation. With the default limit of 25 connections, the SDK can handle even 512 concurrent invocations - it's just very slow.

Current Behavior

I observed the following error on the client. I don't see any failed Lambda invocations in AWS metrics.

Error with Lambda::InvokeRequest. curlCode: 6, Couldn't resolve host name

Reproduction Steps

This is the main invocation code. np is equal to the number of invocations, which in this case is equal to 256. lambda_name refers to the name of my function.

    Aws::SDKOptions options;
    Aws::InitAPI(options);

    Aws::Client::ClientConfiguration clientConfig;
    clientConfig.maxConnections = 520;
    Aws::Lambda::LambdaClient client(clientConfig);
    int id = 0;
    for (int i = 0; i < np; i++) {

        Aws::Lambda::Model::InvokeRequest request;
        request.SetFunctionName(lambda_name);
        Aws::Utils::Json::JsonValue jsonPayload;
        jsonPayload.WithInt64("iterations", n / np);

        std::shared_ptr<Aws::Client::AsyncCallerContext> context =
                Aws::MakeShared<Aws::Client::AsyncCallerContext>("tag");
        context->SetUUID(std::to_string(id++).c_str());

        std::shared_ptr<Aws::IOStream> payload = Aws::MakeShared<Aws::StringStream>(
                "FunctionTest");
        *payload << jsonPayload.View().WriteReadable();
        request.SetBody(payload);
        request.SetContentType("application/json");

        client.InvokeAsync(request, handler, context);
 }

The handler function fails immediately at this step:

void handler(
    const Aws::Lambda::LambdaClient*, const Aws::Lambda::Model::InvokeRequest&,
    Aws::Lambda::Model::InvokeOutcome outcome, const std::shared_ptr<const Aws::Client::AsyncCallerContext>& ctx
)
{
  if (!outcome.IsSuccess()) {
    std::cerr << "Error with Lambda::InvokeRequest. "
                << outcome.GetError().GetMessage()
                << std::endl;
    exit(1);
  }

Possible Solution

No response

Additional Information/Context

No response

AWS CPP SDK version used

Current git master, commit f067d450a8689f3ae05fbcd96039cdd9f2d0276c

Compiler and Version used

Clang 15 (custom fork)

Operating System and version

Ubuntu 22.04

mcopik avatar Jun 06 '24 17:06 mcopik