I actually would not run LNDG on a very active routing node. It's resource intensive. You really want to minimize disk reads/writes as much as possible and you can do this by sending events from LND to an external DB or application and doing all your analytics there.
Login to reply
Replies (2)
Yeah that’s a great point- Especially on Postgres backend it can be a cpu hog with some of the rpc calls it makes. I have modified the code slightly to minimize the impact somewhat. Payments import are the heaviest load.
Good idea 👍