Bertrand
Bertrand

Reputation: 1064

use python subprocess.popen in aws lambda

I'm using a python third-party library that uses subprocess.popen to spawn a worker process.
Is it authorized to create a subprocess in aws lambda ?

Upvotes: 1

Views: 1780

Answers (1)

adamkgray
adamkgray

Reputation: 1947

Yes. You are free to do all sorts of things with the underlying OS. Read more about runing arbitrary executables here: https://aws.amazon.com/blogs/compute/running-executables-in-aws-lambda/

Upvotes: 1

Related Questions