public abstract static class JdbcIO.WriteVoid<T> extends PTransform<PCollection<T>,PCollection<java.lang.Void>>
PTransform to write to a JDBC datasource. Executes statements in a batch, and returns
 a trivial result.annotations, displayData, name, resourceHints| Constructor and Description | 
|---|
| WriteVoid() | 
| Modifier and Type | Method and Description | 
|---|---|
| PCollection<java.lang.Void> | expand(PCollection<T> input)Override this method to specify how this  PTransformshould be expanded on the givenInputT. | 
| JdbcIO.WriteVoid<T> | withAutoSharding()If true, enables using a dynamically determined number of shards to write. | 
| JdbcIO.WriteVoid<T> | withBatchSize(long batchSize)Provide a maximum size in number of SQL statement for the batch. | 
| JdbcIO.WriteVoid<T> | withDataSourceConfiguration(JdbcIO.DataSourceConfiguration config) | 
| JdbcIO.WriteVoid<T> | withDataSourceProviderFn(SerializableFunction<java.lang.Void,javax.sql.DataSource> dataSourceProviderFn) | 
| JdbcIO.WriteVoid<T> | withMaxBatchBufferingDuration(long maxBatchBufferingDuration)Provide maximum buffering time to batch elements before committing SQL statement. | 
| JdbcIO.WriteVoid<T> | withPreparedStatementSetter(JdbcIO.PreparedStatementSetter<T> setter) | 
| JdbcIO.WriteVoid<T> | withRetryConfiguration(JdbcIO.RetryConfiguration retryConfiguration)When a SQL exception occurs,  JdbcIO.Writeuses thisJdbcIO.RetryConfigurationto
 exponentially back off and retry the statements based on theJdbcIO.RetryConfigurationmentioned. | 
| JdbcIO.WriteVoid<T> | withRetryStrategy(JdbcIO.RetryStrategy retryStrategy)When a SQL exception occurs,  JdbcIO.Writeuses thisJdbcIO.RetryStrategyto determine if it
 will retry the statements. | 
| JdbcIO.WriteVoid<T> | withStatement(java.lang.String statement) | 
| JdbcIO.WriteVoid<T> | withStatement(ValueProvider<java.lang.String> statement) | 
| JdbcIO.WriteVoid<T> | withTable(java.lang.String table) | 
addAnnotation, compose, compose, getAdditionalInputs, getAnnotations, getDefaultOutputCoder, getDefaultOutputCoder, getDefaultOutputCoder, getKindString, getName, getResourceHints, populateDisplayData, setDisplayData, setResourceHints, toString, validate, validatepublic JdbcIO.WriteVoid<T> withAutoSharding()
public JdbcIO.WriteVoid<T> withDataSourceConfiguration(JdbcIO.DataSourceConfiguration config)
public JdbcIO.WriteVoid<T> withDataSourceProviderFn(SerializableFunction<java.lang.Void,javax.sql.DataSource> dataSourceProviderFn)
public JdbcIO.WriteVoid<T> withStatement(java.lang.String statement)
public JdbcIO.WriteVoid<T> withStatement(ValueProvider<java.lang.String> statement)
public JdbcIO.WriteVoid<T> withPreparedStatementSetter(JdbcIO.PreparedStatementSetter<T> setter)
public JdbcIO.WriteVoid<T> withBatchSize(long batchSize)
withMaxBatchBufferingDuration(long)batchSize - maximum batch size in number of statementspublic JdbcIO.WriteVoid<T> withMaxBatchBufferingDuration(long maxBatchBufferingDuration)
withBatchSize(long)maxBatchBufferingDuration - maximum time in milliseconds before batch is committedpublic JdbcIO.WriteVoid<T> withRetryStrategy(JdbcIO.RetryStrategy retryStrategy)
JdbcIO.Write uses this JdbcIO.RetryStrategy to determine if it
 will retry the statements. If JdbcIO.RetryStrategy.apply(SQLException) returns true,
 then JdbcIO.Write retries the statements.public JdbcIO.WriteVoid<T> withRetryConfiguration(JdbcIO.RetryConfiguration retryConfiguration)
JdbcIO.Write uses this JdbcIO.RetryConfiguration to
 exponentially back off and retry the statements based on the JdbcIO.RetryConfiguration
 mentioned.
 Usage of RetryConfiguration -
 pipeline.apply(JdbcIO.<T>write())
    .withDataSourceConfiguration(...)
    .withRetryStrategy(...)
    .withRetryConfiguration(JdbcIO.RetryConfiguration.
        create(5, Duration.standardSeconds(5), Duration.standardSeconds(1))
 
 pipeline.apply(JdbcIO.<T>write())
    .withDataSourceConfiguration(...)
    .withRetryStrategy(...)
    .withRetryConfiguration(JdbcIO.RetryConfiguration.
        create(5, null, null)
 public JdbcIO.WriteVoid<T> withTable(java.lang.String table)
public PCollection<java.lang.Void> expand(PCollection<T> input)
PTransformPTransform should be expanded on the given
 InputT.
 NOTE: This method should not be called directly. Instead apply the PTransform should
 be applied to the InputT using the apply method.
 
Composite transforms, which are defined in terms of other transforms, should return the output of one of the composed transforms. Non-composite transforms, which do not apply any transforms internally, should return a new unbound output and register evaluators (via backend-specific registration methods).
expand in class PTransform<PCollection<T>,PCollection<java.lang.Void>>