//create n host permutations to load balance load equally, postgres jdbc driver only issues load against the first host and uses the remaining as fail over
for(inti=0;i<dbEndpoints.size();i++){
dbEndpoints.add(dbEndpoints.get(0));
dbEndpoints.remove(0);
//patched YCSB 0.12.0 JDBC binding via PostgresSQL driver
//create n host permutations to load balance load equally, postgres jdbc driver only issues load against the first host and uses the remaining as fail over
for(inti=0;i<dbEndpoints.size();i++){
dbEndpoints.add(dbEndpoints.get(0));
dbEndpoints.remove(0);
//patched YCSB 0.12.0 JDBC binding via PostgresSQL driver