Skip to content
This repository was archived by the owner on May 17, 2024. It is now read-only.

readme: update screenshot with BigQuery, remove redundant pair #97

Merged
merged 3 commits into from
Jun 23, 2022
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 @@ -25,7 +25,7 @@ there are few/no changes, but is able to output each differing row! By pushing
the compute into the databases, it's _much_ faster than querying for and
comparing every row.

![Performance for 100M rows](https://user-images.githubusercontent.com/97400/174860361-35158d2b-0cad-4089-be66-8bf467058387.png)
![Performance for 100M rows](https://user-images.githubusercontent.com/97400/175182987-a3900d4e-c097-4732-a4e9-19a40fac8cdc.png)

**†:** The implementation for downloading all rows that `data-diff` and
`count(*)` is compared to is not optimal. It is a single Python multi-threaded
Expand Down Expand Up @@ -185,7 +185,7 @@ Options:
- `-v` or `--verbose` - Print extra info
- `-i` or `--interactive` - Confirm queries, implies `--debug`
- `--json` - Print JSONL output for machine readability
- `--min-age` - Considers only rows older than specified.
- `--min-age` - Considers only rows older than specified. Useful for specifying replication lag.
Example: `--min-age=5min` ignores rows from the last 5 minutes.
Valid units: `d, days, h, hours, min, minutes, mon, months, s, seconds, w, weeks, y, years`
- `--max-age` - Considers only rows younger than specified. See `--min-age`.
Expand Down
2 changes: 1 addition & 1 deletion data_diff/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
@click.option(
"--min-age",
default=None,
help="Considers only rows older than specified. "
help="Considers only rows older than specified. Useful for specifying replication lag."
"Example: --min-age=5min ignores rows from the last 5 minutes. "
f"\nValid units: {UNITS_STR}",
)
Expand Down