amazonka-kinesis-2.0: Amazon Kinesis SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.Kinesis.GetRecords

Description

Gets data records from a Kinesis data stream's shard.

When invoking this API, it is recommended you use the StreamARN input parameter in addition to the ShardIterator parameter.

Specify a shard iterator using the ShardIterator parameter. The shard iterator specifies the position in the shard from which you want to start reading data records sequentially. If there are no records available in the portion of the shard that the iterator points to, GetRecords returns an empty list. It might take multiple calls to get to a portion of the shard that contains records.

You can scale by provisioning multiple shards per stream while considering service limits (for more information, see Amazon Kinesis Data Streams Limits in the Amazon Kinesis Data Streams Developer Guide). Your application should have one thread per shard, each reading continuously from its stream. To read from a stream continually, call GetRecords in a loop. Use GetShardIterator to get the shard iterator to specify in the first GetRecords call. GetRecords returns a new shard iterator in NextShardIterator. Specify the shard iterator returned in NextShardIterator in subsequent calls to GetRecords. If the shard has been closed, the shard iterator can't return more data and GetRecords returns null in NextShardIterator. You can terminate the loop when the shard is closed, or when the shard iterator reaches the record with the sequence number or other attribute that marks it as the last record to process.

Each data record can be up to 1 MiB in size, and each shard can read up to 2 MiB per second. You can ensure that your calls don't exceed the maximum supported size or throughput by using the Limit parameter to specify the maximum number of records that GetRecords can return. Consider your average record size when determining this limit. The maximum number of records that can be returned per call is 10,000.

The size of the data returned by GetRecords varies depending on the utilization of the shard. It is recommended that consumer applications retrieve records via the GetRecords command using the 5 TPS limit to remain caught up. Retrieving records less frequently can lead to consumer applications falling behind. The maximum size of data that GetRecords can return is 10 MiB. If a call returns this amount of data, subsequent calls made within the next 5 seconds throw ProvisionedThroughputExceededException. If there is insufficient provisioned throughput on the stream, subsequent calls made within the next 1 second throw ProvisionedThroughputExceededException. GetRecords doesn't return any data when it throws an exception. For this reason, we recommend that you wait 1 second between calls to GetRecords. However, it's possible that the application will get exceptions for longer than 1 second.

To detect whether the application is falling behind in processing, you can use the MillisBehindLatest response attribute. You can also monitor the stream using CloudWatch metrics and other mechanisms (see Monitoring in the Amazon Kinesis Data Streams Developer Guide).

Each Amazon Kinesis record includes a value, ApproximateArrivalTimestamp, that is set when a stream successfully receives and stores a record. This is commonly referred to as a server-side time stamp, whereas a client-side time stamp is set when a data producer creates or sends the record to a stream (a data producer is any data source putting data records into a stream, for example with PutRecords). The time stamp has millisecond precision. There are no guarantees about the time stamp accuracy, or that the time stamp is always increasing. For example, records in a shard or across a stream might have time stamps that are out of order.

This operation has a limit of five transactions per second per shard.

Synopsis

Creating a Request

data GetRecords Source #

Represents the input for GetRecords.

See: newGetRecords smart constructor.

Constructors

GetRecords' 

Fields

  • limit :: Maybe Natural

    The maximum number of records to return. Specify a value of up to 10,000. If you specify a value that is greater than 10,000, GetRecords throws InvalidArgumentException. The default value is 10,000.

  • streamARN :: Maybe Text

    The ARN of the stream.

  • shardIterator :: Text

    The position in the shard from which you want to start sequentially reading data records. A shard iterator specifies this position using the sequence number of a data record in the shard.

Instances

Instances details
ToJSON GetRecords Source # 
Instance details

Defined in Amazonka.Kinesis.GetRecords

ToHeaders GetRecords Source # 
Instance details

Defined in Amazonka.Kinesis.GetRecords

Methods

toHeaders :: GetRecords -> [Header] #

ToPath GetRecords Source # 
Instance details

Defined in Amazonka.Kinesis.GetRecords

ToQuery GetRecords Source # 
Instance details

Defined in Amazonka.Kinesis.GetRecords

AWSRequest GetRecords Source # 
Instance details

Defined in Amazonka.Kinesis.GetRecords

Associated Types

type AWSResponse GetRecords #

Generic GetRecords Source # 
Instance details

Defined in Amazonka.Kinesis.GetRecords

Associated Types

type Rep GetRecords :: Type -> Type #

Read GetRecords Source # 
Instance details

Defined in Amazonka.Kinesis.GetRecords

Show GetRecords Source # 
Instance details

Defined in Amazonka.Kinesis.GetRecords

NFData GetRecords Source # 
Instance details

Defined in Amazonka.Kinesis.GetRecords

Methods

rnf :: GetRecords -> () #

Eq GetRecords Source # 
Instance details

Defined in Amazonka.Kinesis.GetRecords

Hashable GetRecords Source # 
Instance details

Defined in Amazonka.Kinesis.GetRecords

type AWSResponse GetRecords Source # 
Instance details

Defined in Amazonka.Kinesis.GetRecords

type Rep GetRecords Source # 
Instance details

Defined in Amazonka.Kinesis.GetRecords

type Rep GetRecords = D1 ('MetaData "GetRecords" "Amazonka.Kinesis.GetRecords" "amazonka-kinesis-2.0-AW1spVPMUGf3LUqQQ22bci" 'False) (C1 ('MetaCons "GetRecords'" 'PrefixI 'True) (S1 ('MetaSel ('Just "limit") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: (S1 ('MetaSel ('Just "streamARN") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "shardIterator") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newGetRecords Source #

Create a value of GetRecords 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:limit:GetRecords', getRecords_limit - The maximum number of records to return. Specify a value of up to 10,000. If you specify a value that is greater than 10,000, GetRecords throws InvalidArgumentException. The default value is 10,000.

GetRecords, getRecords_streamARN - The ARN of the stream.

$sel:shardIterator:GetRecords', getRecords_shardIterator - The position in the shard from which you want to start sequentially reading data records. A shard iterator specifies this position using the sequence number of a data record in the shard.

Request Lenses

getRecords_limit :: Lens' GetRecords (Maybe Natural) Source #

The maximum number of records to return. Specify a value of up to 10,000. If you specify a value that is greater than 10,000, GetRecords throws InvalidArgumentException. The default value is 10,000.

getRecords_shardIterator :: Lens' GetRecords Text Source #

The position in the shard from which you want to start sequentially reading data records. A shard iterator specifies this position using the sequence number of a data record in the shard.

Destructuring the Response

data GetRecordsResponse Source #

Represents the output for GetRecords.

See: newGetRecordsResponse smart constructor.

Constructors

GetRecordsResponse' 

Fields

  • childShards :: Maybe [ChildShard]

    The list of the current shard's child shards, returned in the GetRecords API's response only when the end of the current shard is reached.

  • millisBehindLatest :: Maybe Natural

    The number of milliseconds the GetRecords response is from the tip of the stream, indicating how far behind current time the consumer is. A value of zero indicates that record processing is caught up, and there are no new records to process at this moment.

  • nextShardIterator :: Maybe Text

    The next position in the shard from which to start sequentially reading data records. If set to null, the shard has been closed and the requested iterator does not return any more data.

  • httpStatus :: Int

    The response's http status code.

  • records :: [Record]

    The data records retrieved from the shard.

Instances

Instances details
Generic GetRecordsResponse Source # 
Instance details

Defined in Amazonka.Kinesis.GetRecords

Associated Types

type Rep GetRecordsResponse :: Type -> Type #

Read GetRecordsResponse Source # 
Instance details

Defined in Amazonka.Kinesis.GetRecords

Show GetRecordsResponse Source # 
Instance details

Defined in Amazonka.Kinesis.GetRecords

NFData GetRecordsResponse Source # 
Instance details

Defined in Amazonka.Kinesis.GetRecords

Methods

rnf :: GetRecordsResponse -> () #

Eq GetRecordsResponse Source # 
Instance details

Defined in Amazonka.Kinesis.GetRecords

type Rep GetRecordsResponse Source # 
Instance details

Defined in Amazonka.Kinesis.GetRecords

type Rep GetRecordsResponse = D1 ('MetaData "GetRecordsResponse" "Amazonka.Kinesis.GetRecords" "amazonka-kinesis-2.0-AW1spVPMUGf3LUqQQ22bci" 'False) (C1 ('MetaCons "GetRecordsResponse'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "childShards") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [ChildShard])) :*: S1 ('MetaSel ('Just "millisBehindLatest") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural))) :*: (S1 ('MetaSel ('Just "nextShardIterator") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "records") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [Record])))))

newGetRecordsResponse Source #

Create a value of GetRecordsResponse 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:

GetRecordsResponse, getRecordsResponse_childShards - The list of the current shard's child shards, returned in the GetRecords API's response only when the end of the current shard is reached.

GetRecordsResponse, getRecordsResponse_millisBehindLatest - The number of milliseconds the GetRecords response is from the tip of the stream, indicating how far behind current time the consumer is. A value of zero indicates that record processing is caught up, and there are no new records to process at this moment.

$sel:nextShardIterator:GetRecordsResponse', getRecordsResponse_nextShardIterator - The next position in the shard from which to start sequentially reading data records. If set to null, the shard has been closed and the requested iterator does not return any more data.

$sel:httpStatus:GetRecordsResponse', getRecordsResponse_httpStatus - The response's http status code.

GetRecordsResponse, getRecordsResponse_records - The data records retrieved from the shard.

Response Lenses

getRecordsResponse_childShards :: Lens' GetRecordsResponse (Maybe [ChildShard]) Source #

The list of the current shard's child shards, returned in the GetRecords API's response only when the end of the current shard is reached.

getRecordsResponse_millisBehindLatest :: Lens' GetRecordsResponse (Maybe Natural) Source #

The number of milliseconds the GetRecords response is from the tip of the stream, indicating how far behind current time the consumer is. A value of zero indicates that record processing is caught up, and there are no new records to process at this moment.

getRecordsResponse_nextShardIterator :: Lens' GetRecordsResponse (Maybe Text) Source #

The next position in the shard from which to start sequentially reading data records. If set to null, the shard has been closed and the requested iterator does not return any more data.

getRecordsResponse_records :: Lens' GetRecordsResponse [Record] Source #

The data records retrieved from the shard.