Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
317brian committed Jan 9, 2025
1 parent 854dccb commit 27dfa07
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions docs/development/extensions-core/catalog.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ A tableSpec defines a table
|--------------|---------------------|------------------------------------------------------------------------------------------------------------------------|----------|---------|
| `name` | String | The name of the column | yes | null |
| `dataType` | String | The type of the column. Can be any column data type that is available to Druid. Depends on what extensions are loaded. | no | null |
| `properties` | Map<String, Object> | the column's defined properties. Non properties defined at this time. | no | null |
| `properties` | Map\<String, Object\> | the column's defined properties. Non properties defined at this time. | no | null |

### APIs

Expand Down Expand Up @@ -186,7 +186,7 @@ Retrieve a table

##### URL

`GET` `/druid/coordinator/v1/catalog/schemas/{schema}/tables/{name}
`GET` `/druid/coordinator/v1/catalog/schemas/{schema}/tables/{name}`

##### Responses

Expand Down Expand Up @@ -283,7 +283,7 @@ Delete a table

##### URL

`DELETE` `/druid/coordinator/v1/catalog/schemas/{schema}/tables/{name}
`DELETE` `/druid/coordinator/v1/catalog/schemas/{schema}/tables/{name}`

##### Responses

Expand Down Expand Up @@ -337,7 +337,7 @@ retrieve list of schema names

##### URL

`GET` `/druid/coordinator/v1/catalog/schemas
`GET` `/druid/coordinator/v1/catalog/schemas`

##### Responses

Expand Down Expand Up @@ -400,7 +400,7 @@ Retrieve a list of table names in the schema.

##### URL

`GET` `/druid/coordinator/v1/catalog/schemas/{schema}/table
`GET` `/druid/coordinator/v1/catalog/schemas/{schema}/table`

##### Responses

Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ Follow these steps to load the sample Wikipedia dataset:
The query inserts the sample data into the table named `wikiticker-2015-09-12-sampled`.
<details>
<summary>Show the query</summary>
<summary>Show the query</summary>
```sql
REPLACE INTO "wikiticker-2015-09-12-sampled" OVERWRITE ALL
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/tutorial-batch-hadoop.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ From the Hadoop container's shell, run the following command to copy the Hadoop
cp /usr/local/hadoop/etc/hadoop/*.xml /shared/hadoop_xml
```

From the host machine, run the following, where {PATH_TO_DRUID} is replaced by the path to the Druid package.
From the host machine, run the following, where \{PATH_TO_DRUID\} is replaced by the path to the Druid package.

```bash
mkdir -p {PATH_TO_DRUID}/conf/druid/single-server/micro-quickstart/_common/hadoop-xml
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/tutorial-extern.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ Druid supports Amazon S3 or Google Cloud Storage (GCS) as cloud storage destinat
LIMIT 10
```
</TabItem>
</TabItem>
<TabItem value="2" label="GCS">
Expand Down
4 changes: 2 additions & 2 deletions docs/tutorials/tutorial-msq-convert-spec.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ To convert the ingestion spec to a query task, do the following:
3. In the **Ingestion spec to covert** window, insert your ingestion spec. You can use your own spec or the sample ingestion spec provided in the tutorial. The sample spec uses data hosted at `https://druid.apache.org/data/wikipedia.json.gz` and loads it into a table named `wikipedia`:

<details>
<summary>Show the spec</summary>
<summary>Show the spec</summary>

```json
{
Expand Down Expand Up @@ -129,7 +129,7 @@ To convert the ingestion spec to a query task, do the following:
4. Click **Submit** to submit the spec. The web console uses the JSON-based ingestion spec to generate a SQL query that you can use instead. This is what the query looks like for the sample ingestion spec:

<details>
<summary>Show the query</summary>
<summary>Show the query</summary>

```sql
-- This SQL query was auto generated from an ingestion spec
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/tutorial-msq-extern.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ To generate a query from external data, do the following:
5. When you're ready, click **Done**. You're returned to the **Query** view where you can see the starter query that will insert the data from the external source into a table named `wikipedia`.

<details>
<summary>Show the query</summary>
<summary>Show the query</summary>

```sql
REPLACE INTO "wikipedia" OVERWRITE ALL
Expand Down

0 comments on commit 27dfa07

Please sign in to comment.