AWS Lambda framework for writing clear, minimal Python FAAS
Project description
lpipe
lpipe provides a simple set of tools for writing clearly defined, multi-function AWS Lambdas in Python.
This project was borne out of a desire to support directed-graph workflows on FAAS. lpipe is designed to handle batched events from CloudWatch, Kinesis, or SQS.
Getting Started
At its most basic, your lambda would require no more than this.
import lpipe
def test_func(foo: str, **kwargs):
pass
def lambda_handler(event, context):
return lpipe.process_event(
event=event,
context=context,
paths={
"EXAMPLE": [test_func]
},
queue_type=lpipe.QueueType.SQS,
)
This lambda could now be triggered by an SQS queue with the following message.
{
"path": "EXAMPLE",
"kwargs": {
"foo": "bar",
}
}
Setting A Default Path
You may run into a situation where you'd like to trigger a lambda with a message that can't conform to the lpipe message format but would still prefer to use lpipe for all it's boilerplate.
import lpipe
def test_func(foo: str, **kwargs):
pass
def lambda_handler(event, context):
return lpipe.process_event(
event=event,
context=context,
paths={
"EXAMPLE": [test_func]
},
default_path="EXAMPLE",
queue_type=lpipe.QueueType.SQS,
)
This lambda could now be triggered with the following message.
{
"foo": "bar",
}
Batch Processing
SQS
When processing messages from an SQS queue, we will wait to raise any errors until all the messages in a batch are tried.
- Successful Records will be deleted from the invoking queue
- Failed records will raise an exception which ultimately triggers the SQS redrive policy.
Everything else...
If you're using any other invocation method, please consider setting your batch size to 1.
Handling Errors
lpipe
relies on exceptions for flow control. Your code must raise exceptions that inherit from one of two classes.
FailCatastrophically
Raise this if you want your lambda to error out. This will result in poisoned records persisting on the queue if you're not careful. Only use it if you have CRITICAL data in the queue or if you hit an error state while setting up. This will trigger your redrive or DLQ policy.
Exception | Description |
---|---|
InvalidConfigurationError(FailCatastrophically) | Raised automatically if your lambda is misconfigured. |
FailButContinue
Raise this to log an exception and, optionally, send it to sentry, but continue processing more records. This will treat your record as poisoned and will drop it.
Exception | Description |
---|---|
InvalidPathError(FailButContinue) | Raised automatically if you use a Path that was not defined. |
InvalidPayloadError(FailButContinue) | Raised automatically if your lambda receives a message that is malformed or invalid. |
Everything else...
Any errors that don't inherit from one of the two classes above will be logged and captured at sentry (if initialized.) Your record will then be dropped to prevent a poisoned queue.
Advanced
Paths
A path is defined by an enumerated name and a list of actions or functions.
Example
from enum import Enum
from lpipe import Action
class Path(Enum):
DO_THING = 1
PATHS = {
Path.DO_THING: [
Action(required_params=[], functions=[], paths=[]),
Action(required_params=[], functions=[], paths=[]),
],
}
lpipe
can also generate the enumeration for you automatically...
PATHS = {
"DO_THING": [
Action(required_params=[], functions=[], paths=[]),
Action(required_params=[], functions=[], paths=[]),
],
}
A list of functions is also an acceptable path definition.
PATHS = {
"DO_THING": [my_function, my_second_function],
}
Actions
lpipe.Action(required_params, functions, paths)
Argument | Type | Description |
---|---|---|
required_params |
list |
(optional if functions is set, required if ONLY paths is set) A list of kwarg keys to expect. |
functions |
list |
(optional if paths is set) A list of functions to run with the provided kwargs. |
paths |
list |
(optional if functions is set) A list of path names (to be run in the current lambda instance) or Queues to push messages to. |
include_all_params |
bool |
If true, pass all kwargs to every function/path in this Action. |
Example
from lpipe import Action
Action(
required_params=["name", "email"],
functions=[subscribe_to_pewdiepie],
paths=[SEND_MERCH]
)
Using this action would first call subscribe_to_pewdiepie(name, email)
then try to run the SEND_MERCH
path.
required_params
is optional if you define type hints on your function.
def subscribe_to_pewdiepie(name: str, email: str, **kwargs):
pass
Action(
functions=[subscribe_to_pewdiepie],
paths=[SEND_MERCH]
)
Queues
lpipe.Queue(type, name, path)
Argument | Type | Description |
---|---|---|
type |
lpipe.pipeline.QueueType |
|
name |
str |
Name/identifier of the queue (used by QueueType.Kinesis , QueueType.SQS ) If you include name instead of url for an SQS queue, the queue URL will fetched automatically. |
url |
str |
URL/URI of the queue (used by QueueType.SQS ) |
path |
str |
A path name, usually to trigger a path in the lambda feeding off of this queue. |
Example
from lpipe import Queue, QueueType
Queue(
type=QueueType.KINESIS,
name="my-stream-name",
path="DO_THING"
)
Params
Parameters can be inferred from your function signatures or explicitly set. If you allow parameters to be inferred, default values are permitted, and type hints will be enforced.
Example
def test_func(foo: str, bar: int = 42, **kwargs):
pass
Path.MY_PATH: [
Action(
functions=[my_func],
)
],
OR
def test_func(foo, bar, **kwargs):
pass
Path.MY_PATH: [
Action(
required_params=["foo", "bar"],
functions=[my_func],
)
],
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for lpipe-3.0.2-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 13f6aa98ebc98ca1110827e8236ee2834cbf0ed3c6b8f16377d1edcace925f64 |
|
MD5 | 5470cb015c1632ccf0a22a801314217d |
|
BLAKE2b-256 | 573cd477b29a23e1a59ba9351efa3d2f88d11a17a72f503ff2ab44f909b116b6 |