@@ -81,7 +81,7 @@ include::partial$instance-hint.adoc[]
81
81
== Inspect the data in S3
82
82
83
83
The S3 provided by MinIO is used as a persistent storage to store all the data used. You can look at the test data
84
- within the MinIO web interface by opening the endpoint `console- http` from your `stackablectl stacklet list` command
84
+ within the MinIO web interface by opening the endpoint `http` from your `stackablectl stacklet list` command
85
85
output. You have to use the endpoint from your command output. In this case, it is http://172.18.0.2:32654. Open it with
86
86
your favourite browser.
87
87
@@ -115,7 +115,7 @@ When you start executing SQL queries, you will see the queries getting processed
115
115
116
116
== Use the Superset web interface
117
117
118
- Superset gives the ability to execute SQL queries and build dashboards. Open the endpoint `external-superset `
118
+ Superset gives the ability to execute SQL queries and build dashboards. Open the endpoint `external-http `
119
119
in your browser (`http://172.18.0.2:31312` in this case).
120
120
121
121
image::trino-taxi-data/superset_1.png[]
@@ -138,8 +138,8 @@ You can clearly see the impact of COVID-19 on the taxi business.
138
138
139
139
=== Execute arbitrary SQL statements
140
140
141
- Within Superset, you can create dashboards and run arbitrary SQL statements. On the top, click on the tab `SQL Lab ` ->
142
- `SQL Editor `.
141
+ Within Superset, you can create dashboards and run arbitrary SQL statements. On the top, click on the tab `SQL` ->
142
+ `SQL Lab `.
143
143
144
144
image::trino-taxi-data/superset_5.png[]
145
145
@@ -180,7 +180,7 @@ Within Superset you can execute arbitrary SQL statements to explore the taxi dat
180
180
questions by executing SQL statements? The {trino-language-docs}[Trino documentation on their SQL language] might help
181
181
you.
182
182
183
- How many taxi trips there where in the year 2021?
183
+ How many taxi trips there were in the year 2021?
184
184
185
185
.See the answer
186
186
[%collapsible]
@@ -199,7 +199,7 @@ returns 30.903.982 trips.
199
199
200
200
What was the maximum amount of passengers?
201
201
202
- .See the Answer
202
+ .See the answer
203
203
[%collapsible]
204
204
====
205
205
@@ -269,7 +269,7 @@ Pretty cheap for that amount of people! These are probably invalid records.
269
269
270
270
What was the highest tip (measured in percentage of the original fee) ever given?
271
271
272
- .See the Answer
272
+ .See the answer
273
273
[%collapsible]
274
274
====
275
275
@@ -309,7 +309,7 @@ You also have the possibility to create additional charts and bundle them togeth
309
309
You can use the MinIO webinterface to upload additional data. As an alternative you can use the S3 API with an S3 client
310
310
like https://s3tools.org/s3cmd[s3cmd]. It is recommended to put the data into a folder (prefix) in the `demo` bucket.
311
311
312
- Have a look at the defined tables inside the `hive`.` demo` schema on how to inform Trino about the newly available data.
312
+ Have a look at the defined tables inside the `hive. demo` schema on how to inform Trino about the newly available data.
313
313
314
314
.Table Definitions
315
315
[%collapsible]
@@ -372,5 +372,5 @@ AND tpep_pickup_datetime <= from_iso8601_timestamp('2022-05-31T00:00:00')
372
372
373
373
=== Connect to Trino via CLI, Python or DBeaver
374
374
375
- If you prefer running your SQL statements via command-line, a Python script or a graphical Database manager like DBeaver
375
+ If you prefer running your SQL statements via command-line, a Python script or a graphical database manager like DBeaver
376
376
please have a look at the {trino-client-docs}[the Trino documentation] on how to do that.
0 commit comments