-
Notifications
You must be signed in to change notification settings - Fork 184
/
README.Rmd
142 lines (103 loc) · 5.63 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r setup, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
if (bigrquery:::has_internal_auth()) {
bigrquery:::bq_auth_internal()
} else {
knitr::opts_chunk$set(eval = FALSE)
}
```
# bigrquery
<!-- badges: start -->
[![CRAN Status](https://www.r-pkg.org/badges/version/bigrquery)](https://cran.r-project.org/package=bigrquery)
[![R-CMD-check](https://github.com/r-dbi/bigrquery/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/r-dbi/bigrquery/actions/workflows/R-CMD-check.yaml)
[![Codecov test coverage](https://codecov.io/gh/r-dbi/bigrquery/branch/main/graph/badge.svg)](https://app.codecov.io/gh/r-dbi/bigrquery?branch=main)
<!-- badges: end -->
The bigrquery package makes it easy to work with data stored in
[Google BigQuery](https://cloud.google.com/bigquery/docs) by allowing you to query BigQuery tables and retrieve metadata about your projects, datasets, tables, and jobs. The bigrquery package provides three levels of abstraction on top of BigQuery:
* The low-level API provides thin wrappers over the underlying REST API. All
the low-level functions start with `bq_`, and mostly have the form
`bq_noun_verb()`. This level of abstraction is most appropriate if you're
familiar with the REST API and you want do something not supported in the
higher-level APIs.
* The [DBI interface](https://r-dbi.org) wraps the low-level API and
makes working with BigQuery like working with any other database system.
This is most convenient layer if you want to execute SQL queries in
BigQuery or upload smaller amounts (i.e. <100 MB) of data.
* The [dplyr interface](https://dbplyr.tidyverse.org/) lets you treat BigQuery
tables as if they are in-memory data frames. This is the most convenient
layer if you don't want to write SQL, but instead want dbplyr to write it
for you.
## Installation
The current bigrquery release can be installed from CRAN:
```{r eval = FALSE}
install.packages("bigrquery")
```
The newest development release can be installed from GitHub:
```{r eval = FALSE}
#install.packages("pak")
pak::pak("r-dbi/bigrquery")
```
## Usage
### Low-level API
```{r}
library(bigrquery)
billing <- bq_test_project() # replace this with your project ID
sql <- "SELECT year, month, day, weight_pounds FROM `publicdata.samples.natality`"
tb <- bq_project_query(billing, sql)
bq_table_download(tb, n_max = 10)
```
### DBI
```{r, warning = FALSE}
library(DBI)
con <- dbConnect(
bigrquery::bigquery(),
project = "publicdata",
dataset = "samples",
billing = billing
)
con
dbListTables(con)
dbGetQuery(con, sql, n = 10)
```
### dplyr
```{r, message = FALSE}
library(dplyr)
natality <- tbl(con, "natality")
natality %>%
select(year, month, day, weight_pounds) %>%
head(10) %>%
collect()
```
## Important details
### BigQuery account
To use bigrquery, you'll need a BigQuery project. Fortunately, if you just want to play around with the BigQuery API, it's easy to start with Google's free [public data](https://cloud.google.com/bigquery/public-data) and the [BigQuery sandbox](https://cloud.google.com/bigquery/docs/sandbox). This gives you some fun data to play with along with enough free compute (1 TB of queries & 10 GB of storage per month) to learn the ropes.
To get started, open <https://console.cloud.google.com/bigquery> and create a project. Make a note of the "Project ID" as you'll use this as the `billing` project whenever you work with free sample data; and as the `project` when you work with your own data.
### Authentication and authorization
When using bigrquery interactively, you'll be prompted to [authorize bigrquery](https://cloud.google.com/bigquery/docs/authorization) in the browser. You'll be asked if you want to cache tokens for reuse in future sessions. For non-interactive usage, it is preferred to use a service account token, if possible. More places to learn about auth:
* Help for [`bigrquery::bq_auth()`](https://bigrquery.r-dbi.org/reference/bq_auth.html).
* [How gargle gets tokens](https://gargle.r-lib.org/articles/how-gargle-gets-tokens.html).
- bigrquery obtains a token with `gargle::token_fetch()`, which supports
a variety of token flows. This article provides full details, such as how
to take advantage of Application Default Credentials or service accounts
on GCE VMs.
* [Non-interactive auth](https://gargle.r-lib.org/articles/non-interactive-auth.html). Explains
how to set up a project when code must run without any user interaction.
* [How to get your own API credentials](https://gargle.r-lib.org/articles/get-api-credentials.html). Instructions for getting your own OAuth client or service account token.
Note that bigrquery requests permission to modify your data; but it will never do so unless you explicitly request it (e.g. by calling `bq_table_delete()` or `bq_table_upload()`). Our [Privacy policy](https://www.tidyverse.org/google_privacy_policy) provides more info.
## Useful links
* [SQL reference](https://cloud.google.com/bigquery/docs/reference/standard-sql/functions-and-operators)
* [API reference](https://cloud.google.com/bigquery/docs/reference/rest)
* [Query/job console](https://console.cloud.google.com/bigquery/)
* [Billing console](https://console.cloud.google.com/)
## Policies
Please note that the 'bigrquery' project is released with a [Contributor Code of Conduct](https://bigrquery.r-dbi.org/CODE_OF_CONDUCT.html). By contributing to this project, you agree to abide by its terms.
[Privacy policy](https://www.tidyverse.org/google_privacy_policy)