Skip to content

Commit 947f44f

Browse files
authored
Update index.md (#176)
Updated the getting started guide with the same quickstart as the readme.
1 parent 0dba7cd commit 947f44f

1 file changed

Lines changed: 11 additions & 22 deletions

File tree

  • spiceaidocs/docs/getting-started

spiceaidocs/docs/getting-started/index.md

Lines changed: 11 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,7 @@ A `spicepod.yaml` file is created in the `spice_qs` directory. Change to that di
3636
cd spice_qs
3737
```
3838

39-
**Step 3.** Connect to the sample Dremio instance to access the sample data:
40-
41-
```bash
42-
spice login dremio -u demo -p demo1234
43-
```
44-
45-
**Step 4.** Start the Spice runtime:
39+
**Step 3.** Start the Spice runtime:
4640

4741
```bash
4842
spice run
@@ -60,7 +54,7 @@ Using latest 'local' runtime version.
6054

6155
The runtime is now started and ready for queries.
6256

63-
**Step 5.** In a new terminal window, add the `spiceai/quickstart` Spicepod. A Spicepod is a package of configuration defining datasets and ML models.
57+
**Step 4.** In a new terminal window, add the `spiceai/quickstart` Spicepod. A Spicepod is a package of configuration defining datasets and ML models.
6458

6559
```bash
6660
spice add spiceai/quickstart
@@ -83,7 +77,7 @@ The `spiceai/quickstart` Spicepod will add a `taxi_trips` data table to the runt
8377
2024-02-22T05:53:48.223101Z INFO runtime::dataconnector: Refreshing data for taxi_trips
8478
```
8579

86-
**Step 6.** Start the Spice SQL REPL:
80+
**Step 5.** Start the Spice SQL REPL:
8781

8882
```bash
8983
spice sql
@@ -101,19 +95,14 @@ sql>
10195
Enter `show tables;` to display the available tables for query:
10296

10397
```
104-
sql> show tables;
105-
106-
+---------------+--------------------+-------------+------------+
107-
| table_catalog | table_schema | table_name | table_type |
108-
+---------------+--------------------+-------------+------------+
109-
| datafusion | public | taxi_trips | BASE TABLE |
110-
| datafusion | information_schema | tables | VIEW |
111-
| datafusion | information_schema | views | VIEW |
112-
| datafusion | information_schema | columns | VIEW |
113-
| datafusion | information_schema | df_settings | VIEW |
114-
+---------------+--------------------+-------------+------------+
98+
sql> show tables
99+
+------------+
100+
| table_name |
101+
+------------+
102+
| taxi_trips |
103+
+------------+
115104
116-
Query took: 0.004728897 seconds
105+
Query took: 0.007505084 seconds. 1/1 rows displayed.
117106
```
118107

119108
Enter a query to display the longest taxi trips:
@@ -149,4 +138,4 @@ import DocCardList from '@theme/DocCardList';
149138

150139
<DocCardList items={[{type: 'link', label: 'Quickstarts', href: 'https://github.com/spiceai/quickstarts', description: 'Spice.ai Quickstart Tutorials.'},
151140
{type: 'link', label: 'Samples', href: 'https://github.com/spiceai/samples', description: 'Dive deeper with in-depth samples.'},]} />
152-
141+

0 commit comments

Comments
 (0)