← All terms
AWS

Lambda

AWS Lambda is a serverless compute service: you upload a function, and AWS runs it in response to events without you managing any servers.

Common triggers:

You pay per invocation and per millisecond of execution time, not for idle capacity — useful for bursty or infrequent workloads where a always-on server would sit idle.

See also: Airflow