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

Commit bcafe20

Browse files
authored
Merge pull request #97 from datafold/better-screenshot
readme: update screenshot with BigQuery, remove redundant pair
2 parents 19a8ed6 + 6fd0f63 commit bcafe20

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ there are few/no changes, but is able to output each differing row! By pushing
2525
the compute into the databases, it's _much_ faster than querying for and
2626
comparing every row.
2727

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

3030
**†:** The implementation for downloading all rows that `data-diff` and
3131
`count(*)` is compared to is not optimal. It is a single Python multi-threaded
@@ -185,7 +185,7 @@ Options:
185185
- `-v` or `--verbose` - Print extra info
186186
- `-i` or `--interactive` - Confirm queries, implies `--debug`
187187
- `--json` - Print JSONL output for machine readability
188-
- `--min-age` - Considers only rows older than specified.
188+
- `--min-age` - Considers only rows older than specified. Useful for specifying replication lag.
189189
Example: `--min-age=5min` ignores rows from the last 5 minutes.
190190
Valid units: `d, days, h, hours, min, minutes, mon, months, s, seconds, w, weeks, y, years`
191191
- `--max-age` - Considers only rows younger than specified. See `--min-age`.

data_diff/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
@click.option(
4545
"--min-age",
4646
default=None,
47-
help="Considers only rows older than specified. "
47+
help="Considers only rows older than specified. Useful for specifying replication lag."
4848
"Example: --min-age=5min ignores rows from the last 5 minutes. "
4949
f"\nValid units: {UNITS_STR}",
5050
)

0 commit comments

Comments
 (0)