-
Notifications
You must be signed in to change notification settings - Fork 453
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[dbnode] Validate indexable metric tags before insert into index queue (
- Loading branch information
1 parent
597c894
commit 5cd41e0
Showing
13 changed files
with
1,079 additions
and
124 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# verify_data_files | ||
|
||
`verify_data_files` is a utility to verify data files in a given directory. | ||
|
||
# Usage | ||
``` | ||
$ git clone git@github.com:m3db/m3.git | ||
$ make verify_data_files | ||
$ ./bin/verify_data_files | ||
Usage: verify_data_files [-fit] [-o value] [-p value] [parameters ...] | ||
-f, --fail-fast Fail fast will bail on first failure | ||
-i, --fix-invalid-ids | ||
Fix invalid IDs will remove entries with IDs that have | ||
non-UTF8 chars | ||
-o, --fix-path-prefix=value | ||
Fix output path file prefix for fixed files | ||
-p, --path-prefix=value | ||
Path prefix [e.g. /var/lib/m3db] | ||
-t, --fix-invalid-tags | ||
Fix invalid tags will remove tags with name/values non-UTF8 | ||
chars | ||
# example usage | ||
# verify_data_files --fail-fast --path-prefix /var/lib/m3db | ||
``` |
Oops, something went wrong.