Uses of Interface
org.pipecraft.infra.bq.BQQuery
-
Packages that use BQQuery Package Description org.pipecraft.infra.bq org.pipecraft.infra.bq.exceptions org.pipecraft.pipes.source.google_bq -
-
Uses of BQQuery in org.pipecraft.infra.bq
Subinterfaces of BQQuery in org.pipecraft.infra.bq Modifier and Type Interface Description interfaceBQDMLQueryA base interface for DML (Data Manipulation Language) BQ queries.interfaceBQResultlessQueryA base interface for BQ queries with no returned result, or with a returned result that can be dropped.Classes in org.pipecraft.infra.bq that implement BQQuery Modifier and Type Class Description classCreateTableDMLQueryCreate or replaces an existing temp table in bq, with a given expiration duration.Methods in org.pipecraft.infra.bq with parameters of type BQQuery Modifier and Type Method Description <R,F>
BQResultsIterator<R,F>BigQueryConnector. execute(BQQuery<R,F> query)Runs a query synchronously.<R,F>
BQResultsIterator<R,F>BigQueryConnector. execute(BQQuery<R,F> query, QueryExecutionConfig config)Runs a query synchronously.<R,F>
BigQueryConnector.BQQueryResultFuture<R,F>BigQueryConnector. executeAsync(BQQuery<R,F> query)Runs a query asynchronously, returning a future, which is both checked and listenable.<R,F>
BigQueryConnector.BQQueryResultFuture<R,F>BigQueryConnector. executeAsync(BQQuery<R,F> query, QueryExecutionConfig config)Runs a query asynchronously, returning a future, which is both checked and listenable.voidBigQueryConnector. executeNoStreaming(BQQuery<?,?> query)Runs a query synchronously without streaming results back.longBigQueryConnector. executeNoStreaming(BQQuery<?,?> query, QueryExecutionConfig config)Runs a query synchronously without streaming results back.org.pipecraft.infra.concurrent.CheckedFuture<Void,BQException>BigQueryConnector. executeNoStreamingAsync(BQQuery<?,?> query)Runs a query asynchronously without streaming results back.<R,F>
BigQueryConnector.BQQueryResultFuture<R,F>BigQueryConnector. executeNoStreamingAsync(BQQuery<R,F> query, QueryExecutionConfig config)Runs a query asynchronously without streaming results back. -
Uses of BQQuery in org.pipecraft.infra.bq.exceptions
Constructors in org.pipecraft.infra.bq.exceptions with parameters of type BQQuery Constructor Description BQException(String msg, Throwable cause, BQQuery<?,?> query)Constructor To be used for failed query requests only.BQException(String msg, BQQuery<?,?> query)Constructor To be used for failed query requests only.BQException(Throwable cause, BQQuery<?,?> query)Constructor To be used for failed query requests only.ClientTooManyRowsBQException(String msg, BQQuery<?,?> query)ConstructorInvalidQueryBQException(String msg, BQQuery<?,?> query)ConstructorNonTransientBQException(String msg, Throwable cause, BQQuery<?,?> query)Constructor To be used for failed query requests only.NonTransientBQException(String msg, BQQuery<?,?> query)Constructor To be used for failed query requests only.NonTransientBQException(Throwable cause, BQQuery<?,?> query)Constructor To be used for failed query requests only.ServerResourcesBQException(String msg, Throwable cause, BQQuery<?,?> query)ConstructorServerResourcesBQException(Throwable cause, BQQuery<?,?> query)ConstructorServerTooManyRowsBQException(String msg, BQQuery<?,?> query)ConstructorServerTooManyRowsBQException(Throwable cause, BQQuery<?,?> query)ConstructorTimeoutBQException(String msg, Throwable e, BQQuery<?,?> query)ConstructorTimeoutBQException(String msg, BQQuery<?,?> query)ConstructorTransientBQException(String msg, Throwable cause, BQQuery<?,?> query)Constructor To be used for failed query requests only.TransientBQException(String msg, BQQuery<?,?> query)Constructor To be used for failed query requests only.TransientBQException(Throwable cause, BQQuery<?,?> query)Constructor To be used for failed query requests only. -
Uses of BQQuery in org.pipecraft.pipes.source.google_bq
Constructors in org.pipecraft.pipes.source.google_bq with parameters of type BQQuery Constructor Description BQQueryResultsPipe(BigQueryConnector bq, BQQuery<T,?> query, QueryExecutionConfig queryConfig)Constructor
-