Re: blob garbage collector does not delete blobs

2020-04-14 Thread Amit Jain
Hi, To delete blobs the segment compaction has to be executed before hand to remove older revisions referring to the blobs in the datastore. You can take a look at the IT for the blob garbage collection [1]. I am not so sure about the creation of new segement tar file should be directly related to

blob garbage collector does not delete blobs

2020-04-14 Thread Marco Piovesana
Hi all, I'm running some tests with the MarkSweepGarbageCollector to run a garbage collection on a local file store. I'm running it with the maxLastModifiedInterval set to 0, so I expected the garbage collector to remove the binary right after I delete the file. What happens, however, is that the b

Re: Custom FileDataStore

2020-04-14 Thread jorgeeflorez .
Hi Jörg, thank you for your reply. Indeed, LVM sounds like an interesting alternative. I will read more about it. Jorge El mar., 14 abr. 2020 a las 8:29, Jörg Hoh () escribió: > HI Jorge, > > If the only concern is that you might run out of disk space, I would > propose that you use a volume m

Re: Custom FileDataStore

2020-04-14 Thread Jörg Hoh
HI Jorge, If the only concern is that you might run out of disk space, I would propose that you use a volume manager on an OS level. It allows you to merge multiple physical devices into a single logical volume; for example the LVM of Linux is capable to do that and increase the volumes also onlin

Custom FileDataStore

2020-04-14 Thread jorgeeflorez .
Hi all, I have been tasked to store repository files in file system, but not like it is handled by OakFileDataStore which uses a single directory. Instead, the customer wants to define one or more directories that can be on different hard disks, so that "in theory" disk space will never be a proble