This site contains the documentation that is relevant to older WSO2 product versions and offerings.
For the latest WSO2 documentation, visit https://wso2.com/documentation/.
Working with Jobs in BigQuery
The
operation runs a BigQuery SQL query and returns results if the query completes within a specified timeout.runQuery
runQuery
<bigquery.runQuery> <useQueryCache>{$ctx:useQueryCache}</useQueryCache> <timeoutMs>{$ctx:timeoutMs}</timeoutMs> <query>{$ctx:query}</query> <dryRun>{$ctx:dryRun}</dryRun> <defaultProjectId>{$ctx:defaultProjectId}</defaultProjectId> <defaultDatasetId>{$ctx:defaultDatasetId}</defaultDatasetId> <projectId>{$ctx:projectId}</projectId> <maxResults>{$ctx:maxResults}</maxResults> <kind>{$ctx:kind}</kind> </bigquery.runQuery>
Properties
Whether to look for the result in the query cache. The default value is true.useQueryCache:
How long to wait for the query to complete, in milliseconds, before the request times out and returns.timeoutMs:
Required - A query string, following the BigQuery query syntax of the query to execute.query:
If set to true, BigQuery does not run the job. Instead, if the query is valid, BigQuery returns statistics about the job. If the query is invalid, an error returns. The default value is false.dryRun:
The ID of the project containing this dataset.defaultProjectId:
Required - A unique ID for this dataset, without the project name. The ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_). The maximum length is 1,024 characters.defaultDatasetId:
The project ID of the project billed for the query.projectId:
The maximum number of rows of data to return per page of results. Responses are also limited to 10 MB. By default, there is no maximum row count, and only the byte limit applies.maxResults:
The resource type of the request.kind:
Sample request
Following is a sample REST/JSON request that can be handled by the runQuery
operation.
Sample Request for runQuery
{ "quotaUser":"1hx46f5g4h5ghx6h41x54gh6f4hx", "userIp":"192.77.88.12", "accessToken":"ya29.6QFjdRjTZyXmIjxkO6G6dJoLrch1Ktt1IzFm", "clientId": "504627865627-kdni8r2s10sjddfgXzqb4bvnba.apps.googleusercontent.com", "clientSecret": "ChlbHI_T7zssXXTRYuqj_-TM", "refreshToken": "1/uWful-diQNAdk-alDUa6ixxxxxxxx-LpJIikEQ2sqA", "registryPath": "connectors/bq", "prettyPrint":"true", "callback":"callBackFunction", "apiUrl":"https://www.googleapis.com", "fields":"id,etag", "useQueryCache":"true", "timeoutMs":"10000", "query":"SELECT count(*) FROM [publicdata:samples.github_nested]", "dryRun":"false", "defaultProjectId":"bigqueryproject-1092", "defaultDatasetId":"test_100", "projectId":"bigqueryproject-1092", "maxResults":"10000", "kind":"bigquery#queryRequest", "ifNoneMatch":"hnk59tKBkX8cdlePZ8VtzgVzuO4/tS1oqpXxnkU21hZeK5k4lqRrRr8", "ifMatch":"hnk59tKBkX8cdlePZ8VtzgVzuO4/tS1oqpXxnkU21hZeK5k4lqRrRr8" }
Related BigQuery documentation
https://cloud.google.com/bigquery/docs/reference/v2/jobs/query
Sample configuration
Following is a sample proxy service that illustrates how to connect to BigQuery with the init
operation and use the runQuery
operation. The sample request for this proxy can be found in the runQuery sample request.
Sample Proxy
<?xml version="1.0" encoding="UTF-8"?> <proxy xmlns="http://ws.apache.org/ns/synapse" name="bigquery_runQuery" transports="https,http" statistics="disable" trace="disable" startOnLoad="true"> <target> <inSequence> <property name="quotaUser" expression="json-eval($.quotaUser)"/> <property name="userIp" expression="json-eval($.userIp)"/> <property name="accessToken" expression="json-eval($.accessToken)"/> <property name="clientId" expression="json-eval($.clientId)"/> <property name="refreshToken" expression="json-eval($.refreshToken)"/> <property name="clientSecret" expression="json-eval($.clientSecret)"/> <property name="registryPath" expression="json-eval($.registryPath)"/> <property name="prettyPrint" expression="json-eval($.prettyPrint)"/> <property name="callback" expression="json-eval($.callback)"/> <property name="apiUrl" expression="json-eval($.apiUrl)"/> <property name="apiKey" expression="json-eval($.apiKey)"/> <property name="fields" expression="json-eval($.fields)"/> <property name="useQueryCache" expression="json-eval($.useQueryCache)"/> <property name="timeoutMs" expression="json-eval($.timeoutMs)"/> <property name="query" expression="json-eval($.query)"/> <property name="dryRun" expression="json-eval($.dryRun)"/> <property name="defaultProjectId" expression="json-eval($.defaultProjectId)"/> <property name="defaultDatasetId" expression="json-eval($.defaultDatasetId)"/> <property name="projectId" expression="json-eval($.projectId)"/> <property name="maxResults" expression="json-eval($.maxResults)"/> <property name="kind" expression="json-eval($.kind)"/> <property name="ifMatch" expression="json-eval($.ifMatch)" /> <property name="ifNoneMatch" expression="json-eval($.ifNoneMatch)" /> <bigquery.init> <quotaUser>{$ctx:quotaUser}</quotaUser> <userIp>{$ctx:userIp}</userIp> <accessToken>{$ctx:accessToken}</accessToken> <clientSecret>{$ctx:clientSecret}</clientSecret> <clientId>{$ctx:clientId}</clientId> <refreshToken>{$ctx:refreshToken}</refreshToken> <registryPath>{$ctx:registryPath}</registryPath> <prettyPrint>{$ctx:prettyPrint}</prettyPrint> <callback>{$ctx:callback}</callback> <apiUrl>{$ctx:apiUrl}</apiUrl> <apiKey>{$ctx:apiKey}</apiKey> <fields>{$ctx:fields}</fields> <ifMatch>{$ctx:ifMatch}</ifMatch> <ifNoneMatch>{$ctx:ifNoneMatch}</ifNoneMatch> </bigquery.init> <bigquery.runQuery> <useQueryCache>{$ctx:useQueryCache}</useQueryCache> <timeoutMs>{$ctx:timeoutMs}</timeoutMs> <query>{$ctx:query}</query> <dryRun>{$ctx:dryRun}</dryRun> <defaultProjectId>{$ctx:defaultProjectId}</defaultProjectId> <defaultDatasetId>{$ctx:defaultDatasetId}</defaultDatasetId> <projectId>{$ctx:projectId}</projectId> <maxResults>{$ctx:maxResults}</maxResults> <kind>{$ctx:kind}</kind> </bigquery.runQuery> <respond/> </inSequence> <outSequence> <send/> </outSequence> </target> <description/> </proxy>