Skip to content

Commit c84a53d

Browse files
Remove a dataset
1 parent 85977b3 commit c84a53d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/getting-started/example-datasets/reddit-comments.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -79,13 +79,13 @@ The names of the files in S3 start with `RC_YYYY-MM` where `YYYY-MM` goes from `
7979

8080
## Load data {#load-data}
8181

82-
2. We are going to start with one month of data, but if you want to simply insert every row - skip ahead to step 8 below. The following file has 86M records from December, 2017:
82+
2. The following file has 86M records from December, 2017:
8383

8484
```sql
8585
INSERT INTO reddit
8686
SELECT *
8787
FROM s3(
88-
'https://clickhouse-public-datasets.s3.eu-central-1.amazonaws.com/reddit/original/RC_2017-12.xz',
88+
'https://your-bucket.s3.amazonaws.com/reddit/original/RC_2017-12.xz',
8989
'JSONEachRow'
9090
);
9191

@@ -205,7 +205,7 @@ INSERT INTO reddit
205205
SELECT *
206206
FROM s3Cluster(
207207
'default',
208-
'https://clickhouse-public-datasets.s3.eu-central-1.amazonaws.com/reddit/original/RC_2005*',
208+
'https://your-bucket.s3.amazonaws.com/reddit/original/RC_2005*',
209209
'JSONEachRow'
210210
)
211211
SETTINGS zstd_window_log_max = 31;
@@ -218,7 +218,7 @@ INSERT INTO reddit
218218
SELECT *
219219
FROM s3Cluster(
220220
'default',
221-
'https://clickhouse-public-datasets.s3.amazonaws.com/reddit/original/RC_2023*',
221+
'https://your-bucket.s3.amazonaws.com/reddit/original/RC_2023*',
222222
'JSONEachRow'
223223
)
224224
SETTINGS zstd_window_log_max = 31;
@@ -230,7 +230,7 @@ If you do not have a cluster, use `s3` instead of `s3Cluster`:
230230
INSERT INTO reddit
231231
SELECT *
232232
FROM s3(
233-
'https://clickhouse-public-datasets.s3.amazonaws.com/reddit/original/RC_2005*',
233+
'https://your-bucket.s3.amazonaws.com/reddit/original/RC_2005*',
234234
'JSONEachRow'
235235
)
236236
SETTINGS zstd_window_log_max = 31;

0 commit comments

Comments
 (0)