Some checks failed
build-packages / resolve bundled mosh-client (push) Has been cancelled
build-packages / resolve bundled et-client (push) Has been cancelled
build-packages / build-macos (push) Has been cancelled
build-packages / build-windows (push) Has been cancelled
build-packages / build-linux-x64 (push) Has been cancelled
build-packages / build-linux-arm64 (push) Has been cancelled
build-packages / release (push) Has been cancelled
build-packages / update Nix release metadata (push) Has been cancelled
build-packages / bump homebrew tap (push) Has been cancelled
test / lint-and-test (push) Has been cancelled
AI automation / Route event (push) Has been cancelled
AI automation / Hand reopened issue to maintainers (push) Has been cancelled
AI automation / Clean source issue state (push) Has been cancelled
AI automation / Reconcile handoffs (push) Has been cancelled
AI automation / Classify issue (push) Has been cancelled
AI automation / Claude Code smoke (push) Has been cancelled
AI automation / Review issue follow-up (push) Has been cancelled
AI automation / Publish issue follow-up (push) Has been cancelled
AI automation / Implement with Claude Code (push) Has been cancelled
AI automation / Publish implement PR (push) Has been cancelled
AI automation / Continue queued issue comments (push) Has been cancelled
AI automation / Codex review loop (push) Has been cancelled
AI automation / Publish Codex fix (push) Has been cancelled
AI automation / Clear Codex dispatch marker (push) Has been cancelled
AI automation / Own PR re-request Codex (push) Has been cancelled
AI automation / External PR re-request Codex (push) Has been cancelled
AI automation / Poll Codex reaction / retry (push) Has been cancelled
build-et-binaries / build-linux-x64 (push) Has been cancelled
build-et-binaries / build-linux-arm64 (push) Has been cancelled
build-et-binaries / build-macos-universal (push) Has been cancelled
build-et-binaries / build-windows-x64 (push) Has been cancelled
build-et-binaries / release (push) Has been cancelled
63 lines
2.0 KiB
TypeScript
63 lines
2.0 KiB
TypeScript
import {
|
|
applyConvergentMutations,
|
|
createConvergentSyncState,
|
|
mergeConvergentSyncStates,
|
|
type ConvergentMutation,
|
|
} from '../domain/convergentSync/index.ts';
|
|
|
|
function elapsedMs<T>(operation: () => T): { value: T; duration: number } {
|
|
const startedAt = performance.now();
|
|
const value = operation();
|
|
return { value, duration: performance.now() - startedAt };
|
|
}
|
|
|
|
function buildMutations(count: number): ConvergentMutation[] {
|
|
return Array.from({ length: count }, (_, index) => ({
|
|
kind: 'entity-upsert' as const,
|
|
collection: 'hosts',
|
|
entityId: `host-${index.toString().padStart(5, '0')}`,
|
|
value: {
|
|
id: `host-${index.toString().padStart(5, '0')}`,
|
|
label: `Host ${index}`,
|
|
hostname: `host-${index}.example.com`,
|
|
tags: [`group-${index % 20}`],
|
|
},
|
|
position: index,
|
|
}));
|
|
}
|
|
|
|
function run(size: number): void {
|
|
const created = elapsedMs(() => applyConvergentMutations(
|
|
createConvergentSyncState(),
|
|
'seed',
|
|
buildMutations(size),
|
|
1_700_000_000_000,
|
|
));
|
|
const left = applyConvergentMutations(created.value, 'device-a', [{
|
|
kind: 'entity-field-set',
|
|
collection: 'hosts',
|
|
entityId: `host-${Math.floor(size / 3).toString().padStart(5, '0')}`,
|
|
field: 'label',
|
|
value: 'Edited on A',
|
|
}], 1_700_000_000_001);
|
|
const right = applyConvergentMutations(created.value, 'device-b', [{
|
|
kind: 'entity-field-set',
|
|
collection: 'hosts',
|
|
entityId: `host-${Math.floor(size / 2).toString().padStart(5, '0')}`,
|
|
field: 'hostname',
|
|
value: 'edited.example.com',
|
|
}], 1_700_000_000_001);
|
|
const merged = elapsedMs(() => mergeConvergentSyncStates(left, right));
|
|
|
|
console.log(JSON.stringify({
|
|
entities: size,
|
|
registers: Object.values(merged.value.collections.hosts.entities)
|
|
.reduce((total, entity) => total + 1 + (entity.position ? 1 : 0)
|
|
+ Object.keys(entity.fields).length, 0),
|
|
createMs: Number(created.duration.toFixed(2)),
|
|
mergeMs: Number(merged.duration.toFixed(2)),
|
|
}));
|
|
}
|
|
|
|
for (const size of [1_000, 5_000, 10_000]) run(size);
|