Post
Topic
Board Pools (Altcoins)
Re: [ANN][AUTO-SWITCH] Profit-switch auto-exchange pool: CleverMining.com
by
Kalroth
on 04/03/2014, 12:33:00 UTC
Same for me a lot of Rejected untracked stratum share from pool 0 any ideas please ?

I got a lot of those untracked shares when I was experimenting with a non-load balancing setup today.

You can emulate a fail over setup with load balancing by using zero quotas, like this:
Code:
"pools" : [
{
"name" : "Clevermining [Amsterdam]",
"quota" : "1;stratum+tcp://eu.clevermining.com:3333",
"user" : "1DNBcSEENBwDKrcTyTW61ezWhzsPy5imkn",
"pass" : "x"
},
{
"name" : "Clevermining [Oregon]",
"quota" : "0;stratum+tcp://us.clevermining.com:3333",
"user" : "1DNBcSEENBwDKrcTyTW61ezWhzsPy5imkn",
"pass" : "x"
}
],
"load-balance" : true,

With this setup, the pool with 1 quota will always be used, unless it fails - then it'll fall back to the 0 quota pool(s) in the list.
Remember to specify load-balance in your config (or command line parameters).