@Target(value={TYPE,METHOD,FIELD})
@Retention(value=RUNTIME)
public @interface RangePartitioning
If multiple partitions are used to process a single transaction, JTA should be used for proper XA transaction support.
Partitioning can be enabled on an Entity, relationship, query, or session/persistence unit. Partition policies are globally named to allow reuse, the partitioning policy must also be set using the @Partitioned annotation to be used.
Partitioned
,
RangePartitioningPolicy
Modifier and Type | Required Element and Description |
---|---|
java.lang.String |
name
The name of the partition policy, names must be unique for the persistence unit.
|
Column |
partitionColumn
The database column or query parameter to partition queries by.
|
RangePartition[] |
partitions
(Required) List of connection pool names to load balance across.
|
Modifier and Type | Optional Element and Description |
---|---|
java.lang.Class |
partitionValueType
The type of the start and end values.
|
boolean |
unionUnpartitionableQueries
Defines if queries that do not contain the partition field should be sent
to every database and have the result unioned.
|
public abstract java.lang.String name
public abstract Column partitionColumn
public abstract RangePartition[] partitions