libZSservicesZSamazonka-kinesisZSamazonka-kinesis
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.Kinesis.PutRecords

Description

Writes multiple data records into a Kinesis data stream in a single call (also referred to as a PutRecords request). Use this operation to send data into the stream for data ingestion and processing.

Each PutRecords request can support up to 500 records. Each record in the request can be as large as 1 MiB, up to a limit of 5 MiB for the entire request, including partition keys. Each shard can support writes up to 1,000 records per second, up to a maximum data write total of 1 MiB per second.

You must specify the name of the stream that captures, stores, and transports the data; and an array of request Records, with each record in the array requiring a partition key and data blob. The record size limit applies to the total size of the partition key and data blob.

The data blob can be any type of data; for example, a segment from a log file, geographic/location data, website clickstream data, and so on.

The partition key is used by Kinesis Data Streams as input to a hash function that maps the partition key and associated data to a specific shard. An MD5 hash function is used to map partition keys to 128-bit integer values and to map associated data records to shards. As a result of this hashing mechanism, all data records with the same partition key map to the same shard within the stream. For more information, see Adding Data to a Stream in the Amazon Kinesis Data Streams Developer Guide.

Each record in the Records array may include an optional parameter, ExplicitHashKey, which overrides the partition key to shard mapping. This parameter allows a data producer to determine explicitly the shard where the record is stored. For more information, see Adding Multiple Records with PutRecords in the Amazon Kinesis Data Streams Developer Guide.

The PutRecords response includes an array of response Records. Each record in the response array directly correlates with a record in the request array using natural ordering, from the top to the bottom of the request and response. The response Records array always includes the same number of records as the request array.

The response Records array includes both successfully and unsuccessfully processed records. Kinesis Data Streams attempts to process all records in each PutRecords request. A single record failure does not stop the processing of subsequent records. As a result, PutRecords doesn't guarantee the ordering of records. If you need to read records in the same order they are written to the stream, use PutRecord instead of PutRecords, and write to the same shard.

A successfully processed record includes ShardId and SequenceNumber values. The ShardId parameter identifies the shard in the stream where the record is stored. The SequenceNumber parameter is an identifier assigned to the put record, unique to all records in the stream.

An unsuccessfully processed record includes ErrorCode and ErrorMessage values. ErrorCode reflects the type of error and can be one of the following values: ProvisionedThroughputExceededException or InternalFailure. ErrorMessage provides more detailed information about the ProvisionedThroughputExceededException exception including the account ID, stream name, and shard ID of the record that was throttled. For more information about partially successful responses, see Adding Multiple Records with PutRecords in the Amazon Kinesis Data Streams Developer Guide.

After you write a record to a stream, you cannot modify that record or its order within the stream.

By default, data records are accessible for 24 hours from the time that they are added to a stream. You can use IncreaseStreamRetentionPeriod or DecreaseStreamRetentionPeriod to modify this retention period.

Synopsis

Creating a Request

data PutRecords Source #

A PutRecords request.

See: newPutRecords smart constructor.

Constructors

PutRecords' 

Fields

Instances

Instances details
Eq PutRecords Source # 
Instance details

Defined in Amazonka.Kinesis.PutRecords

Read PutRecords Source # 
Instance details

Defined in Amazonka.Kinesis.PutRecords

Show PutRecords Source # 
Instance details

Defined in Amazonka.Kinesis.PutRecords

Generic PutRecords Source # 
Instance details

Defined in Amazonka.Kinesis.PutRecords

Associated Types

type Rep PutRecords :: Type -> Type #

NFData PutRecords Source # 
Instance details

Defined in Amazonka.Kinesis.PutRecords

Methods

rnf :: PutRecords -> () #

Hashable PutRecords Source # 
Instance details

Defined in Amazonka.Kinesis.PutRecords

ToJSON PutRecords Source # 
Instance details

Defined in Amazonka.Kinesis.PutRecords

AWSRequest PutRecords Source # 
Instance details

Defined in Amazonka.Kinesis.PutRecords

Associated Types

type AWSResponse PutRecords #

ToHeaders PutRecords Source # 
Instance details

Defined in Amazonka.Kinesis.PutRecords

Methods

toHeaders :: PutRecords -> [Header] #

ToPath PutRecords Source # 
Instance details

Defined in Amazonka.Kinesis.PutRecords

ToQuery PutRecords Source # 
Instance details

Defined in Amazonka.Kinesis.PutRecords

type Rep PutRecords Source # 
Instance details

Defined in Amazonka.Kinesis.PutRecords

type Rep PutRecords = D1 ('MetaData "PutRecords" "Amazonka.Kinesis.PutRecords" "libZSservicesZSamazonka-kinesisZSamazonka-kinesis" 'False) (C1 ('MetaCons "PutRecords'" 'PrefixI 'True) (S1 ('MetaSel ('Just "records") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (NonEmpty PutRecordsRequestEntry)) :*: S1 ('MetaSel ('Just "streamName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))
type AWSResponse PutRecords Source # 
Instance details

Defined in Amazonka.Kinesis.PutRecords

newPutRecords Source #

Create a value of PutRecords with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:records:PutRecords', putRecords_records - The records associated with the request.

$sel:streamName:PutRecords', putRecords_streamName - The stream name associated with the request.

Request Lenses

putRecords_records :: Lens' PutRecords (NonEmpty PutRecordsRequestEntry) Source #

The records associated with the request.

putRecords_streamName :: Lens' PutRecords Text Source #

The stream name associated with the request.

Destructuring the Response

data PutRecordsResponse Source #

PutRecords results.

See: newPutRecordsResponse smart constructor.

Constructors

PutRecordsResponse' 

Fields

  • encryptionType :: Maybe EncryptionType

    The encryption type used on the records. This parameter can be one of the following values:

    • NONE: Do not encrypt the records.
    • KMS: Use server-side encryption on the records using a customer-managed AWS KMS key.
  • failedRecordCount :: Maybe Natural

    The number of unsuccessfully processed records in a PutRecords request.

  • httpStatus :: Int

    The response's http status code.

  • records :: NonEmpty PutRecordsResultEntry

    An array of successfully and unsuccessfully processed record results, correlated with the request by natural ordering. A record that is successfully added to a stream includes SequenceNumber and ShardId in the result. A record that fails to be added to a stream includes ErrorCode and ErrorMessage in the result.

Instances

Instances details
Eq PutRecordsResponse Source # 
Instance details

Defined in Amazonka.Kinesis.PutRecords

Read PutRecordsResponse Source # 
Instance details

Defined in Amazonka.Kinesis.PutRecords

Show PutRecordsResponse Source # 
Instance details

Defined in Amazonka.Kinesis.PutRecords

Generic PutRecordsResponse Source # 
Instance details

Defined in Amazonka.Kinesis.PutRecords

Associated Types

type Rep PutRecordsResponse :: Type -> Type #

NFData PutRecordsResponse Source # 
Instance details

Defined in Amazonka.Kinesis.PutRecords

Methods

rnf :: PutRecordsResponse -> () #

type Rep PutRecordsResponse Source # 
Instance details

Defined in Amazonka.Kinesis.PutRecords

type Rep PutRecordsResponse = D1 ('MetaData "PutRecordsResponse" "Amazonka.Kinesis.PutRecords" "libZSservicesZSamazonka-kinesisZSamazonka-kinesis" 'False) (C1 ('MetaCons "PutRecordsResponse'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "encryptionType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe EncryptionType)) :*: S1 ('MetaSel ('Just "failedRecordCount") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural))) :*: (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "records") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (NonEmpty PutRecordsResultEntry)))))

newPutRecordsResponse Source #

Create a value of PutRecordsResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:encryptionType:PutRecordsResponse', putRecordsResponse_encryptionType - The encryption type used on the records. This parameter can be one of the following values:

  • NONE: Do not encrypt the records.
  • KMS: Use server-side encryption on the records using a customer-managed AWS KMS key.

$sel:failedRecordCount:PutRecordsResponse', putRecordsResponse_failedRecordCount - The number of unsuccessfully processed records in a PutRecords request.

$sel:httpStatus:PutRecordsResponse', putRecordsResponse_httpStatus - The response's http status code.

$sel:records:PutRecords', putRecordsResponse_records - An array of successfully and unsuccessfully processed record results, correlated with the request by natural ordering. A record that is successfully added to a stream includes SequenceNumber and ShardId in the result. A record that fails to be added to a stream includes ErrorCode and ErrorMessage in the result.

Response Lenses

putRecordsResponse_encryptionType :: Lens' PutRecordsResponse (Maybe EncryptionType) Source #

The encryption type used on the records. This parameter can be one of the following values:

  • NONE: Do not encrypt the records.
  • KMS: Use server-side encryption on the records using a customer-managed AWS KMS key.

putRecordsResponse_failedRecordCount :: Lens' PutRecordsResponse (Maybe Natural) Source #

The number of unsuccessfully processed records in a PutRecords request.

putRecordsResponse_records :: Lens' PutRecordsResponse (NonEmpty PutRecordsResultEntry) Source #

An array of successfully and unsuccessfully processed record results, correlated with the request by natural ordering. A record that is successfully added to a stream includes SequenceNumber and ShardId in the result. A record that fails to be added to a stream includes ErrorCode and ErrorMessage in the result.