satellite/rolluparchive: archiveAge use 90d prod default for storj-sim

This commit is contained in:
littleskunk 2021-05-04 17:30:39 +02:00 committed by GitHub
parent dba9321483
commit d06206488f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,7 +24,7 @@ var (
// Config contains configurable values for rollup archiver.
type Config struct {
Interval time.Duration `help:"how frequently rollup archiver should run" releaseDefault:"24h" devDefault:"120s"`
ArchiveAge time.Duration `help:"age at which a rollup is archived" releaseDefault:"2160h" devDefault:"24h"`
ArchiveAge time.Duration `help:"age at which a rollup is archived" default:"2160h"`
BatchSize int `help:"number of records to delete per delete execution. Used only for crdb which is slow without limit." default:"500"`
Enabled bool `help:"whether or not the rollup archive is enabled." default:"true"`
}