added comments
This commit is contained in:
parent
0454c769d5
commit
749bd1d3e8
|
@ -1285,18 +1285,17 @@ int worker_process_main(mako_args_t* args, int worker_id, mako_shmhdr_t* shm, pi
|
|||
fdb_future_destroy(f);
|
||||
|
||||
#else /* >= 610 */
|
||||
if (worker_id == 0) {
|
||||
if (worker_id == 0 || args->num_fdb_clusters <= 1) {
|
||||
// maintains original mako behavior in that
|
||||
// first process does work to one database in the first cluster
|
||||
fdb_create_database(args->cluster_files[0], &process.databases[0]);
|
||||
} else {
|
||||
// added support for multiple databases in multiple clusters
|
||||
// the rest of the databases are divided equally to each cluster
|
||||
for (size_t i = 1; i < args->num_databases; i++) {
|
||||
if (args->num_fdb_clusters <= 1) { // if only default fdb.cluster is used
|
||||
fdb_create_database(args->cluster_files[0], &process.databases[i]);
|
||||
} else {
|
||||
fdb_create_database(args->cluster_files[worker_id % args->num_fdb_clusters], &process.databases[i]);
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
fprintf(debugme, "DEBUG: creating %d worker threads\n", args->num_threads);
|
||||
|
@ -1315,7 +1314,7 @@ int worker_process_main(mako_args_t* args, int worker_id, mako_shmhdr_t* shm, pi
|
|||
|
||||
for (i = 0; i < args->num_threads; i++) {
|
||||
thread_args[i].thread_id = i;
|
||||
if (worker_id == 0) {
|
||||
if (worker_id == 0 || args->num_databases == 1) {
|
||||
thread_args[i].database_index = 0;
|
||||
} else {
|
||||
thread_args[i].database_index = i % (args->num_databases-1) + 1;
|
||||
|
|
Loading…
Reference in New Issue