compactRootDir returns the root directory to be used to download and compact blocks
()
| 1259 | |
| 1260 | // compactRootDir returns the root directory to be used to download and compact blocks |
| 1261 | func (c *Compactor) compactRootDir() string { |
| 1262 | return filepath.Join(c.compactorCfg.DataDir, "compact") |
| 1263 | } |
| 1264 | |
| 1265 | // This function returns tenants with meta sync directories found on local disk. On error, it returns nil map. |
| 1266 | func (c *Compactor) listTenantsWithMetaSyncDirectories() map[string]struct{} { |
no test coverage detected