CosmosChangeFeedRequestOptions Class
- java.
lang. Object - com.
azure. cosmos. models. CosmosChangeFeedRequestOptions
- com.
public final class CosmosChangeFeedRequestOptions
Encapsulates options that can be specified for an operation within a change feed request.
Method Summary
Modifier and Type | Method and Description |
---|---|
Cosmos |
allVersionsAndDeletes()
Changes the change feed mode so that the change feed will contain events for creations, deletes as well as all intermediary snapshots for updates. |
static
Cosmos |
createForProcessingFromBeginning(FeedRange feedRange)
Creates a new CosmosChangeFeedRequestOptions instance to start processing change feed items from the beginning of the change feed |
static
Cosmos |
createForProcessingFromContinuation(String continuation)
Creates a new CosmosChangeFeedRequestOptions instance to start processing change feed items from a previous continuation |
static
Cosmos |
createForProcessingFromNow(FeedRange feedRange)
Creates a new CosmosChangeFeedRequestOptions instance to start processing change feed items from the current time - so only events for all future changes will be retrieved |
static
Cosmos |
createForProcessingFromPointInTime(Instant pointInTime, FeedRange feedRange)
Creates a new CosmosChangeFeedRequestOptions instance to start processing change feed items from a certain point in time |
Cosmos |
fullFidelity()
Deprecated
use allVersionsAndDeletes() instead.
Changes the change feed mode so that the change feed will contain events for creations, deletes as well as all intermediary snapshots for updates. |
Cosmos |
getCustomItemSerializer()
Gets the custom item serializer defined for this instance of request options |
Cosmos |
getDiagnosticsThresholds()
Gets the diagnostic thresholds used as an override for a specific operation. |
List<String> |
getExcludedRegions()
Gets the list of regions to be excluded for the request/retries. |
Feed |
getFeedRange()
Gets the feed range. |
Set<String> |
getKeywordIdentifiers()
Gets the custom ids. |
int |
getMaxItemCount()
Gets the maximum number of items to be returned in the enumeration operation. |
int |
getMaxPrefetchPageCount()
Gets the maximum number of pages that will be prefetched from the backend asynchronously in the background. |
String |
getThroughputControlGroupName()
Get the throughput control group name. |
boolean |
isQuotaInfoEnabled()
Gets the quota |
Cosmos |
setCustomItemSerializer(CosmosItemSerializer customItemSerializer)
Allows specifying a custom item serializer to be used for this operation. |
Cosmos |
setDiagnosticsThresholds(CosmosDiagnosticsThresholds operationSpecificThresholds)
Allows overriding the diagnostic thresholds for a specific operation. |
Cosmos |
setExcludedRegions(List<String> excludeRegions)
List of regions to exclude for the request/retries. |
Cosmos |
setKeywordIdentifiers(Set<String> keywordIdentifiers)
Sets the custom ids. |
Cosmos |
setMaxItemCount(int maxItemCount)
Sets the maximum number of items to be returned in the enumeration operation. |
Cosmos |
setMaxPrefetchPageCount(int maxPrefetchPageCount)
Sets the maximum number of pages that will be prefetched from the backend asynchronously in the background. |
void |
setQuotaInfoEnabled(boolean quotaInfoEnabled)
Gets the quota |
Cosmos |
setThroughputControlGroupName(String throughputControlGroupName)
Set the throughput control group name. |
Methods inherited from java.lang.Object
Method Details
allVersionsAndDeletes
public CosmosChangeFeedRequestOptions allVersionsAndDeletes()
Changes the change feed mode so that the change feed will contain events for creations, deletes as well as all intermediary snapshots for updates. Enabling AllVersionsAndDeletes change feed mode requires configuring a retention duration in the change feed policy of the container. ChangeFeedPolicy
Intermediary snapshots of changes as well as deleted documents would be available for processing for 8 minutes before they vanish. When enabling AllVersionsAndDeletes mode you will only be able to process change feed events within the retention window configured in the change feed policy of the container. If you attempt to process a change feed after more than the retention window an error (Status Code 400) will be returned because the events for intermediary updates and deletes have vanished. It would still be possible to process changes using LatestVersion mode even when configuring a AllVersionsAndDeletes change feed policy with retention window on the container and when using LatestVersion mode it doesn't matter whether your are out of the retention window or not - but no events for deletes or intermediary updates would be included. When events are not getting processed within the retention window it is also possible to continue processing future events in AllVersionsAndDeletes mode by querying the change feed with a new CosmosChangeFeedRequestOptions instance.
Returns:
createForProcessingFromBeginning
public static CosmosChangeFeedRequestOptions createForProcessingFromBeginning(FeedRange feedRange)
Creates a new CosmosChangeFeedRequestOptions instance to start processing change feed items from the beginning of the change feed
Parameters:
Returns:
createForProcessingFromContinuation
public static CosmosChangeFeedRequestOptions createForProcessingFromContinuation(String continuation)
Creates a new CosmosChangeFeedRequestOptions instance to start processing change feed items from a previous continuation
Parameters:
Returns:
createForProcessingFromNow
public static CosmosChangeFeedRequestOptions createForProcessingFromNow(FeedRange feedRange)
Creates a new CosmosChangeFeedRequestOptions instance to start processing change feed items from the current time - so only events for all future changes will be retrieved
Parameters:
Returns:
createForProcessingFromPointInTime
public static CosmosChangeFeedRequestOptions createForProcessingFromPointInTime(Instant pointInTime, FeedRange feedRange)
Creates a new CosmosChangeFeedRequestOptions instance to start processing change feed items from a certain point in time
Parameters:
Returns:
fullFidelity
@Deprecated
public CosmosChangeFeedRequestOptions fullFidelity()
Deprecated
Changes the change feed mode so that the change feed will contain events for creations, deletes as well as all intermediary snapshots for updates. Enabling AllVersionsAndDeletes change feed mode requires configuring a retention duration in the change feed policy of the container. ChangeFeedPolicy
Intermediary snapshots of changes as well as deleted documents would be available for processing for retention window before they vanish. When enabling AllVersionsAndDeletes mode you will only be able to process change feed events within the retention window configured in the change feed policy of the container. If you attempt to process a change feed after more than the retention window an error (Status Code 400) will be returned because the events for intermediary updates and deletes have vanished. It would still be possible to process changes using LatestVersion mode even when configuring a AllVersionsAndDeletes change feed policy with retention window on the container and when using LatestVersion mode it doesn't matter whether your are out of the retention window or not - but no events for deletes or intermediary updates would be included. When events are not getting processed within the retention window it is also possible to continue processing future events in AllVersionsAndDeletes mode by querying the change feed with a new CosmosChangeFeedRequestOptions instance.
Returns:
getCustomItemSerializer
public CosmosItemSerializer getCustomItemSerializer()
Gets the custom item serializer defined for this instance of request options
Returns:
getDiagnosticsThresholds
public CosmosDiagnosticsThresholds getDiagnosticsThresholds()
Gets the diagnostic thresholds used as an override for a specific operation. If no operation specific diagnostic threshold has been specified, this method will return null, although at runtime the default thresholds specified at the client-level will be used.
Returns:
getExcludedRegions
public List
Gets the list of regions to be excluded for the request/retries. These regions are excluded from the preferred region list.
Returns:
getFeedRange
public FeedRange getFeedRange()
Gets the feed range.
Returns:
getKeywordIdentifiers
public Set
Gets the custom ids.
Returns:
getMaxItemCount
public int getMaxItemCount()
Gets the maximum number of items to be returned in the enumeration operation.
Returns:
getMaxPrefetchPageCount
public int getMaxPrefetchPageCount()
Gets the maximum number of pages that will be prefetched from the backend asynchronously in the background. By pre-fetching these changes the throughput of processing the change feed records can be increased because the processing doesn't have to stop while waiting for the IO operations to retrieve a new page form the backend to complete. The only scenario where it can be useful to disable prefetching pages (with setMaxPrefetchPageCount(0)) would be when the caller only plans to retrieve just one page - so any prefetched pages would not be used anyway.
Returns:
getThroughputControlGroupName
public String getThroughputControlGroupName()
Get the throughput control group name.
Returns:
isQuotaInfoEnabled
public boolean isQuotaInfoEnabled()
Gets the quotaInfoEnabled setting for change feed request in the Azure Cosmos DB database service. quotaInfoEnabled is used to enable/disable getting quota related stats
Returns:
setCustomItemSerializer
public CosmosChangeFeedRequestOptions setCustomItemSerializer(CosmosItemSerializer customItemSerializer)
Allows specifying a custom item serializer to be used for this operation. If the serializer on the request options is null, the serializer on CosmosClientBuilder is used. If both serializers are null (the default), an internal Jackson ObjectMapper is ued for serialization/deserialization.
Parameters:
Returns:
setDiagnosticsThresholds
public CosmosChangeFeedRequestOptions setDiagnosticsThresholds(CosmosDiagnosticsThresholds operationSpecificThresholds)
Allows overriding the diagnostic thresholds for a specific operation.
Parameters:
Returns:
setExcludedRegions
public CosmosChangeFeedRequestOptions setExcludedRegions(List
List of regions to exclude for the request/retries. Example "East US" or "East US, West US" These regions will be excluded from the preferred regions list
Parameters:
Returns:
setKeywordIdentifiers
public CosmosChangeFeedRequestOptions setKeywordIdentifiers(Set
Sets the custom ids.
Parameters:
Returns:
setMaxItemCount
public CosmosChangeFeedRequestOptions setMaxItemCount(int maxItemCount)
Sets the maximum number of items to be returned in the enumeration operation.
Parameters:
Returns:
setMaxPrefetchPageCount
public CosmosChangeFeedRequestOptions setMaxPrefetchPageCount(int maxPrefetchPageCount)
Sets the maximum number of pages that will be prefetched from the backend asynchronously in the background. By pre-fetching these changes the throughput of processing the change feed records can be increased because the processing doesn't have to stop while waiting for the IO operations to retrieve a new page form the backend to complete. The only scenario where it can be useful to disable prefetching pages (with setMaxPrefetchPageCount(0)) would be when the caller only plans to retrieve just one page - so any prefetched pages would not be used anyway.
Parameters:
Returns:
setQuotaInfoEnabled
public void setQuotaInfoEnabled(boolean quotaInfoEnabled)
Gets the quotaInfoEnabled setting for change feed request in the Azure Cosmos DB database service. quotaInfoEnabled is used to enable/disable getting quota related stats
Parameters:
setThroughputControlGroupName
public CosmosChangeFeedRequestOptions setThroughputControlGroupName(String throughputControlGroupName)
Set the throughput control group name.
Parameters:
Returns:
Applies to
Azure SDK for Java