Y
Hacker News
new
|
ask
|
show
|
jobs
by
all_blue_chucks
2879 days ago
> How, for example, do you connect to a Postgres database from Lambda/Cloud Functions?
Exactly the same way you would with an EC2 instance...
2 comments
tango12
2879 days ago
Might not be that easy because only postgres can take a few hundreds of connections which won't work out if you have a few thousands of serverless functions? No persistent connection pools.
link
somebodythere
2879 days ago
Well, just put the connection logic outside of the main handler so it's shared between invocations!
Wait, oops, you have state now.
link
rhlsthrm
2879 days ago
Realistically could you do this with Redis or something similar? Not sure about security implications of this though...
link
GordonS
2879 days ago
How do you handle database connection pooling?
link