MetaFileName returns the object name for the block meta given a block id and tenantid
(blockID uuid.UUID, tenantID, prefix string)
| 359 | |
| 360 | // MetaFileName returns the object name for the block meta given a block id and tenantid |
| 361 | func MetaFileName(blockID uuid.UUID, tenantID, prefix string) string { |
| 362 | return path.Join(prefix, tenantID, blockID.String(), MetaName) |
| 363 | } |
| 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 { |