Download the PHP package norbybaru/laravel-aws-timestream without Composer
On this page you can find all versions of the php package norbybaru/laravel-aws-timestream. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download norbybaru/laravel-aws-timestream
More information about norbybaru/laravel-aws-timestream
Files in norbybaru/laravel-aws-timestream
Package laravel-aws-timestream
Short Description Library to interact with AWS Timestream service via API
License MIT
Homepage https://github.com/norbybaru/laravel-aws-timestream
Informations about the package laravel-aws-timestream
Laravel AWS Timestream
AWS Timestream is a fast, scalable, and serverless time series database service. This package is an opinionated implementation to query timestream and ingest data into timestream.
Upgrading from version 0.2.x
Please not that version 0.3.x
is still backward compatible with version 0.2.x
.
No breaking changes introduced, however i will suggest you slowly use the new Payload builder approach for Timestream ingestion as from version 0.4.x
we shall drop support for legacy builder.
See updated examples below start using new approach with TimestreamPayloadBuilder
.
Install
Configuration
-
Publish config
- Open
timestream.php
config file and setup your database name and tables - Setup you AWS Timestream keys and permissions with the following environment variable
Basic Usage
Query Timestream
Using TimestreamBuilder::query()
will give autocomplete of all available functions
-
Using
TimestreamBuilder
to build query to be passed ontoTimestreamReaderDto
which generate am object that can be consumed byTimestreamService
query function - Use
TimestreamReaderDto
to injectfrom
query with defaultdatabase
name and on demandtable
name. NB. No need to add->from()
query on your query builder.
Timestream Ingestion
We need to build our ingestion payload that Timestream will accept for ingestion.
To achieve that we can use the TimestreamPayloadBuilder
class to build a payload that Aws Timestream will understand
Example
-
Build single record ingestion payload
- Ingestion data in batch using Common Attributes to reduce ingestion cost with Timestream
Run Unit Test
Online Resources
All versions of laravel-aws-timestream with dependencies
aws/aws-sdk-php Version ^3.209
illuminate/support Version ^9.52|^10.0|^11.0
spatie/enum Version ^3.13