Skip to content
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

feat: Port influxd inspect verify-tsm #21615

Merged
merged 10 commits into from
Jun 9, 2021
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ This release adds an embedded SQLite database for storing metadata required by t
1. [21635](https://github.com/influxdata/influxdb/pull/21635): Port `influxd inspect verify-seriesfile` to 2.x
1. [21621](https://github.com/influxdata/influxdb/pull/21621): Add `storage-wal-max-concurrent-writes` config option to `influxd` to enable tuning memory pressure under heavy write load.
1. [21621](https://github.com/influxdata/influxdb/pull/21621): Add `storage-wal-max-write-delay` config option to `influxd` to prevent deadlocks when the WAL is overloaded with concurrent writes.
1. [21615](https://github.com/influxdata/influxdb/pull/21615): Ported the `influxd inspect verify-tsm` command from 1.x.

### Bug Fixes

Expand Down
232 changes: 0 additions & 232 deletions cmd/influx_inspect/verify/tsm/verify.go

This file was deleted.

3 changes: 0 additions & 3 deletions cmd/influx_inspect/verify/tsm/verify_test.go

This file was deleted.

1 change: 1 addition & 0 deletions cmd/influxd/inspect/inspect.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ func NewCommand(v *viper.Viper) (*cobra.Command, error) {
}
base.AddCommand(exportLp)
base.AddCommand(NewExportIndexCommand())
base.AddCommand(NewTSMVerifyCommand())

base.AddCommand(NewVerifySeriesfileCommand())

Expand Down
Loading