Alexey Skobkin
Alexey Skobkin
Strange. https://github.com/boramalper/magnetico/blob/9c2183b91b5b37560607d1ebf98cfd1b542cfc27/pkg/persistence/postgres.go#L29-L33 > FATAL: unrecognized configuration parameter \"schema\" Needs to be checked.
> Could you add some info or links in the readme? I'll try to make those changes if I'd not forget. > Is it possible to create a `docker-compose-postgres.yml` file...
> I mean a specific docker-compose with magneticow + magneticod + postgres all of them preconfigured. The idea is running postgres in Docker too. You can find an example docker-compose...
@sigiltenebrae > I can't figure out where to implement These are command line arguments. > I assume these are not enviroment variables for the docker container, but where do I...
@sigiltenebrae > awesome, working perfectly Glad to hear! > I've set up and installed your Postgres magnetico-web You need to think if you really need it. Magnetico has built-in web...
I'd even say that it'd be good to have ability to define a list of restricted addresses/subnets. For example, Hetzner sent me a warning once because magneticod was trying to...
It depends only on how long are you running the indexer and how many data it got. ``` 80G /var/lib/postgresql/12/main/base ```
>`nf_conntrack: nf_conntrack: table full, dropping packet` You forgot to [tell you firewall to skip processing all magneticod packets](https://github.com/boramalper/magnetico/blob/master/cmd/magneticod/README.md#setup), so it's packet tracking table became overfilled. P.S. You can also check...
I think that torrent import is [pretty easy](https://gitlab.com/skobkin/magnetico-go-migrator/blob/3418b7090429bc9455be99527bf8f8cd798cdda9/magnetico-migrator.go#L107) to implement with current persistence layer. Not sure about export but probably it's easy too even with current methods (like search with...
I think that it would be good to use the [JSON Lines](https://github.com/boramalper/magnetico/blob/master/pkg/README.md) format which is already supported by magneticod with one exception: we should also have `discoveredOn` field there.