CompactedMetaFileName returns the object name for the compacted block meta given a block id and tenantid
(blockID uuid.UUID, tenantID, prefix string)
| 364 | |
| 365 | // CompactedMetaFileName returns the object name for the compacted block meta given a block id and tenantid |
| 366 | func CompactedMetaFileName(blockID uuid.UUID, tenantID, prefix string) string { |
| 367 | return path.Join(prefix, tenantID, blockID.String(), CompactedMetaName) |
| 368 | } |
| 369 | |
| 370 | // RootPath returns the root path for a block given a block id and tenantid |
| 371 | func RootPath(blockID uuid.UUID, tenantID, prefix string) string { |