Skip to content

rename main.py to clickhouse-mysql #47

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 30, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ Let's walk over test example of tool launch command line options.
This code snippet is taken from [datareader script](run_airline_ontime_data_reader.sh) shell file, described in more details in [airline.ontime Test Case](#airlineontime-test-case)

```bash
$PYTHON main.py ${*:1} \
$PYTHON clickhouse-mysql ${*:1} \
--src-resume \
--src-wait \
--nice-pause=1 \
Expand Down Expand Up @@ -180,7 +180,7 @@ sudo apt-get install gcc

Now you can run data reader via `pypy`
```bash
/home/user/pypy3.5-5.9-beta-linux_x86_64-portable/bin/pypy main.py
/home/user/pypy3.5-5.9-beta-linux_x86_64-portable/bin/pypy clickhouse-mysql
```

# Testing
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion run_airline_ontime_data_mysql_to_ch_reader.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ sudo bash -c "echo 1 > /proc/sys/net/ipv4/tcp_tw_reuse"
PYTHON=python3.6
PYTHON=/home/user/pypy3.5-5.9-beta-linux_x86_64-portable/bin/pypy

$PYTHON main.py ${*:1} \
$PYTHON clickhouse-mysql ${*:1} \
--src-resume \
--src-wait \
--nice-pause=1 \
Expand Down
2 changes: 1 addition & 1 deletion run_datatypes.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

sudo bash -c "echo 1 > /proc/sys/net/ipv4/tcp_tw_reuse"

python3 main.py ${*:1} \
python3 clickhouse-mysql ${*:1} \
--src-resume \
--src-wait \
--src-host=127.0.0.1 \
Expand Down