Skip to content

Commit e05ce7e

Browse files
committed
docs: fix links
1 parent b4ec875 commit e05ce7e

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

docs/manual.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ bind-address = 0.0.0.0
200200

201201
# Quick Start
202202

203-
Suppose we have MySQL `airline.ontime` table of the [following structure - clickhouse_mysql_examples/airline_ontime_schema_mysql.sql](clickhouse_mysql_examples/airline_ontime_schema_mysql.sql) and want to migrate it into ClickHouse.
203+
Suppose we have MySQL `airline.ontime` table of the [following structure - clickhouse_mysql_examples/airline_ontime_schema_mysql.sql](../clickhouse_mysql_examples/airline_ontime_schema_mysql.sql) and want to migrate it into ClickHouse.
204204

205205
Steps to do:
206206

@@ -360,7 +360,7 @@ Options description
360360

361361
## MySQL Migration Case 1 - with Tables Lock
362362

363-
Suppose we have MySQL `airline.ontime` table of the [following structure - clickhouse_mysql_examples/airline_ontime_schema_mysql.sql](clickhouse_mysql_examples/airline_ontime_schema_mysql.sql) with multiple rows:
363+
Suppose we have MySQL `airline.ontime` table of the [following structure - clickhouse_mysql_examples/airline_ontime_schema_mysql.sql](../clickhouse_mysql_examples/airline_ontime_schema_mysql.sql) with multiple rows:
364364

365365
```mysql
366366
mysql> SELECT COUNT(*) FROM airline.ontime;
@@ -464,7 +464,7 @@ Allow new data to be inserted into MySQL - i.e. unlock tables.
464464
mysql> UNLOCK TABLES;
465465
```
466466

467-
Insert some data into MySQL. For example, via [clickhouse_mysql_examples/airline_ontime_mysql_data_import.sh](clickhouse_mysql_examples/airline_ontime_mysql_data_import.sh) script
467+
Insert some data into MySQL. For example, via [clickhouse_mysql_examples/airline_ontime_mysql_data_import.sh](../clickhouse_mysql_examples/airline_ontime_mysql_data_import.sh) script
468468

469469
```mysql
470470
mysql> SELECT COUNT(*) FROM airline.ontime;
@@ -609,7 +609,7 @@ Main Steps
609609
* Check how data are loaded into ClickHouse
610610

611611
### airline.ontime Data Set in CSV files
612-
Run [download script](clickhouse_mysql_examples/airline_ontime_data_download.sh)
612+
Run [download script](../clickhouse_mysql_examples/airline_ontime_data_download.sh)
613613

614614
You may want to adjust dirs where to keep `ZIP` and `CSV` file
615615

@@ -637,19 +637,19 @@ for year in `seq 1987 2017`; do
637637
Downloading can take some time.
638638
639639
### airline.ontime MySQL Table
640-
Create MySQL table of the [following structure - clickhouse_mysql_examples/airline_ontime_schema_mysql.sql](clickhouse_mysql_examples/airline_ontime_schema_mysql.sql):
640+
Create MySQL table of the [following structure - clickhouse_mysql_examples/airline_ontime_schema_mysql.sql](../clickhouse_mysql_examples/airline_ontime_schema_mysql.sql):
641641
```bash
642642
mysql -uroot -p < clickhouse_mysql_examples/airline_ontime_schema_mysql.sql
643643
```
644644
645645
### airline.ontime ClickHouse Table
646-
Create ClickHouse table of the [following structure - clickhouse_mysql_examples/airline_ontime_schema_ch.sql](clickhouse_mysql_examples/airline_ontime_schema_ch.sql):
646+
Create ClickHouse table of the [following structure - clickhouse_mysql_examples/airline_ontime_schema_ch.sql](../clickhouse_mysql_examples/airline_ontime_schema_ch.sql):
647647
```bash
648648
clickhouse-client -mn < clickhouse_mysql_examples/airline_ontime_schema_ch.sql
649649
```
650650
651651
### airline.ontime Data Reader
652-
Run [datareader script](clickhouse_mysql_examples/airline_ontime_data_mysql_to_ch_reader.sh)
652+
Run [datareader script](../clickhouse_mysql_examples/airline_ontime_data_mysql_to_ch_reader.sh)
653653
654654
You may want to adjust `PYTHON` path and source and target hosts and usernames
655655
```bash
@@ -670,7 +670,7 @@ PYTHON=/home/user/pypy3.5-5.9-beta-linux_x86_64-portable/bin/pypy
670670
```
671671
672672
### airline.ontime Data Importer
673-
Run [data importer script](clickhouse_mysql_examples/airline_ontime_mysql_data_import.sh)
673+
Run [data importer script](../clickhouse_mysql_examples/airline_ontime_mysql_data_import.sh)
674674
675675
You may want to adjust `CSV` files location, number of imported files and MySQL user/password used for import
676676
```bash

0 commit comments

Comments
 (0)