After taking Nate's (thanks again nwoolls!) advice, following is the bfgminer config file that I ended up using. Here are a few notes;
- Syntax: Watch the syntax carefully it is unforgiving.
- Be sure to add the "load-balance" : true parameter. It is not a default.
- When I started, I had a non-stratum server in my mix and performance slowed to a crawl. I removed the non-stratum server from the pool of servers and performance went back to normal. Need to do some additional homework on this.
In this example, I had 70% of my hashing power going to ghash.io, 20% to Bit Minter and 10% to BTC Guild. I hope this helps anyone else who would need to divide up their hashing power among multiple pools.
--------- Start Example ---------
{
"pools" : [
{
"quota" : "70;stratum+tcp://us1.ghash.io:3333",
"user" : "miner.1",
"pass" : "AnyPassword"
},
{
"quota" : "20;stratum+tcp://mint.bitminter.com:3333",
"user" : "miner_1",
"pass" : "AnyPassword"
},
{
"quota" : "10;stratum+tcp://stratum.btcguild.com:3333",
"user" : "minerX",
"pass" : "AnyPassword"
}
],
"load-balance" : true
}
--------- End Example ---------