Skip to content

Commit

Permalink
Fix parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
yc1111 committed Mar 1, 2024
1 parent abc4222 commit 49e3ed3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion distributed/exes/verifyClient.cc
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ int taskGenerator(int clientid, int tid, int tlen, int wPer, int rPer, int timeo
op = 0;
} else {
op = 2;
n = rand() % 10;
n = 20;
}
task.keys.emplace_back(key);
task.vals.emplace_back(val);
Expand Down
4 changes: 2 additions & 2 deletions distributed/store/common/backend/versionstore.cc
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ VersionedKVStore::VersionedKVStore(const string& db_path, int timeout) {
ldb.reset(new ledgebase::ledgerdb::LedgerDB(timeout));
#endif
#ifdef AMZQLDB
ledgebase::qldb::BPlusConfig::Init(45, 45);
ledgebase::qldb::BPlusConfig::Init(45, 15);
qldb_.reset(new ledgebase::qldb::QLDB(db_path));
#endif
#ifdef SQLLEDGER
ledgebase::qldb::BPlusConfig::Init(45, 45);
ledgebase::qldb::BPlusConfig::Init(45, 25);
sqlledger_.reset(new ledgebase::sqlledger::SQLLedger(timeout, db_path));
#endif
}
Expand Down

0 comments on commit 49e3ed3

Please sign in to comment.