Java Code Examples for org.apache.flink.streaming.connectors.kinesis.proxy.KinesisProxyInterface#getShardList()
The following examples show how to use
org.apache.flink.streaming.connectors.kinesis.proxy.KinesisProxyInterface#getShardList() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: KinesisPubsubClient.java From Flink-CEPplus with Apache License 2.0 | 6 votes |
@Override public List<String> readAllMessages(String streamName) throws Exception { KinesisProxyInterface kinesisProxy = KinesisProxy.create(properties); Map<String, String> streamNamesWithLastSeenShardIds = new HashMap<>(); streamNamesWithLastSeenShardIds.put(streamName, null); GetShardListResult shardListResult = kinesisProxy.getShardList(streamNamesWithLastSeenShardIds); int maxRecordsToFetch = 10; List<String> messages = new ArrayList<>(); // retrieve records from all shards for (StreamShardHandle ssh : shardListResult.getRetrievedShardListOfStream(streamName)) { String shardIterator = kinesisProxy.getShardIterator(ssh, "TRIM_HORIZON", null); GetRecordsResult getRecordsResult = kinesisProxy.getRecords(shardIterator, maxRecordsToFetch); List<Record> aggregatedRecords = getRecordsResult.getRecords(); for (Record record : aggregatedRecords) { messages.add(new String(record.getData().array())); } } return messages; }
Example 2
Source File: KinesisPubsubClient.java From flink with Apache License 2.0 | 6 votes |
@Override public List<String> readAllMessages(String streamName) throws Exception { KinesisProxyInterface kinesisProxy = KinesisProxy.create(properties); Map<String, String> streamNamesWithLastSeenShardIds = new HashMap<>(); streamNamesWithLastSeenShardIds.put(streamName, null); GetShardListResult shardListResult = kinesisProxy.getShardList(streamNamesWithLastSeenShardIds); int maxRecordsToFetch = 10; List<String> messages = new ArrayList<>(); // retrieve records from all shards for (StreamShardHandle ssh : shardListResult.getRetrievedShardListOfStream(streamName)) { String shardIterator = kinesisProxy.getShardIterator(ssh, "TRIM_HORIZON", null); GetRecordsResult getRecordsResult = kinesisProxy.getRecords(shardIterator, maxRecordsToFetch); List<Record> aggregatedRecords = getRecordsResult.getRecords(); for (Record record : aggregatedRecords) { messages.add(new String(record.getData().array())); } } return messages; }
Example 3
Source File: KinesisPubsubClient.java From flink with Apache License 2.0 | 6 votes |
public List<String> readAllMessages(String streamName) throws Exception { KinesisProxyInterface kinesisProxy = KinesisProxy.create(properties); Map<String, String> streamNamesWithLastSeenShardIds = new HashMap<>(); streamNamesWithLastSeenShardIds.put(streamName, null); GetShardListResult shardListResult = kinesisProxy.getShardList(streamNamesWithLastSeenShardIds); int maxRecordsToFetch = 10; List<String> messages = new ArrayList<>(); // retrieve records from all shards for (StreamShardHandle ssh : shardListResult.getRetrievedShardListOfStream(streamName)) { String shardIterator = kinesisProxy.getShardIterator(ssh, "TRIM_HORIZON", null); GetRecordsResult getRecordsResult = kinesisProxy.getRecords(shardIterator, maxRecordsToFetch); List<Record> aggregatedRecords = getRecordsResult.getRecords(); for (Record record : aggregatedRecords) { messages.add(new String(record.getData().array())); } } return messages; }