Skip to content

Commit a139616

Browse files
committed
Tweak README steps
1 parent 5e0ccb8 commit a139616

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

presto/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ We assume that a Presto cluster is already running. For more information, visit
1111
----------
1212
## Steps
1313

14-
1. Download parquet file and upload it to S3 Bucket ex. s3://your-bucket/clickbench-parquet/hits/hits.parquet.
15-
2. Create a new schema for the dataset and create hits table in this new schema using the create.sql file. Add the following to the end of the file to use the parquet file on S3.
14+
1. Download the parquet file and upload it to an S3 Bucket ex. s3://your-bucket/clickbench-parquet/hits/hits.parquet.
15+
2. Create a new schema in the Hive metastore and create the hits table in the new schema using the create.sql file. Modify the end of the table creation statement to use the parquet file on S3.
1616
```
1717
WITH (
1818
format = 'PARQUET',
1919
external_location = 's3a://your-bucket/clickbench-parquet/hits/'
2020
);
2121
```
22-
3. Connect to your Presto coordinator and use presto-cli to run `run.sh`.
23-
4. Presto UI is one of the ways to get detailed information on the queries including runtime.
22+
3. Connect to the Presto coordinator and clone the ClickBench repo to run `run.sh`.
23+
4. Use the Presto UI or event listeners to get detailed information on the queries including runtime.

0 commit comments

Comments
 (0)