Lucas Molas

Results 112 comments of Lucas Molas

I have no experience with IPNS in `go-ipfs` but I think I can figure out the details. Still I'll need support on the earlier stages of implementation (clarifying objectives, providing...

Update 12/10 (@schomatis): I think I can tackle this but still will need support during the review process and resolving some doubts. Left my notes of how to proceed at...

> are you using go-ipfs 0.11.0? We've just added those config flags there. @lidel This is related to https://github.com/ipfs/go-ipfs/issues/7482 but we can ignore it here; I'm setting the options through...

Thanks @TobiaszCudnik !! No duplication at all, I haven't started on this. Once the [direction](https://github.com/ipfs/go-ipfs/issues/8586#issuecomment-992415522) above is confirmed we can move forward with this and I'll help you get that...

@BigLep No. We still have open questions about the direction of this issue in https://github.com/ipfs/go-ipfs/issues/8586#issuecomment-992415522, waiting for @aschmahmann 's input.

As a simple PoC, ``` ipfs init --profile=badgerds du -hc ~/.ipfs # 84K total ipfs add -r --pin=false --silent ~/go/src/github.com/ipfs/go-ipfs ipfs repo stat # NumObjects: 5563 # RepoSize: 140915008 du...

Opened issue dgraph-io/badger#442 to track the minimum value log file size allowed as a possible workaround for the user who wishes to minimize the used disk space after garbage collection.

@leerspace Thanks for pointing me to that PR which gave me more context on the matter. Badger's GC is now linked to IPFS GC through #4578 where [`vlogFileSize`](https://github.com/ipfs/go-ipfs/pull/4578#issuecomment-362253033) is set...

@lgierth Yes, it does GC, it's just that it waits for certain conditions before doing it (like having more than one value log file and having those log files filled...

> I've just had these two new gateways run out of diskspace In that case Badger should already be performing GC when running `ipfs repo gc`. I'm assuming that there...