chasingmaxwell/kinesis-poc

Proof of concept which demonstrates posting a record to an AWS Kinesis stream.

1.0.0 2017-02-01 04:05 UTC

This package is not auto-updated.

Last update: 2024-04-22 12:46:37 UTC


README

This is a proof of concept package which demonstrates posting a record to an AWS kinesis stream.

Install

composer require global chasingmaxwell/kinesis-poc

Configure

Add a yaml configuration file to to the ~/.config/kinesis-poc directory with the following contents:

# The awsKinesisClient object will be passed to the KinesisClient factory.
# Available options: http://docs.aws.amazon.com/aws-sdk-php/v2/guide/configuration.html#client-configuration-options
kinesisClientOptions:
  profile: # An AWS credentials profile to use for API requests.

The name of the file is not important. In fact, you can include as many configuration files as you would like in this directory and they will be merged together in alphabetical order.

Usage

putKinesisRecord -s [Stream Name] -d [Record Data] -p [Partition Key]