I had a couple of my cgminers go offline with the message "stratum connection to pool 0 interrupted", a third however, which was mining on the same pool did not disconnect and kept running fine. I noticed it an hour later...
I have a failover set up on another pool, but for some reason that did not kick in on either machine.
Has anyone had this issue come up and have you found any solutions? I thought having a failover set up would have prevented my miners frm shutting down...
Thanks for any advice anyone can offer.
i ran into that kind of problem when rewriting my own pool engine. It appears miners expects "mining.notify" notifications at various minimum intervals before considering a pool as dead, interrupting connection.
for example, cgminer 3.3.3 source code include the following comment:
/* The protocol specifies that notify messages should be sent
* every minute so if we fail to receive any for 90 seconds we
* assume the connection has been dropped and treat this pool
* as dead */
my rewritten pool now notifies miners at 45 seconds interval (without asking them to discard previous jobs in this case).
If you're running into that "stratum connection to pool xx interrupted" problem, there are chances the chosen pool just waits for new transactions or new blocks before notifying miners.
(i must admit i was first doing the same thing, as i could not see any minimum notification delay in specifications)