@aztec/prover-client 0.0.1-commit.f1df4d2 → 0.0.1-commit.f224bb98b
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dest/light/lightweight_checkpoint_builder.d.ts +10 -5
- package/dest/light/lightweight_checkpoint_builder.d.ts.map +1 -1
- package/dest/light/lightweight_checkpoint_builder.js +37 -18
- package/dest/mocks/test_context.js +6 -3
- package/dest/orchestrator/block-building-helpers.d.ts +4 -4
- package/dest/orchestrator/block-building-helpers.d.ts.map +1 -1
- package/dest/orchestrator/block-building-helpers.js +2 -2
- package/dest/orchestrator/block-proving-state.d.ts +4 -1
- package/dest/orchestrator/block-proving-state.d.ts.map +1 -1
- package/dest/orchestrator/block-proving-state.js +7 -0
- package/dest/orchestrator/checkpoint-proving-state.d.ts +3 -3
- package/dest/orchestrator/checkpoint-proving-state.d.ts.map +1 -1
- package/dest/orchestrator/checkpoint-proving-state.js +3 -3
- package/dest/orchestrator/epoch-proving-state.d.ts +2 -2
- package/dest/orchestrator/epoch-proving-state.d.ts.map +1 -1
- package/dest/orchestrator/epoch-proving-state.js +5 -3
- package/dest/orchestrator/orchestrator.d.ts +5 -3
- package/dest/orchestrator/orchestrator.d.ts.map +1 -1
- package/dest/orchestrator/orchestrator.js +61 -57
- package/dest/prover-client/prover-client.d.ts +2 -2
- package/dest/prover-client/prover-client.d.ts.map +1 -1
- package/dest/prover-client/prover-client.js +1 -1
- package/dest/proving_broker/broker_prover_facade.d.ts +1 -1
- package/dest/proving_broker/broker_prover_facade.d.ts.map +1 -1
- package/dest/proving_broker/broker_prover_facade.js +3 -3
- package/dest/proving_broker/config.d.ts +2 -2
- package/dest/proving_broker/config.d.ts.map +1 -1
- package/dest/proving_broker/config.js +1 -1
- package/dest/proving_broker/proving_broker.d.ts +1 -1
- package/dest/proving_broker/proving_broker.d.ts.map +1 -1
- package/dest/proving_broker/proving_broker.js +7 -3
- package/dest/proving_broker/proving_broker_instrumentation.d.ts +3 -1
- package/dest/proving_broker/proving_broker_instrumentation.d.ts.map +1 -1
- package/dest/proving_broker/proving_broker_instrumentation.js +7 -0
- package/dest/test/mock_prover.d.ts +1 -1
- package/package.json +17 -18
- package/src/light/lightweight_checkpoint_builder.ts +35 -19
- package/src/mocks/test_context.ts +3 -3
- package/src/orchestrator/block-building-helpers.ts +2 -2
- package/src/orchestrator/block-proving-state.ts +9 -0
- package/src/orchestrator/checkpoint-proving-state.ts +4 -4
- package/src/orchestrator/epoch-proving-state.ts +6 -4
- package/src/orchestrator/orchestrator.ts +69 -63
- package/src/prover-client/prover-client.ts +2 -1
- package/src/proving_broker/broker_prover_facade.ts +9 -4
- package/src/proving_broker/config.ts +1 -1
- package/src/proving_broker/proving_broker.ts +7 -2
- package/src/proving_broker/proving_broker_instrumentation.ts +9 -0
|
@@ -12,6 +12,7 @@ import { Fr } from '@aztec/foundation/curves/bn254';
|
|
|
12
12
|
import { AbortError } from '@aztec/foundation/error';
|
|
13
13
|
import { type Logger, type LoggerBindings, createLogger } from '@aztec/foundation/log';
|
|
14
14
|
import { promiseWithResolvers } from '@aztec/foundation/promise';
|
|
15
|
+
import { SerialQueue } from '@aztec/foundation/queue';
|
|
15
16
|
import { assertLength } from '@aztec/foundation/serialize';
|
|
16
17
|
import { pushTestData } from '@aztec/foundation/testing';
|
|
17
18
|
import { elapsed } from '@aztec/foundation/timer';
|
|
@@ -71,11 +72,6 @@ import { EpochProvingState, type ProvingResult, type TreeSnapshots } from './epo
|
|
|
71
72
|
import { ProvingOrchestratorMetrics } from './orchestrator_metrics.js';
|
|
72
73
|
import { TxProvingState } from './tx-proving-state.js';
|
|
73
74
|
|
|
74
|
-
type WorldStateFork = {
|
|
75
|
-
fork: MerkleTreeWriteOperations;
|
|
76
|
-
cleanupPromise: Promise<void> | undefined;
|
|
77
|
-
};
|
|
78
|
-
|
|
79
75
|
/**
|
|
80
76
|
* Implements an event driven proving scheduler to build the recursive proof tree. The idea being:
|
|
81
77
|
* 1. Transactions are provided to the scheduler post simulation.
|
|
@@ -97,19 +93,22 @@ export class ProvingOrchestrator implements EpochProver {
|
|
|
97
93
|
private provingPromise: Promise<ProvingResult> | undefined = undefined;
|
|
98
94
|
private metrics: ProvingOrchestratorMetrics;
|
|
99
95
|
// eslint-disable-next-line aztec-custom/no-non-primitive-in-collections
|
|
100
|
-
private dbs: Map<BlockNumber,
|
|
96
|
+
private dbs: Map<BlockNumber, MerkleTreeWriteOperations> = new Map();
|
|
101
97
|
private logger: Logger;
|
|
98
|
+
private deferredJobQueue = new SerialQueue();
|
|
102
99
|
|
|
103
100
|
constructor(
|
|
104
101
|
private dbProvider: ReadonlyWorldStateAccess & ForkMerkleTreeOperations,
|
|
105
102
|
private prover: ServerCircuitProver,
|
|
106
103
|
private readonly proverId: EthAddress,
|
|
107
104
|
private readonly cancelJobsOnStop: boolean = false,
|
|
105
|
+
private readonly enqueueConcurrency: number,
|
|
108
106
|
telemetryClient: TelemetryClient = getTelemetryClient(),
|
|
109
107
|
bindings?: LoggerBindings,
|
|
110
108
|
) {
|
|
111
109
|
this.logger = createLogger('prover-client:orchestrator', bindings);
|
|
112
110
|
this.metrics = new ProvingOrchestratorMetrics(telemetryClient, 'ProvingOrchestrator');
|
|
111
|
+
this.deferredJobQueue.start(this.enqueueConcurrency);
|
|
113
112
|
}
|
|
114
113
|
|
|
115
114
|
get tracer(): Tracer {
|
|
@@ -124,9 +123,11 @@ export class ProvingOrchestrator implements EpochProver {
|
|
|
124
123
|
return this.dbs.size;
|
|
125
124
|
}
|
|
126
125
|
|
|
127
|
-
public stop(): Promise<void> {
|
|
126
|
+
public async stop(): Promise<void> {
|
|
127
|
+
// Grab the old queue before cancel() replaces it, so we can await its draining.
|
|
128
|
+
const oldQueue = this.deferredJobQueue;
|
|
128
129
|
this.cancel();
|
|
129
|
-
|
|
130
|
+
await oldQueue.cancel();
|
|
130
131
|
}
|
|
131
132
|
|
|
132
133
|
public startNewEpoch(
|
|
@@ -182,7 +183,7 @@ export class ProvingOrchestrator implements EpochProver {
|
|
|
182
183
|
const db = await this.dbProvider.fork(lastBlockNumber);
|
|
183
184
|
|
|
184
185
|
const firstBlockNumber = BlockNumber(lastBlockNumber + 1);
|
|
185
|
-
this.dbs.set(firstBlockNumber,
|
|
186
|
+
this.dbs.set(firstBlockNumber, db);
|
|
186
187
|
|
|
187
188
|
// Get archive sibling path before any block in this checkpoint lands.
|
|
188
189
|
const lastArchiveSiblingPath = await getLastSiblingPath(MerkleTreeId.ARCHIVE, db);
|
|
@@ -240,9 +241,9 @@ export class ProvingOrchestrator implements EpochProver {
|
|
|
240
241
|
if (!this.dbs.has(blockNumber)) {
|
|
241
242
|
// Fork world state at the end of the immediately previous block
|
|
242
243
|
const db = await this.dbProvider.fork(BlockNumber(blockNumber - 1));
|
|
243
|
-
this.dbs.set(blockNumber,
|
|
244
|
+
this.dbs.set(blockNumber, db);
|
|
244
245
|
}
|
|
245
|
-
const db = this.
|
|
246
|
+
const db = this.getDbForBlock(blockNumber);
|
|
246
247
|
|
|
247
248
|
// Get archive snapshot and sibling path before any txs in this block lands.
|
|
248
249
|
const lastArchiveTreeSnapshot = await getTreeSnapshot(MerkleTreeId.ARCHIVE, db);
|
|
@@ -317,7 +318,7 @@ export class ProvingOrchestrator implements EpochProver {
|
|
|
317
318
|
|
|
318
319
|
this.logger.info(`Adding ${txs.length} transactions to block ${blockNumber}`);
|
|
319
320
|
|
|
320
|
-
const db = this.
|
|
321
|
+
const db = this.getDbForBlock(blockNumber);
|
|
321
322
|
const lastArchive = provingState.lastArchiveTreeSnapshot;
|
|
322
323
|
const newL1ToL2MessageTreeSnapshot = provingState.newL1ToL2MessageTreeSnapshot;
|
|
323
324
|
const spongeBlobState = provingState.getStartSpongeBlob().clone();
|
|
@@ -445,14 +446,20 @@ export class ProvingOrchestrator implements EpochProver {
|
|
|
445
446
|
throw new Error('Block header mismatch');
|
|
446
447
|
}
|
|
447
448
|
|
|
448
|
-
// Get db for this block
|
|
449
|
-
const db = this.
|
|
449
|
+
// Get db for this block and remove from map — no other code should use it after this point.
|
|
450
|
+
const db = this.getDbForBlock(provingState.blockNumber);
|
|
451
|
+
this.dbs.delete(provingState.blockNumber);
|
|
450
452
|
|
|
451
|
-
// Update the archive tree,
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
453
|
+
// Update the archive tree, capture the snapshot, and close the fork deterministically.
|
|
454
|
+
try {
|
|
455
|
+
this.logger.verbose(
|
|
456
|
+
`Updating archive tree with block ${provingState.blockNumber} header ${(await header.hash()).toString()}`,
|
|
457
|
+
);
|
|
458
|
+
await db.updateArchive(header);
|
|
459
|
+
provingState.setBuiltArchive(await getTreeSnapshot(MerkleTreeId.ARCHIVE, db));
|
|
460
|
+
} finally {
|
|
461
|
+
await db.close();
|
|
462
|
+
}
|
|
456
463
|
|
|
457
464
|
await this.verifyBuiltBlockAgainstSyncedState(provingState);
|
|
458
465
|
|
|
@@ -472,6 +479,13 @@ export class ProvingOrchestrator implements EpochProver {
|
|
|
472
479
|
this.logger.debug('Block root rollup proof not built yet, skipping header check.');
|
|
473
480
|
return;
|
|
474
481
|
}
|
|
482
|
+
|
|
483
|
+
const newArchive = provingState.getBuiltArchive();
|
|
484
|
+
if (!newArchive) {
|
|
485
|
+
this.logger.debug('Archive snapshot not yet captured, skipping header check.');
|
|
486
|
+
return;
|
|
487
|
+
}
|
|
488
|
+
|
|
475
489
|
const header = await buildHeaderFromCircuitOutputs(output);
|
|
476
490
|
|
|
477
491
|
if (!(await header.hash()).equals(await builtBlockHeader.hash())) {
|
|
@@ -480,11 +494,7 @@ export class ProvingOrchestrator implements EpochProver {
|
|
|
480
494
|
return;
|
|
481
495
|
}
|
|
482
496
|
|
|
483
|
-
// Get db for this block
|
|
484
497
|
const blockNumber = provingState.blockNumber;
|
|
485
|
-
const db = this.dbs.get(blockNumber)!.fork;
|
|
486
|
-
|
|
487
|
-
const newArchive = await getTreeSnapshot(MerkleTreeId.ARCHIVE, db);
|
|
488
498
|
const syncedArchive = await getTreeSnapshot(MerkleTreeId.ARCHIVE, this.dbProvider.getSnapshot(blockNumber));
|
|
489
499
|
if (!syncedArchive.equals(newArchive)) {
|
|
490
500
|
this.logger.error(
|
|
@@ -502,12 +512,6 @@ export class ProvingOrchestrator implements EpochProver {
|
|
|
502
512
|
provingState.reject(`New archive mismatch.`);
|
|
503
513
|
return;
|
|
504
514
|
}
|
|
505
|
-
|
|
506
|
-
// TODO(palla/prover): This closes the fork only on the happy path. If this epoch orchestrator
|
|
507
|
-
// is aborted and never reaches this point, it will leak the fork. We need to add a global cleanup,
|
|
508
|
-
// but have to make sure it only runs once all operations are completed, otherwise some function here
|
|
509
|
-
// will attempt to access the fork after it was closed.
|
|
510
|
-
void this.cleanupDBFork(blockNumber);
|
|
511
515
|
}
|
|
512
516
|
|
|
513
517
|
/**
|
|
@@ -516,6 +520,11 @@ export class ProvingOrchestrator implements EpochProver {
|
|
|
516
520
|
* If cancelJobsOnStop is false (default), jobs remain in the broker queue and can be reused on restart/reorg.
|
|
517
521
|
*/
|
|
518
522
|
public cancel() {
|
|
523
|
+
void this.deferredJobQueue.cancel();
|
|
524
|
+
// Recreate the queue so it can accept jobs for subsequent epochs.
|
|
525
|
+
this.deferredJobQueue = new SerialQueue();
|
|
526
|
+
this.deferredJobQueue.start(this.enqueueConcurrency);
|
|
527
|
+
|
|
519
528
|
if (this.cancelJobsOnStop) {
|
|
520
529
|
for (const controller of this.pendingProvingJobs) {
|
|
521
530
|
controller.abort();
|
|
@@ -523,6 +532,19 @@ export class ProvingOrchestrator implements EpochProver {
|
|
|
523
532
|
}
|
|
524
533
|
|
|
525
534
|
this.provingState?.cancel();
|
|
535
|
+
|
|
536
|
+
for (const [blockNumber, db] of this.dbs.entries()) {
|
|
537
|
+
void db.close().catch(err => this.logger.error(`Error closing db for block ${blockNumber}`, err));
|
|
538
|
+
}
|
|
539
|
+
this.dbs.clear();
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
private getDbForBlock(blockNumber: BlockNumber): MerkleTreeWriteOperations {
|
|
543
|
+
const db = this.dbs.get(blockNumber);
|
|
544
|
+
if (!db) {
|
|
545
|
+
throw new Error(`World state fork for block ${blockNumber} not found.`);
|
|
546
|
+
}
|
|
547
|
+
return db;
|
|
526
548
|
}
|
|
527
549
|
|
|
528
550
|
/**
|
|
@@ -554,24 +576,6 @@ export class ProvingOrchestrator implements EpochProver {
|
|
|
554
576
|
return epochProofResult;
|
|
555
577
|
}
|
|
556
578
|
|
|
557
|
-
private async cleanupDBFork(blockNumber: BlockNumber): Promise<void> {
|
|
558
|
-
this.logger.debug(`Cleaning up world state fork for ${blockNumber}`);
|
|
559
|
-
const fork = this.dbs.get(blockNumber);
|
|
560
|
-
if (!fork) {
|
|
561
|
-
return;
|
|
562
|
-
}
|
|
563
|
-
|
|
564
|
-
try {
|
|
565
|
-
if (!fork.cleanupPromise) {
|
|
566
|
-
fork.cleanupPromise = fork.fork.close();
|
|
567
|
-
}
|
|
568
|
-
await fork.cleanupPromise;
|
|
569
|
-
this.dbs.delete(blockNumber);
|
|
570
|
-
} catch (err) {
|
|
571
|
-
this.logger.error(`Error closing db for block ${blockNumber}`, err);
|
|
572
|
-
}
|
|
573
|
-
}
|
|
574
|
-
|
|
575
579
|
/**
|
|
576
580
|
* Enqueue a job to be scheduled
|
|
577
581
|
* @param provingState - The proving state object being operated on
|
|
@@ -630,8 +634,9 @@ export class ProvingOrchestrator implements EpochProver {
|
|
|
630
634
|
}
|
|
631
635
|
};
|
|
632
636
|
|
|
633
|
-
//
|
|
634
|
-
|
|
637
|
+
// Enqueue onto the serial queue with limited workers to avoid starving the event loop.
|
|
638
|
+
// Workers yield between jobs via await, allowing I/O callbacks to process.
|
|
639
|
+
void this.deferredJobQueue.put(() => safeJob());
|
|
635
640
|
}
|
|
636
641
|
|
|
637
642
|
private async updateL1ToL2MessageTree(l1ToL2Messages: Fr[], db: MerkleTreeWriteOperations) {
|
|
@@ -894,17 +899,15 @@ export class ProvingOrchestrator implements EpochProver {
|
|
|
894
899
|
const leafLocation = provingState.setBlockRootRollupProof(result);
|
|
895
900
|
const checkpointProvingState = provingState.parentCheckpoint;
|
|
896
901
|
|
|
897
|
-
//
|
|
902
|
+
// Verification is called from both here and setBlockCompleted. Whichever runs last
|
|
903
|
+
// will be the first to see all three pieces (header, proof output, archive) and run the checks.
|
|
898
904
|
await this.verifyBuiltBlockAgainstSyncedState(provingState);
|
|
899
905
|
|
|
900
906
|
if (checkpointProvingState.totalNumBlocks === 1) {
|
|
901
|
-
this.checkAndEnqueueCheckpointRootRollup(checkpointProvingState);
|
|
907
|
+
await this.checkAndEnqueueCheckpointRootRollup(checkpointProvingState);
|
|
902
908
|
} else {
|
|
903
|
-
this.checkAndEnqueueNextBlockMergeRollup(checkpointProvingState, leafLocation);
|
|
909
|
+
await this.checkAndEnqueueNextBlockMergeRollup(checkpointProvingState, leafLocation);
|
|
904
910
|
}
|
|
905
|
-
|
|
906
|
-
// We are finished with the block at this point, ensure the fork is cleaned up
|
|
907
|
-
void this.cleanupDBFork(provingState.blockNumber);
|
|
908
911
|
},
|
|
909
912
|
);
|
|
910
913
|
}
|
|
@@ -1009,14 +1012,14 @@ export class ProvingOrchestrator implements EpochProver {
|
|
|
1009
1012
|
},
|
|
1010
1013
|
signal => this.prover.getBlockMergeRollupProof(inputs, signal, provingState.epochNumber),
|
|
1011
1014
|
),
|
|
1012
|
-
result => {
|
|
1015
|
+
async result => {
|
|
1013
1016
|
provingState.setBlockMergeRollupProof(location, result);
|
|
1014
|
-
this.checkAndEnqueueNextBlockMergeRollup(provingState, location);
|
|
1017
|
+
await this.checkAndEnqueueNextBlockMergeRollup(provingState, location);
|
|
1015
1018
|
},
|
|
1016
1019
|
);
|
|
1017
1020
|
}
|
|
1018
1021
|
|
|
1019
|
-
private enqueueCheckpointRootRollup(provingState: CheckpointProvingState) {
|
|
1022
|
+
private async enqueueCheckpointRootRollup(provingState: CheckpointProvingState) {
|
|
1020
1023
|
if (!provingState.verifyState()) {
|
|
1021
1024
|
this.logger.debug('Not running checkpoint root rollup. State no longer valid.');
|
|
1022
1025
|
return;
|
|
@@ -1031,7 +1034,7 @@ export class ProvingOrchestrator implements EpochProver {
|
|
|
1031
1034
|
|
|
1032
1035
|
this.logger.debug(`Enqueuing ${rollupType} for checkpoint ${provingState.index}.`);
|
|
1033
1036
|
|
|
1034
|
-
const inputs = provingState.getCheckpointRootRollupInputs();
|
|
1037
|
+
const inputs = await provingState.getCheckpointRootRollupInputs();
|
|
1035
1038
|
|
|
1036
1039
|
this.deferredProving(
|
|
1037
1040
|
provingState,
|
|
@@ -1191,25 +1194,28 @@ export class ProvingOrchestrator implements EpochProver {
|
|
|
1191
1194
|
this.enqueueBlockRootRollup(provingState);
|
|
1192
1195
|
}
|
|
1193
1196
|
|
|
1194
|
-
private checkAndEnqueueNextBlockMergeRollup(
|
|
1197
|
+
private async checkAndEnqueueNextBlockMergeRollup(
|
|
1198
|
+
provingState: CheckpointProvingState,
|
|
1199
|
+
currentLocation: TreeNodeLocation,
|
|
1200
|
+
) {
|
|
1195
1201
|
if (!provingState.isReadyForBlockMerge(currentLocation)) {
|
|
1196
1202
|
return;
|
|
1197
1203
|
}
|
|
1198
1204
|
|
|
1199
1205
|
const parentLocation = provingState.getParentLocation(currentLocation);
|
|
1200
1206
|
if (parentLocation.level === 0) {
|
|
1201
|
-
this.checkAndEnqueueCheckpointRootRollup(provingState);
|
|
1207
|
+
await this.checkAndEnqueueCheckpointRootRollup(provingState);
|
|
1202
1208
|
} else {
|
|
1203
1209
|
this.enqueueBlockMergeRollup(provingState, parentLocation);
|
|
1204
1210
|
}
|
|
1205
1211
|
}
|
|
1206
1212
|
|
|
1207
|
-
private checkAndEnqueueCheckpointRootRollup(provingState: CheckpointProvingState) {
|
|
1213
|
+
private async checkAndEnqueueCheckpointRootRollup(provingState: CheckpointProvingState) {
|
|
1208
1214
|
if (!provingState.isReadyForCheckpointRoot()) {
|
|
1209
1215
|
return;
|
|
1210
1216
|
}
|
|
1211
1217
|
|
|
1212
|
-
this.enqueueCheckpointRootRollup(provingState);
|
|
1218
|
+
await this.enqueueCheckpointRootRollup(provingState);
|
|
1213
1219
|
}
|
|
1214
1220
|
|
|
1215
1221
|
private checkAndEnqueueNextCheckpointMergeRollup(provingState: EpochProvingState, currentLocation: TreeNodeLocation) {
|
|
@@ -54,6 +54,7 @@ export class ProverClient implements EpochProverManager {
|
|
|
54
54
|
facade,
|
|
55
55
|
this.config.proverId,
|
|
56
56
|
this.config.cancelJobsOnStop,
|
|
57
|
+
this.config.enqueueConcurrency,
|
|
57
58
|
this.telemetry,
|
|
58
59
|
bindings,
|
|
59
60
|
);
|
|
@@ -156,7 +157,7 @@ export class ProverClient implements EpochProverManager {
|
|
|
156
157
|
}
|
|
157
158
|
|
|
158
159
|
export function buildServerCircuitProver(
|
|
159
|
-
config: ActualProverConfig & ACVMConfig & BBConfig,
|
|
160
|
+
config: Omit<ActualProverConfig, 'enqueueConcurrency'> & ACVMConfig & BBConfig,
|
|
160
161
|
telemetry: TelemetryClient,
|
|
161
162
|
): Promise<ServerCircuitProver> {
|
|
162
163
|
if (config.realProofs) {
|
|
@@ -5,7 +5,6 @@ import type {
|
|
|
5
5
|
RECURSIVE_PROOF_LENGTH,
|
|
6
6
|
} from '@aztec/constants';
|
|
7
7
|
import { EpochNumber } from '@aztec/foundation/branded-types';
|
|
8
|
-
import { sha256 } from '@aztec/foundation/crypto/sha256';
|
|
9
8
|
import { type Logger, type LoggerBindings, createLogger } from '@aztec/foundation/log';
|
|
10
9
|
import { type PromiseWithResolvers, RunningPromise, promiseWithResolvers } from '@aztec/foundation/promise';
|
|
11
10
|
import { truncate } from '@aztec/foundation/string';
|
|
@@ -46,6 +45,8 @@ import type {
|
|
|
46
45
|
TxRollupPublicInputs,
|
|
47
46
|
} from '@aztec/stdlib/rollup';
|
|
48
47
|
|
|
48
|
+
import { createHash } from 'node:crypto';
|
|
49
|
+
|
|
49
50
|
import { InlineProofStore, type ProofStore } from './proof_store/index.js';
|
|
50
51
|
|
|
51
52
|
// Perform a snapshot sync every 30 seconds
|
|
@@ -659,8 +660,12 @@ export class BrokerCircuitProverFacade implements ServerCircuitProver {
|
|
|
659
660
|
);
|
|
660
661
|
}
|
|
661
662
|
|
|
662
|
-
private generateId(
|
|
663
|
-
|
|
664
|
-
|
|
663
|
+
private generateId(
|
|
664
|
+
type: ProvingRequestType,
|
|
665
|
+
inputs: { toBuffer(): Buffer },
|
|
666
|
+
epochNumber = EpochNumber.ZERO,
|
|
667
|
+
): ProvingJobId {
|
|
668
|
+
const inputsHash = createHash('sha256').update(inputs.toBuffer()).digest('hex');
|
|
669
|
+
return makeProvingJobId(epochNumber, type, inputsHash);
|
|
665
670
|
}
|
|
666
671
|
}
|
|
@@ -6,8 +6,8 @@ import {
|
|
|
6
6
|
numberConfigHelper,
|
|
7
7
|
} from '@aztec/foundation/config';
|
|
8
8
|
import { pickConfigMappings } from '@aztec/foundation/config';
|
|
9
|
-
import { type DataStoreConfig, dataConfigMappings } from '@aztec/kv-store/config';
|
|
10
9
|
import { type ChainConfig, chainConfigMappings } from '@aztec/stdlib/config';
|
|
10
|
+
import { type DataStoreConfig, dataConfigMappings } from '@aztec/stdlib/kv-store';
|
|
11
11
|
import { ProvingRequestType } from '@aztec/stdlib/proofs';
|
|
12
12
|
|
|
13
13
|
import { z } from 'zod';
|
|
@@ -314,7 +314,7 @@ export class ProvingBroker implements ProvingJobProducer, ProvingJobConsumer, Pr
|
|
|
314
314
|
// notify listeners of the cancellation
|
|
315
315
|
if (!this.resultsCache.has(id)) {
|
|
316
316
|
this.logger.info(`Cancelling job id=${id}`, { provingJobId: id });
|
|
317
|
-
await this.#reportProvingJobError(id, 'Aborted', false);
|
|
317
|
+
await this.#reportProvingJobError(id, 'Aborted', false, undefined, true);
|
|
318
318
|
}
|
|
319
319
|
}
|
|
320
320
|
|
|
@@ -395,6 +395,7 @@ export class ProvingBroker implements ProvingJobProducer, ProvingJobConsumer, Pr
|
|
|
395
395
|
err: string,
|
|
396
396
|
retry = false,
|
|
397
397
|
filter?: ProvingJobFilter,
|
|
398
|
+
aborted = false,
|
|
398
399
|
): Promise<GetProvingJobResponse | undefined> {
|
|
399
400
|
const info = this.inProgress.get(id);
|
|
400
401
|
const item = this.jobsCache.get(id);
|
|
@@ -455,7 +456,11 @@ export class ProvingBroker implements ProvingJobProducer, ProvingJobConsumer, Pr
|
|
|
455
456
|
this.promises.get(id)!.resolve(result);
|
|
456
457
|
this.completedJobNotifications.push(id);
|
|
457
458
|
|
|
458
|
-
|
|
459
|
+
if (aborted) {
|
|
460
|
+
this.instrumentation.incAbortedJobs(item.type);
|
|
461
|
+
} else {
|
|
462
|
+
this.instrumentation.incRejectedJobs(item.type);
|
|
463
|
+
}
|
|
459
464
|
if (info) {
|
|
460
465
|
const duration = this.msTimeSource() - info.startedAt;
|
|
461
466
|
this.instrumentation.recordJobDuration(item.type, duration);
|
|
@@ -18,6 +18,7 @@ export class ProvingBrokerInstrumentation {
|
|
|
18
18
|
private activeJobs: ObservableGauge;
|
|
19
19
|
private resolvedJobs: UpDownCounter;
|
|
20
20
|
private rejectedJobs: UpDownCounter;
|
|
21
|
+
private abortedJobs: UpDownCounter;
|
|
21
22
|
private timedOutJobs: UpDownCounter;
|
|
22
23
|
private cachedJobs: UpDownCounter;
|
|
23
24
|
private totalJobs: UpDownCounter;
|
|
@@ -39,6 +40,8 @@ export class ProvingBrokerInstrumentation {
|
|
|
39
40
|
|
|
40
41
|
this.rejectedJobs = createUpDownCounterWithDefault(meter, Metrics.PROVING_QUEUE_REJECTED_JOBS, provingJobAttrs);
|
|
41
42
|
|
|
43
|
+
this.abortedJobs = createUpDownCounterWithDefault(meter, Metrics.PROVING_QUEUE_ABORTED_JOBS, provingJobAttrs);
|
|
44
|
+
|
|
42
45
|
this.retriedJobs = createUpDownCounterWithDefault(meter, Metrics.PROVING_QUEUE_RETRIED_JOBS, provingJobAttrs);
|
|
43
46
|
|
|
44
47
|
this.timedOutJobs = createUpDownCounterWithDefault(meter, Metrics.PROVING_QUEUE_TIMED_OUT_JOBS, provingJobAttrs);
|
|
@@ -72,6 +75,12 @@ export class ProvingBrokerInstrumentation {
|
|
|
72
75
|
});
|
|
73
76
|
}
|
|
74
77
|
|
|
78
|
+
incAbortedJobs(proofType: ProvingRequestType) {
|
|
79
|
+
this.abortedJobs.add(1, {
|
|
80
|
+
[Attributes.PROVING_JOB_TYPE]: ProvingRequestType[proofType],
|
|
81
|
+
});
|
|
82
|
+
}
|
|
83
|
+
|
|
75
84
|
incRetriedJobs(proofType: ProvingRequestType) {
|
|
76
85
|
this.retriedJobs.add(1, {
|
|
77
86
|
[Attributes.PROVING_JOB_TYPE]: ProvingRequestType[proofType],
|