Enum BigQueryIO.TypedRead.QueryPriority
- java.lang.Object
-
- java.lang.Enum<BigQueryIO.TypedRead.QueryPriority>
-
- org.apache.beam.sdk.io.gcp.bigquery.BigQueryIO.TypedRead.QueryPriority
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<BigQueryIO.TypedRead.QueryPriority>
- Enclosing class:
- BigQueryIO.TypedRead<T>
public static enum BigQueryIO.TypedRead.QueryPriority extends java.lang.Enum<BigQueryIO.TypedRead.QueryPriority>
An enumeration type for the priority of a query.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BATCHSpecifies that a query should be run with a BATCH priority.INTERACTIVESpecifies that a query should be run with an INTERACTIVE priority.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BigQueryIO.TypedRead.QueryPriorityvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static BigQueryIO.TypedRead.QueryPriority[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INTERACTIVE
public static final BigQueryIO.TypedRead.QueryPriority INTERACTIVE
Specifies that a query should be run with an INTERACTIVE priority.Interactive mode allows for BigQuery to execute the query as soon as possible. These queries count towards your concurrent rate limit and your daily limit.
-
BATCH
public static final BigQueryIO.TypedRead.QueryPriority BATCH
Specifies that a query should be run with a BATCH priority.Batch mode queries are queued by BigQuery. These are started as soon as idle resources are available, usually within a few minutes. Batch queries don't count towards your concurrent rate limit.
-
-
Method Detail
-
values
public static BigQueryIO.TypedRead.QueryPriority[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (BigQueryIO.TypedRead.QueryPriority c : BigQueryIO.TypedRead.QueryPriority.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BigQueryIO.TypedRead.QueryPriority valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-