Class WriteMultipleRequest
NoSQLHandle.writeMultiple(oracle.nosql.driver.ops.WriteMultipleRequest)
operation.
This request can be used to perform a sequence of PutRequest
or
DeleteRequest
operations associated with a table that share the same
shard key portion of their primary keys, the WriteMultiple
operation as whole is atomic. It is an efficient way to atomically modify
multiple related rows.
On a successful operation WriteMultipleResult.getSuccess()
returns
true. The execution result of each operations can be retrieved using
WriteMultipleResult.getResults()
.
If the WriteMultiple operation is aborted because of the failure of an
operation with abortIfUnsuccessful set to true, then
WriteMultipleResult.getSuccess()
return false, the index of failed
operation can be accessed using
WriteMultipleResult.getFailedOperationIndex()
, and the execution
result of failed operation can be accessed using
WriteMultipleResult.getFailedOperationResult()
.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionAdds a Request to the operation list.void
clear()
Removes all of the operations from the WriteMultiple request.int
Returns the number of Requests.getRequest
(int index) Returns the Request at the given position, it may be either aPutRequest
or aDeleteRequest
object.int
Returns the timeout to use for the operation, in milliseconds.Returns the type name of the request.setCompartment
(String compartment) Cloud service only.setDurability
(Durability durability) Sets the durability to use for the operation.setNamespace
(String namespace) Sets the optional namespace.setTimeout
(int timeoutMs) Sets the request timeout value, in milliseconds.Methods inherited from class oracle.nosql.driver.ops.DurableRequest
getDurability
Methods inherited from class oracle.nosql.driver.ops.Request
getCompartment, getNamespace, getRateLimitDelayedMs, getReadRateLimiter, getRetryStats, getTableName, getWriteRateLimiter, setReadRateLimiter, setWriteRateLimiter
-
Constructor Details
-
WriteMultipleRequest
public WriteMultipleRequest()Constructs an empty request
-
-
Method Details
-
add
Adds a Request to the operation list.- Parameters:
request
- the Request to add, eitherPutRequest
orDeleteRequest
.abortIfUnsuccessful
- is true if this operation should cause the entire WriteMultiple operation to abort when this operation fails.- Returns:
- this
- Throws:
BatchOperationNumberLimitException
- if the number of requests exceeds the limit, or IllegalArgumentException if the request is neither aPutRequest
orDeleteRequest
. or any invalid state of the Request.
-
setCompartment
Cloud service only.Sets the name or id of a compartment to be used for this operation.
The compartment may be specified as either a name (or path for nested compartments) or as an id (OCID). A name (vs id) can only be used when authenticated using a specific user identity. It is not available if authenticated as an Instance Principal which can be done when calling the service from a compute instance in the Oracle Cloud Infrastructure. See
SignatureProvider.createWithInstancePrincipal()
- Parameters:
compartment
- the name or id. If using a nested compartment, specify the full compartment pathcompartmentA.compartmentB
, but exclude the name of the root compartment (tenant).- Returns:
- this
-
getTimeout
public int getTimeout()Returns the timeout to use for the operation, in milliseconds. A value of 0 indicates that the timeout has not been set.- Returns:
- the value
-
getNumOperations
public int getNumOperations()Returns the number of Requests.- Returns:
- the number of Requests
-
getRequest
Returns the Request at the given position, it may be either aPutRequest
or aDeleteRequest
object.- Parameters:
index
- the position of Request to get- Returns:
- the Request at the given position
- Throws:
IndexOutOfBoundsException
- if the position is negative or greater or equal to the number of Requests.
-
setTimeout
Sets the request timeout value, in milliseconds. This overrides any default value set withNoSQLHandleConfig.setRequestTimeout(int)
. The value must be positive.- Parameters:
timeoutMs
- the timeout value, in milliseconds- Returns:
- this
- Throws:
IllegalArgumentException
- if the timeout value is less than or equal to 0
-
setNamespace
Sets the optional namespace. On-premises only. This overrides any default value set withNoSQLHandleConfig.setDefaultNamespace(java.lang.String)
. Note: if a namespace is specified in the table name for the request (using the namespace:tablename format), that value will override this setting.- Parameters:
namespace
- the namespace to use for the operation- Returns:
- this
- Since:
- 5.4.10
-
clear
public void clear()Removes all of the operations from the WriteMultiple request. -
setDurability
Sets the durability to use for the operation. On-premises only.- Parameters:
durability
- the durability value. Set to null for the default durability setting on the kvstore server.- Returns:
- this
- Since:
- 5.3.0
-
getTypeName
Description copied from class:Request
Returns the type name of the request. This is used for stats.- Specified by:
getTypeName
in classRequest
- Returns:
- the type name of the request
-