perpil

Results 33 comments of perpil

Ok, here's a repro. It appears to be that the build directory for social cards isn't correct when `use_directory_urls: false` [9.5.48+insiders.4.53.14-rss-social-use_directory_urls-false.zip](https://github.com/user-attachments/files/18141198/9.5.48%2Binsiders.4.53.14-rss-social-use_directory_urls-false.zip) I was able to make some minor edits to...

FWIW, the S3 client is lazy-loaded. If you aren't using the S3 functionality and you are doing some sort of bundling, you can safely mark it as external and omit...

Agreed, the S3 functionality was added after that was written and it should be updated.

Newer versions of the [AWS SDK](https://github.com/aws/aws-sdk-js-v3/blob/2d30ee72d3a6e3741d3cab50890bf72a5d8e60c2/packages/middleware-recursion-detection/package.json#L28) now depend on `@aws/lambda-invoke-store` Note PowerTools [briefly depended on it and reverted](https://github.com/aws-powertools/powertools-lambda-typescript/pull/4678).

The package that PowerTools will eventually depend on is [aws-lambda-invoke-store](https://github.com/awslabs/aws-lambda-invoke-store). Details [here](https://github.com/aws-powertools/powertools-lambda-typescript/issues/2050#issuecomment-3341946805). In the change that was reverted, it was being used by the Metrics and Tracer functionality. I believe...

Thanks for the followup @aBurmeseDev I'm surprised there is such a large discrepancy between your benchmark and mine. I'm seeing very different numbers in overall initDuration (~200 ms vs ~350+...

As an experiment, I decided to see what would happen if I didn't use the AWS Javascript SDK and just instantiated a http and https agent. ```javascript import { Agent...

Hi @janpapenbrock So there is no confusion here, the maxday benchmark does not initialize any javascript v3 sdk clients. You can see the [code for node 22 here](https://github.com/maxday/lambda-perf/blob/main/s3-uploader/runtimes/nodejs22x/index.js) As such,...

Thanks @richarddavison all good points. >I also think you should benchmark with similar memory size. In your current test, Node has 4x more memory which also means 4x more CPU...

Thanks @svozza! > 1. This is interesting, I was hoping to not have an AWS specific request object and rely purely on web standards like [Request](https://developer.mozilla.org/en-US/docs/Web/API/Request). So for example, rather...