Skip to content

Commit 0d15c47

Browse files
forstisabellapwseg
andauthored
Apply suggestions from code review [netlify-build]
Co-authored-by: pwseg <[email protected]>
1 parent 8630f9a commit 0d15c47

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/unify/linked-profiles/setup-guides/databricks-setup.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Segment recommends that you set up a new Service Principal user. If you already
2626
If you want to create a new Service Principal user, complete the following substeps:
2727

2828
#### Substep 1: Create a new Service Principal user
29-
1. Log into the Databricks UI as an Admin.
29+
1. Log in to the Databricks UI as an Admin.
3030
2. Click **User Management**.
3131
3. Select the **Service principals** tab.
3232
4. Click **Add Service Principal**.
@@ -41,7 +41,7 @@ If you want to create a new Service Principal user, complete the following subst
4141
> If you already have a warehouse you'd like to use, you can move on to the next substep, [Substep 2: Add your Service Principal user to Warehouse User Lists](#substep-2-add-your-service-principal-user-to-warehouse-user-lists). If you need to create a new warehouse first, see the [Create a new warehouse](#create-a-new-warehouse) before completing the next substep.
4242
4343
#### Substep 2: Add your Service Principal user to Warehouse User Lists
44-
1. Log into the Databricks UI as an Admin.
44+
1. Log in to the Databricks UI as an Admin.
4545
2. Navigate to SQL Warehouses.
4646
3. Select your warehouse and click **Permissions**.
4747
4. Add the Service Principal user and grant them “Can use” access.
@@ -62,7 +62,7 @@ To confirm that your Service Principal user has "Can use" permission:
6262
6363
Segment requires write access to a catalog to create a schema for internal bookkeeping, and to store checkpoint tables for the queries that are executed.
6464

65-
Segment recommends creating an empty catalog for this purpose by running the SQL below. This is also the catalog that you'll be required to specify when setting up your Databricks integration in the Segment app.
65+
Segment recommends creating an empty catalog for this purpose by running the following SQL. This is also the catalog that you'll be required to specify when setting up your Databricks integration in the Segment app.
6666

6767
```sql
6868
CREATE CATALOG IF NOT EXISTS `SEGMENT_LINKED_PROFILES_DB`;
@@ -74,17 +74,17 @@ GRANT SELECT ON CATALOG `SEGMENT_LINKED_PROFILES_DB` TO `${client_id}`;
7474

7575
### Step 3: Grant read-only access to the Profiles Sync catalog
7676

77-
Run the SQL below to grant the Data Graph read-only access to the Profiles Sync catalog:
77+
Run the following SQL to grant the Data Graph read-only access to the Profiles Sync catalog:
7878

7979
```sql
8080
GRANT USAGE, SELECT, USE SCHEMA ON CATALOG `${profiles_sync_catalog}` TO `${client_id}`;
8181
```
8282

8383
### Step 4: Grant read-only access to additional catalogs for the Data Graph
84-
Run the SQL below to grant your Service Principal user read-only access to any additional catalogs you want to use for the Data Graph:
84+
Run the following SQL to grant your Service Principal user read-only access to any additional catalogs you want to use for the Data Graph:
8585

8686
```sql
87-
-- Run the SQL below for each catalog you want to use for the Segment Data Graph
87+
-- Run this command for each catalog you want to use for the Segment Data Graph
8888
GRANT USAGE, SELECT, USE SCHEMA ON CATALOG `${catalog}` TO `${client_id}`;
8989
```
9090

@@ -144,7 +144,7 @@ After identifying the following settings, continue setting up the Data Graph by
144144
## Additional set up for warehouse permissions
145145

146146
#### Create a new warehouse
147-
1. Log into your workspace as an Admin in the Databricks UI.
147+
1. Log in to your workspace as an Admin in the Databricks UI.
148148
2. Navigate to SQL Warehouses and click **Create SQL Warehouse**.
149149
3. Enter a name for your warehouse, select a cluster size, and click **Create**.
150150

0 commit comments

Comments
 (0)