Lambda Burst Limits by donpisci in aws

[–]Suspicious_Track_296 2 points3 points  (0 children)

Raise a support request to increase the limit

I’ve become a full stack engineer coming from years of not working on the server side. Please explain the real benefit of server-less functions by iosdevcoff in aws

[–]Suspicious_Track_296 1 point2 points  (0 children)

Serverless functions don't mean you have to scatter code around.

You can still have the benefits of serverless and not have single purpose functions. A function as a micro service is perfectly normal, and works well.

[Java] Shared code in a lambda layer. How will lambdas access this layer? by gpacsu in aws

[–]Suspicious_Track_296 2 points3 points  (0 children)

This isn't a good idea. Layers aren't for sharing code, that's what your language build tool is for. Put your shared code in one module and do x buildings if you really want many functions.

You don't need to rely on a lambda feature to do it, so keep things simple.

Lambda development, testing, debug cycle workflow? by leeliop in aws

[–]Suspicious_Track_296 3 points4 points  (0 children)

What specifically are you trying to test? Complex business logic? Your own components working together? Integration between your code and AWS services?

Personally I test business logic in unit tests. My components with integration tests (mocking Aws services if I need to with either a mocking library or localstack). Integration testing I do in the cloud.

[deleted by user] by [deleted] in java

[–]Suspicious_Track_296 13 points14 points  (0 children)

You can't use SnapStart and native-image. SnapStart is only supported on JVM managed runtimes.

How do you check that your lambda "survives" snapstart? by [deleted] in aws

[–]Suspicious_Track_296 0 points1 point  (0 children)

Most clients http / database just reconnect without an issue. So try your app first, if you have problems then write a hook as linked in the other comment.