bigrquery (version 0.4.1)

insert_extract_job: Create a new extract job.

Description

This is a low-level function that creates an extract job. To wait until it is finished, see wait_for.

Usage

insert_extract_job(project, dataset, table, destination_uris,
  compression = "NONE", destination_format = "NEWLINE_DELIMITED_JSON", ...,
  print_header = TRUE, billing = project)

Arguments

project

The project name, a string

dataset

The name of the dataset to create, a string

table

name of table to insert values into

destination_uris

Fully qualified google storage url. For large extracts you may need to specify a wild-card since

compression

Compression type ("NONE", "GZIP")

destination_format

Destination format ("CSV", "ARVO", or "NEWLINE_DELIMITED_JSON")

...

Additional arguments merged into the body of the request. snake_case will automatically be converted into camelCase so you can use consistent argument names.

print_header

Include row of column headers in the results?

billing

project ID to use for billing

Value

a job resource list, as documented at https://cloud.google.com/bigquery/docs/reference/v2/jobs

See Also

Other jobs: get_job, insert_query_job, insert_upload_job, wait_for