Skip to content

Releases: newrelic/newrelic-lambda-layers

New Relic Python Agent v5.4.1.134

06 Jan 17:11
2a4ba32
Compare
Choose a tag to compare
v5.4.1.134_python

Greedily load module/handler in Node.js layer (#3)

New Relic Python Agent v5.4.0.132

16 Dec 23:14
Compare
Choose a tag to compare
Greedily load the handler module. (#1)

It turns out that at cold start time, the CPU isn't so throttled. So that's
the time to do big jobs like instrumenting crazy dependencies. So we should
try to load all our user's deps up front, before their first invocation.

Plus, the lazy-load strategy would have them paying for DB connection setup
and stuff on first invoke, which is bad.