Skip to content

Commit 285450a

Browse files
committed
Editing/formatting pass
1 parent 458330b commit 285450a

File tree

1 file changed

+10
-10
lines changed
  • src/connections/storage/catalog/bigquery

1 file changed

+10
-10
lines changed

src/connections/storage/catalog/bigquery/index.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -51,16 +51,16 @@ Refer to [Google Cloud's documentation about service accounts](https://cloud.goo
5151
1. In Segment, go to **Workspace** > **Add Destination** > Search for "BigQuery"
5252
2. Click **BigQuery**.
5353
3. Select the source(s) you'd like to sync with the BigQuery destination, and click **Next**.
54-
3. Add a name for the destination to the **Name your destination** field.
54+
3. Enter a name for your destination in the **Name your destination** field.
5555
4. Enter your project ID in the **Project ID** field.
56-
**Optional:** Enter a [region code](https://cloud.google.com/compute/docs/regions-zones/){:target="_blank"} in the **Location** field (the default will be "US".)
56+
<br/>**Optional:** Enter a [region code](https://cloud.google.com/compute/docs/regions-zones/){:target="_blank"} in the **Location** field (the default will be "US".)
5757
5. Copy the contents of the JSON key into the **Credentials** field.
5858
6. Click **Connect**.
59-
7. If Segment can connect with the provided **Project ID** and **Credentials**, a warehouse will be created and your first sync should begin shortly.
59+
7. If Segment can connect with the provided project ID and credentials, a warehouse will be created and your first sync should begin shortly.
6060

6161
## Schema
6262

63-
BigQuery datasets are broken down into **tables** and **views**. **Tables**
63+
BigQuery datasets are broken down into [**tables**](#partitioned-tables) and [**views**](#views). **Tables**
6464
contain duplicate data, **views** do _not_.
6565

6666
### Partitioned Tables
@@ -70,14 +70,14 @@ tables](https://cloud.google.com/bigquery/docs/partitioned-tables){:target="_bla
7070
tables allow you to query a subset of data, thus increasing query performance
7171
and decreasing costs.
7272

73-
To query a full table, you can query like this:
73+
To search a full table, use the following query:
7474

7575
```sql
7676
select *
7777
from <project-id>.<source-name>.<collection-name>
7878
```
7979

80-
To query a specific partitioned table, you can query like this:
80+
To search a specific partitioned table, use the following query:
8181

8282

8383
```sql
@@ -116,7 +116,7 @@ Account.
116116
Migrate your warehouse from a shared Service Account to a dedicated Service Account
117117
by creating a new Service Account using the [Create a Service Account for Segment](#create-a-service-account-for-segment) section.
118118
Then, head to your warehouse's connection settings and update with the
119-
**Credentials** you created. Once you've verified that data is loading properly
119+
credentials you created. Once you've verified that data is loading properly
120120
to your warehouse, [remove access to the shared Service Account](#remove-access-to-the-shared-service-account).
121121

122122
### Remove access to the shared Service Account
@@ -131,7 +131,7 @@ You can remove access to the shared Service Account
131131
6. On the project's page, select the **Permissions** tab, and then click **view by PRINCIPALS**.
132132
7. Select the checkbox for the `[email protected]` account and then click **Remove** to remove access to this shared Service Account.
133133

134-
For more information about managing IAM access, see Google's documentation, [Manage access to projects, folders, and organization](https://cloud.google.com/iam/docs/granting-changing-revoking-access){:target="_blank"}.
134+
For more information about managing IAM access, refer to Google's documentation, [Manage access to projects, folders, and organization](https://cloud.google.com/iam/docs/granting-changing-revoking-access){:target="_blank"}.
135135

136136

137137
## Best Practices
@@ -158,7 +158,7 @@ destination table.
158158
If you typically start exploratory data analysis with `SELECT *` consider
159159
specifying the fields to reduce costs.
160160

161-
See the section on [partitioned tables](#partitioned-tables) for details on
161+
Refer to the section on [partitioned tables](#partitioned-tables) for details on
162162
querying sub-sets of tables.
163163

164164

@@ -224,4 +224,4 @@ a need for streaming data into BigQuery, [contact Segment support](https://segme
224224

225225
### I'm seeing duplicates in my tables.
226226

227-
This behavior is expected. Segment only de-duplicates data in your views. See the [schema section](#schema) for more details.
227+
This behavior is expected. Segment only de-duplicates data in your views. Refer to the [schema section](#schema) for more details.

0 commit comments

Comments
 (0)