- brain.fillSubtypes(rules): idempotent subtype back-fill for pre-8.0 data.
One rule per NounType/VerbType (literal default or per-entry function);
fills only entries still missing a subtype through the public update()/
updateRelation() paths; returns { scanned, filled, skipped, errors, byType }.
Full unit suite in tests/unit/brainy/fill-subtypes.test.ts.
- Fix getNouns/getVerbs pagination hasMore (peek one past the window) —
was permanently false, silently truncating every multi-page walk.
- find({ near }) without near.id now throws a teaching error instead of an
opaque storage sharding failure; CLI --threshold without --near applies a
plain score floor.
- CLI init/close audit: every one-shot command init()s, close()s, and exits
explicitly; delete the unmaintained interactive REPL; replace the cloud-era
storage subcommands with status/batch-delete; new types/validate commands.
- requireSubtype JSDoc now documents the 8.0 default-on contract; audit()
recommendation points at fillSubtypes.
- Docs: data-storage-architecture rewritten to the real 8.0 on-disk layout;
README storage section reflects filesystem+memory and snapshots; eli5 and
SEMANTIC_VFS /as-of/ semantics corrected; internal tracker IDs and
.strategy references scrubbed from published files.
308 lines
No EOL
9.2 KiB
TypeScript
308 lines
No EOL
9.2 KiB
TypeScript
/**
|
|
* Utility CLI Commands - TypeScript Implementation
|
|
*
|
|
* Database maintenance, statistics, and benchmarking
|
|
*/
|
|
|
|
import chalk from 'chalk'
|
|
import ora from 'ora'
|
|
import Table from 'cli-table3'
|
|
import { Brainy } from '../../brainy.js'
|
|
import { NounType } from '../../types/graphTypes.js'
|
|
|
|
interface UtilityOptions {
|
|
verbose?: boolean
|
|
json?: boolean
|
|
pretty?: boolean
|
|
}
|
|
|
|
interface StatsOptions extends UtilityOptions {
|
|
byService?: boolean
|
|
detailed?: boolean
|
|
}
|
|
|
|
interface CleanOptions extends UtilityOptions {
|
|
force?: boolean
|
|
}
|
|
|
|
interface BenchmarkOptions extends UtilityOptions {
|
|
operations?: string
|
|
iterations?: string
|
|
}
|
|
|
|
let brainyInstance: Brainy | null = null
|
|
|
|
const getBrainy = (): Brainy => {
|
|
if (!brainyInstance) {
|
|
brainyInstance = new Brainy()
|
|
}
|
|
return brainyInstance
|
|
}
|
|
|
|
const formatBytes = (bytes: number): string => {
|
|
if (bytes === 0) return '0 B'
|
|
const k = 1024
|
|
const sizes = ['B', 'KB', 'MB', 'GB']
|
|
const i = Math.floor(Math.log(bytes) / Math.log(k))
|
|
return parseFloat((bytes / Math.pow(k, i)).toFixed(2)) + ' ' + sizes[i]
|
|
}
|
|
|
|
const formatOutput = (data: any, options: UtilityOptions): void => {
|
|
if (options.json) {
|
|
console.log(options.pretty ? JSON.stringify(data, null, 2) : JSON.stringify(data))
|
|
}
|
|
}
|
|
|
|
export const utilityCommands = {
|
|
/**
|
|
* Show database statistics
|
|
*/
|
|
async stats(options: StatsOptions) {
|
|
const spinner = ora('Gathering statistics...').start()
|
|
|
|
try {
|
|
const brain = getBrainy()
|
|
await brain.init()
|
|
const nounCount = await brain.getNounCount()
|
|
const verbCount = await brain.getVerbCount()
|
|
const memUsage = process.memoryUsage()
|
|
|
|
spinner.succeed('Statistics gathered')
|
|
|
|
const stats = {
|
|
nounCount,
|
|
verbCount,
|
|
totalItems: nounCount + verbCount
|
|
}
|
|
|
|
if (options.json) {
|
|
formatOutput(stats, options)
|
|
// close() releases the writer lock and indexes, but global timers
|
|
// (UnifiedCache bookkeeping, PathResolver stats) keep the event loop
|
|
// alive. CLI commands are one-shot — exit explicitly.
|
|
await brain.close()
|
|
process.exit(0)
|
|
}
|
|
|
|
console.log(chalk.cyan('\n📊 Database Statistics\n'))
|
|
|
|
// Core stats table
|
|
const coreTable = new Table({
|
|
head: [chalk.cyan('Metric'), chalk.cyan('Value')],
|
|
style: { head: [], border: [] }
|
|
})
|
|
|
|
coreTable.push(
|
|
['Total Items', chalk.green(stats.totalItems)],
|
|
['Nouns', chalk.green(stats.nounCount)],
|
|
['Verbs (Relationships)', chalk.green(stats.verbCount)]
|
|
)
|
|
|
|
console.log(coreTable.toString())
|
|
|
|
// Memory usage
|
|
console.log(chalk.cyan('\n🧠 Memory Usage\n'))
|
|
|
|
const memTable = new Table({
|
|
head: [chalk.cyan('Type'), chalk.cyan('Size')],
|
|
style: { head: [], border: [] }
|
|
})
|
|
|
|
memTable.push(
|
|
['Heap Used', formatBytes(memUsage.heapUsed)],
|
|
['Heap Total', formatBytes(memUsage.heapTotal)],
|
|
['RSS', formatBytes(memUsage.rss)],
|
|
['External', formatBytes(memUsage.external)]
|
|
)
|
|
|
|
console.log(memTable.toString())
|
|
|
|
// One-shot command — see the --json branch for why the explicit exit.
|
|
await brain.close()
|
|
process.exit(0)
|
|
} catch (error: any) {
|
|
spinner.fail('Failed to gather statistics')
|
|
console.error(chalk.red(error.message))
|
|
process.exit(1)
|
|
}
|
|
},
|
|
|
|
/**
|
|
* Clear the database (all entities, relationships, and indexes).
|
|
* Destructive — asks for confirmation unless --force is passed.
|
|
*/
|
|
async clean(options: CleanOptions) {
|
|
let spinner: ReturnType<typeof ora> | null = null
|
|
|
|
try {
|
|
// Destructive operation — confirm first (skipped with --force).
|
|
if (!options.force) {
|
|
const inquirer = (await import('inquirer')).default
|
|
const { confirm } = await inquirer.prompt([{
|
|
type: 'confirm',
|
|
name: 'confirm',
|
|
message: chalk.yellow('⚠️ Permanently delete ALL data (entities, relationships, indexes)?'),
|
|
default: false
|
|
}])
|
|
|
|
if (!confirm) {
|
|
console.log(chalk.yellow('Clean cancelled'))
|
|
process.exit(0)
|
|
}
|
|
}
|
|
|
|
const brain = getBrainy()
|
|
|
|
// Clear all data (entities, relationships, and every index)
|
|
spinner = ora('Clearing all data...').start()
|
|
await brain.init()
|
|
await brain.clear()
|
|
|
|
spinner.succeed('Database cleared')
|
|
|
|
if (!options.json) {
|
|
console.log(chalk.green('\n✓ Database cleared successfully'))
|
|
console.log(chalk.dim(' All nouns, verbs, and metadata have been removed'))
|
|
} else {
|
|
formatOutput({ cleared: true, success: true }, options)
|
|
}
|
|
|
|
// close() releases the writer lock and indexes, but global timers
|
|
// (UnifiedCache bookkeeping, PathResolver stats) keep the event loop
|
|
// alive. CLI commands are one-shot — exit explicitly.
|
|
await brain.close()
|
|
process.exit(0)
|
|
} catch (error: any) {
|
|
if (spinner) spinner.fail('Cleanup failed')
|
|
console.error(chalk.red(error.message))
|
|
process.exit(1)
|
|
}
|
|
},
|
|
|
|
/**
|
|
* Run performance benchmarks
|
|
*/
|
|
async benchmark(options: BenchmarkOptions) {
|
|
const operations = options.operations || 'all'
|
|
const iterations = parseInt(options.iterations || '100')
|
|
|
|
console.log(chalk.cyan(`\n🚀 Running Benchmarks (${iterations} iterations)\n`))
|
|
|
|
const results: any = {
|
|
operations: {},
|
|
summary: {}
|
|
}
|
|
|
|
try {
|
|
const brain = getBrainy()
|
|
await brain.init()
|
|
|
|
// Benchmark different operations
|
|
const benchmarks = [
|
|
{ name: 'add', enabled: operations === 'all' || operations.includes('add') },
|
|
{ name: 'search', enabled: operations === 'all' || operations.includes('search') },
|
|
{ name: 'similarity', enabled: operations === 'all' || operations.includes('similarity') },
|
|
{ name: 'cluster', enabled: operations === 'all' || operations.includes('cluster') }
|
|
]
|
|
|
|
for (const bench of benchmarks) {
|
|
if (!bench.enabled) continue
|
|
|
|
const spinner = ora(`Benchmarking ${bench.name}...`).start()
|
|
const times: number[] = []
|
|
|
|
for (let i = 0; i < iterations; i++) {
|
|
const start = Date.now()
|
|
|
|
switch (bench.name) {
|
|
case 'add':
|
|
// 8.0 requires a subtype on every write by default.
|
|
await brain.add({ data: `Test item ${i}`, type: NounType.Thing, subtype: 'benchmark', metadata: { benchmark: true } })
|
|
break
|
|
case 'search':
|
|
await brain.find({ query: 'test', limit: 10 })
|
|
break
|
|
case 'similarity':
|
|
const neural = brain.neural()
|
|
await neural.similar('test1', 'test2')
|
|
break
|
|
case 'cluster':
|
|
const neuralApi = brain.neural()
|
|
await neuralApi.clusters()
|
|
break
|
|
}
|
|
|
|
times.push(Date.now() - start)
|
|
}
|
|
|
|
// Calculate statistics
|
|
const avg = times.reduce((a, b) => a + b, 0) / times.length
|
|
const min = Math.min(...times)
|
|
const max = Math.max(...times)
|
|
const median = times.sort((a, b) => a - b)[Math.floor(times.length / 2)]
|
|
|
|
results.operations[bench.name] = {
|
|
avg: avg.toFixed(2),
|
|
min,
|
|
max,
|
|
median,
|
|
ops: (1000 / avg).toFixed(2)
|
|
}
|
|
|
|
spinner.succeed(`${bench.name}: ${avg.toFixed(2)}ms avg (${(1000 / avg).toFixed(2)} ops/sec)`)
|
|
}
|
|
|
|
// Calculate summary
|
|
const totalOps: number = (Object.values(results.operations) as any[]).reduce((sum: number, op: any) =>
|
|
sum + parseFloat(op.ops), 0)
|
|
|
|
results.summary = {
|
|
totalOperations: Object.keys(results.operations).length,
|
|
averageOpsPerSec: totalOps > 0 ? (totalOps / Object.keys(results.operations).length).toFixed(2) : '0'
|
|
}
|
|
|
|
if (!options.json) {
|
|
// Display results table
|
|
console.log(chalk.cyan('\n📊 Benchmark Results\n'))
|
|
|
|
const table = new Table({
|
|
head: [
|
|
chalk.cyan('Operation'),
|
|
chalk.cyan('Avg (ms)'),
|
|
chalk.cyan('Min (ms)'),
|
|
chalk.cyan('Max (ms)'),
|
|
chalk.cyan('Median (ms)'),
|
|
chalk.cyan('Ops/sec')
|
|
],
|
|
style: { head: [], border: [] }
|
|
})
|
|
|
|
Object.entries(results.operations).forEach(([op, stats]: [string, any]) => {
|
|
table.push([
|
|
op,
|
|
stats.avg,
|
|
stats.min,
|
|
stats.max,
|
|
stats.median,
|
|
chalk.green(stats.ops)
|
|
])
|
|
})
|
|
|
|
console.log(table.toString())
|
|
|
|
console.log(chalk.cyan('\n📈 Summary'))
|
|
console.log(` Operations tested: ${results.summary.totalOperations}`)
|
|
console.log(` Average throughput: ${chalk.green(results.summary.averageOpsPerSec)} ops/sec`)
|
|
} else {
|
|
formatOutput(results, options)
|
|
}
|
|
|
|
// One-shot command — see stats() for why the explicit close + exit.
|
|
await brain.close()
|
|
process.exit(0)
|
|
} catch (error: any) {
|
|
console.error(chalk.red('Benchmark failed:'), error.message)
|
|
process.exit(1)
|
|
}
|
|
}
|
|
} |