wallet-core/packages/taler-wallet-cli/src/bench1.ts

189 lines
5.0 KiB
TypeScript
Raw Normal View History

2021-10-20 13:06:31 +02:00
/*
This file is part of GNU Taler
(C) 2021 Taler Systems S.A.
GNU Taler is free software; you can redistribute it and/or modify it under the
terms of the GNU General Public License as published by the Free Software
Foundation; either version 3, or (at your option) any later version.
GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with
GNU Taler; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
*/
/**
* Imports.
*/
2021-10-20 13:27:47 +02:00
import {
buildCodecForObject,
codecForNumber,
codecForString,
codecOptional,
2022-01-11 21:00:12 +01:00
j2s,
2021-11-05 16:57:32 +01:00
Logger,
2021-10-20 13:27:47 +02:00
} from "@gnu-taler/taler-util";
2021-10-20 13:06:31 +02:00
import {
2022-01-11 21:00:12 +01:00
getDefaultNodeWallet2,
2021-10-20 13:06:31 +02:00
NodeHttpLib,
WalletApiOperation,
Wallet,
2022-01-11 21:00:12 +01:00
AccessStats,
2021-10-20 13:06:31 +02:00
} from "@gnu-taler/taler-wallet-core";
/**
* Entry point for the benchmark.
*
* The benchmark runs against an existing Taler deployment and does not
* set up its own services.
*/
export async function runBench1(configJson: any): Promise<void> {
2021-11-05 16:57:32 +01:00
const logger = new Logger("Bench1");
2021-10-20 13:06:31 +02:00
// Validate the configuration file for this benchmark.
const b1conf = codecForBench1Config().decode(configJson);
const myHttpLib = new NodeHttpLib();
2021-10-27 15:56:28 +02:00
myHttpLib.setThrottling(false);
2021-10-20 13:06:31 +02:00
2021-10-20 13:27:47 +02:00
const numIter = b1conf.iterations ?? 1;
2021-10-26 10:50:01 +02:00
const numDeposits = b1conf.deposits ?? 5;
const restartWallet = b1conf.restartAfter ?? 20;
2021-10-26 10:50:01 +02:00
const withdrawOnly = b1conf.withdrawOnly ?? false;
2021-10-26 10:50:01 +02:00
const withdrawAmount = (numDeposits + 1) * 10;
2021-10-20 13:06:31 +02:00
logger.info(
`Starting Benchmark iterations=${numIter} deposits=${numDeposits}`,
);
2021-10-20 13:06:31 +02:00
const trustExchange = !!process.env["TALER_WALLET_INSECURE_TRUST_EXCHANGE"];
if (trustExchange) {
logger.info("trusting exchange (not validating signatures)");
} else {
logger.info("not trusting exchange (validating signatures)");
}
const batchWithdrawal = !!process.env["TALER_WALLET_BATCH_WITHDRAWAL"];
let wallet = {} as Wallet;
2022-01-11 21:00:12 +01:00
let getDbStats: () => AccessStats;
2021-10-20 13:27:47 +02:00
for (let i = 0; i < numIter; i++) {
// Create a new wallet in each iteration
// otherwise the TPS go down
// my assumption is that the in-memory db file gets too large
if (i % restartWallet == 0) {
2021-11-14 12:57:21 +01:00
if (Object.keys(wallet).length !== 0) {
wallet.stop();
2022-01-11 21:00:12 +01:00
console.log("wallet DB stats", j2s(getDbStats!()));
2021-11-14 12:57:21 +01:00
}
2022-01-11 21:00:12 +01:00
const res = await getDefaultNodeWallet2({
// No persistent DB storage.
persistentStoragePath: undefined,
httpLib: myHttpLib,
});
2022-01-11 21:00:12 +01:00
wallet = res.wallet;
getDbStats = res.getDbStats;
if (trustExchange) {
wallet.setInsecureTrustExchange();
}
wallet.setBatchWithdrawal(batchWithdrawal);
2021-11-14 12:57:21 +01:00
await wallet.client.call(WalletApiOperation.InitWallet, {});
}
2021-11-07 11:47:50 +01:00
logger.trace(`Starting withdrawal amount=${withdrawAmount}`);
2021-11-10 15:14:55 +01:00
let start = Date.now();
2021-11-05 16:57:32 +01:00
2021-10-20 13:27:47 +02:00
await wallet.client.call(WalletApiOperation.WithdrawFakebank, {
2021-10-26 11:04:02 +02:00
amount: b1conf.currency + ":" + withdrawAmount,
2021-10-20 13:27:47 +02:00
bank: b1conf.bank,
exchange: b1conf.exchange,
});
2021-10-20 13:06:31 +02:00
2021-10-20 13:27:47 +02:00
await wallet.runTaskLoop({
stopWhenDone: true,
});
2021-10-20 13:06:31 +02:00
logger.info(
`Finished withdrawal amount=${withdrawAmount} time=${Date.now() - start}`,
);
2021-10-20 13:27:47 +02:00
if (!withdrawOnly) {
for (let i = 0; i < numDeposits; i++) {
logger.trace(`Starting deposit amount=10`);
start = Date.now();
2021-11-07 11:47:50 +01:00
await wallet.client.call(WalletApiOperation.CreateDepositGroup, {
amount: b1conf.currency + ":10",
depositPaytoUri: b1conf.payto,
});
2021-10-20 13:27:47 +02:00
await wallet.runTaskLoop({
stopWhenDone: true,
});
2021-11-07 11:47:50 +01:00
logger.info(`Finished deposit amount=10 time=${Date.now() - start}`);
}
2021-10-26 10:50:01 +02:00
}
2021-11-03 16:20:55 +01:00
}
wallet.stop();
2022-01-11 21:00:12 +01:00
console.log("wallet DB stats", j2s(getDbStats!()));
2021-10-20 13:06:31 +02:00
}
/**
* Format of the configuration file passed to the benchmark
*/
interface Bench1Config {
/**
* Base URL of the bank.
*/
bank: string;
2021-10-26 10:50:01 +02:00
/**
* Payto url for deposits.
*/
payto: string;
2021-10-20 13:06:31 +02:00
/**
* Base URL of the exchange.
*/
exchange: string;
2021-10-20 13:27:47 +02:00
/**
* How many withdraw/deposit iterations should be made?
* Defaults to 1.
*/
iterations?: number;
2021-10-26 10:50:01 +02:00
currency: string;
deposits?: number;
/**
* How any iterations run until the wallet db gets purged
* Defaults to 20.
*/
restartAfter?: number;
withdrawOnly?: boolean;
2021-10-20 13:06:31 +02:00
}
/**
* Schema validation codec for Bench1Config.
*/
const codecForBench1Config = () =>
buildCodecForObject<Bench1Config>()
.property("bank", codecForString())
2021-10-26 10:50:01 +02:00
.property("payto", codecForString())
2021-10-20 13:06:31 +02:00
.property("exchange", codecForString())
2021-10-20 13:27:47 +02:00
.property("iterations", codecOptional(codecForNumber()))
2021-10-26 10:50:01 +02:00
.property("deposits", codecOptional(codecForNumber()))
.property("currency", codecForString())
.property("restartAfter", codecOptional(codecForNumber()))
.property("withdrawOnly", codecOptional(codecForBoolean())
2021-10-20 13:06:31 +02:00
.build("Bench1Config");