Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eladkehat/soong
PostgreSQL utility for AWS Lambda
https://github.com/eladkehat/soong
aws-lambda pgsql postgresql serverless
Last synced: 1 day ago
JSON representation
PostgreSQL utility for AWS Lambda
- Host: GitHub
- URL: https://github.com/eladkehat/soong
- Owner: eladkehat
- License: mit
- Created: 2019-03-16T15:04:10.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-14T15:21:27.000Z (over 5 years ago)
- Last Synced: 2024-12-15T10:37:01.037Z (27 days ago)
- Topics: aws-lambda, pgsql, postgresql, serverless
- Language: Python
- Size: 24.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Soong - PostgreSQL utility library for AWS Lambda
The purpose of this library is to let Lambda functions connect to PostgreSQL on RDS and run queries against it.
⚠️ Soong is currently in active development and should be considered work in progress. Do not use in production! ⚠️
## How working with a relational DB on Lambda is different
1. [Authentication](#authentication)
1. [Connection Reuse](#connection-reuse)
1. [Resource Constraints](#resource-constraints)### Authentication
#### Non-Secret Parameters
Database connection parameters, such as the host, port, database name and user name, should be passed to your lambda
functions using environment variables. Soong supports this pattern by automatically detecting those variables.If you are using [SAM](https://aws.amazon.com/serverless/sam/), you can assign those parameters to all of your
functions in the global section of the template, as shown below. Soong will pick these variables automatically.
```yaml
Globals:
Function:
Environment:
Variables:
PG_HOST: "postgres1.abcde123.us-east-1.rds.amazonaws.com"
PG_DBNAME: database1
PG_USER: jane_doe
```#### Password
A database password however, **should not be used at all!** Instead, use IAM authentication, as explained in the
[RDS user guide](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html).Soong supports this authentication pattern by automatically generating an auth token when running in the Lambda
environment.In order to enable this pattern, you must:
1. Enable IAM db authentication for your RDS instance
([user guide](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.Enabling.html)).
1. Create a database user that uses IAM authentication
([user guide](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.DBAccounts.html)).
You can also `GRANT rds_iam` to an existing user.
1. Create an IAM policy for IAM database access
([user guide](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.IAMPolicy.html)).
Make sure that the policy covers the user from the previous step.
1. Assign that policy to the role under which your functions execute
([user guide](https://docs.aws.amazon.com/lambda/latest/dg/lambda-intro-execution-role.html?shortFooter=true)).Finally, you must use RDS API to generate an auth-token to use in place of a password. Soong does that for you
behind the scenes whenever you create a connection.#### Code Example
If you did all of the above, connecting to the database from your code is now a breeze:
```python
import soong
# The fancy cursor_factory is optional
with soong.connect(cursor_factory=psycopg2.extras.NamedTupleCursor) as conn:
with conn.cursor() as cursor:
cursor.execute("SELECT 'Hello, world!' AS hello;")
assert cursor.fetchone().hello == 'Hello, world!'
```### Connection Reuse
In server-full applications, it is a best practice to manage a connection pool that lets various modules in the
application reuse database connections. When you decompose an application into serverless-style functions,
there is usually no point in a connection _pool_, because every function most likely needs just one connection.
This is why Soong makes it simple to connect, but does not provide a connection pool.This does not mean that there is no connection reuse. Code that runs outside of the _handler_ function gets reused
if the container remains warm and is reused by another invocation of the function.Moreover, Soong provides a global connection and makes it simple to initialize it lazily, and reconnect when it's
closed. See the code examples below.#### Code Examples
```python
# A global connection object is defined inside the soong package
import soongdef lambda_handler(event, context):
with soong.connection() as conn: # Lazy initialization
# Run some queries inside a transaction
pass
```You can also control the connection yourself, rather than use Soong's.
The code example below shows how to generate the connection at the module scope, outside of the _handler_, so it can
be reused:
```python
import soongconn = soong.connect()
def lambda_handler(event, context):
with conn:
# Run some queries inside a transaction
pass
```Note that you can also generate connections inside the handler if you want them to close rather than remain open for
reuse. There are some scenarios where this is the better option, such as when your function rarely gets called, so
there is no connection reuse in practice, but every invocation keeps a connection hanging for a while, wasting
resources on your database server.### Resource Constraints
With Lambda you pay directly for the CPU/Memory and execution time. Therefore it is important to limit resource
utilization to the minimum necessary. In addition, code in lambda functions tends to be short and simple.In my opinion, with most lambda functions it makes sense to avoid ORM tools, such as
[SQL Alchemy](https://www.sqlalchemy.org), and opt for a more direct approach that is also more lightweight.The Soong `query` and `dml` modules provide some well-documented utility functions that save you from writing a lot
of boilerplate code in the most common database access use cases.#### Code Example
```python
import soong# Get the gizmo with id 42 from the gizmos table
gizmo42 = soong.query.get(soong.connection(cursor_factory=psycopg2.extras.NamedTupleCursor), 'gizmos', 42)
print(f'Got gizmo {gizmo42.name}')# Now rename it
# Re-uses the global connection object, that's already been initialized with the cursor_factory
soong.dml.update(soong.connection(), 'gizmos', 42, {'name': 'Gizmo42: The Next Generation'})# Add a new gizmo
id = soong.dml.insert(soong.connection(),
'gizmos', {'name': 'Best gizmo ever!', 'color': 'Bright red'}, returning='id')# Run a SELECT
for gizmo in soong.query.select(soong.connection(), 'gizmos', {'color': 'pink'}):
print(gizmo.name)# You can also run an arbitrary query, without the boilerplate
for gizmo in soong.query.execute(soong.connection(), 'SELECT * FROM gizmos WHERE color = %s', ('pink', )):
print(gizmo.name)
```## Why "Soong"?
The name is a reference to [Noonien Soong][Noonien Soong article], the human cyberneticist who created
[Data][Data on Wikipedia], the android character in _Star Trek: The Next Generation_.[Noonien Soong article]: https://intl.startrek.com/database_article/soong
[Data on Wikipedia]: https://en.wikipedia.org/wiki/Data_(Star_Trek)![https://memory-alpha.fandom.com/wiki/Noonian_Soong](https://vignette.wikia.nocookie.net/memoryalpha/images/f/f0/Noonian_Soong_hologram.jpg/revision/latest/scale-to-width-down/411?cb=20141225185733&path-prefix=en)
A hologram of Dr. Soong from around the time of Data's creation
Source: https://memory-alpha.fandom.com/wiki/Noonian_Soong