Skip to content

Commit aecc97e

Browse files
committed
docs(connectors): update Looker Studio readmes for Columnar and Data API
- Change SDK language from JavaScript to Node.js in both readmes. - Clarify prerequisites and instructions in the Columnar readme by removing references to Collections. - Update the Data API readme to enhance clarity in SQL++ query descriptions and schema inference details. Files: - tutorial/markdown/connectors/looker-studio/dataapi/readme.md - tutorial/markdown/connectors/looker-studio/columnar/readme.md
1 parent f872209 commit aecc97e

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

tutorial/markdown/connectors/looker-studio/columnar/readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ tags:
1919
- Connector
2020
- Views-only
2121
sdk_language:
22-
- javascript
22+
- nodejs
2323
length: 20 Mins
2424
---
2525

@@ -34,7 +34,7 @@ The connector authenticates with Basic Auth to the Columnar API (`/api/v1/reques
3434
## Prerequisites
3535

3636
- A Couchbase Columnar deployment reachable from Looker Studio.
37-
- A database user with permissions to read from the target Views/Collections and execute queries.
37+
- A database user with permissions to read from the target Views and execute queries.
3838
- Network access from Looker Studio to your Columnar host.
3939

4040
## Authentication
@@ -114,7 +114,7 @@ What runs:
114114

115115
## Next Steps
116116

117-
- Build charts in Looker Studio using your View- or Collection-backed fields.
117+
- Build charts in Looker Studio using your View-backed fields.
118118
- Iterate on Views/queries to shape the dataset for analytics.
119119

120120

tutorial/markdown/connectors/looker-studio/dataapi/readme.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ tags:
1919
- Data API
2020
- Connector
2121
sdk_language:
22-
- javascript
22+
- nodejs
2323
length: 20 Mins
2424
---
2525

@@ -64,16 +64,16 @@ After authentication, choose a configuration mode:
6464

6565
What runs:
6666

67-
- Data: `SELECT RAW \`collection\` FROM \`bucket\`.\`scope\`.\`collection\` LIMIT <maxRows>`
67+
- Data: `SELECT RAW collection FROM \`bucket\`.\`scope\`.\`collection\` LIMIT <maxRows>`
6868
- Schema: `INFER \`bucket\`.\`scope\`.\`collection\` WITH {"sample_size": 100, "num_sample_values": 3, "similarity_metric": 0.6}`
6969

7070
### Mode: Use Custom Query
7171

72-
- Custom N1QL Query: Paste any valid SQL++ statement. Include a `LIMIT` for performance.
72+
- Custom SQL++ Query: Paste any valid SQL++ statement. Include a `LIMIT` for performance.
7373

7474
What runs:
7575

76-
- Schema inference first attempts: `INFER (<yourQuery [LIMIT 100 if absent]>) WITH {"sample_size": 10000, "num_sample_values": 2, "similarity_metric": 0.1}`
76+
- Schema inference first attempts to run `INFER` on your query (a `LIMIT 100` is added if absent): `INFER (<yourQuery>) WITH {"sample_size": 10000, "num_sample_values": 2, "similarity_metric": 0.1}`
7777
- If that fails, it runs your query with `LIMIT 1` and infers the schema from one sample document.
7878

7979
## Schema and Field Types

0 commit comments

Comments
 (0)