public abstract static class SqsIO.Read extends PTransform<PBegin,PCollection<SqsMessage>>
PTransform
to read/receive messages from SQS. See SqsIO
for more information
on usage and configuration.name
Constructor and Description |
---|
Read() |
Modifier and Type | Method and Description |
---|---|
PCollection<SqsMessage> |
expand(PBegin input)
Override this method to specify how this
PTransform should be expanded on the given
InputT . |
SqsIO.Read |
withMaxNumRecords(long maxNumRecords)
Define the max number of records received by the
SqsIO.Read . |
SqsIO.Read |
withMaxReadTime(Duration maxReadTime)
Define the max read time (duration) while the
SqsIO.Read will receive messages. |
SqsIO.Read |
withQueueUrl(java.lang.String queueUrl)
Define the queueUrl used by the
SqsIO.Read to receive messages from SQS. |
SqsIO.Read |
withSqsClientProvider(AwsCredentialsProvider credentialsProvider,
java.lang.String region)
Specify
AwsCredentialsProvider and region to
be used to read from SQS. |
SqsIO.Read |
withSqsClientProvider(AwsCredentialsProvider credentialsProvider,
java.lang.String region,
java.net.URI serviceEndpoint)
Specify
AwsCredentialsProvider and region to be used to write to SQS. |
SqsIO.Read |
withSqsClientProvider(SqsClientProvider awsClientsProvider)
Allows to specify custom
SqsClientProvider . |
compose, compose, getAdditionalInputs, getDefaultOutputCoder, getDefaultOutputCoder, getDefaultOutputCoder, getKindString, getName, populateDisplayData, toString, validate
public SqsIO.Read withMaxNumRecords(long maxNumRecords)
SqsIO.Read
. When the max number of records
is lower than Long.MAX_VALUE
, the SqsIO.Read
will provide a bounded PCollection
.public SqsIO.Read withMaxReadTime(Duration maxReadTime)
SqsIO.Read
will receive messages. When this
max read time is not null, the SqsIO.Read
will provide a bounded PCollection
.public SqsIO.Read withQueueUrl(java.lang.String queueUrl)
SqsIO.Read
to receive messages from SQS.public SqsIO.Read withSqsClientProvider(SqsClientProvider awsClientsProvider)
SqsClientProvider
. SqsClientProvider
creates new
SqsClient
which is later used for writing to a SqS queue.public SqsIO.Read withSqsClientProvider(AwsCredentialsProvider credentialsProvider, java.lang.String region)
AwsCredentialsProvider
and region to
be used to read from SQS. If you need more sophisticated credential protocol, then you should
look at withSqsClientProvider(SqsClientProvider)
.public SqsIO.Read withSqsClientProvider(AwsCredentialsProvider credentialsProvider, java.lang.String region, java.net.URI serviceEndpoint)
AwsCredentialsProvider
and region to be used to write to SQS. If you need
more sophisticated credential protocol, then you should look at withSqsClientProvider(SqsClientProvider)
.
The serviceEndpoint
sets an alternative service host. This is useful to execute
the tests with Kinesis service emulator.
public PCollection<SqsMessage> expand(PBegin input)
PTransform
PTransform
should be expanded on the given
InputT
.
NOTE: This method should not be called directly. Instead apply the PTransform
should
be applied to the InputT
using the apply
method.
Composite transforms, which are defined in terms of other transforms, should return the output of one of the composed transforms. Non-composite transforms, which do not apply any transforms internally, should return a new unbound output and register evaluators (via backend-specific registration methods).
expand
in class PTransform<PBegin,PCollection<SqsMessage>>