FluentBit | Web Analytics | PostgreSQL CDC | REST API | OpenSearch/ES | AWS Lambda Telemetry
AWS Lambda Extension that uses the Lambda Telemetry API to forward logs to a Data Tap HTTPS URL.
NOTE: This is forked from the Logtail Lambda Extension and optimised for Boiling Data Taps ingestion.
A Data Tap is a single AWS Lambda function with Function URL and customized C++ runtime embedding DuckDB. It uses streaming SQL clause to upload the buffered HTTP POSTed newline JSON data in the Lambda to S3, hive partitioned, and as ZSTD compressed Parquet. You can tune the SQL clause your self for filtering, search, and aggregations. You can also set the thresholds when the upload to S3 happens. A Data Tap runs already very efficiently with the smallest arm64 AWS Lambda, making it the simplest, fastest, and most cost efficient solution for streaming data onto S3 in scale. You can run it on your own AWS Account or hosted by Boiling Cloud.
You need to have BoilingData account and use it to create a Data Tap. The account is used to fetch authorization tokens which allow you to send data to a Data Tap (security access control). You can also share write access (see the AUTHORIZED_USERS
AWS Lambda environment variable) to other BoilingData users if you like, efficiently creating Data Mesh architectures.
In order to use the extension you must first build and deploy it into your AWS infrastructure:
$ git clone git@github.com:dforsber/data-taps-lambda-extension.git
$ cd data-taps-lambda-extension
$ yarn install
$ yarn build
$ aws lambda publish-layer-version \
--layer-name "data-taps-lambda-extension" \
--zip-file "fileb://./dist/extension.zip" \
--compatible-runtimes nodejs20.x \
--compatible-architectures x86_64 arm64
Once deployed set the BD_TAP_CLIENT_TOKEN
environment variable on your Lambda to your Data Tap client token, and add the layer to your Lambda function. Set the BD_DATA_TAP_URL
as your Data Tap URL. On next invocation your Lambda logs should start flowing to your configured Data Tap. There is buffering on both in the Lambda Extension and in the Data Tap.
NOTE: You can have multiple Data Taps. It's better to use multiple Data Taps if you have differing schemas.
Variable | Description | Default |
---|---|---|
BD_TAP_CLIENT_TOKEN | Data Taps client token | required |
BD_DATA_TAP_URL | Data Tap URL | required |
EXTENSION_NAME | Name of the lambda extension | data-taps-lambda-extension |
RECEIVER_ADDRESS | Address of the logs http receiver | sandbox |
RECEIVER_PORT | Port of the logs http receiver | 4243 |
MAX_ITEMS | Maximum number of events that can be buffered in memory | 10000 |
MAX_BYTES | Maximum size in bytes of events that can be buffered | 262144 |
TIMEOUT_MS | Maximum time (in milliseconds) that a batch is buffered | 1000 |
AWS_LAMBDA_RUNTIME_API | HTTP base URI to the lambda runtime API | Provided by AWS Lambda environment |
AWS_LAMBDA_RUNTIME_EXTENSION_API_VERSION | Lambda Extension API version date | 2020-01-01 |
AWS_LAMBDA_RUNTIME_TELEMETRY_API_VERSION | Telemetry API version date | 2022-12-13 |