Products Created After Client
« Back to AWS Product Receiver
A Products Created After Client is used to retrieve products created after a certain timestamp.
- batchLimit
- Limit for number of products to retrieve in a single request
- Optional, Default:
100
- connectTimeout
- Millisecond timeout to establish connections to remote host
- Optional, Default:
5000
- maxRetryAttempts
- Number of times a request will be retried on failure before giving up
- Optional, Default:
5
- readTimeout
- Millisecond timeout for requests to respond
- Optional, Default:
30000
- urlTemplate
- Template for making requests, which supports the following replacement strings:
{CREATED_AFTER}
,{BATCH_LIMIT}
- Optional, Default:
https://earthquake.usgs.gov/pdl/west/products_create_after?created_after={CREATED_AFTER}&limit={BATCH_LIMIT}
Example configuration
1
2
3
4
5
6
7
[products_created_after]
type = gov.usgs.earthquake.aws.ProductsCreatedAfterClient
batchLimit = 100
connectTimeout = 5000
maxRetryAttempts = 5
readTimeout = 30000
urlTemplate = https://earthquake.usgs.gov/pdl/west/products_create_after?created_after={CREATED_AFTER}&limit={BATCH_LIMIT}
Last modified: Tue Sep 3 18:12:07 UTC 2024