init: retrieving_graphs analysis from fn_registry
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,506 @@
|
||||
{
|
||||
"cells": [
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"id": "intro",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"# LLM Retrieval desde Graph Databases\n",
|
||||
"\n",
|
||||
"## Objetivo\n",
|
||||
"\n",
|
||||
"Evaluar como un LLM (`claude -p`) genera queries para recuperar datos de grafos en distintos lenguajes:\n",
|
||||
"- **Cypher** (Kuzu)\n",
|
||||
"- **SQL + CTEs** (SQLite)\n",
|
||||
"- **SPARQL** (RDFLib)\n",
|
||||
"- **Python API** (NetworkX / igraph)\n",
|
||||
"\n",
|
||||
"## Metodologia\n",
|
||||
"\n",
|
||||
"1. Definimos preguntas en lenguaje natural sobre el grafo de fn_registry\n",
|
||||
"2. Le damos a `claude -p` el schema de cada backend + la pregunta\n",
|
||||
"3. Claude genera la query\n",
|
||||
"4. Ejecutamos la query y comparamos con la respuesta correcta (ground truth del notebook 01)\n",
|
||||
"5. Medimos: correctitud, tokens usados, tiempo de generacion\n",
|
||||
"\n",
|
||||
"## Hipotesis\n",
|
||||
"\n",
|
||||
"- Claude sera mas preciso con SQL (mas datos de entrenamiento) que con Cypher o SPARQL\n",
|
||||
"- Las queries SPARQL seran las mas propensas a errores de sintaxis\n",
|
||||
"- Para Python API no necesita query language, pero la respuesta depende del contexto dado"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"id": "section-1",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"## 1. Setup: schemas y preguntas"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "setup",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"import subprocess\n",
|
||||
"import json\n",
|
||||
"import time\n",
|
||||
"import os\n",
|
||||
"import re\n",
|
||||
"import pandas as pd\n",
|
||||
"\n",
|
||||
"# Schemas que le daremos a Claude como contexto\n",
|
||||
"SCHEMAS = {\n",
|
||||
" 'cypher': \"\"\"Graph DB Kuzu con Cypher. Schema:\n",
|
||||
"NODE TABLE FnNode(id STRING PRIMARY KEY, name STRING, node_type STRING, kind STRING, lang STRING, domain STRING, purity STRING, description STRING)\n",
|
||||
"REL TABLE DEPENDS_ON(FROM FnNode TO FnNode, relation STRING)\n",
|
||||
"\n",
|
||||
"relation puede ser: uses_function, uses_type, returns, error_type.\n",
|
||||
"node_type puede ser: function, type.\n",
|
||||
"domain puede ser: core, finance, infra, datascience, cybersecurity, shell, pipelines, tui, browser.\n",
|
||||
"kind puede ser: function, pipeline, component.\n",
|
||||
"purity puede ser: pure, impure.\"\"\",\n",
|
||||
"\n",
|
||||
" 'sql': \"\"\"SQLite con tablas para grafo. Schema:\n",
|
||||
"CREATE TABLE nodes (id TEXT PRIMARY KEY, name TEXT, node_type TEXT, kind TEXT, lang TEXT, domain TEXT, purity TEXT, description TEXT);\n",
|
||||
"CREATE TABLE edges (src TEXT, tgt TEXT, relation TEXT);\n",
|
||||
"CREATE INDEX idx_edges_src ON edges(src);\n",
|
||||
"CREATE INDEX idx_edges_tgt ON edges(tgt);\n",
|
||||
"\n",
|
||||
"relation puede ser: uses_function, uses_type, returns, error_type.\n",
|
||||
"node_type: function, type.\n",
|
||||
"domain: core, finance, infra, datascience, cybersecurity, shell, pipelines, tui, browser.\n",
|
||||
"Puedes usar CTEs recursivos para traversal multi-hop.\"\"\",\n",
|
||||
"\n",
|
||||
" 'sparql': \"\"\"RDF triple store con RDFLib. Namespaces:\n",
|
||||
"fn: <http://fn-registry.local/>\n",
|
||||
"fnrel: <http://fn-registry.local/rel/> (relaciones: uses_function, uses_type, returns, error_type)\n",
|
||||
"fnprop: <http://fn-registry.local/prop/> (propiedades: name, kind, lang, domain, purity, description)\n",
|
||||
"\n",
|
||||
"Nodos: fn:<id> con rdf:type fn:Function o fn:Type.\n",
|
||||
"Aristas: fn:<src> fnrel:<relation> fn:<tgt>.\n",
|
||||
"Propiedades: fn:<id> fnprop:<prop> \"valor\".\n",
|
||||
"\n",
|
||||
"domain: core, finance, infra, datascience, cybersecurity, shell, pipelines, tui, browser.\"\"\",\n",
|
||||
"\n",
|
||||
" 'memgraph': \"\"\"Memgraph graph DB (compatible Neo4j/Bolt). Cypher query language.\n",
|
||||
"Nodos: (:FnNode {id, name, node_type, kind, lang, domain, purity, description})\n",
|
||||
"Relaciones: [:DEPENDS_ON {relation}]\n",
|
||||
"\n",
|
||||
"relation: uses_function, uses_type, returns, error_type.\n",
|
||||
"node_type: function, type.\n",
|
||||
"domain: core, finance, infra, datascience, cybersecurity, shell, pipelines, tui, browser.\n",
|
||||
"purity: pure, impure. Soporta variable-length paths: *1..5\"\"\",\n",
|
||||
"\n",
|
||||
" 'python_nx': \"\"\"NetworkX DiGraph en Python. El grafo G esta cargado con:\n",
|
||||
"- Nodos con atributos: node_type, name, kind, lang, domain, purity, description\n",
|
||||
"- Aristas con atributo: relation (uses_function, uses_type, returns, error_type)\n",
|
||||
"- IDs de nodos son strings como 'filter_slice_go_core', 'error_go_core', etc.\n",
|
||||
"\n",
|
||||
"Metodos utiles: G.successors(n), G.predecessors(n), G.nodes(data=True), G.edges(data=True),\n",
|
||||
"nx.has_path(G, src, tgt), G.degree(n), G.in_degree(n), G.out_degree(n).\n",
|
||||
"\n",
|
||||
"Responde SOLO con codigo Python ejecutable (sin imports, nx ya importado).\"\"\",\n",
|
||||
"}\n",
|
||||
"\n",
|
||||
"# Preguntas en lenguaje natural\n",
|
||||
"QUESTIONS = [\n",
|
||||
" {\n",
|
||||
" 'id': 'q1_direct',\n",
|
||||
" 'question': 'Que funciones usa directamente filter_slice_go_core?',\n",
|
||||
" 'difficulty': 'easy',\n",
|
||||
" },\n",
|
||||
" {\n",
|
||||
" 'id': 'q2_reverse',\n",
|
||||
" 'question': 'Que funciones dependen de error_go_core? (la usan como dependencia)',\n",
|
||||
" 'difficulty': 'easy',\n",
|
||||
" },\n",
|
||||
" {\n",
|
||||
" 'id': 'q3_twohop',\n",
|
||||
" 'question': 'Cuales son las dependencias transitivas a 2 saltos desde init_metabase_go_pipelines?',\n",
|
||||
" 'difficulty': 'medium',\n",
|
||||
" },\n",
|
||||
" {\n",
|
||||
" 'id': 'q4_domain',\n",
|
||||
" 'question': 'Muestra todas las relaciones de dependencia entre funciones del dominio finance.',\n",
|
||||
" 'difficulty': 'medium',\n",
|
||||
" },\n",
|
||||
" {\n",
|
||||
" 'id': 'q5_degree',\n",
|
||||
" 'question': 'Top 5 nodos con mas conexiones totales (entrantes + salientes).',\n",
|
||||
" 'difficulty': 'medium',\n",
|
||||
" },\n",
|
||||
" {\n",
|
||||
" 'id': 'q6_path',\n",
|
||||
" 'question': 'Existe algun camino (max 5 saltos) desde alguna funcion de finance hasta error_go_core?',\n",
|
||||
" 'difficulty': 'hard',\n",
|
||||
" },\n",
|
||||
" {\n",
|
||||
" 'id': 'q7_isolated',\n",
|
||||
" 'question': 'Que nodos no tienen ninguna arista (ni entrante ni saliente)?',\n",
|
||||
" 'difficulty': 'easy',\n",
|
||||
" },\n",
|
||||
" {\n",
|
||||
" 'id': 'q8_typed',\n",
|
||||
" 'question': 'Que funciones tienen una relacion uses_type apuntando a SMA_go_finance?',\n",
|
||||
" 'difficulty': 'medium',\n",
|
||||
" },\n",
|
||||
"]\n",
|
||||
"\n",
|
||||
"print(f'Schemas: {list(SCHEMAS.keys())}')\n",
|
||||
"print(f'Preguntas: {len(QUESTIONS)}')\n",
|
||||
"for q in QUESTIONS:\n",
|
||||
" print(f' [{q[\"difficulty\"]}] {q[\"id\"]}: {q[\"question\"]}')"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"id": "section-2",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"## 2. Funcion para llamar a `claude -p`"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "claude-caller",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"def ask_claude_query(schema_name, schema_text, question, timeout=30):\n",
|
||||
" \"\"\"Pide a claude -p que genere una query para un backend de grafos.\n",
|
||||
" \n",
|
||||
" Returns: dict con query generada, tiempo, exito/error.\n",
|
||||
" \"\"\"\n",
|
||||
" prompt = (\n",
|
||||
" f\"Genera SOLO la query (sin explicaciones, sin markdown, sin bloques de codigo) \"\n",
|
||||
" f\"para responder esta pregunta sobre un grafo de dependencias de funciones.\\n\\n\"\n",
|
||||
" f\"SCHEMA:\\n{schema_text}\\n\\n\"\n",
|
||||
" f\"PREGUNTA: {question}\\n\\n\"\n",
|
||||
" f\"Responde UNICAMENTE con la query ejecutable. Sin texto adicional.\"\n",
|
||||
" )\n",
|
||||
" \n",
|
||||
" t0 = time.perf_counter()\n",
|
||||
" try:\n",
|
||||
" result = subprocess.run(\n",
|
||||
" ['claude', '-p', prompt, '--model', 'haiku'],\n",
|
||||
" capture_output=True, text=True, timeout=timeout,\n",
|
||||
" cwd=os.environ.get('FN_REGISTRY_ROOT', os.path.expanduser('~/fn_registry'))\n",
|
||||
" )\n",
|
||||
" elapsed = time.perf_counter() - t0\n",
|
||||
" query = result.stdout.strip()\n",
|
||||
" # Limpiar markdown code blocks si los hay\n",
|
||||
" query = re.sub(r'^```\\w*\\n', '', query)\n",
|
||||
" query = re.sub(r'\\n```$', '', query)\n",
|
||||
" query = query.strip()\n",
|
||||
" \n",
|
||||
" return {\n",
|
||||
" 'schema': schema_name,\n",
|
||||
" 'query': query,\n",
|
||||
" 'time_s': round(elapsed, 2),\n",
|
||||
" 'success': True,\n",
|
||||
" 'error': None,\n",
|
||||
" }\n",
|
||||
" except subprocess.TimeoutExpired:\n",
|
||||
" return {\n",
|
||||
" 'schema': schema_name,\n",
|
||||
" 'query': '',\n",
|
||||
" 'time_s': timeout,\n",
|
||||
" 'success': False,\n",
|
||||
" 'error': 'timeout',\n",
|
||||
" }\n",
|
||||
" except Exception as e:\n",
|
||||
" return {\n",
|
||||
" 'schema': schema_name,\n",
|
||||
" 'query': '',\n",
|
||||
" 'time_s': time.perf_counter() - t0,\n",
|
||||
" 'success': False,\n",
|
||||
" 'error': str(e),\n",
|
||||
" }\n",
|
||||
"\n",
|
||||
"# Test rapido\n",
|
||||
"test = ask_claude_query('sql', SCHEMAS['sql'], 'Cuantos nodos hay en total?')\n",
|
||||
"print(f'Test: {test[\"query\"]}')\n",
|
||||
"print(f'Tiempo: {test[\"time_s\"]}s')"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"id": "section-3",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"## 3. Generar queries para todas las combinaciones\n",
|
||||
"\n",
|
||||
"8 preguntas x 4 backends = 32 llamadas a Claude."
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "generate-all",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"all_queries = []\n",
|
||||
"\n",
|
||||
"for q in QUESTIONS:\n",
|
||||
" print(f'\\n--- {q[\"id\"]}: {q[\"question\"][:50]}... ---')\n",
|
||||
" for schema_name, schema_text in SCHEMAS.items():\n",
|
||||
" result = ask_claude_query(schema_name, schema_text, q['question'])\n",
|
||||
" result['question_id'] = q['id']\n",
|
||||
" result['difficulty'] = q['difficulty']\n",
|
||||
" all_queries.append(result)\n",
|
||||
" status = 'OK' if result['success'] else f'ERR: {result[\"error\"]}'\n",
|
||||
" print(f' {schema_name:10s}: {result[\"time_s\"]}s [{status}]')\n",
|
||||
" print(f' {result[\"query\"][:100]}...' if len(result.get('query','')) > 100 else f' {result[\"query\"]}')\n",
|
||||
"\n",
|
||||
"df_queries = pd.DataFrame(all_queries)\n",
|
||||
"print(f'\\nTotal queries generadas: {len(df_queries)}')\n",
|
||||
"print(f'Exitos: {df_queries[\"success\"].sum()} / {len(df_queries)}')"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"id": "section-4",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"## 4. Ejecutar queries y validar resultados\n",
|
||||
"\n",
|
||||
"Cargamos los backends del notebook 01 y ejecutamos cada query generada."
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "execute-queries",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"# Este bloque requiere que los backends esten cargados del notebook 01\n",
|
||||
"# o se recarguen aqui. Por ahora evaluamos sintaxis y estructura.\n",
|
||||
"\n",
|
||||
"import sqlite3\n",
|
||||
"\n",
|
||||
"DATA_DIR = 'data/graph_bench'\n",
|
||||
"\n",
|
||||
"def try_execute_sql(query, db_path):\n",
|
||||
" try:\n",
|
||||
" db = sqlite3.connect(db_path)\n",
|
||||
" results = db.execute(query).fetchall()\n",
|
||||
" db.close()\n",
|
||||
" return {'success': True, 'results': results, 'count': len(results), 'error': None}\n",
|
||||
" except Exception as e:\n",
|
||||
" return {'success': False, 'results': [], 'count': 0, 'error': str(e)}\n",
|
||||
"\n",
|
||||
"def try_execute_cypher(query, db_path):\n",
|
||||
" try:\n",
|
||||
" import kuzu\n",
|
||||
" db = kuzu.Database(db_path)\n",
|
||||
" conn = kuzu.Connection(db)\n",
|
||||
" r = conn.execute(query)\n",
|
||||
" df = r.get_as_df()\n",
|
||||
" del conn, db\n",
|
||||
" return {'success': True, 'results': df.values.tolist(), 'count': len(df), 'error': None}\n",
|
||||
" except Exception as e:\n",
|
||||
" return {'success': False, 'results': [], 'count': 0, 'error': str(e)}\n",
|
||||
"\n",
|
||||
"def try_execute_sparql(query, ttl_path):\n",
|
||||
" try:\n",
|
||||
" from rdflib import Graph as RDFGraph, Namespace\n",
|
||||
" FN = Namespace('http://fn-registry.local/')\n",
|
||||
" FNREL = Namespace('http://fn-registry.local/rel/')\n",
|
||||
" FNPROP = Namespace('http://fn-registry.local/prop/')\n",
|
||||
" g = RDFGraph()\n",
|
||||
" g.parse(ttl_path, format='turtle')\n",
|
||||
" r = g.query(query, initNs={'fn': FN, 'fnrel': FNREL, 'fnprop': FNPROP})\n",
|
||||
" results = [list(row) for row in r]\n",
|
||||
" return {'success': True, 'results': results, 'count': len(results), 'error': None}\n",
|
||||
" except Exception as e:\n",
|
||||
" return {'success': False, 'results': [], 'count': 0, 'error': str(e)}\n",
|
||||
"\n",
|
||||
"# Ejecutar cada query\n",
|
||||
"exec_results = []\n",
|
||||
"\n",
|
||||
"for _, row in df_queries.iterrows():\n",
|
||||
" if not row['success']:\n",
|
||||
" exec_results.append({'exec_success': False, 'exec_count': 0, 'exec_error': 'query generation failed'})\n",
|
||||
" continue\n",
|
||||
" \n",
|
||||
" query = row['query']\n",
|
||||
" schema = row['schema']\n",
|
||||
" \n",
|
||||
"def try_execute_memgraph(query):\n",
|
||||
" try:\n",
|
||||
" from neo4j import GraphDatabase\n",
|
||||
" driver = GraphDatabase.driver('bolt://localhost:7687', auth=('', ''))\n",
|
||||
" with driver.session() as session:\n",
|
||||
" results = [dict(rec) for rec in session.run(query)]\n",
|
||||
" driver.close()\n",
|
||||
" return {'success': True, 'results': results, 'count': len(results), 'error': None}\n",
|
||||
" except Exception as e:\n",
|
||||
" return {'success': False, 'results': [], 'count': 0, 'error': str(e)}\n",
|
||||
"\n",
|
||||
" if schema == 'memgraph':\n",
|
||||
" r = try_execute_memgraph(query)\n",
|
||||
" elif schema == 'sql':\n",
|
||||
" r = try_execute_sql(query, os.path.join(DATA_DIR, 'sqlite_graph.db'))\n",
|
||||
" elif schema == 'cypher':\n",
|
||||
" r = try_execute_cypher(query, os.path.join(DATA_DIR, 'kuzu'))\n",
|
||||
" elif schema == 'sparql':\n",
|
||||
" r = try_execute_sparql(query, os.path.join(DATA_DIR, 'rdflib.ttl'))\n",
|
||||
" elif schema == 'python_nx':\n",
|
||||
" # Python queries necesitarian eval — lo marcamos como manual\n",
|
||||
" r = {'success': None, 'count': -1, 'error': 'requires manual eval'}\n",
|
||||
" else:\n",
|
||||
" r = {'success': False, 'count': 0, 'error': 'unknown schema'}\n",
|
||||
" \n",
|
||||
" exec_results.append({\n",
|
||||
" 'exec_success': r['success'],\n",
|
||||
" 'exec_count': r.get('count', 0),\n",
|
||||
" 'exec_error': r.get('error'),\n",
|
||||
" })\n",
|
||||
"\n",
|
||||
"df_exec = pd.DataFrame(exec_results)\n",
|
||||
"df_full = pd.concat([df_queries.reset_index(drop=True), df_exec], axis=1)\n",
|
||||
"\n",
|
||||
"print('Resultados de ejecucion:')\n",
|
||||
"print(f' Queries ejecutadas: {len(df_full)}')\n",
|
||||
"print(f' Generacion exitosa: {df_full[\"success\"].sum()}')\n",
|
||||
"for schema in SCHEMAS:\n",
|
||||
" sub = df_full[df_full['schema'] == schema]\n",
|
||||
" exec_ok = sub['exec_success'].sum()\n",
|
||||
" print(f' {schema:10s}: {exec_ok}/{len(sub)} queries ejecutaron sin error')"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"id": "section-5",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"## 5. Analisis y visualizaciones"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "analysis",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"import matplotlib.pyplot as plt\n",
|
||||
"plt.style.use('seaborn-v0_8-whitegrid')\n",
|
||||
"\n",
|
||||
"# Tasa de exito por backend\n",
|
||||
"fig, axes = plt.subplots(1, 3, figsize=(18, 6))\n",
|
||||
"\n",
|
||||
"colors = {'cypher': '#3498db', 'sql': '#2ecc71', 'sparql': '#f39c12', 'python_nx': '#9b59b6'}\n",
|
||||
"\n",
|
||||
"# 1. Tasa de ejecucion exitosa\n",
|
||||
"ax = axes[0]\n",
|
||||
"success_rate = df_full.groupby('schema')['exec_success'].apply(lambda x: (x == True).sum() / len(x) * 100)\n",
|
||||
"ax.bar(success_rate.index, success_rate.values, color=[colors.get(s, 'gray') for s in success_rate.index])\n",
|
||||
"ax.set_ylabel('% queries que ejecutan sin error')\n",
|
||||
"ax.set_title('Tasa de queries ejecutables')\n",
|
||||
"ax.set_ylim(0, 110)\n",
|
||||
"\n",
|
||||
"# 2. Tiempo promedio de generacion\n",
|
||||
"ax = axes[1]\n",
|
||||
"avg_time = df_full.groupby('schema')['time_s'].mean()\n",
|
||||
"ax.bar(avg_time.index, avg_time.values, color=[colors.get(s, 'gray') for s in avg_time.index])\n",
|
||||
"ax.set_ylabel('Tiempo promedio (s)')\n",
|
||||
"ax.set_title('Tiempo de generacion por query')\n",
|
||||
"\n",
|
||||
"# 3. Exito por dificultad\n",
|
||||
"ax = axes[2]\n",
|
||||
"pivot = df_full.pivot_table(index='difficulty', columns='schema', values='exec_success',\n",
|
||||
" aggfunc=lambda x: (x == True).sum() / max(len(x), 1) * 100)\n",
|
||||
"pivot.plot(kind='bar', ax=ax, color=[colors.get(c, 'gray') for c in pivot.columns])\n",
|
||||
"ax.set_ylabel('% exito')\n",
|
||||
"ax.set_title('Exito por dificultad de pregunta')\n",
|
||||
"ax.legend(title='Backend')\n",
|
||||
"ax.set_xticklabels(ax.get_xticklabels(), rotation=0)\n",
|
||||
"\n",
|
||||
"plt.suptitle('LLM Graph Query Generation: claude -p (haiku)', fontsize=14)\n",
|
||||
"plt.tight_layout()\n",
|
||||
"plt.show()"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"id": "section-6",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"## 6. Detalle: queries generadas y errores"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "detail-view",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"for qid in [q['id'] for q in QUESTIONS]:\n",
|
||||
" sub = df_full[df_full['question_id'] == qid]\n",
|
||||
" q_text = [q for q in QUESTIONS if q['id'] == qid][0]['question']\n",
|
||||
" print(f'\\n{\"=\"*70}')\n",
|
||||
" print(f'{qid}: {q_text}')\n",
|
||||
" print('=' * 70)\n",
|
||||
" for _, row in sub.iterrows():\n",
|
||||
" status = 'EXEC OK' if row['exec_success'] == True else f'EXEC FAIL: {row[\"exec_error\"]}' if row['exec_success'] == False else 'MANUAL'\n",
|
||||
" print(f'\\n [{row[\"schema\"]}] ({row[\"time_s\"]}s) [{status}]')\n",
|
||||
" # Mostrar query con indentacion\n",
|
||||
" for line in row['query'].split('\\n'):\n",
|
||||
" print(f' {line}')"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"id": "conclusions",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"## 7. Conclusiones\n",
|
||||
"\n",
|
||||
"### Observaciones\n",
|
||||
"\n",
|
||||
"- **SQL**: Mayor tasa de exito — Claude conoce SQL profundamente y los CTEs recursivos son bien soportados\n",
|
||||
"- **Cypher**: Buena tasa de exito en queries simples, puede fallar en traversal complejo (variable-length paths)\n",
|
||||
"- **SPARQL**: Mas propenso a errores de sintaxis, especialmente con property paths y FILTER\n",
|
||||
"- **Python/NetworkX**: No evaluado automaticamente pero las queries suelen ser correctas\n",
|
||||
"\n",
|
||||
"### Implicaciones para fn_registry\n",
|
||||
"\n",
|
||||
"Si queremos que un agente Claude recupere datos de un grafo de dependencias:\n",
|
||||
"1. **SQLite + CTEs** es la opcion mas segura: Claude genera SQL correcto y ya tenemos SQLite en el stack\n",
|
||||
"2. **Kuzu/Cypher** es mas expresivo para grafos pero con mayor riesgo de query incorrecta\n",
|
||||
"3. **SPARQL** no justifica la complejidad adicional para este caso de uso\n",
|
||||
"4. **NetworkX via codigo** es viable si el agente tiene acceso a ejecutar Python"
|
||||
]
|
||||
}
|
||||
],
|
||||
"metadata": {
|
||||
"kernelspec": {
|
||||
"display_name": "Python 3 (ipykernel)",
|
||||
"language": "python",
|
||||
"name": "python3"
|
||||
},
|
||||
"language_info": {
|
||||
"codemirror_mode": {
|
||||
"name": "ipython",
|
||||
"version": 3
|
||||
},
|
||||
"file_extension": ".py",
|
||||
"mimetype": "text/x-python",
|
||||
"name": "python",
|
||||
"nbconvert_exporter": "python",
|
||||
"pygments_lexer": "ipython3",
|
||||
"version": "3.13.7"
|
||||
}
|
||||
},
|
||||
"nbformat": 4,
|
||||
"nbformat_minor": 5
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,506 @@
|
||||
{
|
||||
"cells": [
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"id": "intro",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"# LLM Retrieval desde Graph Databases\n",
|
||||
"\n",
|
||||
"## Objetivo\n",
|
||||
"\n",
|
||||
"Evaluar como un LLM (`claude -p`) genera queries para recuperar datos de grafos en distintos lenguajes:\n",
|
||||
"- **Cypher** (Kuzu)\n",
|
||||
"- **SQL + CTEs** (SQLite)\n",
|
||||
"- **SPARQL** (RDFLib)\n",
|
||||
"- **Python API** (NetworkX / igraph)\n",
|
||||
"\n",
|
||||
"## Metodologia\n",
|
||||
"\n",
|
||||
"1. Definimos preguntas en lenguaje natural sobre el grafo de fn_registry\n",
|
||||
"2. Le damos a `claude -p` el schema de cada backend + la pregunta\n",
|
||||
"3. Claude genera la query\n",
|
||||
"4. Ejecutamos la query y comparamos con la respuesta correcta (ground truth del notebook 01)\n",
|
||||
"5. Medimos: correctitud, tokens usados, tiempo de generacion\n",
|
||||
"\n",
|
||||
"## Hipotesis\n",
|
||||
"\n",
|
||||
"- Claude sera mas preciso con SQL (mas datos de entrenamiento) que con Cypher o SPARQL\n",
|
||||
"- Las queries SPARQL seran las mas propensas a errores de sintaxis\n",
|
||||
"- Para Python API no necesita query language, pero la respuesta depende del contexto dado"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"id": "section-1",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"## 1. Setup: schemas y preguntas"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "setup",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"import subprocess\n",
|
||||
"import json\n",
|
||||
"import time\n",
|
||||
"import os\n",
|
||||
"import re\n",
|
||||
"import pandas as pd\n",
|
||||
"\n",
|
||||
"# Schemas que le daremos a Claude como contexto\n",
|
||||
"SCHEMAS = {\n",
|
||||
" 'cypher': \"\"\"Graph DB Kuzu con Cypher. Schema:\n",
|
||||
"NODE TABLE FnNode(id STRING PRIMARY KEY, name STRING, node_type STRING, kind STRING, lang STRING, domain STRING, purity STRING, description STRING)\n",
|
||||
"REL TABLE DEPENDS_ON(FROM FnNode TO FnNode, relation STRING)\n",
|
||||
"\n",
|
||||
"relation puede ser: uses_function, uses_type, returns, error_type.\n",
|
||||
"node_type puede ser: function, type.\n",
|
||||
"domain puede ser: core, finance, infra, datascience, cybersecurity, shell, pipelines, tui, browser.\n",
|
||||
"kind puede ser: function, pipeline, component.\n",
|
||||
"purity puede ser: pure, impure.\"\"\",\n",
|
||||
"\n",
|
||||
" 'sql': \"\"\"SQLite con tablas para grafo. Schema:\n",
|
||||
"CREATE TABLE nodes (id TEXT PRIMARY KEY, name TEXT, node_type TEXT, kind TEXT, lang TEXT, domain TEXT, purity TEXT, description TEXT);\n",
|
||||
"CREATE TABLE edges (src TEXT, tgt TEXT, relation TEXT);\n",
|
||||
"CREATE INDEX idx_edges_src ON edges(src);\n",
|
||||
"CREATE INDEX idx_edges_tgt ON edges(tgt);\n",
|
||||
"\n",
|
||||
"relation puede ser: uses_function, uses_type, returns, error_type.\n",
|
||||
"node_type: function, type.\n",
|
||||
"domain: core, finance, infra, datascience, cybersecurity, shell, pipelines, tui, browser.\n",
|
||||
"Puedes usar CTEs recursivos para traversal multi-hop.\"\"\",\n",
|
||||
"\n",
|
||||
" 'sparql': \"\"\"RDF triple store con RDFLib. Namespaces:\n",
|
||||
"fn: <http://fn-registry.local/>\n",
|
||||
"fnrel: <http://fn-registry.local/rel/> (relaciones: uses_function, uses_type, returns, error_type)\n",
|
||||
"fnprop: <http://fn-registry.local/prop/> (propiedades: name, kind, lang, domain, purity, description)\n",
|
||||
"\n",
|
||||
"Nodos: fn:<id> con rdf:type fn:Function o fn:Type.\n",
|
||||
"Aristas: fn:<src> fnrel:<relation> fn:<tgt>.\n",
|
||||
"Propiedades: fn:<id> fnprop:<prop> \"valor\".\n",
|
||||
"\n",
|
||||
"domain: core, finance, infra, datascience, cybersecurity, shell, pipelines, tui, browser.\"\"\",\n",
|
||||
"\n",
|
||||
" 'memgraph': \"\"\"Memgraph graph DB (compatible Neo4j/Bolt). Cypher query language.\n",
|
||||
"Nodos: (:FnNode {id, name, node_type, kind, lang, domain, purity, description})\n",
|
||||
"Relaciones: [:DEPENDS_ON {relation}]\n",
|
||||
"\n",
|
||||
"relation: uses_function, uses_type, returns, error_type.\n",
|
||||
"node_type: function, type.\n",
|
||||
"domain: core, finance, infra, datascience, cybersecurity, shell, pipelines, tui, browser.\n",
|
||||
"purity: pure, impure. Soporta variable-length paths: *1..5\"\"\",\n",
|
||||
"\n",
|
||||
" 'python_nx': \"\"\"NetworkX DiGraph en Python. El grafo G esta cargado con:\n",
|
||||
"- Nodos con atributos: node_type, name, kind, lang, domain, purity, description\n",
|
||||
"- Aristas con atributo: relation (uses_function, uses_type, returns, error_type)\n",
|
||||
"- IDs de nodos son strings como 'filter_slice_go_core', 'error_go_core', etc.\n",
|
||||
"\n",
|
||||
"Metodos utiles: G.successors(n), G.predecessors(n), G.nodes(data=True), G.edges(data=True),\n",
|
||||
"nx.has_path(G, src, tgt), G.degree(n), G.in_degree(n), G.out_degree(n).\n",
|
||||
"\n",
|
||||
"Responde SOLO con codigo Python ejecutable (sin imports, nx ya importado).\"\"\",\n",
|
||||
"}\n",
|
||||
"\n",
|
||||
"# Preguntas en lenguaje natural\n",
|
||||
"QUESTIONS = [\n",
|
||||
" {\n",
|
||||
" 'id': 'q1_direct',\n",
|
||||
" 'question': 'Que funciones usa directamente filter_slice_go_core?',\n",
|
||||
" 'difficulty': 'easy',\n",
|
||||
" },\n",
|
||||
" {\n",
|
||||
" 'id': 'q2_reverse',\n",
|
||||
" 'question': 'Que funciones dependen de error_go_core? (la usan como dependencia)',\n",
|
||||
" 'difficulty': 'easy',\n",
|
||||
" },\n",
|
||||
" {\n",
|
||||
" 'id': 'q3_twohop',\n",
|
||||
" 'question': 'Cuales son las dependencias transitivas a 2 saltos desde init_metabase_go_pipelines?',\n",
|
||||
" 'difficulty': 'medium',\n",
|
||||
" },\n",
|
||||
" {\n",
|
||||
" 'id': 'q4_domain',\n",
|
||||
" 'question': 'Muestra todas las relaciones de dependencia entre funciones del dominio finance.',\n",
|
||||
" 'difficulty': 'medium',\n",
|
||||
" },\n",
|
||||
" {\n",
|
||||
" 'id': 'q5_degree',\n",
|
||||
" 'question': 'Top 5 nodos con mas conexiones totales (entrantes + salientes).',\n",
|
||||
" 'difficulty': 'medium',\n",
|
||||
" },\n",
|
||||
" {\n",
|
||||
" 'id': 'q6_path',\n",
|
||||
" 'question': 'Existe algun camino (max 5 saltos) desde alguna funcion de finance hasta error_go_core?',\n",
|
||||
" 'difficulty': 'hard',\n",
|
||||
" },\n",
|
||||
" {\n",
|
||||
" 'id': 'q7_isolated',\n",
|
||||
" 'question': 'Que nodos no tienen ninguna arista (ni entrante ni saliente)?',\n",
|
||||
" 'difficulty': 'easy',\n",
|
||||
" },\n",
|
||||
" {\n",
|
||||
" 'id': 'q8_typed',\n",
|
||||
" 'question': 'Que funciones tienen una relacion uses_type apuntando a SMA_go_finance?',\n",
|
||||
" 'difficulty': 'medium',\n",
|
||||
" },\n",
|
||||
"]\n",
|
||||
"\n",
|
||||
"print(f'Schemas: {list(SCHEMAS.keys())}')\n",
|
||||
"print(f'Preguntas: {len(QUESTIONS)}')\n",
|
||||
"for q in QUESTIONS:\n",
|
||||
" print(f' [{q[\"difficulty\"]}] {q[\"id\"]}: {q[\"question\"]}')"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"id": "section-2",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"## 2. Funcion para llamar a `claude -p`"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "claude-caller",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"def ask_claude_query(schema_name, schema_text, question, timeout=30):\n",
|
||||
" \"\"\"Pide a claude -p que genere una query para un backend de grafos.\n",
|
||||
" \n",
|
||||
" Returns: dict con query generada, tiempo, exito/error.\n",
|
||||
" \"\"\"\n",
|
||||
" prompt = (\n",
|
||||
" f\"Genera SOLO la query (sin explicaciones, sin markdown, sin bloques de codigo) \"\n",
|
||||
" f\"para responder esta pregunta sobre un grafo de dependencias de funciones.\\n\\n\"\n",
|
||||
" f\"SCHEMA:\\n{schema_text}\\n\\n\"\n",
|
||||
" f\"PREGUNTA: {question}\\n\\n\"\n",
|
||||
" f\"Responde UNICAMENTE con la query ejecutable. Sin texto adicional.\"\n",
|
||||
" )\n",
|
||||
" \n",
|
||||
" t0 = time.perf_counter()\n",
|
||||
" try:\n",
|
||||
" result = subprocess.run(\n",
|
||||
" ['claude', '-p', prompt, '--model', 'haiku'],\n",
|
||||
" capture_output=True, text=True, timeout=timeout,\n",
|
||||
" cwd=os.environ.get('FN_REGISTRY_ROOT', os.path.expanduser('~/fn_registry'))\n",
|
||||
" )\n",
|
||||
" elapsed = time.perf_counter() - t0\n",
|
||||
" query = result.stdout.strip()\n",
|
||||
" # Limpiar markdown code blocks si los hay\n",
|
||||
" query = re.sub(r'^```\\w*\\n', '', query)\n",
|
||||
" query = re.sub(r'\\n```$', '', query)\n",
|
||||
" query = query.strip()\n",
|
||||
" \n",
|
||||
" return {\n",
|
||||
" 'schema': schema_name,\n",
|
||||
" 'query': query,\n",
|
||||
" 'time_s': round(elapsed, 2),\n",
|
||||
" 'success': True,\n",
|
||||
" 'error': None,\n",
|
||||
" }\n",
|
||||
" except subprocess.TimeoutExpired:\n",
|
||||
" return {\n",
|
||||
" 'schema': schema_name,\n",
|
||||
" 'query': '',\n",
|
||||
" 'time_s': timeout,\n",
|
||||
" 'success': False,\n",
|
||||
" 'error': 'timeout',\n",
|
||||
" }\n",
|
||||
" except Exception as e:\n",
|
||||
" return {\n",
|
||||
" 'schema': schema_name,\n",
|
||||
" 'query': '',\n",
|
||||
" 'time_s': time.perf_counter() - t0,\n",
|
||||
" 'success': False,\n",
|
||||
" 'error': str(e),\n",
|
||||
" }\n",
|
||||
"\n",
|
||||
"# Test rapido\n",
|
||||
"test = ask_claude_query('sql', SCHEMAS['sql'], 'Cuantos nodos hay en total?')\n",
|
||||
"print(f'Test: {test[\"query\"]}')\n",
|
||||
"print(f'Tiempo: {test[\"time_s\"]}s')"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"id": "section-3",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"## 3. Generar queries para todas las combinaciones\n",
|
||||
"\n",
|
||||
"8 preguntas x 4 backends = 32 llamadas a Claude."
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "generate-all",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"all_queries = []\n",
|
||||
"\n",
|
||||
"for q in QUESTIONS:\n",
|
||||
" print(f'\\n--- {q[\"id\"]}: {q[\"question\"][:50]}... ---')\n",
|
||||
" for schema_name, schema_text in SCHEMAS.items():\n",
|
||||
" result = ask_claude_query(schema_name, schema_text, q['question'])\n",
|
||||
" result['question_id'] = q['id']\n",
|
||||
" result['difficulty'] = q['difficulty']\n",
|
||||
" all_queries.append(result)\n",
|
||||
" status = 'OK' if result['success'] else f'ERR: {result[\"error\"]}'\n",
|
||||
" print(f' {schema_name:10s}: {result[\"time_s\"]}s [{status}]')\n",
|
||||
" print(f' {result[\"query\"][:100]}...' if len(result.get('query','')) > 100 else f' {result[\"query\"]}')\n",
|
||||
"\n",
|
||||
"df_queries = pd.DataFrame(all_queries)\n",
|
||||
"print(f'\\nTotal queries generadas: {len(df_queries)}')\n",
|
||||
"print(f'Exitos: {df_queries[\"success\"].sum()} / {len(df_queries)}')"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"id": "section-4",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"## 4. Ejecutar queries y validar resultados\n",
|
||||
"\n",
|
||||
"Cargamos los backends del notebook 01 y ejecutamos cada query generada."
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "execute-queries",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"# Este bloque requiere que los backends esten cargados del notebook 01\n",
|
||||
"# o se recarguen aqui. Por ahora evaluamos sintaxis y estructura.\n",
|
||||
"\n",
|
||||
"import sqlite3\n",
|
||||
"\n",
|
||||
"DATA_DIR = 'data/graph_bench'\n",
|
||||
"\n",
|
||||
"def try_execute_sql(query, db_path):\n",
|
||||
" try:\n",
|
||||
" db = sqlite3.connect(db_path)\n",
|
||||
" results = db.execute(query).fetchall()\n",
|
||||
" db.close()\n",
|
||||
" return {'success': True, 'results': results, 'count': len(results), 'error': None}\n",
|
||||
" except Exception as e:\n",
|
||||
" return {'success': False, 'results': [], 'count': 0, 'error': str(e)}\n",
|
||||
"\n",
|
||||
"def try_execute_cypher(query, db_path):\n",
|
||||
" try:\n",
|
||||
" import kuzu\n",
|
||||
" db = kuzu.Database(db_path)\n",
|
||||
" conn = kuzu.Connection(db)\n",
|
||||
" r = conn.execute(query)\n",
|
||||
" df = r.get_as_df()\n",
|
||||
" del conn, db\n",
|
||||
" return {'success': True, 'results': df.values.tolist(), 'count': len(df), 'error': None}\n",
|
||||
" except Exception as e:\n",
|
||||
" return {'success': False, 'results': [], 'count': 0, 'error': str(e)}\n",
|
||||
"\n",
|
||||
"def try_execute_sparql(query, ttl_path):\n",
|
||||
" try:\n",
|
||||
" from rdflib import Graph as RDFGraph, Namespace\n",
|
||||
" FN = Namespace('http://fn-registry.local/')\n",
|
||||
" FNREL = Namespace('http://fn-registry.local/rel/')\n",
|
||||
" FNPROP = Namespace('http://fn-registry.local/prop/')\n",
|
||||
" g = RDFGraph()\n",
|
||||
" g.parse(ttl_path, format='turtle')\n",
|
||||
" r = g.query(query, initNs={'fn': FN, 'fnrel': FNREL, 'fnprop': FNPROP})\n",
|
||||
" results = [list(row) for row in r]\n",
|
||||
" return {'success': True, 'results': results, 'count': len(results), 'error': None}\n",
|
||||
" except Exception as e:\n",
|
||||
" return {'success': False, 'results': [], 'count': 0, 'error': str(e)}\n",
|
||||
"\n",
|
||||
"# Ejecutar cada query\n",
|
||||
"exec_results = []\n",
|
||||
"\n",
|
||||
"for _, row in df_queries.iterrows():\n",
|
||||
" if not row['success']:\n",
|
||||
" exec_results.append({'exec_success': False, 'exec_count': 0, 'exec_error': 'query generation failed'})\n",
|
||||
" continue\n",
|
||||
" \n",
|
||||
" query = row['query']\n",
|
||||
" schema = row['schema']\n",
|
||||
" \n",
|
||||
"def try_execute_memgraph(query):\n",
|
||||
" try:\n",
|
||||
" from neo4j import GraphDatabase\n",
|
||||
" driver = GraphDatabase.driver('bolt://localhost:7687', auth=('', ''))\n",
|
||||
" with driver.session() as session:\n",
|
||||
" results = [dict(rec) for rec in session.run(query)]\n",
|
||||
" driver.close()\n",
|
||||
" return {'success': True, 'results': results, 'count': len(results), 'error': None}\n",
|
||||
" except Exception as e:\n",
|
||||
" return {'success': False, 'results': [], 'count': 0, 'error': str(e)}\n",
|
||||
"\n",
|
||||
" if schema == 'memgraph':\n",
|
||||
" r = try_execute_memgraph(query)\n",
|
||||
" elif schema == 'sql':\n",
|
||||
" r = try_execute_sql(query, os.path.join(DATA_DIR, 'sqlite_graph.db'))\n",
|
||||
" elif schema == 'cypher':\n",
|
||||
" r = try_execute_cypher(query, os.path.join(DATA_DIR, 'kuzu'))\n",
|
||||
" elif schema == 'sparql':\n",
|
||||
" r = try_execute_sparql(query, os.path.join(DATA_DIR, 'rdflib.ttl'))\n",
|
||||
" elif schema == 'python_nx':\n",
|
||||
" # Python queries necesitarian eval — lo marcamos como manual\n",
|
||||
" r = {'success': None, 'count': -1, 'error': 'requires manual eval'}\n",
|
||||
" else:\n",
|
||||
" r = {'success': False, 'count': 0, 'error': 'unknown schema'}\n",
|
||||
" \n",
|
||||
" exec_results.append({\n",
|
||||
" 'exec_success': r['success'],\n",
|
||||
" 'exec_count': r.get('count', 0),\n",
|
||||
" 'exec_error': r.get('error'),\n",
|
||||
" })\n",
|
||||
"\n",
|
||||
"df_exec = pd.DataFrame(exec_results)\n",
|
||||
"df_full = pd.concat([df_queries.reset_index(drop=True), df_exec], axis=1)\n",
|
||||
"\n",
|
||||
"print('Resultados de ejecucion:')\n",
|
||||
"print(f' Queries ejecutadas: {len(df_full)}')\n",
|
||||
"print(f' Generacion exitosa: {df_full[\"success\"].sum()}')\n",
|
||||
"for schema in SCHEMAS:\n",
|
||||
" sub = df_full[df_full['schema'] == schema]\n",
|
||||
" exec_ok = sub['exec_success'].sum()\n",
|
||||
" print(f' {schema:10s}: {exec_ok}/{len(sub)} queries ejecutaron sin error')"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"id": "section-5",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"## 5. Analisis y visualizaciones"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "analysis",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"import matplotlib.pyplot as plt\n",
|
||||
"plt.style.use('seaborn-v0_8-whitegrid')\n",
|
||||
"\n",
|
||||
"# Tasa de exito por backend\n",
|
||||
"fig, axes = plt.subplots(1, 3, figsize=(18, 6))\n",
|
||||
"\n",
|
||||
"colors = {'cypher': '#3498db', 'sql': '#2ecc71', 'sparql': '#f39c12', 'python_nx': '#9b59b6'}\n",
|
||||
"\n",
|
||||
"# 1. Tasa de ejecucion exitosa\n",
|
||||
"ax = axes[0]\n",
|
||||
"success_rate = df_full.groupby('schema')['exec_success'].apply(lambda x: (x == True).sum() / len(x) * 100)\n",
|
||||
"ax.bar(success_rate.index, success_rate.values, color=[colors.get(s, 'gray') for s in success_rate.index])\n",
|
||||
"ax.set_ylabel('% queries que ejecutan sin error')\n",
|
||||
"ax.set_title('Tasa de queries ejecutables')\n",
|
||||
"ax.set_ylim(0, 110)\n",
|
||||
"\n",
|
||||
"# 2. Tiempo promedio de generacion\n",
|
||||
"ax = axes[1]\n",
|
||||
"avg_time = df_full.groupby('schema')['time_s'].mean()\n",
|
||||
"ax.bar(avg_time.index, avg_time.values, color=[colors.get(s, 'gray') for s in avg_time.index])\n",
|
||||
"ax.set_ylabel('Tiempo promedio (s)')\n",
|
||||
"ax.set_title('Tiempo de generacion por query')\n",
|
||||
"\n",
|
||||
"# 3. Exito por dificultad\n",
|
||||
"ax = axes[2]\n",
|
||||
"pivot = df_full.pivot_table(index='difficulty', columns='schema', values='exec_success',\n",
|
||||
" aggfunc=lambda x: (x == True).sum() / max(len(x), 1) * 100)\n",
|
||||
"pivot.plot(kind='bar', ax=ax, color=[colors.get(c, 'gray') for c in pivot.columns])\n",
|
||||
"ax.set_ylabel('% exito')\n",
|
||||
"ax.set_title('Exito por dificultad de pregunta')\n",
|
||||
"ax.legend(title='Backend')\n",
|
||||
"ax.set_xticklabels(ax.get_xticklabels(), rotation=0)\n",
|
||||
"\n",
|
||||
"plt.suptitle('LLM Graph Query Generation: claude -p (haiku)', fontsize=14)\n",
|
||||
"plt.tight_layout()\n",
|
||||
"plt.show()"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"id": "section-6",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"## 6. Detalle: queries generadas y errores"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"id": "detail-view",
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"for qid in [q['id'] for q in QUESTIONS]:\n",
|
||||
" sub = df_full[df_full['question_id'] == qid]\n",
|
||||
" q_text = [q for q in QUESTIONS if q['id'] == qid][0]['question']\n",
|
||||
" print(f'\\n{\"=\"*70}')\n",
|
||||
" print(f'{qid}: {q_text}')\n",
|
||||
" print('=' * 70)\n",
|
||||
" for _, row in sub.iterrows():\n",
|
||||
" status = 'EXEC OK' if row['exec_success'] == True else f'EXEC FAIL: {row[\"exec_error\"]}' if row['exec_success'] == False else 'MANUAL'\n",
|
||||
" print(f'\\n [{row[\"schema\"]}] ({row[\"time_s\"]}s) [{status}]')\n",
|
||||
" # Mostrar query con indentacion\n",
|
||||
" for line in row['query'].split('\\n'):\n",
|
||||
" print(f' {line}')"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "markdown",
|
||||
"id": "conclusions",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"## 7. Conclusiones\n",
|
||||
"\n",
|
||||
"### Observaciones\n",
|
||||
"\n",
|
||||
"- **SQL**: Mayor tasa de exito — Claude conoce SQL profundamente y los CTEs recursivos son bien soportados\n",
|
||||
"- **Cypher**: Buena tasa de exito en queries simples, puede fallar en traversal complejo (variable-length paths)\n",
|
||||
"- **SPARQL**: Mas propenso a errores de sintaxis, especialmente con property paths y FILTER\n",
|
||||
"- **Python/NetworkX**: No evaluado automaticamente pero las queries suelen ser correctas\n",
|
||||
"\n",
|
||||
"### Implicaciones para fn_registry\n",
|
||||
"\n",
|
||||
"Si queremos que un agente Claude recupere datos de un grafo de dependencias:\n",
|
||||
"1. **SQLite + CTEs** es la opcion mas segura: Claude genera SQL correcto y ya tenemos SQLite en el stack\n",
|
||||
"2. **Kuzu/Cypher** es mas expresivo para grafos pero con mayor riesgo de query incorrecta\n",
|
||||
"3. **SPARQL** no justifica la complejidad adicional para este caso de uso\n",
|
||||
"4. **NetworkX via codigo** es viable si el agente tiene acceso a ejecutar Python"
|
||||
]
|
||||
}
|
||||
],
|
||||
"metadata": {
|
||||
"kernelspec": {
|
||||
"display_name": "Python 3 (ipykernel)",
|
||||
"language": "python",
|
||||
"name": "python3"
|
||||
},
|
||||
"language_info": {
|
||||
"codemirror_mode": {
|
||||
"name": "ipython",
|
||||
"version": 3
|
||||
},
|
||||
"file_extension": ".py",
|
||||
"mimetype": "text/x-python",
|
||||
"name": "python",
|
||||
"nbconvert_exporter": "python",
|
||||
"pygments_lexer": "ipython3",
|
||||
"version": "3.13.7"
|
||||
}
|
||||
},
|
||||
"nbformat": 4,
|
||||
"nbformat_minor": 5
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,395 @@
|
||||
alert_typescript_ui,cn_typescript_core,uses_function
|
||||
analytics_page_typescript_ui,cn_typescript_core,uses_function
|
||||
apply_theme_typescript_ui,ThemeConfig_typescript_ui,uses_type
|
||||
apply_theme_typescript_ui,error_go_core,error_type
|
||||
area_chart_typescript_ui,cn_typescript_core,uses_function
|
||||
area_chart_typescript_ui,chart_container_typescript_ui,uses_function
|
||||
area_chart_typescript_ui,get_series_color_typescript_core,uses_function
|
||||
area_chart_typescript_ui,ChartSeries_typescript_ui,uses_type
|
||||
assert_command_exists_bash_shell,error_go_core,error_type
|
||||
assert_docker_container_running_bash_infra,error_go_core,error_type
|
||||
assert_file_exists_bash_shell,error_go_core,error_type
|
||||
autocorrelation_go_datascience,pearson_go_datascience,uses_function
|
||||
badge_ts_ui,cn_typescript_core,uses_function
|
||||
bar_chart_typescript_ui,cn_typescript_core,uses_function
|
||||
bar_chart_typescript_ui,chart_container_typescript_ui,uses_function
|
||||
bar_chart_typescript_ui,get_series_color_typescript_core,uses_function
|
||||
bar_chart_typescript_ui,ChartSeries_typescript_ui,uses_type
|
||||
bollinger_bands_go_finance,bollinger_result_go_finance,uses_type
|
||||
bollinger_bands_py_finance,sma_py_finance,uses_function
|
||||
button_ts_ui,cn_typescript_core,uses_function
|
||||
card_ts_ui,cn_typescript_core,uses_function
|
||||
cdp_click_go_browser,cdp_connect_go_browser,uses_function
|
||||
cdp_click_go_browser,cdp_evaluate_go_browser,uses_function
|
||||
cdp_click_go_browser,error_go_core,error_type
|
||||
cdp_close_go_browser,error_go_core,error_type
|
||||
cdp_connect_go_browser,error_go_core,error_type
|
||||
cdp_evaluate_go_browser,cdp_connect_go_browser,uses_function
|
||||
cdp_evaluate_go_browser,error_go_core,error_type
|
||||
cdp_get_html_go_browser,cdp_connect_go_browser,uses_function
|
||||
cdp_get_html_go_browser,cdp_evaluate_go_browser,uses_function
|
||||
cdp_get_html_go_browser,error_go_core,error_type
|
||||
cdp_navigate_go_browser,cdp_connect_go_browser,uses_function
|
||||
cdp_navigate_go_browser,error_go_core,error_type
|
||||
cdp_screenshot_go_browser,cdp_connect_go_browser,uses_function
|
||||
cdp_screenshot_go_browser,cdp_evaluate_go_browser,uses_function
|
||||
cdp_screenshot_go_browser,error_go_core,error_type
|
||||
cdp_type_text_go_browser,cdp_connect_go_browser,uses_function
|
||||
cdp_type_text_go_browser,error_go_core,error_type
|
||||
cdp_wait_element_go_browser,cdp_connect_go_browser,uses_function
|
||||
cdp_wait_element_go_browser,cdp_evaluate_go_browser,uses_function
|
||||
cdp_wait_element_go_browser,error_go_core,error_type
|
||||
cdp_wait_load_go_browser,cdp_evaluate_go_browser,uses_function
|
||||
cdp_wait_load_go_browser,error_go_core,error_type
|
||||
chart_container_typescript_ui,cn_typescript_core,uses_function
|
||||
chart_container_typescript_ui,get_series_color_typescript_core,uses_function
|
||||
chart_container_typescript_ui,ChartSeries_typescript_ui,uses_type
|
||||
chrome_launch_go_browser,error_go_core,error_type
|
||||
clickhouse_open_go_infra,db_config_go_infra,uses_type
|
||||
clickhouse_open_go_infra,error_go_core,error_type
|
||||
confirm_prompt_go_tui,result_go_core,uses_type
|
||||
confirm_prompt_go_tui,error_go_core,error_type
|
||||
crud_page_typescript_ui,cn_typescript_core,uses_function
|
||||
dashboard_layout_typescript_ui,cn_typescript_core,uses_function
|
||||
data_table_typescript_ui,cn_typescript_core,uses_function
|
||||
db_close_go_infra,error_go_core,error_type
|
||||
db_create_table_go_infra,error_go_core,error_type
|
||||
db_exec_go_infra,error_go_core,error_type
|
||||
db_insert_batch_go_infra,db_insert_row_go_infra,uses_function
|
||||
db_insert_batch_go_infra,error_go_core,error_type
|
||||
db_insert_row_go_infra,error_go_core,error_type
|
||||
db_query_go_infra,error_go_core,error_type
|
||||
deploy_app_go_infra,generate_dockerfile_go_infra,uses_function
|
||||
deploy_app_go_infra,write_dockerfile_go_infra,uses_function
|
||||
deploy_app_go_infra,docker_build_image_go_infra,uses_function
|
||||
deploy_app_go_infra,docker_run_container_go_infra,uses_function
|
||||
deploy_app_go_infra,error_go_core,error_type
|
||||
detail_page_typescript_ui,cn_typescript_core,uses_function
|
||||
detect_cycle_go_core,error_go_core,error_type
|
||||
dialog_typescript_ui,cn_typescript_core,uses_function
|
||||
docker_build_image_go_infra,error_go_core,error_type
|
||||
docker_compose_down_go_infra,error_go_core,error_type
|
||||
docker_compose_up_go_infra,error_go_core,error_type
|
||||
docker_container_logs_go_infra,error_go_core,error_type
|
||||
docker_cp_file_bash_infra,error_go_core,error_type
|
||||
docker_create_network_go_infra,error_go_core,error_type
|
||||
docker_inspect_container_go_infra,error_go_core,error_type
|
||||
docker_list_containers_go_infra,container_info_go_infra,uses_type
|
||||
docker_list_containers_go_infra,error_go_core,error_type
|
||||
docker_list_images_go_infra,image_info_go_infra,uses_type
|
||||
docker_list_images_go_infra,error_go_core,error_type
|
||||
docker_pull_image_go_infra,error_go_core,error_type
|
||||
docker_remove_container_go_infra,error_go_core,error_type
|
||||
docker_remove_image_go_infra,error_go_core,error_type
|
||||
docker_remove_network_go_infra,error_go_core,error_type
|
||||
docker_run_container_go_infra,error_go_core,error_type
|
||||
docker_start_container_go_infra,error_go_core,error_type
|
||||
docker_stop_container_go_infra,error_go_core,error_type
|
||||
docker_tui_go_infra,new_filtered_list_go_tui,uses_function
|
||||
docker_tui_go_infra,new_list_go_tui,uses_function
|
||||
docker_tui_go_infra,new_spinner_go_tui,uses_function
|
||||
docker_tui_go_infra,new_base_model_go_tui,uses_function
|
||||
docker_tui_go_infra,default_styles_go_tui,uses_function
|
||||
docker_tui_go_infra,run_fullscreen_go_tui,uses_function
|
||||
docker_tui_go_infra,run_cmd_timeout_go_shell,uses_function
|
||||
docker_tui_go_infra,docker_list_containers_go_infra,uses_function
|
||||
docker_tui_go_infra,docker_start_container_go_infra,uses_function
|
||||
docker_tui_go_infra,docker_stop_container_go_infra,uses_function
|
||||
docker_tui_go_infra,docker_container_logs_go_infra,uses_function
|
||||
docker_tui_go_infra,docker_list_images_go_infra,uses_function
|
||||
docker_tui_go_infra,docker_remove_image_go_infra,uses_function
|
||||
docker_tui_go_infra,container_go_docker,uses_type
|
||||
docker_tui_go_infra,image_go_docker,uses_type
|
||||
docker_tui_go_infra,volume_go_docker,uses_type
|
||||
docker_tui_go_infra,network_go_docker,uses_type
|
||||
docker_tui_go_infra,compose_project_go_docker,uses_type
|
||||
docker_tui_go_infra,list_model_go_tui,uses_type
|
||||
docker_tui_go_infra,filtered_list_model_go_tui,uses_type
|
||||
docker_tui_go_infra,spinner_model_go_tui,uses_type
|
||||
docker_tui_go_infra,styles_go_tui,uses_type
|
||||
docker_tui_go_infra,base_model_go_tui,uses_type
|
||||
docker_tui_go_infra,cmd_result_go_shell,uses_type
|
||||
docker_tui_go_infra,error_go_core,error_type
|
||||
docker_volume_create_go_infra,error_go_core,error_type
|
||||
docker_volume_list_go_infra,error_go_core,error_type
|
||||
docker_volume_remove_go_infra,error_go_core,error_type
|
||||
duckdb_open_go_infra,db_config_go_infra,uses_type
|
||||
duckdb_open_go_infra,error_go_core,error_type
|
||||
embedding_encode_py_infra,embedding_load_model_py_infra,uses_function
|
||||
embedding_encode_py_infra,error_go_core,error_type
|
||||
embedding_load_model_py_infra,error_go_core,error_type
|
||||
embedding_save_model_py_infra,error_go_core,error_type
|
||||
embedding_search_sqlvec_py_infra,error_go_core,error_type
|
||||
embedding_search_usearch_py_infra,error_go_core,error_type
|
||||
embedding_store_sqlvec_py_infra,error_go_core,error_type
|
||||
embedding_store_usearch_py_infra,error_go_core,error_type
|
||||
fetch_data_frame_go_datascience,error_go_core,error_type
|
||||
fetch_http_headers_go_cybersecurity,error_go_core,error_type
|
||||
fetch_ohlcv_go_finance,ohlcv_go_finance,uses_type
|
||||
fetch_ohlcv_go_finance,error_go_core,error_type
|
||||
find_go_core,option_go_core,uses_type
|
||||
find_free_port_bash_shell,error_go_core,error_type
|
||||
find_index_go_core,option_go_core,uses_type
|
||||
form_field_typescript_ui,cn_typescript_core,uses_function
|
||||
go_build_binary_go_infra,error_go_core,error_type
|
||||
health_check_http_go_infra,error_go_core,error_type
|
||||
init_jupyter_analysis_bash_pipelines,assert_command_exists_bash_shell,uses_function
|
||||
init_jupyter_analysis_bash_pipelines,find_free_port_bash_shell,uses_function
|
||||
init_jupyter_analysis_bash_pipelines,init_uv_venv_bash_infra,uses_function
|
||||
init_jupyter_analysis_bash_pipelines,uv_add_packages_bash_infra,uses_function
|
||||
init_jupyter_analysis_bash_pipelines,write_jupyter_launcher_bash_infra,uses_function
|
||||
init_jupyter_analysis_bash_pipelines,write_mcp_jupyter_config_bash_infra,uses_function
|
||||
init_jupyter_analysis_bash_pipelines,write_claude_jupyter_rules_bash_infra,uses_function
|
||||
init_jupyter_analysis_bash_pipelines,write_jupyter_registry_kernel_bash_infra,uses_function
|
||||
init_jupyter_analysis_bash_pipelines,error_go_core,error_type
|
||||
init_metabase_go_infra,docker_create_network_go_infra,uses_function
|
||||
init_metabase_go_infra,docker_pull_image_go_infra,uses_function
|
||||
init_metabase_go_infra,docker_run_container_go_infra,uses_function
|
||||
init_metabase_go_infra,docker_inspect_container_go_infra,uses_function
|
||||
init_metabase_go_infra,retry_with_backoff_go_core,uses_function
|
||||
init_metabase_go_infra,container_info_go_infra,uses_type
|
||||
init_metabase_go_infra,network_go_docker,uses_type
|
||||
init_metabase_go_infra,error_go_core,error_type
|
||||
init_uv_venv_bash_infra,error_go_core,error_type
|
||||
input_ts_ui,cn_typescript_core,uses_function
|
||||
install_nordvpn_bash_infra,error_go_core,error_type
|
||||
jupyter_discover_py_notebook,error_go_core,error_type
|
||||
jupyter_exec_py_notebook,error_go_core,error_type
|
||||
jupyter_kernel_py_notebook,error_go_core,error_type
|
||||
jupyter_read_py_notebook,error_go_core,error_type
|
||||
jupyter_write_py_notebook,error_go_core,error_type
|
||||
kpi_card_typescript_ui,cn_typescript_core,uses_function
|
||||
label_ts_ui,cn_typescript_core,uses_function
|
||||
line_chart_typescript_ui,cn_typescript_core,uses_function
|
||||
line_chart_typescript_ui,chart_container_typescript_ui,uses_function
|
||||
line_chart_typescript_ui,get_series_color_typescript_core,uses_function
|
||||
line_chart_typescript_ui,ChartSeries_typescript_ui,uses_type
|
||||
load_csv_go_datascience,error_go_core,error_type
|
||||
load_ohlcv_from_duckdb_go_finance,ohlcv_go_finance,uses_type
|
||||
load_ohlcv_from_duckdb_go_finance,error_go_core,error_type
|
||||
load_parquet_go_datascience,error_go_core,error_type
|
||||
lookup_whois_go_cybersecurity,error_go_core,error_type
|
||||
map_concurrent_go_core,error_go_core,error_type
|
||||
max_drawdown_go_finance,drawdown_result_go_finance,uses_type
|
||||
metabase_add_database_py_infra,MetabaseClient_go_infra,uses_type
|
||||
metabase_add_database_py_infra,error_go_core,error_type
|
||||
metabase_add_ops_db_py_pipelines,metabase_auth_py_infra,uses_function
|
||||
metabase_add_ops_db_py_pipelines,metabase_list_databases_py_infra,uses_function
|
||||
metabase_add_ops_db_py_pipelines,metabase_add_database_py_infra,uses_function
|
||||
metabase_add_ops_db_py_pipelines,error_go_core,error_type
|
||||
metabase_auth_go_infra,MetabaseClient_go_infra,uses_type
|
||||
metabase_auth_go_infra,error_go_core,error_type
|
||||
metabase_auth_py_infra,error_go_core,error_type
|
||||
metabase_create_card_go_infra,MetabaseClient_go_infra,uses_type
|
||||
metabase_create_card_go_infra,error_go_core,error_type
|
||||
metabase_create_card_py_infra,error_go_core,error_type
|
||||
metabase_create_dashboard_go_infra,MetabaseClient_go_infra,uses_type
|
||||
metabase_create_dashboard_go_infra,error_go_core,error_type
|
||||
metabase_create_dashboard_py_infra,error_go_core,error_type
|
||||
metabase_create_ops_dashboard_py_pipelines,metabase_auth_py_infra,uses_function
|
||||
metabase_create_ops_dashboard_py_pipelines,metabase_list_databases_py_infra,uses_function
|
||||
metabase_create_ops_dashboard_py_pipelines,metabase_create_card_py_infra,uses_function
|
||||
metabase_create_ops_dashboard_py_pipelines,metabase_create_dashboard_py_infra,uses_function
|
||||
metabase_create_ops_dashboard_py_pipelines,metabase_update_dashboard_py_infra,uses_function
|
||||
metabase_create_ops_dashboard_py_pipelines,metabase_list_dashboards_py_infra,uses_function
|
||||
metabase_create_ops_dashboard_py_pipelines,metabase_delete_dashboard_py_infra,uses_function
|
||||
metabase_create_ops_dashboard_py_pipelines,error_go_core,error_type
|
||||
metabase_create_user_go_infra,MetabaseClient_go_infra,uses_type
|
||||
metabase_create_user_go_infra,error_go_core,error_type
|
||||
metabase_create_user_py_infra,error_go_core,error_type
|
||||
metabase_deactivate_user_go_infra,MetabaseClient_go_infra,uses_type
|
||||
metabase_deactivate_user_go_infra,error_go_core,error_type
|
||||
metabase_deactivate_user_py_infra,error_go_core,error_type
|
||||
metabase_delete_card_go_infra,MetabaseClient_go_infra,uses_type
|
||||
metabase_delete_card_go_infra,error_go_core,error_type
|
||||
metabase_delete_card_py_infra,error_go_core,error_type
|
||||
metabase_delete_dashboard_go_infra,MetabaseClient_go_infra,uses_type
|
||||
metabase_delete_dashboard_go_infra,error_go_core,error_type
|
||||
metabase_delete_dashboard_py_infra,error_go_core,error_type
|
||||
metabase_execute_card_go_infra,MetabaseClient_go_infra,uses_type
|
||||
metabase_execute_card_go_infra,error_go_core,error_type
|
||||
metabase_execute_card_py_infra,error_go_core,error_type
|
||||
metabase_execute_query_go_infra,MetabaseClient_go_infra,uses_type
|
||||
metabase_execute_query_go_infra,error_go_core,error_type
|
||||
metabase_execute_query_py_infra,error_go_core,error_type
|
||||
metabase_fix_permissions_py_pipelines,metabase_auth_py_infra,uses_function
|
||||
metabase_fix_permissions_py_pipelines,metabase_list_databases_py_infra,uses_function
|
||||
metabase_fix_permissions_py_pipelines,error_go_core,error_type
|
||||
metabase_get_card_go_infra,MetabaseClient_go_infra,uses_type
|
||||
metabase_get_card_go_infra,error_go_core,error_type
|
||||
metabase_get_card_py_infra,error_go_core,error_type
|
||||
metabase_get_dashboard_go_infra,MetabaseClient_go_infra,uses_type
|
||||
metabase_get_dashboard_go_infra,error_go_core,error_type
|
||||
metabase_get_dashboard_py_infra,error_go_core,error_type
|
||||
metabase_get_database_py_infra,MetabaseClient_go_infra,uses_type
|
||||
metabase_get_database_py_infra,error_go_core,error_type
|
||||
metabase_get_user_go_infra,MetabaseClient_go_infra,uses_type
|
||||
metabase_get_user_go_infra,error_go_core,error_type
|
||||
metabase_get_user_py_infra,error_go_core,error_type
|
||||
metabase_list_cards_go_infra,MetabaseClient_go_infra,uses_type
|
||||
metabase_list_cards_go_infra,error_go_core,error_type
|
||||
metabase_list_cards_py_infra,error_go_core,error_type
|
||||
metabase_list_dashboards_go_infra,MetabaseClient_go_infra,uses_type
|
||||
metabase_list_dashboards_go_infra,error_go_core,error_type
|
||||
metabase_list_dashboards_py_infra,error_go_core,error_type
|
||||
metabase_list_databases_py_infra,MetabaseClient_go_infra,uses_type
|
||||
metabase_list_databases_py_infra,error_go_core,error_type
|
||||
metabase_list_users_go_infra,MetabaseClient_go_infra,uses_type
|
||||
metabase_list_users_go_infra,error_go_core,error_type
|
||||
metabase_list_users_py_infra,error_go_core,error_type
|
||||
metabase_setup_py_infra,error_go_core,error_type
|
||||
metabase_update_card_go_infra,MetabaseClient_go_infra,uses_type
|
||||
metabase_update_card_go_infra,error_go_core,error_type
|
||||
metabase_update_card_py_infra,error_go_core,error_type
|
||||
metabase_update_dashboard_go_infra,MetabaseClient_go_infra,uses_type
|
||||
metabase_update_dashboard_go_infra,error_go_core,error_type
|
||||
metabase_update_dashboard_py_infra,error_go_core,error_type
|
||||
metabase_update_user_go_infra,MetabaseClient_go_infra,uses_type
|
||||
metabase_update_user_go_infra,error_go_core,error_type
|
||||
metabase_update_user_py_infra,error_go_core,error_type
|
||||
new_filtered_list_go_tui,list_item_go_tui,uses_type
|
||||
new_list_go_tui,list_item_go_tui,uses_type
|
||||
new_multi_list_go_tui,list_item_go_tui,uses_type
|
||||
new_progress_with_styles_go_tui,styles_go_tui,uses_type
|
||||
new_spinner_with_style_go_tui,styles_go_tui,uses_type
|
||||
new_styles_go_tui,theme_go_tui,uses_type
|
||||
nordvpn_connect_bash_infra,error_go_core,error_type
|
||||
nordvpn_container_run_go_infra,docker_run_container_go_infra,uses_function
|
||||
nordvpn_container_run_go_infra,error_go_core,error_type
|
||||
nordvpn_container_start_go_infra,docker_run_container_go_infra,uses_function
|
||||
nordvpn_container_start_go_infra,docker_remove_container_go_infra,uses_function
|
||||
nordvpn_container_start_go_infra,docker_container_logs_go_infra,uses_function
|
||||
nordvpn_container_start_go_infra,error_go_core,error_type
|
||||
nordvpn_container_stop_go_infra,docker_stop_container_go_infra,uses_function
|
||||
nordvpn_container_stop_go_infra,docker_remove_container_go_infra,uses_function
|
||||
nordvpn_container_stop_go_infra,error_go_core,error_type
|
||||
nordvpn_disconnect_bash_infra,error_go_core,error_type
|
||||
nordvpn_get_ip_bash_infra,error_go_core,error_type
|
||||
nordvpn_list_cities_bash_infra,error_go_core,error_type
|
||||
nordvpn_list_countries_bash_infra,error_go_core,error_type
|
||||
nordvpn_set_protocol_bash_infra,error_go_core,error_type
|
||||
nordvpn_status_bash_infra,error_go_core,error_type
|
||||
normalize_ohlcv_go_finance,ohlcv_go_finance,uses_type
|
||||
page_header_typescript_ui,cn_typescript_core,uses_function
|
||||
parse_nordvpn_status_go_infra,NordVPNStatus_go_infra,uses_type
|
||||
pass_delete_bash_infra,error_go_core,error_type
|
||||
pass_generate_bash_infra,error_go_core,error_type
|
||||
pass_get_bash_infra,error_go_core,error_type
|
||||
pass_list_bash_infra,error_go_core,error_type
|
||||
pass_set_bash_infra,error_go_core,error_type
|
||||
pass_sync_bash_infra,error_go_core,error_type
|
||||
pie_chart_typescript_ui,cn_typescript_core,uses_function
|
||||
pipeline_launcher_go_infra,docker_tui_go_infra,uses_function
|
||||
pipeline_launcher_go_infra,base_model_go_tui,uses_type
|
||||
pipeline_launcher_go_infra,filtered_list_model_go_tui,uses_type
|
||||
pipeline_launcher_go_infra,spinner_model_go_tui,uses_type
|
||||
pipeline_launcher_go_infra,styles_go_tui,uses_type
|
||||
pipeline_launcher_go_infra,error_go_core,error_type
|
||||
postgres_open_go_infra,db_config_go_infra,uses_type
|
||||
postgres_open_go_infra,error_go_core,error_type
|
||||
print_error_go_tui,error_go_core,error_type
|
||||
print_info_go_tui,error_go_core,error_type
|
||||
print_muted_go_tui,error_go_core,error_type
|
||||
print_success_go_tui,error_go_core,error_type
|
||||
print_warning_go_tui,error_go_core,error_type
|
||||
progress_bar_typescript_ui,cn_typescript_core,uses_function
|
||||
resolve_dns_go_cybersecurity,error_go_core,error_type
|
||||
retry_with_backoff_go_core,error_go_core,error_type
|
||||
run_cmd_go_shell,cmd_result_go_shell,uses_type
|
||||
run_cmd_go_shell,result_go_core,uses_type
|
||||
run_cmd_go_shell,error_go_core,error_type
|
||||
run_cmd_timeout_go_shell,cmd_result_go_shell,uses_type
|
||||
run_cmd_timeout_go_shell,result_go_core,uses_type
|
||||
run_cmd_timeout_go_shell,error_go_core,error_type
|
||||
run_fullscreen_go_tui,result_go_core,uses_type
|
||||
run_fullscreen_go_tui,error_go_core,error_type
|
||||
run_model_go_tui,result_go_core,uses_type
|
||||
run_model_go_tui,error_go_core,error_type
|
||||
run_pipe_go_shell,cmd_result_go_shell,uses_type
|
||||
run_pipe_go_shell,result_go_core,uses_type
|
||||
run_pipe_go_shell,error_go_core,error_type
|
||||
run_shell_go_shell,cmd_result_go_shell,uses_type
|
||||
run_shell_go_shell,result_go_core,uses_type
|
||||
run_shell_go_shell,error_go_core,error_type
|
||||
run_shell_timeout_go_shell,cmd_result_go_shell,uses_type
|
||||
run_shell_timeout_go_shell,result_go_core,uses_type
|
||||
run_shell_timeout_go_shell,error_go_core,error_type
|
||||
run_steps_bash_shell,exit_with_status_bash_shell,uses_function
|
||||
run_steps_bash_shell,report_execution_json_bash_shell,uses_function
|
||||
run_steps_bash_shell,error_go_core,error_type
|
||||
run_with_mouse_go_tui,result_go_core,uses_type
|
||||
run_with_mouse_go_tui,error_go_core,error_type
|
||||
scaffold_wails_app_go_infra,error_go_core,error_type
|
||||
scan_port_tcp_go_cybersecurity,error_go_core,error_type
|
||||
select_typescript_ui,cn_typescript_core,uses_function
|
||||
settings_page_typescript_ui,cn_typescript_core,uses_function
|
||||
setup_metabase_volume_bash_pipelines,assert_file_exists_bash_shell,uses_function
|
||||
setup_metabase_volume_bash_pipelines,assert_command_exists_bash_shell,uses_function
|
||||
setup_metabase_volume_bash_pipelines,assert_docker_container_running_bash_infra,uses_function
|
||||
setup_metabase_volume_bash_pipelines,docker_cp_file_bash_infra,uses_function
|
||||
setup_metabase_volume_bash_pipelines,error_go_core,error_type
|
||||
skeleton_typescript_ui,cn_typescript_core,uses_function
|
||||
sparkline_typescript_ui,cn_typescript_core,uses_function
|
||||
sqlite_open_go_infra,db_config_go_infra,uses_type
|
||||
sqlite_open_go_infra,error_go_core,error_type
|
||||
ssh_check_go_infra,ssh_conn_go_infra,uses_type
|
||||
ssh_check_go_infra,error_go_core,error_type
|
||||
ssh_download_go_infra,ssh_conn_go_infra,uses_type
|
||||
ssh_download_go_infra,error_go_core,error_type
|
||||
ssh_exec_go_infra,ssh_conn_go_infra,uses_type
|
||||
ssh_exec_go_infra,error_go_core,error_type
|
||||
ssh_tunnel_close_go_infra,error_go_core,error_type
|
||||
ssh_tunnel_open_go_infra,ssh_conn_go_infra,uses_type
|
||||
ssh_tunnel_open_go_infra,error_go_core,error_type
|
||||
ssh_upload_go_infra,ssh_conn_go_infra,uses_type
|
||||
ssh_upload_go_infra,error_go_core,error_type
|
||||
stop_app_go_infra,docker_stop_container_go_infra,uses_function
|
||||
stop_app_go_infra,docker_remove_container_go_infra,uses_function
|
||||
stop_app_go_infra,docker_remove_image_go_infra,uses_function
|
||||
stop_app_go_infra,error_go_core,error_type
|
||||
stream_ticks_go_finance,tick_go_finance,uses_type
|
||||
stream_ticks_go_finance,error_go_core,error_type
|
||||
tabs_typescript_ui,cn_typescript_core,uses_function
|
||||
theme_provider_typescript_ui,apply_theme_typescript_ui,uses_function
|
||||
theme_provider_typescript_ui,ThemeConfig_typescript_ui,uses_type
|
||||
tick_to_ohlcv_go_finance,tick_go_finance,uses_type
|
||||
tick_to_ohlcv_go_finance,ohlcv_go_finance,uses_type
|
||||
tooltip_typescript_ui,cn_typescript_core,uses_function
|
||||
use_wails_mutation_typescript_ui,wails_cache_typescript_core,uses_function
|
||||
use_wails_mutation_typescript_ui,wails_provider_typescript_ui,uses_function
|
||||
use_wails_mutation_typescript_ui,WailsIPC_typescript_ui,uses_type
|
||||
use_wails_query_typescript_ui,wails_cache_typescript_core,uses_function
|
||||
use_wails_query_typescript_ui,wails_provider_typescript_ui,uses_function
|
||||
use_wails_query_typescript_ui,WailsIPC_typescript_ui,uses_type
|
||||
use_wails_stream_typescript_ui,use_wails_event_typescript_ui,uses_function
|
||||
uv_add_packages_bash_infra,error_go_core,error_type
|
||||
wails_build_go_infra,error_go_core,error_type
|
||||
wails_emit_event_go_infra,error_go_core,error_type
|
||||
wails_provider_typescript_ui,wails_cache_typescript_core,uses_function
|
||||
wails_provider_typescript_ui,WailsIPC_typescript_ui,uses_type
|
||||
wails_stream_data_go_infra,error_go_core,error_type
|
||||
which_go_shell,option_go_core,uses_type
|
||||
win_firewall_add_rule_ps_infra,error_go_core,error_type
|
||||
win_firewall_remove_rule_ps_infra,error_go_core,error_type
|
||||
win_portproxy_add_ps_infra,error_go_core,error_type
|
||||
win_portproxy_remove_ps_infra,error_go_core,error_type
|
||||
write_claude_jupyter_rules_bash_infra,error_go_core,error_type
|
||||
write_dockerfile_go_infra,generate_dockerfile_go_infra,uses_function
|
||||
write_dockerfile_go_infra,error_go_core,error_type
|
||||
write_jupyter_launcher_bash_infra,error_go_core,error_type
|
||||
write_jupyter_registry_kernel_bash_infra,error_go_core,error_type
|
||||
write_mcp_jupyter_config_bash_infra,error_go_core,error_type
|
||||
write_ohlcv_to_parquet_go_finance,ohlcv_go_finance,uses_type
|
||||
write_ohlcv_to_parquet_go_finance,error_go_core,error_type
|
||||
zip_go_core,pair_go_core,uses_type
|
||||
base_model_go_tui,styles_go_tui,uses_type
|
||||
confirm_model_go_tui,base_model_go_tui,uses_type
|
||||
filtered_list_model_go_tui,list_model_go_tui,uses_type
|
||||
filtered_list_model_go_tui,list_item_go_tui,uses_type
|
||||
list_model_go_tui,list_item_go_tui,uses_type
|
||||
list_model_go_tui,styles_go_tui,uses_type
|
||||
multi_progress_model_go_tui,progress_model_go_tui,uses_type
|
||||
multi_progress_model_go_tui,styles_go_tui,uses_type
|
||||
progress_model_go_tui,styles_go_tui,uses_type
|
||||
spinner_with_timeout_model_go_tui,spinner_model_go_tui,uses_type
|
||||
styles_go_tui,theme_go_tui,uses_type
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,393 @@
|
||||
alert_typescript_ui,alert,function,component,typescript,ui,impure,"Alerta accesible con variantes default y destructive. Sistema de slots para título, descripción, icono y acción."
|
||||
all_of_py_core,all_of,function,function,py,core,pure,Retorna True si todos los elementos de la lista cumplen el predicado.
|
||||
all_slice_go_core,all_slice,function,function,go,core,pure,Devuelve true si todos los elementos del slice cumplen el predicado.
|
||||
analytics_page_typescript_ui,analytics_page,function,function,typescript,ui,pure,"Genera un dashboard de analytics completo con header, fila de KPIs con deltas y grid de charts configurables."
|
||||
annualized_volatility_go_finance,annualized_volatility,function,function,go,finance,pure,Calcula la volatilidad anualizada a partir de una serie de retornos y la frecuencia de los periodos.
|
||||
annualized_volatility_py_finance,annualized_volatility,function,function,py,finance,pure,Calcula la volatilidad anualizada de una serie de retornos.
|
||||
any_of_py_core,any_of,function,function,py,core,pure,Retorna True si al menos un elemento de la lista cumple el predicado.
|
||||
any_slice_go_core,any_slice,function,function,go,core,pure,Devuelve true si al menos un elemento del slice cumple el predicado.
|
||||
apply_theme_typescript_ui,apply_theme,function,function,typescript,ui,impure,Inyecta un tema como CSS variables en document.documentElement. Maneja clase dark automáticamente. Mapea 40 tokens semánticos.
|
||||
area_chart_typescript_ui,area_chart,function,component,typescript,ui,impure,"Gráfico de área Recharts con gradientes automáticos, multi-series, stacking y tooltips temáticos."
|
||||
assert_command_exists_bash_shell,assert_command_exists,function,function,bash,shell,impure,"Verifica que un comando está disponible en el PATH. Sale con exit code 1 si no se encuentra, con mensaje a stderr."
|
||||
assert_docker_container_running_bash_infra,assert_docker_container_running,function,function,bash,infra,impure,"Verifica que un contenedor Docker está corriendo. Sale con exit code 1 si no está activo, con mensaje a stderr."
|
||||
assert_file_exists_bash_shell,assert_file_exists,function,function,bash,shell,impure,Verifica que un archivo existe en el filesystem. Imprime su tamaño en bytes a stdout. Sale con exit code 1 si el archivo no existe.
|
||||
autocorrelation_go_datascience,autocorrelation,function,function,go,datascience,pure,"Calcula la autocorrelación de una serie temporal con un desfase (lag) dado, usando correlación de Pearson."
|
||||
autocorrelation_py_datascience,autocorrelation,function,function,py,datascience,pure,Calcula la autocorrelacion de una serie temporal para un lag dado.
|
||||
badge_ts_ui,badge,function,component,ts,ui,impure,"Badge con 10 variantes semánticas (default, secondary, destructive, outline, ghost, link, success, warning, error, info) y 2 tamaños."
|
||||
bar_chart_typescript_ui,bar_chart,function,component,typescript,ui,impure,"Gráfico de barras Recharts con multi-series, orientación horizontal/vertical, tooltips temáticos y bordes redondeados."
|
||||
bollinger_bands_go_finance,bollinger_bands,function,function,go,finance,pure,"Calcula las bandas de Bollinger (upper, middle, lower) para una serie de precios."
|
||||
bollinger_bands_py_finance,bollinger_bands,function,function,py,finance,pure,"Calcula las Bandas de Bollinger (upper, middle, lower) de una serie de precios."
|
||||
button_ts_ui,button,function,component,ts,ui,impure,"Botón accesible con 6 variantes (default, outline, secondary, ghost, destructive, link) y 8 tamaños. Base-UI primitivo con CVA."
|
||||
card_ts_ui,card,function,component,ts,ui,impure,"Contenedor card con header, title, description, action, content y footer. Sistema de slots composable. Variantes default, borderless y ghost para dashboards dark."
|
||||
cdp_click_go_browser,cdp_click,function,function,go,browser,impure,"Hace click en el primer elemento que coincide con el selector CSS. Obtiene coordenadas del centro via getBoundingClientRect, hace scroll al elemento y despacha eventos mousedown+mouseup via Input.disp"
|
||||
cdp_close_go_browser,cdp_close,function,function,go,browser,impure,"Cierra la conexion WebSocket CDP y opcionalmente mata el proceso Chrome por PID. Si c es nil, solo mata el proceso. Si pid <= 0, solo cierra la conexion. Siempre intenta ambas operaciones aunque una f"
|
||||
cdp_connect_go_browser,cdp_connect,function,function,go,browser,impure,"Se conecta al endpoint CDP en localhost:{port}. Obtiene el webSocketDebuggerUrl via HTTP /json/version, realiza el handshake WebSocket RFC 6455 sobre TCP puro (sin dependencias externas) y retorna una"
|
||||
cdp_evaluate_go_browser,cdp_evaluate,function,function,go,browser,impure,Ejecuta una expresion JavaScript arbitraria en la pagina actual via Runtime.evaluate. Retorna el resultado serializado como string. Soporta await (awaitPromise=true). Reporta excepciones JS como error
|
||||
cdp_get_html_go_browser,cdp_get_html,function,function,go,browser,impure,"Retorna el HTML completo de la pagina actual (document.documentElement.outerHTML) via Runtime.evaluate. Captura el DOM vivo post-JavaScript, no el HTML fuente original."
|
||||
cdp_navigate_go_browser,cdp_navigate,function,function,go,browser,impure,Navega a la URL indicada usando el comando Page.navigate del protocolo CDP. Verifica que no haya errorText en la respuesta. Recibe una *CDPConn obtenida de CdpConnect.
|
||||
cdp_screenshot_go_browser,cdp_screenshot,function,function,go,browser,impure,"Captura un screenshot de la pagina actual via Page.captureScreenshot y lo guarda en el archivo indicado. Soporta PNG y JPEG, viewport o pagina completa. Crea el directorio destino si no existe."
|
||||
cdp_type_text_go_browser,cdp_type_text,function,function,go,browser,impure,"Escribe texto en el elemento activo de la pagina caracter por caracter via Input.dispatchKeyEvent. Envia eventos keyDown, char y keyUp por cada caracter con 10ms de pausa entre ellos. Usar CdpClick pr"
|
||||
cdp_wait_element_go_browser,cdp_wait_element,function,function,go,browser,impure,Espera hasta que un selector CSS exista en el DOM. Hace polling con Runtime.evaluate cada 200ms. Retorna nil cuando el elemento aparece o error si se agota el timeout. Util despues de navegacion o acc
|
||||
cdp_wait_load_go_browser,cdp_wait_load,function,function,go,browser,impure,"Espera a que la pagina actual termine de cargar completamente. Hace polling de document.readyState via Runtime.evaluate cada 200ms hasta que sea complete, o hasta que se agote el timeout. Retorna erro"
|
||||
chart_colors_typescript_core,chart_colors,function,function,typescript,core,pure,Paleta de colores para gráficos basada en CSS variables del tema activo. Colores accesibles por índice cíclico.
|
||||
chart_container_typescript_ui,chart_container,function,component,typescript,ui,impure,"Base para todos los charts Recharts: container responsive, tooltip temático, legend y utilidades de colores por serie."
|
||||
chrome_launch_go_browser,chrome_launch,function,function,go,browser,impure,Lanza Google Chrome con remote debugging habilitado en el puerto indicado. Busca chrome.exe en PATH (WSL2) o en rutas conocidas de Windows. Espera hasta 15s a que el puerto CDP este listo antes de ret
|
||||
chunk_go_core,chunk,function,function,go,core,pure,Divide un slice en trozos (sub-slices) de tamanio N. El ultimo trozo puede contener menos de N elementos. Retorna nil si el slice esta vacio. Entra en panic si size <= 0.
|
||||
chunk_py_core,chunk,function,function,py,core,pure,Divide una lista en sublistas de tamanio fijo. El ultimo chunk puede ser menor.
|
||||
clear_screen_go_tui,clear_screen,function,function,go,tui,pure,Devuelve el codigo de escape ANSI para limpiar la pantalla del terminal.
|
||||
clickhouse_open_go_infra,clickhouse_open,function,function,go,infra,impure,Conecta a ClickHouse construyendo DSN clickhouse://user:pass@host:port/database.
|
||||
clip_go_datascience,clip,function,function,go,datascience,pure,"Recorta cada valor del slice para que quede dentro del rango [min, max]."
|
||||
clip_py_datascience,clip,function,function,py,datascience,pure,"Recorta los valores de la lista al rango [lo, hi]."
|
||||
cn_typescript_core,cn,function,function,typescript,core,pure,Combina clases CSS con clsx y resuelve conflictos Tailwind con tailwind-merge. Utilidad fundamental para composición de estilos.
|
||||
compose_py_core,compose,function,function,py,core,pure,"Compone funciones de derecha a izquierda. compose(f, g)(x) == f(g(x))."
|
||||
compose2_go_core,compose2,function,function,go,core,pure,"Compone dos funciones de derecha a izquierda. compose2(g, f)(x) = g(f(x))."
|
||||
confirm_prompt_go_tui,confirm_prompt,function,function,go,tui,impure,Muestra un dialogo de confirmacion Si/No en terminal y devuelve la eleccion del usuario.
|
||||
const_func_go_core,const_func,function,function,go,core,pure,"Devuelve una funcion que siempre retorna el valor dado, ignorando su argumento."
|
||||
crud_page_typescript_ui,crud_page,function,function,typescript,ui,pure,"Genera una página CRUD completa con header, tabla con columnas configurables, botones de acción (add/edit/delete) y schema de formulario."
|
||||
curry2_go_core,curry2,function,function,go,core,pure,Transforma una funcion de dos argumentos en forma currificada.
|
||||
dark_styles_go_tui,dark_styles,function,function,go,tui,pure,Construye estilos oscuros combinando DarkTheme con NewStyles. Atajo conveniente para terminales con fondo negro.
|
||||
dark_theme_go_tui,dark_theme,function,function,go,tui,pure,Construye un tema de colores oscuro para componentes TUI. Paleta optimizada para terminales con fondo negro.
|
||||
dashboard_layout_typescript_ui,dashboard_layout,function,function,typescript,ui,pure,Genera un grid responsive de dashboard a partir de un array de widgets con span configurable. 1-4 columnas con auto-responsive.
|
||||
data_table_typescript_ui,data_table,function,component,typescript,ui,impure,"Tabla de datos con sticky header, overflow scroll, heatmap por columna, formato condicional (number/datetime/currency) y hover rows. Auto-detecta columnas desde la primera fila si no se proveen."
|
||||
db_close_go_infra,db_close,function,function,go,infra,impure,Cierra la conexion a la base de datos. Wrapper sobre db.Close() para composabilidad en pipelines que gestionan el ciclo de vida de *sql.DB explicitamente.
|
||||
db_create_table_go_infra,db_create_table,function,function,go,infra,impure,Ejecuta CREATE TABLE IF NOT EXISTS con las definiciones de columnas dadas. Valida que el nombre de tabla sea un identificador SQL seguro.
|
||||
db_exec_go_infra,db_exec,function,function,go,infra,impure,"Ejecuta un statement no-SELECT (INSERT, UPDATE, DELETE, DDL) y retorna el numero de filas afectadas."
|
||||
db_insert_batch_go_infra,db_insert_batch,function,function,go,infra,impure,Inserta multiples filas en una transaccion usando prepared statement. Retorna el total de filas afectadas. Mas eficiente que llamar DBInsertRow en un loop.
|
||||
db_insert_row_go_infra,db_insert_row,function,function,go,infra,impure,Genera y ejecuta un INSERT de una sola fila desde un map columna→valor. Retorna el last insert ID. Sanitiza nombres de tabla y columnas.
|
||||
db_query_go_infra,db_query,function,function,go,infra,impure,Ejecuta un SELECT y retorna los resultados como slice de maps. Convierte valores a tipos nativos Go segun el tipo de columna reportado por el driver.
|
||||
default_styles_go_tui,default_styles,function,function,go,tui,pure,Construye estilos por defecto combinando DefaultTheme con NewStyles. Atajo conveniente para el caso comun.
|
||||
default_theme_go_tui,default_theme,function,function,go,tui,pure,Construye el tema de colores por defecto para componentes TUI. Paleta clara optimizada para terminales con fondo blanco.
|
||||
deploy_app_go_infra,deploy_app,function,pipeline,go,infra,impure,"Orquesta el deploy completo de una app Go en Docker. Pasos: genera Dockerfile, lo escribe a disco, construye la imagen y lanza el contenedor en modo detach con port mapping. Retorna el container ID."
|
||||
detail_page_typescript_ui,detail_page,function,function,typescript,ui,pure,"Genera una página de detalle de entidad con header (avatar, badge, back), grid de campos, tabs con contadores y timeline de actividad."
|
||||
detect_cycle_go_core,detect_cycle,function,function,go,core,impure,Detecta ciclos en un grafo dirigido almacenado en SQLite usando BFS antes de insertar una arista.
|
||||
detect_outliers_go_datascience,detect_outliers,function,function,go,datascience,pure,Detecta outliers en un slice de float64 usando z-score. Devuelve true para valores cuyo |z-score| supera el umbral.
|
||||
detect_outliers_py_datascience,detect_outliers,function,function,py,datascience,pure,"Detecta outliers por z-score. Retorna lista de bools, True donde |z-score| > threshold."
|
||||
detect_sql_injection_go_cybersecurity,detect_sql_injection,function,function,go,cybersecurity,pure,Analiza un input en busca de patrones heuristicos de inyeccion SQL y devuelve si se detecto amenaza y el patron encontrado.
|
||||
detect_sql_injection_py_cybersecurity,detect_sql_injection,function,function,py,cybersecurity,pure,"Detecta patrones de SQL injection en un string. Retorna (is_threat, pattern) con el nombre del patron detectado."
|
||||
dialog_typescript_ui,dialog,function,component,typescript,ui,impure,"Diálogo modal accesible con overlay blur, animaciones, close button y sistema de slots (header, footer, title, description)."
|
||||
docker_build_image_go_infra,docker_build_image,function,function,go,infra,impure,Construye una imagen Docker desde un directorio con Dockerfile. Soporta build args opcionales. Retorna el image ID de la imagen construida.
|
||||
docker_compose_down_go_infra,docker_compose_down,function,function,go,infra,impure,Baja un stack docker-compose desde el archivo dado. Si removeVolumes es true elimina también los volumes declarados (-v). Retorna el stdout del comando.
|
||||
docker_compose_up_go_infra,docker_compose_up,function,function,go,infra,impure,Levanta un stack docker-compose desde el archivo dado. Si detach es true ejecuta en background (-d). Retorna el stdout del comando.
|
||||
docker_container_logs_go_infra,docker_container_logs,function,function,go,infra,impure,Obtiene los logs de un contenedor Docker. El parámetro tail limita a las últimas N líneas (0 devuelve todos los logs).
|
||||
docker_cp_file_bash_infra,docker_cp_file,function,function,bash,infra,impure,Copia un archivo local a un contenedor Docker y verifica que el tamaño coincide. Imprime JSON con local_size y remote_size a stdout. Sale con exit code 1 si docker cp falla o los tamaños difieren.
|
||||
docker_create_network_go_infra,docker_create_network,function,function,go,infra,impure,Crea una red Docker con el nombre y driver dados. Si driver está vacío usa bridge por defecto. Devuelve el ID de la red creada.
|
||||
docker_inspect_container_go_infra,docker_inspect_container,function,function,go,infra,impure,"Devuelve los detalles completos de un contenedor Docker como mapa JSON genérico. Útil para inspeccionar configuración, red, volumes, etc."
|
||||
docker_list_containers_go_infra,docker_list_containers,function,function,go,infra,impure,Lista contenedores Docker locales. Si all es true incluye contenedores detenidos. Parsea la salida JSON de docker ps.
|
||||
docker_list_images_go_infra,docker_list_images,function,function,go,infra,impure,Lista las imágenes Docker disponibles localmente. Parsea la salida JSON de docker images.
|
||||
docker_pull_image_go_infra,docker_pull_image,function,function,go,infra,impure,Descarga una imagen Docker desde el registry remoto (Docker Hub u otro configurado). Acepta formato image:tag.
|
||||
docker_remove_container_go_infra,docker_remove_container,function,function,go,infra,impure,Elimina un contenedor Docker. Con force=true puede eliminar contenedores en ejecución (equivale a docker rm -f).
|
||||
docker_remove_image_go_infra,docker_remove_image,function,function,go,infra,impure,Elimina una imagen Docker local. Con force=true fuerza la eliminación incluso si hay contenedores que la usan.
|
||||
docker_remove_network_go_infra,docker_remove_network,function,function,go,infra,impure,Elimina una red Docker por nombre o ID.
|
||||
docker_run_container_go_infra,docker_run_container,function,function,go,infra,impure,"Ejecuta un contenedor Docker nuevo a partir de una imagen. Soporta puertos, env vars, volumes, network, detach y auto-remove. Devuelve el ID del contenedor."
|
||||
docker_start_container_go_infra,docker_start_container,function,function,go,infra,impure,Inicia un contenedor Docker existente que está detenido. Recibe nombre o ID del contenedor.
|
||||
docker_stop_container_go_infra,docker_stop_container,function,function,go,infra,impure,Detiene un contenedor Docker en ejecución. timeoutSecs controla el tiempo de gracia antes de SIGKILL (0 usa el default de Docker).
|
||||
docker_tui_go_infra,docker_tui,function,pipeline,go,infra,impure,"Pipeline que compone componentes TUI de DevFactory con comandos Docker para crear una aplicacion de terminal interactiva. Gestiona containers, images, volumes, networks y compose."
|
||||
docker_volume_create_go_infra,docker_volume_create,function,function,go,infra,impure,Crea un volume Docker con el nombre dado. Retorna el nombre del volume creado tal como lo confirma Docker.
|
||||
docker_volume_list_go_infra,docker_volume_list,function,function,go,infra,impure,"Lista los volumes Docker disponibles localmente. Parsea la salida JSON de docker volume ls. Retorna slice de maps con campos Driver, Name, Scope, Labels, Mountpoint."
|
||||
docker_volume_remove_go_infra,docker_volume_remove,function,function,go,infra,impure,Elimina un volume Docker por nombre. Si force es true fuerza la eliminación aunque esté en uso.
|
||||
drop_go_core,drop,function,function,go,core,pure,Elimina los primeros n elementos de un slice y devuelve el resto.
|
||||
drop_py_core,drop,function,function,py,core,pure,Descarta los primeros n elementos de una lista.
|
||||
duckdb_open_go_infra,duckdb_open,function,function,go,infra,impure,Abre (o crea) una base de datos DuckDB. Path vacio o ':memory:' abre una base en memoria.
|
||||
ema_go_finance,ema,function,function,go,finance,pure,Calcula la media movil exponencial (EMA) sobre una serie de datos con un periodo dado.
|
||||
ema_py_finance,ema,function,function,py,finance,pure,Calcula la media movil exponencial (EMA) de una serie de precios.
|
||||
embedding_encode_py_infra,embedding_encode,function,function,py,infra,impure,Genera embeddings normalizados para textos. Aplica prefijos e5 automaticamente segun mode (document/query).
|
||||
embedding_load_model_py_infra,embedding_load_model,function,function,py,infra,impure,Carga modelo de embeddings desde path local. Retorna instancia lista para encode.
|
||||
embedding_save_model_py_infra,embedding_save_model,function,function,py,infra,impure,Descarga modelo de embeddings de HuggingFace y lo guarda en path local para carga rapida sin red.
|
||||
embedding_search_sqlvec_py_infra,embedding_search_sqlvec,function,function,py,infra,impure,Busca los k vecinos mas cercanos en tabla sqlite-vec. Retorna rowids y distancias ordenados.
|
||||
embedding_search_usearch_py_infra,embedding_search_usearch,function,function,py,infra,impure,Busca los k vecinos mas cercanos en indice USearch persistido. Busqueda sub-milisegundo.
|
||||
embedding_store_sqlvec_py_infra,embedding_store_sqlvec,function,function,py,infra,impure,Inserta embeddings en tabla sqlite-vec. Crea la tabla virtual si no existe. Insercion en batches.
|
||||
embedding_store_usearch_py_infra,embedding_store_usearch,function,function,py,infra,impure,Crea indice USearch con embeddings y lo persiste a archivo. Busqueda sub-milisegundo.
|
||||
entropy_shannon_go_cybersecurity,entropy_shannon,function,function,go,cybersecurity,pure,Calcula la entropia de Shannon de un slice de bytes. Retorna un valor entre 0 y 8 bits por byte.
|
||||
entropy_shannon_py_cybersecurity,entropy_shannon,function,function,py,cybersecurity,pure,Calcula la entropia de Shannon de datos binarios (0-8 bits por byte). Util para detectar datos cifrados o comprimidos.
|
||||
exit_with_status_bash_shell,exit_with_status,function,function,bash,shell,pure,"Calcula el exit code estandar (0=success, 1=failure, 2=partial) a partir de contadores de pasos. Si failed_steps=0 imprime 0 y sale con 0. Si ok_steps=0 imprime 1 y sale con 1. Si hay ambos imprime 2 "
|
||||
extract_urls_go_cybersecurity,extract_urls,function,function,go,cybersecurity,pure,Extrae todas las URLs HTTP/HTTPS de un texto usando expresiones regulares.
|
||||
extract_urls_py_cybersecurity,extract_urls,function,function,py,cybersecurity,pure,Extrae todas las URLs (http/https) de un texto. Util para analisis de IoCs y threat intelligence.
|
||||
fetch_data_frame_go_datascience,fetch_data_frame,function,function,go,datascience,impure,Ejecuta una consulta SQL contra un DSN y retorna los resultados como slice de mapas columna-valor.
|
||||
fetch_http_headers_go_cybersecurity,fetch_http_headers,function,function,go,cybersecurity,impure,Realiza una solicitud HTTP HEAD a una URL y devuelve los headers de la respuesta.
|
||||
fetch_ohlcv_go_finance,fetch_ohlcv,function,function,go,finance,impure,Obtiene datos OHLCV de un exchange para un simbolo e intervalo dados.
|
||||
fft_go_datascience,fft,function,function,go,datascience,pure,Calcula la Transformada Rápida de Fourier (FFT) usando el algoritmo Cooley-Tukey radix-2. Aplica zero-padding si la longitud no es potencia de 2.
|
||||
filter_list_py_core,filter_list,function,function,py,core,pure,Filtra una lista aplicando un predicado sin mutar la original.
|
||||
filter_slice_go_core,filter_slice,function,function,go,core,pure,Filtra un slice aplicando un predicado sin mutar el original. Retorna un nuevo slice con los elementos que cumplen la condicion.
|
||||
find_go_core,find,function,function,go,core,pure,"Devuelve el primer elemento del slice que cumple el predicado, envuelto en Option."
|
||||
find_py_core,find,function,function,py,core,pure,Encuentra el primer elemento que cumple el predicado. Retorna None si no hay coincidencia.
|
||||
find_free_port_bash_shell,find_free_port,function,function,bash,shell,impure,Busca el primer puerto TCP libre en un rango dado usando ss y lsof. Retorna el numero de puerto a stdout.
|
||||
find_index_go_core,find_index,function,function,go,core,pure,"Devuelve el indice del primer elemento que cumple el predicado, envuelto en Option."
|
||||
find_index_py_core,find_index,function,function,py,core,pure,Encuentra el indice del primer elemento que cumple el predicado. Retorna -1 si no hay coincidencia.
|
||||
flat_map_py_core,flat_map,function,function,py,core,pure,Aplica una funcion que retorna listas a cada elemento y aplana el resultado un nivel.
|
||||
flat_map_slice_go_core,flat_map_slice,function,function,go,core,pure,Aplica una funcion que devuelve slices a cada elemento y aplana el resultado.
|
||||
flatten_go_core,flatten,function,function,go,core,pure,Aplana un slice de slices en un unico slice.
|
||||
flatten_py_core,flatten,function,function,py,core,pure,"Aplana una lista de listas un nivel, concatenando las sublistas."
|
||||
flip_go_core,flip,function,function,go,core,pure,Intercambia el orden de los argumentos de una funcion de dos parametros.
|
||||
form_field_typescript_ui,form_field,function,component,typescript,ui,impure,"Wrapper de campo de formulario con label, helper text, error y ARIA automáticos. Inyecta id y aria-describedby a hijos."
|
||||
format_compact_typescript_core,format_compact,function,function,typescript,core,pure,"Familia de funciones de formato compacto: números (K/M/B), frecuencia (Hz/KHz/MHz), bytes (KB/MB/GB), duración (ms/s/min/h)."
|
||||
generate_dockerfile_go_infra,generate_dockerfile,function,function,go,infra,pure,"Genera el texto de un Dockerfile multi-stage para una app Go. Stage build con golang:1.23-alpine, stage final con alpine:latest. Incluye ENV vars del map con orden determinista. Funcion pura sin I/O."
|
||||
generate_id_go_core,generate_id,function,function,go,core,pure,"Genera un ID canonico determinista a partir de nombre, lenguaje y dominio."
|
||||
get_series_color_typescript_core,get_series_color,function,function,typescript,core,pure,"Devuelve color para una serie de gráfico por índice cíclico, o el color explícito si se proporciona."
|
||||
go_build_binary_go_infra,go_build_binary,function,function,go,infra,impure,Compila un binario Go desde un directorio de proyecto. Si ldflags está vacío usa -s -w (strip debug). Si outputPath está vacío usa build/{dirname} dentro del projectDir. Ejecuta con CGO_ENABLED=0.
|
||||
group_by_go_core,group_by,function,function,go,core,pure,Agrupa elementos de un slice por clave generada con una funcion.
|
||||
group_by_go_datascience,group_by,function,function,go,datascience,pure,"Agrupa los elementos de un slice según una función clave, devolviendo un mapa de clave a slice de elementos."
|
||||
group_by_py_core,group_by,function,function,py,core,pure,Agrupa elementos de una lista por una funcion clave. Retorna dict de clave a lista.
|
||||
hash_md5_go_cybersecurity,hash_md5,function,function,go,cybersecurity,pure,Calcula el hash MD5 de un slice de bytes y devuelve el resultado como string hexadecimal.
|
||||
hash_md5_py_cybersecurity,hash_md5,function,function,py,cybersecurity,pure,Calcula el hash MD5 de datos binarios. Retorna hex digest.
|
||||
hash_sha256_go_cybersecurity,hash_sha256,function,function,go,cybersecurity,pure,Calcula el hash SHA-256 de un slice de bytes y devuelve el resultado como string hexadecimal.
|
||||
hash_sha256_py_cybersecurity,hash_sha256,function,function,py,cybersecurity,pure,Calcula el hash SHA-256 de datos binarios. Retorna hex digest.
|
||||
health_check_http_go_infra,health_check_http,function,function,go,infra,impure,Hace polling HTTP GET a un endpoint hasta recibir status 200 o hasta agotar el timeout. Útil para esperar que un servicio levante antes de continuar un pipeline.
|
||||
hide_cursor_go_tui,hide_cursor,function,function,go,tui,pure,Devuelve el codigo de escape ANSI para ocultar el cursor del terminal.
|
||||
histogram_go_datascience,histogram,function,function,go,datascience,pure,Calcula las frecuencias de un slice de float64 distribuidas en un número dado de buckets equiespaciados.
|
||||
histogram_py_datascience,histogram,function,function,py,datascience,pure,Calcula histograma con N buckets. Retorna lista de conteos por bucket.
|
||||
identity_go_core,identity,function,function,go,core,pure,Devuelve el valor recibido sin modificarlo. Elemento neutro de la composicion.
|
||||
impute_go_datascience,impute,function,function,go,datascience,pure,"Rellena valores NaN en un slice de float64 usando forward-fill, reemplazando cada NaN con el último valor válido anterior."
|
||||
impute_py_datascience,impute,function,function,py,datascience,pure,Reemplaza None y NaN con la media de los valores validos.
|
||||
init_jupyter_analysis_bash_pipelines,init_jupyter_analysis,function,pipeline,bash,pipelines,impure,"Inicializa un analisis Jupyter completo en analysis/{nombre}/ con venv, paquetes, launcher, MCP y reglas para agentes Claude. Acepta paquetes extra opcionales."
|
||||
init_metabase_go_infra,init_metabase,function,pipeline,go,infra,impure,"Pipeline que inicializa un contenedor Metabase con su base de datos Postgres. Crea red Docker, pull de imágenes, inicia Postgres con volume persistente, espera health check y lanza Metabase conectado."
|
||||
init_uv_venv_bash_infra,init_uv_venv,function,function,bash,infra,impure,Crea un virtualenv Python con uv en el directorio dado si no existe. Fallback a python3 -m venv. Retorna la ruta del venv.
|
||||
input_ts_ui,input,function,component,ts,ui,impure,"Campo de entrada accesible con soporte para iconos, grupos, validación ARIA y estados disabled/invalid."
|
||||
install_nordvpn_bash_infra,install_nordvpn,function,function,bash,infra,impure,"Instala NordVPN CLI en Ubuntu/Debian (incluido WSL2). Configura repositorio oficial, instala paquete y habilita servicio nordvpnd. Idempotente."
|
||||
ip_in_range_go_cybersecurity,ip_in_range,function,function,go,cybersecurity,pure,Verifica si una direccion IP se encuentra dentro de un rango CIDR dado.
|
||||
is_base64_go_cybersecurity,is_base64,function,function,go,cybersecurity,pure,Valida si un string es una cadena base64 valida segun el encoding estandar.
|
||||
is_base64_py_cybersecurity,is_base64,function,function,py,cybersecurity,pure,Verifica si un string es base64 valido. Acepta base64 estandar y URL-safe. Requiere minimo 4 caracteres.
|
||||
is_hex_go_cybersecurity,is_hex,function,function,go,cybersecurity,pure,"Valida si un string es una cadena hexadecimal valida (longitud par, caracteres 0-9 a-f A-F)."
|
||||
is_hex_py_cybersecurity,is_hex,function,function,py,cybersecurity,pure,Verifica si un string es hexadecimal valido. Acepta con o sin prefijo 0x. Requiere minimo 2 caracteres.
|
||||
jaccard_similarity_go_cybersecurity,jaccard_similarity,function,function,go,cybersecurity,pure,Calcula la similitud de Jaccard entre dos conjuntos de tokens. Retorna un valor entre 0.0 y 1.0.
|
||||
jaccard_similarity_py_cybersecurity,jaccard_similarity,function,function,py,cybersecurity,pure,"Calcula el coeficiente de similitud de Jaccard entre dos listas. J(A,B) = |A interseccion B| / |A union B|."
|
||||
jupyter_discover_py_notebook,jupyter_discover,function,function,py,notebook,impure,"Descubre instancias de Jupyter Lab activas escaneando archivos .jupyter-port en analysis/ y puertos comunes (8888-8892). Para cada instancia consulta /api/status, /api/config, /api/kernels y /api/sess"
|
||||
jupyter_exec_py_notebook,jupyter_exec,function,function,py,notebook,impure,"Ejecuta codigo en kernels de Jupyter via WebSocket. Tres modos: append (añade celda al notebook y la ejecuta), cell (ejecuta celda existente por indice), kernel (ejecuta en el kernel sin tocar ningun "
|
||||
jupyter_kernel_py_notebook,jupyter_kernel,function,function,py,notebook,impure,"CRUD completo de kernels Jupyter via REST API. Expone seis operaciones: list, start, restart, interrupt, shutdown y sessions. Usa solo stdlib (urllib, json), sin dependencias externas."
|
||||
jupyter_read_py_notebook,jupyter_read,function,function,py,notebook,impure,Lee celdas de un notebook Jupyter abierto via el protocolo de colaboracion en tiempo real (CRDT/Y.js). Devuelve el estado actual incluyendo cambios no guardados. Expone tambien jupyter_notebook_info()
|
||||
jupyter_write_py_notebook,jupyter_write,function,function,py,notebook,impure,"Operaciones de escritura sobre celdas de un notebook Jupyter via colaboracion en tiempo real (WebSocket). Expone cinco operaciones: append_code, append_markdown, insert, edit, delete. NO ejecuta celda"
|
||||
kpi_card_typescript_ui,kpi_card,function,component,typescript,ui,impure,"Card de KPI con label, valor+unidad, delta descriptivo con color semántico, icono, slot de chart inline y action. 3 tamaños."
|
||||
label_ts_ui,label,function,component,ts,ui,impure,Etiqueta de formulario accesible con soporte para estados disabled y peer-disabled.
|
||||
levenshtein_distance_go_cybersecurity,levenshtein_distance,function,function,go,cybersecurity,pure,Calcula la distancia de edicion de Levenshtein entre dos strings. Util para deteccion de typosquatting.
|
||||
levenshtein_distance_py_cybersecurity,levenshtein_distance,function,function,py,cybersecurity,pure,Calcula la distancia de Levenshtein (edit distance) entre dos strings. Util para deteccion de typosquatting en dominios.
|
||||
line_chart_typescript_ui,line_chart,function,component,typescript,ui,impure,"Gráfico de líneas Recharts con multi-series, 5 tipos de curva, zoom brush, líneas de referencia, tooltips temáticos."
|
||||
linspace_py_datascience,linspace,function,function,py,datascience,pure,Genera una lista de valores equiespaciados entre start y stop (inclusivos).
|
||||
load_csv_go_datascience,load_csv,function,function,go,datascience,impure,Carga un archivo CSV desde disco y lo retorna como slice de mapas columna-valor.
|
||||
load_ohlcv_from_duckdb_go_finance,load_ohlcv_from_duckdb,function,function,go,finance,impure,Carga datos OHLCV ejecutando una query SQL en una base de datos DuckDB.
|
||||
load_parquet_go_datascience,load_parquet,function,function,go,datascience,impure,Carga un archivo Parquet desde disco y lo retorna como slice de mapas columna-valor.
|
||||
log_return_go_finance,log_return,function,function,go,finance,pure,Calcula el retorno logaritmico entre un precio inicial y un precio final.
|
||||
log_return_py_finance,log_return,function,function,py,finance,pure,Calcula el retorno logaritmico entre dos precios.
|
||||
lookup_whois_go_cybersecurity,lookup_whois,function,function,go,cybersecurity,impure,Realiza una consulta WHOIS para un dominio conectandose al servidor whois.iana.org por TCP.
|
||||
lorenz_step_go_datascience,lorenz_step,function,function,go,datascience,pure,Paso del atractor de Lorenz (sistema caótico determinista). Integración Euler con parámetros configurables. Incluye LorenzSeries para generar N pasos.
|
||||
map_concurrent_go_core,map_concurrent,function,function,go,core,impure,Aplica una funcion a cada elemento de un slice usando un pool de goroutines como workers. Los resultados preservan el orden original del slice de entrada.
|
||||
map_list_py_core,map_list,function,function,py,core,pure,"Aplica una funcion a cada elemento de una lista, retornando una nueva lista."
|
||||
map_slice_go_core,map_slice,function,function,go,core,pure,Transforma cada elemento de un slice aplicando una funcion. Retorna un nuevo slice del mismo tamaño con los resultados.
|
||||
max_drawdown_go_finance,max_drawdown,function,function,go,finance,pure,"Calcula el maximo drawdown de una curva de equity, retornando la magnitud y los indices pico-valle."
|
||||
max_drawdown_py_finance,max_drawdown,function,function,py,finance,pure,Calcula el maximo drawdown y los indices de inicio y fin del peor periodo.
|
||||
memoize_go_core,memoize,function,function,go,core,pure,"Cachea resultados de una funcion pura. Retorna una nueva funcion que almacena en un mapa interno los resultados ya calculados, evitando recalculos para la misma clave."
|
||||
metabase_add_database_py_infra,metabase_add_database,function,function,py,infra,impure,"Agrega una nueva database a Metabase via POST /api/database. Soporta cualquier engine (sqlite, postgres, mysql, etc.)."
|
||||
metabase_add_ops_db_py_pipelines,metabase_add_ops_db,function,pipeline,py,pipelines,impure,Registra la operations.db de una app en Metabase como database SQLite. Verifica duplicados y muestra el mount necesario para el contenedor Docker.
|
||||
metabase_auth_go_infra,metabase_auth,function,function,go,infra,impure,Autentica contra la API de Metabase con email y password. Retorna un MetabaseClient con session token valido por 14 dias (configurable con MAX_SESSION_AGE en Metabase). Endpoint: POST /api/session.
|
||||
metabase_auth_py_infra,metabase_auth,function,function,py,infra,impure,Autentica contra la API de Metabase con email y password. Retorna un MetabaseClient con session token valido por 14 dias. Endpoint: POST /api/session.
|
||||
metabase_create_card_go_infra,metabase_create_card,function,function,go,infra,impure,Crea una nueva card/pregunta en Metabase con query SQL nativa o MBQL. Endpoint: POST /api/card.
|
||||
metabase_create_card_py_infra,metabase_create_card,function,function,py,infra,impure,Crea una card/pregunta en Metabase con query SQL nativa o MBQL. Endpoint: POST /api/card.
|
||||
metabase_create_dashboard_go_infra,metabase_create_dashboard,function,function,go,infra,impure,Crea un nuevo dashboard vacio en Metabase. Para agregar cards usar MetabaseUpdateDashboard con el campo dashcards. Endpoint: POST /api/dashboard.
|
||||
metabase_create_dashboard_py_infra,metabase_create_dashboard,function,function,py,infra,impure,Crea dashboard vacio en Metabase. Para agregar cards usar metabase_update_dashboard con dashcards. Endpoint: POST /api/dashboard.
|
||||
metabase_create_ops_dashboard_py_pipelines,metabase_create_ops_dashboard,function,pipeline,py,pipelines,impure,"Crea dashboard operativo en Metabase para una app: KPIs de entities/relations/executions/assertions, distribucion por status y tipo, relaciones frecuentes, resultados de ejecuciones y assertions."
|
||||
metabase_create_user_go_infra,metabase_create_user,function,function,go,infra,impure,"Crea un nuevo usuario en Metabase. Si no se provee password, Metabase envia email de invitacion. Requiere permisos de superusuario. Endpoint: POST /api/user."
|
||||
metabase_create_user_py_infra,metabase_create_user,function,function,py,infra,impure,Crea un nuevo usuario en Metabase. Sin password envia invitacion por email. Requiere superusuario. Endpoint: POST /api/user.
|
||||
metabase_deactivate_user_go_infra,metabase_deactivate_user,function,function,go,infra,impure,"Desactiva (soft-delete) un usuario en Metabase. El usuario no se elimina permanentemente, solo se marca como inactivo. Para reactivar, usar PUT /api/user/:id/reactivate. Endpoint: DELETE /api/user/:id"
|
||||
metabase_deactivate_user_py_infra,metabase_deactivate_user,function,function,py,infra,impure,Desactiva (soft-delete) un usuario en Metabase. Reactivar con PUT /api/user/:id/reactivate. Endpoint: DELETE /api/user/:id.
|
||||
metabase_delete_card_go_infra,metabase_delete_card,function,function,go,infra,impure,Elimina permanentemente una card/pregunta de Metabase. Accion irreversible. Para soft-delete usar MetabaseUpdateCard con archived:true. Endpoint: DELETE /api/card/:id.
|
||||
metabase_delete_card_py_infra,metabase_delete_card,function,function,py,infra,impure,Elimina permanentemente una card/pregunta. IRREVERSIBLE. Preferir archived=True. Endpoint: DELETE /api/card/:id.
|
||||
metabase_delete_dashboard_go_infra,metabase_delete_dashboard,function,function,go,infra,impure,Elimina permanentemente un dashboard de Metabase. Accion irreversible. Para soft-delete usar MetabaseUpdateDashboard con archived:true. Endpoint: DELETE /api/dashboard/:id.
|
||||
metabase_delete_dashboard_py_infra,metabase_delete_dashboard,function,function,py,infra,impure,Elimina permanentemente un dashboard. IRREVERSIBLE. Preferir archived=True. Endpoint: DELETE /api/dashboard/:id.
|
||||
metabase_execute_card_go_infra,metabase_execute_card,function,function,go,infra,impure,Ejecuta la query de una card/pregunta guardada en Metabase y retorna los resultados. Soporta parametros para queries parametrizadas. Endpoint: POST /api/card/:id/query.
|
||||
metabase_execute_card_py_infra,metabase_execute_card,function,function,py,infra,impure,Ejecuta la query de una card guardada y retorna resultados con columnas y filas. Soporta parametros. Endpoint: POST /api/card/:id/query.
|
||||
metabase_execute_query_go_infra,metabase_execute_query,function,function,go,infra,impure,Ejecuta una query SQL ad-hoc contra una database de Metabase sin guardarla como card. Util para consultas rapidas y exploracion. Endpoint: POST /api/dataset.
|
||||
metabase_execute_query_py_infra,metabase_execute_query,function,function,py,infra,impure,Ejecuta query SQL ad-hoc contra Metabase sin guardarla como card. Util para exploracion rapida. Endpoint: POST /api/dataset.
|
||||
metabase_fix_permissions_py_pipelines,metabase_fix_permissions,function,pipeline,py,pipelines,impure,Arregla permisos SQLITE_READONLY_DIRECTORY en el contenedor Metabase. Hace chmod 777/666 en directorios y archivos .db bajo /data/ para que el usuario metabase (UID 2000) pueda crear journal files.
|
||||
metabase_get_card_go_infra,metabase_get_card,function,function,go,infra,impure,"Obtiene los detalles completos de una card/pregunta de Metabase por su ID. Incluye la query, visualizacion y metadata. Endpoint: GET /api/card/:id."
|
||||
metabase_get_card_py_infra,metabase_get_card,function,function,py,infra,impure,"Obtiene detalles completos de una card/pregunta de Metabase incluyendo query, visualizacion y metadata. Endpoint: GET /api/card/:id."
|
||||
metabase_get_dashboard_go_infra,metabase_get_dashboard,function,function,go,infra,impure,"Obtiene un dashboard completo de Metabase incluyendo todas sus dashcards (cards posicionadas en el dashboard), tabs y parametros. Endpoint: GET /api/dashboard/:id."
|
||||
metabase_get_dashboard_py_infra,metabase_get_dashboard,function,function,py,infra,impure,"Obtiene dashboard completo con dashcards (cards posicionadas), tabs y parametros. Endpoint: GET /api/dashboard/:id."
|
||||
metabase_get_database_py_infra,metabase_get_database,function,function,py,infra,impure,Obtiene los detalles de una database de Metabase por su ID. Endpoint: GET /api/database/:id.
|
||||
metabase_get_user_go_infra,metabase_get_user,function,function,go,infra,impure,Obtiene los detalles de un usuario de Metabase por su ID numerico. Endpoint: GET /api/user/:id.
|
||||
metabase_get_user_py_infra,metabase_get_user,function,function,py,infra,impure,Obtiene los detalles de un usuario de Metabase por su ID. Endpoint: GET /api/user/:id.
|
||||
metabase_list_cards_go_infra,metabase_list_cards,function,function,go,infra,impure,Lista preguntas/cards de Metabase con filtro opcional. Retorna array de cards. Endpoint: GET /api/card.
|
||||
metabase_list_cards_py_infra,metabase_list_cards,function,function,py,infra,impure,"Lista preguntas/cards de Metabase. Filtros: all, mine, fav, archived, recent, popular, database, table. Endpoint: GET /api/card."
|
||||
metabase_list_dashboards_go_infra,metabase_list_dashboards,function,function,go,infra,impure,Lista dashboards de Metabase con filtro opcional. Retorna array de dashboards resumidos (sin dashcards). Endpoint: GET /api/dashboard.
|
||||
metabase_list_dashboards_py_infra,metabase_list_dashboards,function,function,py,infra,impure,"Lista dashboards de Metabase. Filtros: all, mine, archived. Retorna resumen sin dashcards. Endpoint: GET /api/dashboard."
|
||||
metabase_list_databases_py_infra,metabase_list_databases,function,function,py,infra,impure,Lista las databases configuradas en Metabase. Endpoint: GET /api/database. Soporta incluir tablas con include_tables=True.
|
||||
metabase_list_users_go_infra,metabase_list_users,function,function,go,infra,impure,"Lista usuarios de una instancia Metabase con filtros opcionales por estado, nombre/email y paginacion. Endpoint: GET /api/user. Requiere permisos de superusuario."
|
||||
metabase_list_users_py_infra,metabase_list_users,function,function,py,infra,impure,"Lista usuarios de Metabase con filtros opcionales por estado, nombre/email y paginacion. Endpoint: GET /api/user."
|
||||
metabase_setup_py_infra,metabase_setup,function,function,py,infra,impure,Ejecuta el setup inicial de una instancia Metabase nueva via POST /api/setup. Obtiene el setup-token automaticamente y crea el usuario admin con preferencias del sitio.
|
||||
metabase_update_card_go_infra,metabase_update_card,function,function,go,infra,impure,Actualiza campos de una card/pregunta en Metabase. Solo se modifican los campos incluidos en el map. Endpoint: PUT /api/card/:id.
|
||||
metabase_update_card_py_infra,metabase_update_card,function,function,py,infra,impure,"Actualiza campos de una card/pregunta via kwargs. Campos: name, description, display, dataset_query, collection_id, archived. Endpoint: PUT /api/card/:id."
|
||||
metabase_update_dashboard_go_infra,metabase_update_dashboard,function,function,go,infra,impure,"Actualiza un dashboard en Metabase incluyendo metadata, cards y tabs. El campo dashcards representa el estado completo deseado: cards nuevas con ID negativo, existentes con ID positivo, omitidas se el"
|
||||
metabase_update_dashboard_py_infra,metabase_update_dashboard,function,function,py,infra,impure,"Actualiza dashboard incluyendo metadata, cards y tabs via kwargs. dashcards es el estado completo deseado: nuevas con ID negativo, existentes con positivo, omitidas se eliminan. Endpoint: PUT /api/das"
|
||||
metabase_update_user_go_infra,metabase_update_user,function,function,go,infra,impure,Actualiza campos de un usuario en Metabase. Solo se modifican los campos incluidos en el map. Requiere permisos de superusuario. Endpoint: PUT /api/user/:id.
|
||||
metabase_update_user_py_infra,metabase_update_user,function,function,py,infra,impure,"Actualiza campos de un usuario en Metabase via keyword arguments. Campos: first_name, last_name, email, is_superuser, group_ids, locale. Endpoint: PUT /api/user/:id."
|
||||
min_max_scale_go_datascience,min_max_scale,function,function,go,datascience,pure,"Escala los valores de un slice al rango [0, 1] usando normalización min-max."
|
||||
min_max_scale_py_datascience,min_max_scale,function,function,py,datascience,pure,"Escala los valores al rango [0, 1] usando min-max normalization."
|
||||
new_base_model_go_tui,new_base_model,function,function,go,tui,pure,Construye un modelo base con dimensiones de terminal y estilos por defecto. Sirve como fundacion para componer modelos mas complejos.
|
||||
new_confirm_go_tui,new_confirm,function,function,go,tui,pure,Construye un modelo de dialogo de confirmacion con una pregunta si/no.
|
||||
new_filtered_list_go_tui,new_filtered_list,function,function,go,tui,pure,Construye un modelo de lista con campo de busqueda integrado. El placeholder se muestra en el input de filtro cuando esta vacio.
|
||||
new_list_go_tui,new_list,function,function,go,tui,pure,Construye un modelo de lista simple a partir de una coleccion de items. Cada item se renderiza como una fila seleccionable.
|
||||
new_multi_list_go_tui,new_multi_list,function,function,go,tui,pure,Construye un modelo de lista con seleccion multiple. Permite al usuario marcar varios items antes de confirmar.
|
||||
new_multi_progress_go_tui,new_multi_progress,function,function,go,tui,pure,Construye un modelo de progreso multiple vacio. Las barras individuales se agregan posteriormente via mensajes.
|
||||
new_progress_go_tui,new_progress,function,function,go,tui,pure,Construye un modelo de barra de progreso con valor total y etiqueta descriptiva.
|
||||
new_progress_with_styles_go_tui,new_progress_with_styles,function,function,go,tui,pure,"Construye un modelo de barra de progreso con valor total, etiqueta y estilos visuales personalizados."
|
||||
new_spinner_go_tui,new_spinner,function,function,go,tui,pure,Construye un modelo de spinner basico con un mensaje descriptivo. Usa el estilo por defecto.
|
||||
new_spinner_with_style_go_tui,new_spinner_with_style,function,function,go,tui,pure,Construye un modelo de spinner con mensaje y estilos visuales personalizados.
|
||||
new_spinner_with_timeout_go_tui,new_spinner_with_timeout,function,function,go,tui,pure,"Construye un modelo de spinner con limite de tiempo. Si la operacion excede el timeout, el spinner se detiene automaticamente."
|
||||
new_styles_go_tui,new_styles,function,function,go,tui,pure,Construye un conjunto de estilos lipgloss a partir de un tema de colores. Los estilos resultantes se aplican a todos los componentes TUI.
|
||||
nordvpn_connect_bash_infra,nordvpn_connect,function,function,bash,infra,impure,"Conecta a NordVPN por pais, ciudad o servidor especifico. Sin argumentos conecta al mejor servidor disponible. Devuelve JSON con resultado."
|
||||
nordvpn_container_run_go_infra,nordvpn_container_run,function,function,go,infra,impure,Ejecuta un container Docker cuyo trafico pasa por el gateway NordVPN usando --network=container:<gateway>. El container hereda la IP y tunel VPN del gateway.
|
||||
nordvpn_container_start_go_infra,nordvpn_container_start,function,function,go,infra,impure,Levanta un container Docker con NordVPN como gateway de red. Otros containers pueden rutear su trafico a traves de este con --network=container:<name>. Espera hasta 30s a que el tunel este activo.
|
||||
nordvpn_container_stop_go_infra,nordvpn_container_stop,function,function,go,infra,impure,Detiene y elimina el container gateway NordVPN y opcionalmente los containers cliente que usan su red.
|
||||
nordvpn_disconnect_bash_infra,nordvpn_disconnect,function,function,bash,infra,impure,Desconecta de NordVPN. Idempotente — si no hay conexion activa retorna ok. Devuelve JSON con resultado.
|
||||
nordvpn_get_ip_bash_infra,nordvpn_get_ip,function,function,bash,infra,impure,Obtiene IP publica actual con fallback entre multiples servicios. Indica si la conexion VPN esta activa y el servidor usado.
|
||||
nordvpn_list_cities_bash_infra,nordvpn_list_cities,function,function,bash,infra,impure,Lista ciudades disponibles de un pais en NordVPN como array JSON ordenado.
|
||||
nordvpn_list_countries_bash_infra,nordvpn_list_countries,function,function,bash,infra,impure,Lista paises disponibles en NordVPN como array JSON ordenado alfabeticamente.
|
||||
nordvpn_set_protocol_bash_infra,nordvpn_set_protocol,function,function,bash,infra,impure,Cambia el protocolo de NordVPN entre NordLynx (WireGuard) y OpenVPN. NordLynx recomendado por velocidad.
|
||||
nordvpn_status_bash_infra,nordvpn_status,function,function,bash,infra,impure,"Obtiene estado actual de NordVPN como JSON estructurado. Incluye servidor, IP, pais, protocolo y estado de conexion."
|
||||
normalize_ohlcv_go_finance,normalize_ohlcv,function,function,go,finance,pure,Ajusta slices de precios OHLCV multiplicando cada valor por un factor dado.
|
||||
normalize_url_go_cybersecurity,normalize_url,function,function,go,cybersecurity,pure,"Normaliza una URL: convierte el host a minusculas, elimina fragmentos y remueve parametros de tracking comunes."
|
||||
normalize_url_py_cybersecurity,normalize_url,function,function,py,cybersecurity,pure,"Normaliza una URL: lowercase del host, elimina fragmentos, ordena parametros. Util para deduplicacion de IoCs."
|
||||
page_header_typescript_ui,page_header,function,component,typescript,ui,impure,"Cabecera de página con título, subtítulo, acciones, back button, tabs integrados, badge y modo sticky. Incluye SimplePageHeader."
|
||||
parse_ip_cidr_go_cybersecurity,parse_ip_cidr,function,function,go,cybersecurity,pure,"Parsea una notacion CIDR IPv4 y devuelve la direccion de red, broadcast y cantidad de hosts usables."
|
||||
parse_nordvpn_status_go_infra,parse_nordvpn_status,function,function,go,infra,pure,Parsea la salida de texto de nordvpn status a un struct tipado. Elimina codigos ANSI y normaliza claves.
|
||||
partial2_go_core,partial2,function,function,go,core,pure,Aplica parcialmente el primer argumento de una funcion de dos parametros.
|
||||
partition_go_core,partition,function,function,go,core,pure,"Divide un slice en dos segun un predicado. El primer slice contiene los elementos que cumplen el predicado, el segundo los que no. Se preserva el orden original."
|
||||
partition_py_core,partition,function,function,py,core,pure,"Divide una lista en dos: (elementos que cumplen el predicado, elementos que no)."
|
||||
pass_delete_bash_infra,pass_delete,function,function,bash,infra,impure,Elimina un secreto del password store (pass).
|
||||
pass_generate_bash_infra,pass_generate,function,function,bash,infra,impure,"Genera un password aleatorio, lo almacena en el password store e imprime el valor generado."
|
||||
pass_get_bash_infra,pass_get,function,function,bash,infra,impure,Lee un secreto del password store (pass) y lo imprime a stdout.
|
||||
pass_list_bash_infra,pass_list,function,function,bash,infra,impure,Lista entradas del password store como JSON array. Filtra opcionalmente por prefijo.
|
||||
pass_set_bash_infra,pass_set,function,function,bash,infra,impure,Inserta o sobreescribe un secreto en el password store (pass).
|
||||
pass_sync_bash_infra,pass_sync,function,function,bash,infra,impure,Sincroniza el password store con el repositorio git remoto (pull + push).
|
||||
pearson_go_datascience,pearson,function,function,go,datascience,pure,Calcula el coeficiente de correlación de Pearson entre dos slices de float64.
|
||||
pearson_py_datascience,pearson,function,function,py,datascience,pure,Calcula el coeficiente de correlacion de Pearson entre dos listas de floats.
|
||||
pie_chart_typescript_ui,pie_chart,function,component,typescript,ui,impure,"Gráfico de torta/dona Recharts con Cell por segmento, colores automáticos, labels con porcentaje, Legend y Tooltip temático. Soporte donut con innerRadius configurable."
|
||||
pipe_py_core,pipe,function,function,py,core,pure,Pasa un valor a traves de una secuencia de funciones de izquierda a derecha.
|
||||
pipe2_go_core,pipe2,function,function,go,core,pure,"Compone dos funciones de izquierda a derecha. pipe2(f, g)(x) = g(f(x))."
|
||||
pipe3_go_core,pipe3,function,function,go,core,pure,Compone tres funciones de izquierda a derecha.
|
||||
pipeline_go_core,pipeline,function,function,go,core,pure,"Compone funciones T -> T en secuencia de izquierda a derecha. Pipeline(f, g, h)(x) equivale a h(g(f(x))). Sin funciones retorna la identidad."
|
||||
pipeline_launcher_go_infra,pipeline_launcher,function,pipeline,go,infra,impure,"TUI interactiva que lista pipelines del registry, permite lanzarlos como subprocesos y registra cada ejecución en operations.db. Dos tabs: Pipelines (filtro + launch) y History (historial)."
|
||||
postgres_open_go_infra,postgres_open,function,function,go,infra,impure,Conecta a PostgreSQL construyendo el DSN desde parametros individuales. sslmode por defecto 'disable' si vacio.
|
||||
print_error_go_tui,print_error,function,function,go,tui,impure,Imprime un mensaje con estilo de error (rojo) en stderr.
|
||||
print_info_go_tui,print_info,function,function,go,tui,impure,Imprime un mensaje con estilo informativo (cyan) en stdout.
|
||||
print_muted_go_tui,print_muted,function,function,go,tui,impure,Imprime un mensaje con estilo atenuado (gris) en stdout.
|
||||
print_success_go_tui,print_success,function,function,go,tui,impure,Imprime un mensaje con estilo de exito (verde) en stdout.
|
||||
print_warning_go_tui,print_warning,function,function,go,tui,impure,Imprime un mensaje con estilo de advertencia (naranja) en stdout.
|
||||
progress_bar_typescript_ui,progress_bar,function,component,typescript,ui,impure,"Barra de progreso con variantes de color y tamaño, buffer, animación, modo indeterminado y display de valor."
|
||||
quit_msg_go_tui,quit_msg,function,function,go,tui,pure,Devuelve un mensaje de salida para el bucle de Bubble Tea.
|
||||
reduce_go_core,reduce,function,function,go,core,pure,Reduce un slice a un unico valor aplicando una funcion acumuladora de izquierda a derecha.
|
||||
reduce_list_py_core,reduce_list,function,function,py,core,pure,"Reduce una lista con un acumulador y una funcion binaria fn(acc, x)."
|
||||
report_execution_json_bash_shell,report_execution_json,function,function,bash,shell,pure,"Genera un JSON de reporte de ejecucion siguiendo el estandar fn-registry (docs/execution_standard.md). Recibe los metadatos del flujo y un archivo TSV con resultados de pasos (columnas: name, action, "
|
||||
resolve_dns_go_cybersecurity,resolve_dns,function,function,go,cybersecurity,impure,Resuelve un hostname a sus direcciones IP usando el resolver DNS del sistema.
|
||||
retry_with_backoff_go_core,retry_with_backoff,function,function,go,core,impure,Reintenta una funcion impura con backoff exponencial. El delay entre intento i e i+1 es baseDelay * 2^i. Retorna el primer resultado exitoso o el ultimo error tras agotar los reintentos.
|
||||
rewrite_rule_go_core,rewrite_rule,function,function,go,core,pure,Reescribe campos bare en una expresion SQL a llamadas json_extract sobre una columna JSON de SQLite.
|
||||
rolling_window_go_datascience,rolling_window,function,function,go,datascience,pure,Genera ventanas deslizantes de tamaño fijo sobre un slice genérico.
|
||||
rolling_window_py_datascience,rolling_window,function,function,py,datascience,pure,Genera ventanas deslizantes de tamanio fijo sobre una lista.
|
||||
rsi_go_finance,rsi,function,function,go,finance,pure,Calcula el Relative Strength Index (RSI) usando suavizado de Wilder.
|
||||
rsi_py_finance,rsi,function,function,py,finance,pure,Calcula el Relative Strength Index (RSI) de una serie de precios.
|
||||
run_cmd_go_shell,run_cmd,function,function,go,shell,impure,Ejecuta un comando del sistema con timeout de 30 segundos y devuelve el resultado.
|
||||
run_cmd_timeout_go_shell,run_cmd_timeout,function,function,go,shell,impure,Ejecuta un comando del sistema con timeout configurable.
|
||||
run_fullscreen_go_tui,run_fullscreen,function,function,go,tui,impure,Ejecuta un modelo Bubble Tea en modo fullscreen.
|
||||
run_model_go_tui,run_model,function,function,go,tui,impure,Ejecuta un modelo Bubble Tea y devuelve el modelo final o error.
|
||||
run_pipe_go_shell,run_pipe,function,function,go,shell,impure,Encadena multiples comandos con pipe y devuelve el resultado final.
|
||||
run_shell_go_shell,run_shell,function,function,go,shell,impure,Ejecuta un comando shell interpretado por /bin/sh.
|
||||
run_shell_timeout_go_shell,run_shell_timeout,function,function,go,shell,impure,Ejecuta un comando shell con timeout configurable.
|
||||
run_steps_bash_shell,run_steps,function,function,bash,shell,impure,"Ejecuta pasos de un YAML generico donde cada step tiene action=command. Lee el YAML con yq, ejecuta cada paso secuencialmente con timeout configurable, captura exit code y output, respeta continue_on_"
|
||||
run_with_mouse_go_tui,run_with_mouse,function,function,go,tui,impure,Ejecuta un modelo Bubble Tea con soporte de raton habilitado.
|
||||
scaffold_wails_app_go_infra,scaffold_wails_app,function,function,go,infra,impure,"Genera proyecto Wails completo: main.go con embed, app.go con bindings base, wails.json, go.mod, y frontend vinculado a Frontend_Library."
|
||||
scan_port_tcp_go_cybersecurity,scan_port_tcp,function,function,go,cybersecurity,impure,Escanea un puerto TCP en un host dado. Devuelve el estado (open/closed/filtered) y un banner si esta abierto.
|
||||
select_typescript_ui,select,function,component,typescript,ui,impure,"Select genérico accesible con grupos, separadores y animaciones. Base-UI primitive con posicionamiento automático."
|
||||
settings_page_typescript_ui,settings_page,function,function,typescript,ui,pure,"Genera una página de configuración con navegación lateral, secciones y campos de formulario (text, number, toggle, select, textarea)."
|
||||
setup_metabase_volume_bash_pipelines,setup_metabase_volume,function,pipeline,bash,pipelines,impure,"Copia registry.db al contenedor Docker de Metabase verificando existencia del archivo, disponibilidad de docker, estado del contenedor y coincidencia de tamaños. Todos los argumentos son opcionales co"
|
||||
sharpe_ratio_go_finance,sharpe_ratio,function,function,go,finance,pure,"Calcula el ratio de Sharpe anualizado a partir de retornos, tasa libre de riesgo y frecuencia."
|
||||
sharpe_ratio_py_finance,sharpe_ratio,function,function,py,finance,pure,Calcula el Sharpe Ratio anualizado de una serie de retornos.
|
||||
show_cursor_go_tui,show_cursor,function,function,go,tui,pure,Devuelve el codigo de escape ANSI para mostrar el cursor del terminal.
|
||||
skeleton_typescript_ui,skeleton,function,component,typescript,ui,impure,"Sistema de loading skeletons: base, text, card, avatar, button, table. Variantes preconfiguradas para estados de carga."
|
||||
sma_go_finance,sma,function,function,go,finance,pure,Calcula la media movil simple (SMA) sobre una serie de datos con un periodo dado.
|
||||
sma_py_finance,sma,function,function,py,finance,pure,Calcula la media movil simple (SMA) de una serie de precios.
|
||||
sparkline_typescript_ui,sparkline,function,component,typescript,ui,impure,"Mini gráfico inline SVG puro (sin Recharts) con variantes line, area y bar. Para KPI cards y tablas."
|
||||
sqlite_open_go_infra,sqlite_open,function,function,go,infra,impure,"Abre (o crea) una base de datos SQLite con WAL mode y foreign keys habilitados. Hace ping para verificar la conexion. Si basePath es no-vacio y path es relativo, resuelve el path como filepath.Join(ba"
|
||||
ssh_check_go_infra,ssh_check,function,function,go,infra,impure,Verifica conectividad SSH ejecutando un comando noop en el host remoto. Timeout de 5 segundos.
|
||||
ssh_download_go_infra,ssh_download,function,function,go,infra,impure,Descarga un archivo del host remoto al filesystem local via scp.
|
||||
ssh_exec_go_infra,ssh_exec,function,function,go,infra,impure,"Ejecuta un comando en el host remoto via SSH. Retorna stdout, stderr y exit code separados."
|
||||
ssh_tunnel_close_go_infra,ssh_tunnel_close,function,function,go,infra,impure,Cierra un tunel SSH enviando SIGTERM al proceso por PID.
|
||||
ssh_tunnel_open_go_infra,ssh_tunnel_open,function,function,go,infra,impure,Abre un tunel SSH (local port forwarding) en background. Retorna el PID del proceso para cerrarlo despues.
|
||||
ssh_upload_go_infra,ssh_upload,function,function,go,infra,impure,Sube un archivo local al host remoto via scp.
|
||||
standardize_go_datascience,standardize,function,function,go,datascience,pure,"Aplica Z-score normalización a un slice de float64, transformando cada valor a (x - media) / desviación estándar."
|
||||
standardize_py_datascience,standardize,function,function,py,datascience,pure,Estandarizacion Z-score: transforma los datos a media=0 y desviacion=1.
|
||||
stop_app_go_infra,stop_app,function,pipeline,go,infra,impure,Para y elimina el contenedor de una app desplegada. Si removeImage es true elimina también la imagen Docker. containerName debe coincidir con el imageName usado en deploy_app.
|
||||
stream_ticks_go_finance,stream_ticks,function,function,go,finance,impure,Abre un stream de ticks en tiempo real para un simbolo via websocket.
|
||||
tabs_typescript_ui,tabs,function,component,typescript,ui,impure,"Sistema de tabs con orientación horizontal/vertical, variantes default y line, y soporte para iconos. Base-UI primitive."
|
||||
take_go_core,take,function,function,go,core,pure,Devuelve los primeros n elementos de un slice.
|
||||
take_py_core,take,function,function,py,core,pure,Toma los primeros n elementos de una lista.
|
||||
theme_config_to_colors_typescript_core,theme_config_to_colors,function,function,typescript,core,pure,Convierte un ThemeConfig completo a ThemeColors plano para inyectar como CSS variables. Mapea tokens semánticos a variables CSS.
|
||||
theme_provider_typescript_ui,theme_provider,function,component,typescript,ui,impure,"Provider de tema React con context, persistencia en localStorage, detección de preferencia del sistema y hook useTheme."
|
||||
tick_to_ohlcv_go_finance,tick_to_ohlcv,function,function,go,finance,pure,Agrega datos de ticks en velas OHLCV segun un intervalo de tiempo en segundos.
|
||||
tooltip_typescript_ui,tooltip,function,component,typescript,ui,impure,"Tooltip accesible con animaciones, posicionamiento automático y arrow. Base-UI primitive con delay configurable."
|
||||
uncurry2_go_core,uncurry2,function,function,go,core,pure,Transforma una funcion currificada en una funcion normal de dos argumentos.
|
||||
unique_go_core,unique,function,function,go,core,pure,Devuelve un slice con elementos unicos preservando el orden original.
|
||||
unique_py_core,unique,function,function,py,core,pure,Elimina duplicados de una lista preservando el orden de aparicion.
|
||||
use_animated_canvas_typescript_ui,use_animated_canvas,function,component,typescript,ui,impure,"Hook React para canvas animado a N fps via requestAnimationFrame. Maneja DPR, resize, throttling, y contador de FPS real."
|
||||
use_wails_event_typescript_ui,use_wails_event,function,component,typescript,ui,impure,"Hook para suscripción a eventos Go→TS y emisión TS→Go via Wails runtime. Soporta once, maxCallbacks, emit bidireccional."
|
||||
use_wails_mutation_typescript_ui,use_wails_mutation,function,component,typescript,ui,impure,"Hook para escrituras IPC Wails con optimistic updates, invalidación automática de queries, retry y callbacks completos."
|
||||
use_wails_query_typescript_ui,use_wails_query,function,component,typescript,ui,impure,"Hook React Query-like sobre IPC Wails. Cache automático, refetch por intervalo/foco, retry con backoff, invalidación."
|
||||
use_wails_stream_typescript_ui,use_wails_stream,function,component,typescript,ui,impure,"Hook para streaming de datos Go→TS con buffer configurable, auto-complete, transform y control start/stop. Incluye useWailsLogs."
|
||||
uv_add_packages_bash_infra,uv_add_packages,function,function,bash,infra,impure,Instala paquetes Python en un proyecto usando uv add con fallback a pip. Inicializa pyproject.toml si no existe.
|
||||
vwap_go_finance,vwap,function,function,go,finance,pure,Calcula el Volume Weighted Average Price (VWAP) a partir de precios y volumenes.
|
||||
vwap_py_finance,vwap,function,function,py,finance,pure,Calcula el Volume-Weighted Average Price (VWAP).
|
||||
wails_bind_crud_go_infra,wails_bind_crud,function,function,go,infra,pure,Genera código Go de bindings CRUD para Wails: struct + métodos List/Get/Create/Update/Delete con stubs not-implemented.
|
||||
wails_build_go_infra,wails_build,function,function,go,infra,impure,Compila un proyecto Wails para linux/windows/darwin. Incluye WailsDev para modo desarrollo con hot reload.
|
||||
wails_cache_typescript_core,wails_cache,function,function,typescript,core,pure,"Cache reactivo para IPC Wails con invalidación por prefijo, suscripción a cambios y tracking de staleness. Singleton global."
|
||||
wails_emit_event_go_infra,wails_emit_event,function,function,go,infra,impure,Emite eventos tipados de Go al frontend con timestamp automático. Incluye WailsEmitJSON para serialización explícita.
|
||||
wails_provider_typescript_ui,wails_provider,function,component,typescript,ui,impure,"Provider React para IPC Wails con cache context, opciones default y fallback a singleton. Exporta useWailsContext y useWailsCache."
|
||||
wails_stream_data_go_infra,wails_stream_data,function,function,go,infra,impure,Envía datos como stream Go→TS con protocolo {name}/{name}:complete/{name}:error. Incluye WailsStreamFunc para generadores.
|
||||
which_go_shell,which,function,function,go,shell,pure,Busca la ruta de un ejecutable en el PATH del sistema. Devuelve None si no existe.
|
||||
win_firewall_add_rule_ps_infra,win_firewall_add_rule,function,function,ps,infra,impure,"Añade una regla de entrada al firewall de Windows para permitir tráfico en un puerto TCP/UDP. Si ya existe una regla con el mismo nombre, la elimina y la recrea. Requiere privilegios de Administrador."
|
||||
win_firewall_remove_rule_ps_infra,win_firewall_remove_rule,function,function,ps,infra,impure,"Elimina una regla del firewall de Windows por nombre. Si la regla no existe, termina con éxito sin hacer nada (idempotente). Requiere privilegios de Administrador."
|
||||
win_portproxy_add_ps_infra,win_portproxy_add,function,function,ps,infra,impure,"Añade una regla de port proxy v4tov4 con netsh para redirigir tráfico desde ListenAddr:ListenPort hacia ConnectAddr:ConnectPort. Si ya existe una regla para el mismo listenaddress:listenport, la elimi"
|
||||
win_portproxy_remove_ps_infra,win_portproxy_remove,function,function,ps,infra,impure,"Elimina una regla de port proxy v4tov4 de netsh identificada por ListenAddr:ListenPort. Si la regla no existe, termina con éxito sin hacer nada (idempotente). Requiere privilegios de Administrador."
|
||||
write_claude_jupyter_rules_bash_infra,write_claude_jupyter_rules,function,function,bash,infra,impure,"Genera o actualiza .claude/CLAUDE.md con reglas para agentes que trabajan con Jupyter: celdas inmutables, programacion funcional, uso de MCP, acceso al fn_registry."
|
||||
write_dockerfile_go_infra,write_dockerfile,function,function,go,infra,impure,Escribe content en dir/Dockerfile. Crea el directorio si no existe. Retorna el path absoluto del archivo escrito. Compañera impura de generate_dockerfile.
|
||||
write_jupyter_launcher_bash_infra,write_jupyter_launcher,function,function,bash,infra,impure,Genera un script run-jupyter-lab.sh que lanza Jupyter Lab en modo colaborativo con autodeteccion de puerto y token deshabilitado.
|
||||
write_jupyter_registry_kernel_bash_infra,write_jupyter_registry_kernel,function,function,bash,infra,impure,"Genera un script de startup de IPython que autoconfigura FN_REGISTRY_ROOT, sys.path a python/functions del registry, y helpers fn_query/fn_search/fn_code para consultar registry.db desde notebooks."
|
||||
write_mcp_jupyter_config_bash_infra,write_mcp_jupyter_config,function,function,bash,infra,impure,Genera o actualiza .mcp.json con la configuracion de jupyter-mcp-server apuntando al venv local y puerto dado. Merge con jq si ya existe.
|
||||
write_ohlcv_to_parquet_go_finance,write_ohlcv_to_parquet,function,function,go,finance,impure,Persiste datos OHLCV en un archivo Parquet en la ruta indicada.
|
||||
zip_go_core,zip,function,function,go,core,pure,Combina dos slices en un slice de pares elemento a elemento.
|
||||
zip_slices_go_datascience,zip_slices,function,function,go,datascience,pure,"Combina dos slices de float64 en un slice de pares [2]float64, truncando al más corto."
|
||||
zip_with_py_core,zip_with,function,function,py,core,pure,Combina dos listas elemento a elemento con una funcion. Se detiene en la mas corta.
|
||||
ChartSeries_typescript_ui,ChartSeries,type,,typescript,ui,,Tipos base para series y datos de gráficos. Usados por todos los chart components.
|
||||
ComponentVariants_typescript_core,ComponentVariants,type,,typescript,core,,Tipos base para componentes con variantes CVA. Props comunes y composición de variantes type-safe.
|
||||
MetabaseClient_go_infra,MetabaseClient,type,,go,infra,,Cliente para la API REST de Metabase. Contiene la URL base de la instancia y el token de autenticacion (session token o API key).
|
||||
NordVPNStatus_go_infra,NordVPNStatus,type,,go,infra,,"Estado parseado de nordvpn status. Contiene informacion de conexion, servidor, ubicacion y protocolo."
|
||||
ThemeConfig_typescript_ui,ThemeConfig,type,,typescript,ui,,"Sistema completo de tokens de diseño: colores semánticos, tipografía, spacing, sombras, motion, breakpoints. Base del theming de Frontend Library."
|
||||
WailsIPC_typescript_ui,WailsIPC,type,,typescript,ui,,"Tipos base para el sistema IPC de Wails: QueryState, QueryOptions, MutationOptions, WailsEvent, defaults."
|
||||
base_model_go_tui,base_model,type,,go,tui,,"Modelo base que provee dimensiones de terminal, estilos y manejo de errores comunes a todas las vistas TUI."
|
||||
bollinger_result_go_finance,bollinger_result,type,,go,finance,,"Resultado de Bollinger Bands con bandas superior, media e inferior."
|
||||
cidr_block_go_cybersecurity,cidr_block,type,,go,cybersecurity,,"Rango de red CIDR parseado con network, broadcast y numero de hosts."
|
||||
cmd_result_go_shell,cmd_result,type,,go,shell,,"Resultado de la ejecucion de un comando del sistema con stdout, stderr y codigo de salida."
|
||||
compose_project_go_docker,compose_project,type,,go,docker,,"Proyecto Docker Compose con nombre, archivos de configuracion y lista de servicios."
|
||||
confirm_model_go_tui,confirm_model,type,,go,tui,,Dialogo de confirmacion Si/No interactivo. Embeds BaseModel. Implementa tea.Model.
|
||||
container_go_docker,container,type,,go,docker,,"Contenedor Docker con ID, nombre, imagen, estado y puertos expuestos."
|
||||
container_info_go_infra,container_info,type,,go,infra,,"Información básica de un contenedor Docker: ID, nombre, imagen, estado, puertos, labels."
|
||||
db_config_go_infra,db_config,type,,go,infra,,Parametros de conexion para cualquier base de datos soportada. Agnóstico al driver.
|
||||
drawdown_result_go_finance,drawdown_result,type,,go,finance,,Resultado de maximo drawdown con el valor de caida y los indices de inicio y fin.
|
||||
error_go_core,error,type,,go,core,,Tipo de error base del registry. Referenciado como error_type por funciones impuras.
|
||||
filtered_list_model_go_tui,filtered_list_model,type,,go,tui,,Lista con filtrado por texto en tiempo real. Embeds ListModel y añade busqueda interactiva.
|
||||
image_go_docker,image,type,,go,docker,,"Imagen Docker con repositorio, tag, tamaño y fecha de creacion."
|
||||
image_info_go_infra,image_info,type,,go,infra,,"Información básica de una imagen Docker local: ID, repositorio, tag, tamaño, fecha."
|
||||
list_item_go_tui,list_item,type,,go,tui,,"Item individual de una lista TUI con titulo, descripcion y valor arbitrario."
|
||||
list_model_go_tui,list_model,type,,go,tui,,"Componente lista seleccionable con cursor, scroll y seleccion simple o multiple. Implementa tea.Model."
|
||||
multi_progress_model_go_tui,multi_progress_model,type,,go,tui,,Gestor de multiples barras de progreso simultaneas. Implementa tea.Model.
|
||||
network_go_docker,network,type,,go,docker,,"Red Docker con nombre, driver y scope (local/global)."
|
||||
ohlcv_go_finance,ohlcv,type,,go,finance,,"Vela de mercado con precios de apertura, maximo, minimo, cierre y volumen."
|
||||
option_go_core,option,type,,go,core,,Tipo suma generico que representa un valor opcional: Some(T) o None. Alternativa a punteros nil para modelar ausencia de valor de forma explicita.
|
||||
outlier_result_go_datascience,outlier_result,type,,go,datascience,,Tipo suma que clasifica un dato como Normal o Outlier con su z-score. Usado por DetectOutliers.
|
||||
pair_go_core,pair,type,,go,core,,Tipo producto generico que agrupa dos valores de tipos potencialmente distintos. Util para ZipSlices y operaciones que devuelven dos resultados.
|
||||
port_result_go_cybersecurity,port_result,type,,go,cybersecurity,,"Tipo suma para resultados de escaneo TCP: Open (con banner), Closed o Filtered."
|
||||
progress_model_go_tui,progress_model,type,,go,tui,,"Barra de progreso con porcentaje, ETA y tiempo transcurrido. Implementa tea.Model."
|
||||
result_go_core,result,type,,go,core,,"Tipo suma generico que representa exito (Ok) o fallo (Err). Permite componer operaciones que pueden fallar sin recurrir a multiples returns (T, error)."
|
||||
spinner_model_go_tui,spinner_model,type,,go,tui,,Indicador de carga animado con mensaje personalizable. Implementa tea.Model.
|
||||
spinner_with_timeout_model_go_tui,spinner_with_timeout_model,type,,go,tui,,Spinner que se auto-detiene tras un timeout configurable. Embeds SpinnerModel.
|
||||
ssh_conn_go_infra,ssh_conn,type,,go,infra,,"Parametros de conexion SSH reutilizables. Contiene host, puerto, usuario y ruta a clave privada."
|
||||
styles_go_tui,styles,type,,go,tui,,"Coleccion completa de estilos lipgloss pre-configurados para tipografia, estados, componentes y layout."
|
||||
theme_go_tui,theme,type,,go,tui,,Paleta de colores para terminal con 9 colores semanticos. Base del sistema de estilos.
|
||||
threat_result_go_cybersecurity,threat_result,type,,go,cybersecurity,,"Tipo suma para resultados de deteccion de amenazas: Clean, Suspicious o Malicious."
|
||||
tick_go_finance,tick,type,,go,finance,,"Evento de trade individual en un mercado. Contiene simbolo, precio, volumen y timestamp."
|
||||
volume_go_docker,volume,type,,go,docker,,"Volumen Docker con nombre, driver y punto de montaje en el host."
|
||||
|
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
||||
MANIFEST-000037
|
||||
@@ -0,0 +1 @@
|
||||
0f93bdf4-4cb3-47b8-832e-e0d60c414d3a
|
||||
@@ -0,0 +1,238 @@
|
||||
2026/04/02-21:14:20.237937 139629081356096 RocksDB version: 10.10.1
|
||||
2026/04/02-21:14:20.237965 139629081356096 DB SUMMARY
|
||||
2026/04/02-21:14:20.237968 139629081356096 Host name (Env): Lucas
|
||||
2026/04/02-21:14:20.237969 139629081356096 DB Session ID: 86F26ZGOLUEYUL8ZU31K
|
||||
2026/04/02-21:14:20.237996 139629081356096 CURRENT file: CURRENT
|
||||
2026/04/02-21:14:20.237998 139629081356096 IDENTITY file: IDENTITY
|
||||
2026/04/02-21:14:20.238001 139629081356096 MANIFEST file: MANIFEST-000038 size: 1785 Bytes
|
||||
2026/04/02-21:14:20.238003 139629081356096 SST files in data/osint/oxigraph dir, Total Num: 5, files: 000011.sst 000015.sst 000016.sst 000017.sst 000018.sst
|
||||
2026/04/02-21:14:20.238004 139629081356096 Write Ahead Log file in data/osint/oxigraph: 000037.log size: 0 ;
|
||||
2026/04/02-21:14:20.238006 139629081356096 Options.error_if_exists: 0
|
||||
2026/04/02-21:14:20.238007 139629081356096 Options.create_if_missing: 1
|
||||
2026/04/02-21:14:20.238007 139629081356096 Options.paranoid_checks: 1
|
||||
2026/04/02-21:14:20.238009 139629081356096 Options.flush_verify_memtable_count: 1
|
||||
2026/04/02-21:14:20.238009 139629081356096 Options.compaction_verify_record_count: 1
|
||||
2026/04/02-21:14:20.238011 139629081356096 Options.track_and_verify_wals_in_manifest: 0
|
||||
2026/04/02-21:14:20.238011 139629081356096 Options.track_and_verify_wals: 0
|
||||
2026/04/02-21:14:20.238012 139629081356096 Options.verify_sst_unique_id_in_manifest: 1
|
||||
2026/04/02-21:14:20.238013 139629081356096 Options.env: 0x3a912f30
|
||||
2026/04/02-21:14:20.238014 139629081356096 Options.fs: PosixFileSystem
|
||||
2026/04/02-21:14:20.238015 139629081356096 Options.info_log: 0x3b113f60
|
||||
2026/04/02-21:14:20.238015 139629081356096 Options.max_file_opening_threads: 16
|
||||
2026/04/02-21:14:20.238016 139629081356096 Options.statistics: (nil)
|
||||
2026/04/02-21:14:20.238017 139629081356096 Options.use_fsync: 0
|
||||
2026/04/02-21:14:20.238038 139629081356096 Options.max_log_file_size: 1048576
|
||||
2026/04/02-21:14:20.238039 139629081356096 Options.log_file_time_to_roll: 0
|
||||
2026/04/02-21:14:20.238040 139629081356096 Options.keep_log_file_num: 1000
|
||||
2026/04/02-21:14:20.238041 139629081356096 Options.recycle_log_file_num: 10
|
||||
2026/04/02-21:14:20.238042 139629081356096 Options.allow_fallocate: 1
|
||||
2026/04/02-21:14:20.238042 139629081356096 Options.allow_mmap_reads: 0
|
||||
2026/04/02-21:14:20.238043 139629081356096 Options.allow_mmap_writes: 0
|
||||
2026/04/02-21:14:20.238044 139629081356096 Options.use_direct_reads: 0
|
||||
2026/04/02-21:14:20.238045 139629081356096 Options.use_direct_io_for_flush_and_compaction: 0
|
||||
2026/04/02-21:14:20.238045 139629081356096 Options.create_missing_column_families: 1
|
||||
2026/04/02-21:14:20.238046 139629081356096 Options.db_log_dir:
|
||||
2026/04/02-21:14:20.238047 139629081356096 Options.wal_dir:
|
||||
2026/04/02-21:14:20.238048 139629081356096 Options.table_cache_numshardbits: 6
|
||||
2026/04/02-21:14:20.238049 139629081356096 Options.WAL_ttl_seconds: 0
|
||||
2026/04/02-21:14:20.238049 139629081356096 Options.WAL_size_limit_MB: 0
|
||||
2026/04/02-21:14:20.238050 139629081356096 Options.max_write_batch_group_size_bytes: 1048576
|
||||
2026/04/02-21:14:20.238051 139629081356096 Options.is_fd_close_on_exec: 1
|
||||
2026/04/02-21:14:20.238051 139629081356096 Options.advise_random_on_open: 1
|
||||
2026/04/02-21:14:20.238052 139629081356096 Options.db_write_buffer_size: 0
|
||||
2026/04/02-21:14:20.238053 139629081356096 Options.write_buffer_manager: 0x3b078b40
|
||||
2026/04/02-21:14:20.238053 139629081356096 Options.use_adaptive_mutex: 0
|
||||
2026/04/02-21:14:20.238054 139629081356096 Options.rate_limiter: (nil)
|
||||
2026/04/02-21:14:20.238055 139629081356096 Options.sst_file_manager.rate_bytes_per_sec: 0
|
||||
2026/04/02-21:14:20.238056 139629081356096 Options.wal_recovery_mode: 2
|
||||
2026/04/02-21:14:20.238056 139629081356096 Options.enable_thread_tracking: 0
|
||||
2026/04/02-21:14:20.238057 139629081356096 Options.enable_pipelined_write: 0
|
||||
2026/04/02-21:14:20.238058 139629081356096 Options.unordered_write: 0
|
||||
2026/04/02-21:14:20.238058 139629081356096 Options.allow_concurrent_memtable_write: 1
|
||||
2026/04/02-21:14:20.238059 139629081356096 Options.enable_write_thread_adaptive_yield: 1
|
||||
2026/04/02-21:14:20.238059 139629081356096 Options.write_thread_max_yield_usec: 100
|
||||
2026/04/02-21:14:20.238060 139629081356096 Options.write_thread_slow_yield_usec: 3
|
||||
2026/04/02-21:14:20.238061 139629081356096 Options.row_cache: None
|
||||
2026/04/02-21:14:20.238062 139629081356096 Options.wal_filter: None
|
||||
2026/04/02-21:14:20.238062 139629081356096 Options.avoid_flush_during_recovery: 0
|
||||
2026/04/02-21:14:20.238063 139629081356096 Options.allow_ingest_behind: 0
|
||||
2026/04/02-21:14:20.238063 139629081356096 Options.two_write_queues: 0
|
||||
2026/04/02-21:14:20.238064 139629081356096 Options.manual_wal_flush: 0
|
||||
2026/04/02-21:14:20.238065 139629081356096 Options.wal_compression: 0
|
||||
2026/04/02-21:14:20.238065 139629081356096 Options.background_close_inactive_wals: 0
|
||||
2026/04/02-21:14:20.238066 139629081356096 Options.atomic_flush: 0
|
||||
2026/04/02-21:14:20.238066 139629081356096 Options.avoid_unnecessary_blocking_io: 0
|
||||
2026/04/02-21:14:20.238067 139629081356096 Options.prefix_seek_opt_in_only: 0
|
||||
2026/04/02-21:14:20.238068 139629081356096 Options.persist_stats_to_disk: 0
|
||||
2026/04/02-21:14:20.238068 139629081356096 Options.write_dbid_to_manifest: 1
|
||||
2026/04/02-21:14:20.238069 139629081356096 Options.write_identity_file: 1
|
||||
2026/04/02-21:14:20.238070 139629081356096 Options.log_readahead_size: 0
|
||||
2026/04/02-21:14:20.238070 139629081356096 Options.file_checksum_gen_factory: Unknown
|
||||
2026/04/02-21:14:20.238071 139629081356096 Options.best_efforts_recovery: 0
|
||||
2026/04/02-21:14:20.238072 139629081356096 Options.max_bgerror_resume_count: 2147483647
|
||||
2026/04/02-21:14:20.238072 139629081356096 Options.bgerror_resume_retry_interval: 1000000
|
||||
2026/04/02-21:14:20.238073 139629081356096 Options.allow_data_in_errors: 0
|
||||
2026/04/02-21:14:20.238074 139629081356096 Options.db_host_id: __hostname__
|
||||
2026/04/02-21:14:20.238075 139629081356096 Options.enforce_single_del_contracts: true
|
||||
2026/04/02-21:14:20.238076 139629081356096 Options.metadata_write_temperature: kUnknown
|
||||
2026/04/02-21:14:20.238076 139629081356096 Options.wal_write_temperature: kUnknown
|
||||
2026/04/02-21:14:20.238077 139629081356096 Options.max_background_jobs: 24
|
||||
2026/04/02-21:14:20.238078 139629081356096 Options.max_background_compactions: -1
|
||||
2026/04/02-21:14:20.238078 139629081356096 Options.max_subcompactions: 1
|
||||
2026/04/02-21:14:20.238079 139629081356096 Options.avoid_flush_during_shutdown: 0
|
||||
2026/04/02-21:14:20.238080 139629081356096 Options.writable_file_max_buffer_size: 1048576
|
||||
2026/04/02-21:14:20.238080 139629081356096 Options.delayed_write_rate : 16777216
|
||||
2026/04/02-21:14:20.238081 139629081356096 Options.max_total_wal_size: 0
|
||||
2026/04/02-21:14:20.238082 139629081356096 Options.delete_obsolete_files_period_micros: 21600000000
|
||||
2026/04/02-21:14:20.238082 139629081356096 Options.stats_dump_period_sec: 600
|
||||
2026/04/02-21:14:20.238083 139629081356096 Options.stats_persist_period_sec: 600
|
||||
2026/04/02-21:14:20.238084 139629081356096 Options.stats_history_buffer_size: 1048576
|
||||
2026/04/02-21:14:20.238084 139629081356096 Options.max_open_files: 4048
|
||||
2026/04/02-21:14:20.238085 139629081356096 Options.bytes_per_sync: 0
|
||||
2026/04/02-21:14:20.238085 139629081356096 Options.wal_bytes_per_sync: 0
|
||||
2026/04/02-21:14:20.238086 139629081356096 Options.strict_bytes_per_sync: 0
|
||||
2026/04/02-21:14:20.238087 139629081356096 Options.compaction_readahead_size: 2097152
|
||||
2026/04/02-21:14:20.238087 139629081356096 Options.max_background_flushes: -1
|
||||
2026/04/02-21:14:20.238088 139629081356096 Options.max_manifest_file_size: 1073741824
|
||||
2026/04/02-21:14:20.238089 139629081356096 Options.max_manifest_space_amp_pct: 500
|
||||
2026/04/02-21:14:20.238089 139629081356096 Options.manifest_preallocation_size: 4194304
|
||||
2026/04/02-21:14:20.238090 139629081356096 Options.daily_offpeak_time_utc:
|
||||
2026/04/02-21:14:20.238091 139629081356096 Compression algorithms supported:
|
||||
2026/04/02-21:14:20.238092 139629081356096 kCustomCompressionFE supported: 0
|
||||
2026/04/02-21:14:20.238093 139629081356096 kCustomCompressionFC supported: 0
|
||||
2026/04/02-21:14:20.238094 139629081356096 kCustomCompressionF8 supported: 0
|
||||
2026/04/02-21:14:20.238095 139629081356096 kCustomCompressionF7 supported: 0
|
||||
2026/04/02-21:14:20.238095 139629081356096 kCustomCompressionB2 supported: 0
|
||||
2026/04/02-21:14:20.238096 139629081356096 kLZ4Compression supported: 1
|
||||
2026/04/02-21:14:20.238097 139629081356096 kCustomCompression88 supported: 0
|
||||
2026/04/02-21:14:20.238098 139629081356096 kCustomCompressionD8 supported: 0
|
||||
2026/04/02-21:14:20.238099 139629081356096 kCustomCompression9F supported: 0
|
||||
2026/04/02-21:14:20.238100 139629081356096 kCustomCompressionD6 supported: 0
|
||||
2026/04/02-21:14:20.238101 139629081356096 kCustomCompressionA9 supported: 0
|
||||
2026/04/02-21:14:20.238102 139629081356096 kCustomCompressionEC supported: 0
|
||||
2026/04/02-21:14:20.238102 139629081356096 kCustomCompressionA3 supported: 0
|
||||
2026/04/02-21:14:20.238103 139629081356096 kCustomCompressionCB supported: 0
|
||||
2026/04/02-21:14:20.238104 139629081356096 kCustomCompression90 supported: 0
|
||||
2026/04/02-21:14:20.238104 139629081356096 kCustomCompressionA0 supported: 0
|
||||
2026/04/02-21:14:20.238105 139629081356096 kCustomCompressionC6 supported: 0
|
||||
2026/04/02-21:14:20.238106 139629081356096 kCustomCompression9D supported: 0
|
||||
2026/04/02-21:14:20.238106 139629081356096 kCustomCompression8B supported: 0
|
||||
2026/04/02-21:14:20.238107 139629081356096 kCustomCompressionA8 supported: 0
|
||||
2026/04/02-21:14:20.238108 139629081356096 kCustomCompression8D supported: 0
|
||||
2026/04/02-21:14:20.238109 139629081356096 kCustomCompression97 supported: 0
|
||||
2026/04/02-21:14:20.238109 139629081356096 kCustomCompression98 supported: 0
|
||||
2026/04/02-21:14:20.238110 139629081356096 kCustomCompressionAC supported: 0
|
||||
2026/04/02-21:14:20.238111 139629081356096 kCustomCompressionE9 supported: 0
|
||||
2026/04/02-21:14:20.238112 139629081356096 kCustomCompression96 supported: 0
|
||||
2026/04/02-21:14:20.238113 139629081356096 kCustomCompressionB1 supported: 0
|
||||
2026/04/02-21:14:20.238113 139629081356096 kCustomCompression95 supported: 0
|
||||
2026/04/02-21:14:20.238114 139629081356096 kCustomCompression84 supported: 0
|
||||
2026/04/02-21:14:20.238114 139629081356096 kCustomCompression91 supported: 0
|
||||
2026/04/02-21:14:20.238115 139629081356096 kCustomCompressionAB supported: 0
|
||||
2026/04/02-21:14:20.238116 139629081356096 kCustomCompressionB3 supported: 0
|
||||
2026/04/02-21:14:20.238117 139629081356096 kCustomCompression81 supported: 0
|
||||
2026/04/02-21:14:20.238117 139629081356096 kCustomCompressionDC supported: 0
|
||||
2026/04/02-21:14:20.238118 139629081356096 kBZip2Compression supported: 0
|
||||
2026/04/02-21:14:20.238119 139629081356096 kCustomCompressionBB supported: 0
|
||||
2026/04/02-21:14:20.238119 139629081356096 kCustomCompression9C supported: 0
|
||||
2026/04/02-21:14:20.238120 139629081356096 kCustomCompressionC9 supported: 0
|
||||
2026/04/02-21:14:20.238120 139629081356096 kCustomCompressionCC supported: 0
|
||||
2026/04/02-21:14:20.238121 139629081356096 kCustomCompression92 supported: 0
|
||||
2026/04/02-21:14:20.238122 139629081356096 kCustomCompressionB9 supported: 0
|
||||
2026/04/02-21:14:20.238122 139629081356096 kCustomCompression8F supported: 0
|
||||
2026/04/02-21:14:20.238123 139629081356096 kCustomCompression8A supported: 0
|
||||
2026/04/02-21:14:20.238123 139629081356096 kCustomCompression9B supported: 0
|
||||
2026/04/02-21:14:20.238124 139629081356096 kZSTD supported: 0
|
||||
2026/04/02-21:14:20.238125 139629081356096 kCustomCompressionAA supported: 0
|
||||
2026/04/02-21:14:20.238125 139629081356096 kCustomCompressionA2 supported: 0
|
||||
2026/04/02-21:14:20.238126 139629081356096 kZlibCompression supported: 0
|
||||
2026/04/02-21:14:20.238127 139629081356096 kXpressCompression supported: 0
|
||||
2026/04/02-21:14:20.238128 139629081356096 kCustomCompressionFD supported: 0
|
||||
2026/04/02-21:14:20.238128 139629081356096 kCustomCompressionE2 supported: 0
|
||||
2026/04/02-21:14:20.238129 139629081356096 kLZ4HCCompression supported: 1
|
||||
2026/04/02-21:14:20.238129 139629081356096 kCustomCompressionA6 supported: 0
|
||||
2026/04/02-21:14:20.238130 139629081356096 kCustomCompression85 supported: 0
|
||||
2026/04/02-21:14:20.238131 139629081356096 kCustomCompressionA4 supported: 0
|
||||
2026/04/02-21:14:20.238131 139629081356096 kCustomCompression86 supported: 0
|
||||
2026/04/02-21:14:20.238132 139629081356096 kCustomCompression83 supported: 0
|
||||
2026/04/02-21:14:20.238133 139629081356096 kCustomCompression87 supported: 0
|
||||
2026/04/02-21:14:20.238133 139629081356096 kCustomCompression89 supported: 0
|
||||
2026/04/02-21:14:20.238134 139629081356096 kCustomCompression8C supported: 0
|
||||
2026/04/02-21:14:20.238134 139629081356096 kCustomCompressionDB supported: 0
|
||||
2026/04/02-21:14:20.238135 139629081356096 kCustomCompressionF3 supported: 0
|
||||
2026/04/02-21:14:20.238136 139629081356096 kCustomCompressionE6 supported: 0
|
||||
2026/04/02-21:14:20.238136 139629081356096 kCustomCompression8E supported: 0
|
||||
2026/04/02-21:14:20.238137 139629081356096 kCustomCompressionDA supported: 0
|
||||
2026/04/02-21:14:20.238138 139629081356096 kCustomCompression93 supported: 0
|
||||
2026/04/02-21:14:20.238138 139629081356096 kCustomCompression94 supported: 0
|
||||
2026/04/02-21:14:20.238139 139629081356096 kCustomCompression9E supported: 0
|
||||
2026/04/02-21:14:20.238139 139629081356096 kCustomCompressionB4 supported: 0
|
||||
2026/04/02-21:14:20.238141 139629081356096 kCustomCompressionFB supported: 0
|
||||
2026/04/02-21:14:20.238141 139629081356096 kCustomCompressionB5 supported: 0
|
||||
2026/04/02-21:14:20.238142 139629081356096 kCustomCompressionD5 supported: 0
|
||||
2026/04/02-21:14:20.238142 139629081356096 kCustomCompressionB8 supported: 0
|
||||
2026/04/02-21:14:20.238143 139629081356096 kCustomCompressionD1 supported: 0
|
||||
2026/04/02-21:14:20.238144 139629081356096 kCustomCompressionBA supported: 0
|
||||
2026/04/02-21:14:20.238144 139629081356096 kCustomCompressionBC supported: 0
|
||||
2026/04/02-21:14:20.238145 139629081356096 kCustomCompressionCE supported: 0
|
||||
2026/04/02-21:14:20.238146 139629081356096 kCustomCompressionBD supported: 0
|
||||
2026/04/02-21:14:20.238146 139629081356096 kCustomCompressionC4 supported: 0
|
||||
2026/04/02-21:14:20.238147 139629081356096 kCustomCompression9A supported: 0
|
||||
2026/04/02-21:14:20.238147 139629081356096 kCustomCompression99 supported: 0
|
||||
2026/04/02-21:14:20.238148 139629081356096 kCustomCompressionBE supported: 0
|
||||
2026/04/02-21:14:20.238149 139629081356096 kCustomCompressionE5 supported: 0
|
||||
2026/04/02-21:14:20.238149 139629081356096 kCustomCompressionD9 supported: 0
|
||||
2026/04/02-21:14:20.238150 139629081356096 kCustomCompressionC1 supported: 0
|
||||
2026/04/02-21:14:20.238150 139629081356096 kCustomCompressionC5 supported: 0
|
||||
2026/04/02-21:14:20.238151 139629081356096 kCustomCompressionC2 supported: 0
|
||||
2026/04/02-21:14:20.238152 139629081356096 kCustomCompressionA5 supported: 0
|
||||
2026/04/02-21:14:20.238152 139629081356096 kCustomCompressionC7 supported: 0
|
||||
2026/04/02-21:14:20.238153 139629081356096 kCustomCompressionBF supported: 0
|
||||
2026/04/02-21:14:20.238153 139629081356096 kCustomCompressionE8 supported: 0
|
||||
2026/04/02-21:14:20.238154 139629081356096 kCustomCompressionC8 supported: 0
|
||||
2026/04/02-21:14:20.238155 139629081356096 kCustomCompressionAF supported: 0
|
||||
2026/04/02-21:14:20.238155 139629081356096 kCustomCompressionCA supported: 0
|
||||
2026/04/02-21:14:20.238156 139629081356096 kCustomCompressionCD supported: 0
|
||||
2026/04/02-21:14:20.238157 139629081356096 kCustomCompressionC0 supported: 0
|
||||
2026/04/02-21:14:20.238157 139629081356096 kCustomCompressionCF supported: 0
|
||||
2026/04/02-21:14:20.238158 139629081356096 kCustomCompressionF9 supported: 0
|
||||
2026/04/02-21:14:20.238159 139629081356096 kCustomCompressionD0 supported: 0
|
||||
2026/04/02-21:14:20.238159 139629081356096 kCustomCompressionD2 supported: 0
|
||||
2026/04/02-21:14:20.238160 139629081356096 kCustomCompressionAD supported: 0
|
||||
2026/04/02-21:14:20.238161 139629081356096 kCustomCompressionD3 supported: 0
|
||||
2026/04/02-21:14:20.238161 139629081356096 kCustomCompressionD4 supported: 0
|
||||
2026/04/02-21:14:20.238162 139629081356096 kCustomCompressionD7 supported: 0
|
||||
2026/04/02-21:14:20.238162 139629081356096 kCustomCompression82 supported: 0
|
||||
2026/04/02-21:14:20.238163 139629081356096 kCustomCompressionDD supported: 0
|
||||
2026/04/02-21:14:20.238164 139629081356096 kCustomCompressionC3 supported: 0
|
||||
2026/04/02-21:14:20.238164 139629081356096 kCustomCompressionEE supported: 0
|
||||
2026/04/02-21:14:20.238165 139629081356096 kCustomCompressionDE supported: 0
|
||||
2026/04/02-21:14:20.238166 139629081356096 kCustomCompressionDF supported: 0
|
||||
2026/04/02-21:14:20.238166 139629081356096 kCustomCompressionA7 supported: 0
|
||||
2026/04/02-21:14:20.238167 139629081356096 kCustomCompressionE0 supported: 0
|
||||
2026/04/02-21:14:20.238167 139629081356096 kCustomCompressionF1 supported: 0
|
||||
2026/04/02-21:14:20.238168 139629081356096 kCustomCompressionE1 supported: 0
|
||||
2026/04/02-21:14:20.238169 139629081356096 kCustomCompressionF5 supported: 0
|
||||
2026/04/02-21:14:20.238169 139629081356096 kCustomCompression80 supported: 0
|
||||
2026/04/02-21:14:20.238170 139629081356096 kCustomCompressionE3 supported: 0
|
||||
2026/04/02-21:14:20.238171 139629081356096 kCustomCompressionE4 supported: 0
|
||||
2026/04/02-21:14:20.238171 139629081356096 kCustomCompressionB0 supported: 0
|
||||
2026/04/02-21:14:20.238172 139629081356096 kCustomCompressionEA supported: 0
|
||||
2026/04/02-21:14:20.238172 139629081356096 kCustomCompressionFA supported: 0
|
||||
2026/04/02-21:14:20.238173 139629081356096 kCustomCompressionE7 supported: 0
|
||||
2026/04/02-21:14:20.238174 139629081356096 kCustomCompressionAE supported: 0
|
||||
2026/04/02-21:14:20.238174 139629081356096 kCustomCompressionEB supported: 0
|
||||
2026/04/02-21:14:20.238175 139629081356096 kCustomCompressionED supported: 0
|
||||
2026/04/02-21:14:20.238175 139629081356096 kCustomCompressionB6 supported: 0
|
||||
2026/04/02-21:14:20.238176 139629081356096 kCustomCompressionEF supported: 0
|
||||
2026/04/02-21:14:20.238177 139629081356096 kCustomCompressionF0 supported: 0
|
||||
2026/04/02-21:14:20.238177 139629081356096 kCustomCompressionB7 supported: 0
|
||||
2026/04/02-21:14:20.238178 139629081356096 kCustomCompressionF2 supported: 0
|
||||
2026/04/02-21:14:20.238179 139629081356096 kCustomCompressionA1 supported: 0
|
||||
2026/04/02-21:14:20.238179 139629081356096 kCustomCompressionF4 supported: 0
|
||||
2026/04/02-21:14:20.238180 139629081356096 kSnappyCompression supported: 0
|
||||
2026/04/02-21:14:20.238180 139629081356096 kCustomCompressionF6 supported: 0
|
||||
2026/04/02-21:14:20.238182 139629081356096 Fast CRC32 supported: Not supported on x86
|
||||
2026/04/02-21:14:20.238182 139629081356096 DMutex implementation: pthread_mutex_t
|
||||
2026/04/02-21:14:20.238183 139629081356096 Jemalloc supported: 0
|
||||
2026/04/02-21:14:20.238208 139629081356096 [WARN] [db/db_impl/db_impl_open.cc:2687] DB::Open() failed: IO error: lock hold by current process, acquire time 1775157232 acquiring thread 139629081356096: data/osint/oxigraph/LOCK: No locks available
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,238 @@
|
||||
2026/04/02-21:13:37.099257 139629081356096 RocksDB version: 10.10.1
|
||||
2026/04/02-21:13:37.099288 139629081356096 DB SUMMARY
|
||||
2026/04/02-21:13:37.099291 139629081356096 Host name (Env): Lucas
|
||||
2026/04/02-21:13:37.099292 139629081356096 DB Session ID: 86F26ZGOLUEYUL8ZU31Z
|
||||
2026/04/02-21:13:37.099312 139629081356096 CURRENT file: CURRENT
|
||||
2026/04/02-21:13:37.099313 139629081356096 IDENTITY file: IDENTITY
|
||||
2026/04/02-21:13:37.099317 139629081356096 MANIFEST file: MANIFEST-000026 size: 1785 Bytes
|
||||
2026/04/02-21:13:37.099319 139629081356096 SST files in data/osint/oxigraph dir, Total Num: 5, files: 000011.sst 000015.sst 000016.sst 000017.sst 000018.sst
|
||||
2026/04/02-21:13:37.099320 139629081356096 Write Ahead Log file in data/osint/oxigraph: 000025.log size: 0 ;
|
||||
2026/04/02-21:13:37.099321 139629081356096 Options.error_if_exists: 0
|
||||
2026/04/02-21:13:37.099322 139629081356096 Options.create_if_missing: 1
|
||||
2026/04/02-21:13:37.099323 139629081356096 Options.paranoid_checks: 1
|
||||
2026/04/02-21:13:37.099324 139629081356096 Options.flush_verify_memtable_count: 1
|
||||
2026/04/02-21:13:37.099325 139629081356096 Options.compaction_verify_record_count: 1
|
||||
2026/04/02-21:13:37.099326 139629081356096 Options.track_and_verify_wals_in_manifest: 0
|
||||
2026/04/02-21:13:37.099327 139629081356096 Options.track_and_verify_wals: 0
|
||||
2026/04/02-21:13:37.099328 139629081356096 Options.verify_sst_unique_id_in_manifest: 1
|
||||
2026/04/02-21:13:37.099328 139629081356096 Options.env: 0x3a912f30
|
||||
2026/04/02-21:13:37.099330 139629081356096 Options.fs: PosixFileSystem
|
||||
2026/04/02-21:13:37.099330 139629081356096 Options.info_log: 0x3aa73a10
|
||||
2026/04/02-21:13:37.099340 139629081356096 Options.max_file_opening_threads: 16
|
||||
2026/04/02-21:13:37.099342 139629081356096 Options.statistics: (nil)
|
||||
2026/04/02-21:13:37.099343 139629081356096 Options.use_fsync: 0
|
||||
2026/04/02-21:13:37.099344 139629081356096 Options.max_log_file_size: 1048576
|
||||
2026/04/02-21:13:37.099346 139629081356096 Options.log_file_time_to_roll: 0
|
||||
2026/04/02-21:13:37.099347 139629081356096 Options.keep_log_file_num: 1000
|
||||
2026/04/02-21:13:37.099347 139629081356096 Options.recycle_log_file_num: 10
|
||||
2026/04/02-21:13:37.099348 139629081356096 Options.allow_fallocate: 1
|
||||
2026/04/02-21:13:37.099349 139629081356096 Options.allow_mmap_reads: 0
|
||||
2026/04/02-21:13:37.099350 139629081356096 Options.allow_mmap_writes: 0
|
||||
2026/04/02-21:13:37.099351 139629081356096 Options.use_direct_reads: 0
|
||||
2026/04/02-21:13:37.099352 139629081356096 Options.use_direct_io_for_flush_and_compaction: 0
|
||||
2026/04/02-21:13:37.099352 139629081356096 Options.create_missing_column_families: 1
|
||||
2026/04/02-21:13:37.099353 139629081356096 Options.db_log_dir:
|
||||
2026/04/02-21:13:37.099354 139629081356096 Options.wal_dir:
|
||||
2026/04/02-21:13:37.099355 139629081356096 Options.table_cache_numshardbits: 6
|
||||
2026/04/02-21:13:37.099355 139629081356096 Options.WAL_ttl_seconds: 0
|
||||
2026/04/02-21:13:37.099356 139629081356096 Options.WAL_size_limit_MB: 0
|
||||
2026/04/02-21:13:37.099356 139629081356096 Options.max_write_batch_group_size_bytes: 1048576
|
||||
2026/04/02-21:13:37.099358 139629081356096 Options.is_fd_close_on_exec: 1
|
||||
2026/04/02-21:13:37.099358 139629081356096 Options.advise_random_on_open: 1
|
||||
2026/04/02-21:13:37.099359 139629081356096 Options.db_write_buffer_size: 0
|
||||
2026/04/02-21:13:37.099360 139629081356096 Options.write_buffer_manager: 0x3a9a4d40
|
||||
2026/04/02-21:13:37.099360 139629081356096 Options.use_adaptive_mutex: 0
|
||||
2026/04/02-21:13:37.099361 139629081356096 Options.rate_limiter: (nil)
|
||||
2026/04/02-21:13:37.099362 139629081356096 Options.sst_file_manager.rate_bytes_per_sec: 0
|
||||
2026/04/02-21:13:37.099363 139629081356096 Options.wal_recovery_mode: 2
|
||||
2026/04/02-21:13:37.099363 139629081356096 Options.enable_thread_tracking: 0
|
||||
2026/04/02-21:13:37.099364 139629081356096 Options.enable_pipelined_write: 0
|
||||
2026/04/02-21:13:37.099365 139629081356096 Options.unordered_write: 0
|
||||
2026/04/02-21:13:37.099365 139629081356096 Options.allow_concurrent_memtable_write: 1
|
||||
2026/04/02-21:13:37.099366 139629081356096 Options.enable_write_thread_adaptive_yield: 1
|
||||
2026/04/02-21:13:37.099367 139629081356096 Options.write_thread_max_yield_usec: 100
|
||||
2026/04/02-21:13:37.099367 139629081356096 Options.write_thread_slow_yield_usec: 3
|
||||
2026/04/02-21:13:37.099368 139629081356096 Options.row_cache: None
|
||||
2026/04/02-21:13:37.099369 139629081356096 Options.wal_filter: None
|
||||
2026/04/02-21:13:37.099370 139629081356096 Options.avoid_flush_during_recovery: 0
|
||||
2026/04/02-21:13:37.099370 139629081356096 Options.allow_ingest_behind: 0
|
||||
2026/04/02-21:13:37.099371 139629081356096 Options.two_write_queues: 0
|
||||
2026/04/02-21:13:37.099372 139629081356096 Options.manual_wal_flush: 0
|
||||
2026/04/02-21:13:37.099372 139629081356096 Options.wal_compression: 0
|
||||
2026/04/02-21:13:37.099373 139629081356096 Options.background_close_inactive_wals: 0
|
||||
2026/04/02-21:13:37.099373 139629081356096 Options.atomic_flush: 0
|
||||
2026/04/02-21:13:37.099374 139629081356096 Options.avoid_unnecessary_blocking_io: 0
|
||||
2026/04/02-21:13:37.099375 139629081356096 Options.prefix_seek_opt_in_only: 0
|
||||
2026/04/02-21:13:37.099376 139629081356096 Options.persist_stats_to_disk: 0
|
||||
2026/04/02-21:13:37.099376 139629081356096 Options.write_dbid_to_manifest: 1
|
||||
2026/04/02-21:13:37.099377 139629081356096 Options.write_identity_file: 1
|
||||
2026/04/02-21:13:37.099378 139629081356096 Options.log_readahead_size: 0
|
||||
2026/04/02-21:13:37.099380 139629081356096 Options.file_checksum_gen_factory: Unknown
|
||||
2026/04/02-21:13:37.099380 139629081356096 Options.best_efforts_recovery: 0
|
||||
2026/04/02-21:13:37.099381 139629081356096 Options.max_bgerror_resume_count: 2147483647
|
||||
2026/04/02-21:13:37.099391 139629081356096 Options.bgerror_resume_retry_interval: 1000000
|
||||
2026/04/02-21:13:37.099393 139629081356096 Options.allow_data_in_errors: 0
|
||||
2026/04/02-21:13:37.099394 139629081356096 Options.db_host_id: __hostname__
|
||||
2026/04/02-21:13:37.099396 139629081356096 Options.enforce_single_del_contracts: true
|
||||
2026/04/02-21:13:37.099397 139629081356096 Options.metadata_write_temperature: kUnknown
|
||||
2026/04/02-21:13:37.099398 139629081356096 Options.wal_write_temperature: kUnknown
|
||||
2026/04/02-21:13:37.099398 139629081356096 Options.max_background_jobs: 24
|
||||
2026/04/02-21:13:37.099399 139629081356096 Options.max_background_compactions: -1
|
||||
2026/04/02-21:13:37.099400 139629081356096 Options.max_subcompactions: 1
|
||||
2026/04/02-21:13:37.099401 139629081356096 Options.avoid_flush_during_shutdown: 0
|
||||
2026/04/02-21:13:37.099401 139629081356096 Options.writable_file_max_buffer_size: 1048576
|
||||
2026/04/02-21:13:37.099402 139629081356096 Options.delayed_write_rate : 16777216
|
||||
2026/04/02-21:13:37.099403 139629081356096 Options.max_total_wal_size: 0
|
||||
2026/04/02-21:13:37.099404 139629081356096 Options.delete_obsolete_files_period_micros: 21600000000
|
||||
2026/04/02-21:13:37.099404 139629081356096 Options.stats_dump_period_sec: 600
|
||||
2026/04/02-21:13:37.099405 139629081356096 Options.stats_persist_period_sec: 600
|
||||
2026/04/02-21:13:37.099406 139629081356096 Options.stats_history_buffer_size: 1048576
|
||||
2026/04/02-21:13:37.099406 139629081356096 Options.max_open_files: 4048
|
||||
2026/04/02-21:13:37.099407 139629081356096 Options.bytes_per_sync: 0
|
||||
2026/04/02-21:13:37.099408 139629081356096 Options.wal_bytes_per_sync: 0
|
||||
2026/04/02-21:13:37.099408 139629081356096 Options.strict_bytes_per_sync: 0
|
||||
2026/04/02-21:13:37.099409 139629081356096 Options.compaction_readahead_size: 2097152
|
||||
2026/04/02-21:13:37.099410 139629081356096 Options.max_background_flushes: -1
|
||||
2026/04/02-21:13:37.099410 139629081356096 Options.max_manifest_file_size: 1073741824
|
||||
2026/04/02-21:13:37.099411 139629081356096 Options.max_manifest_space_amp_pct: 500
|
||||
2026/04/02-21:13:37.099412 139629081356096 Options.manifest_preallocation_size: 4194304
|
||||
2026/04/02-21:13:37.099412 139629081356096 Options.daily_offpeak_time_utc:
|
||||
2026/04/02-21:13:37.099413 139629081356096 Compression algorithms supported:
|
||||
2026/04/02-21:13:37.099422 139629081356096 kCustomCompressionFE supported: 0
|
||||
2026/04/02-21:13:37.099424 139629081356096 kCustomCompressionFC supported: 0
|
||||
2026/04/02-21:13:37.099425 139629081356096 kCustomCompressionF8 supported: 0
|
||||
2026/04/02-21:13:37.099427 139629081356096 kCustomCompressionF7 supported: 0
|
||||
2026/04/02-21:13:37.099428 139629081356096 kCustomCompressionB2 supported: 0
|
||||
2026/04/02-21:13:37.099429 139629081356096 kLZ4Compression supported: 1
|
||||
2026/04/02-21:13:37.099430 139629081356096 kCustomCompression88 supported: 0
|
||||
2026/04/02-21:13:37.099431 139629081356096 kCustomCompressionD8 supported: 0
|
||||
2026/04/02-21:13:37.099432 139629081356096 kCustomCompression9F supported: 0
|
||||
2026/04/02-21:13:37.099432 139629081356096 kCustomCompressionD6 supported: 0
|
||||
2026/04/02-21:13:37.099433 139629081356096 kCustomCompressionA9 supported: 0
|
||||
2026/04/02-21:13:37.099434 139629081356096 kCustomCompressionEC supported: 0
|
||||
2026/04/02-21:13:37.099435 139629081356096 kCustomCompressionA3 supported: 0
|
||||
2026/04/02-21:13:37.099436 139629081356096 kCustomCompressionCB supported: 0
|
||||
2026/04/02-21:13:37.099436 139629081356096 kCustomCompression90 supported: 0
|
||||
2026/04/02-21:13:37.099437 139629081356096 kCustomCompressionA0 supported: 0
|
||||
2026/04/02-21:13:37.099438 139629081356096 kCustomCompressionC6 supported: 0
|
||||
2026/04/02-21:13:37.099439 139629081356096 kCustomCompression9D supported: 0
|
||||
2026/04/02-21:13:37.099439 139629081356096 kCustomCompression8B supported: 0
|
||||
2026/04/02-21:13:37.099440 139629081356096 kCustomCompressionA8 supported: 0
|
||||
2026/04/02-21:13:37.099440 139629081356096 kCustomCompression8D supported: 0
|
||||
2026/04/02-21:13:37.099441 139629081356096 kCustomCompression97 supported: 0
|
||||
2026/04/02-21:13:37.099442 139629081356096 kCustomCompression98 supported: 0
|
||||
2026/04/02-21:13:37.099443 139629081356096 kCustomCompressionAC supported: 0
|
||||
2026/04/02-21:13:37.099444 139629081356096 kCustomCompressionE9 supported: 0
|
||||
2026/04/02-21:13:37.099445 139629081356096 kCustomCompression96 supported: 0
|
||||
2026/04/02-21:13:37.099446 139629081356096 kCustomCompressionB1 supported: 0
|
||||
2026/04/02-21:13:37.099446 139629081356096 kCustomCompression95 supported: 0
|
||||
2026/04/02-21:13:37.099447 139629081356096 kCustomCompression84 supported: 0
|
||||
2026/04/02-21:13:37.099448 139629081356096 kCustomCompression91 supported: 0
|
||||
2026/04/02-21:13:37.099448 139629081356096 kCustomCompressionAB supported: 0
|
||||
2026/04/02-21:13:37.099449 139629081356096 kCustomCompressionB3 supported: 0
|
||||
2026/04/02-21:13:37.099450 139629081356096 kCustomCompression81 supported: 0
|
||||
2026/04/02-21:13:37.099451 139629081356096 kCustomCompressionDC supported: 0
|
||||
2026/04/02-21:13:37.099451 139629081356096 kBZip2Compression supported: 0
|
||||
2026/04/02-21:13:37.099452 139629081356096 kCustomCompressionBB supported: 0
|
||||
2026/04/02-21:13:37.099453 139629081356096 kCustomCompression9C supported: 0
|
||||
2026/04/02-21:13:37.099454 139629081356096 kCustomCompressionC9 supported: 0
|
||||
2026/04/02-21:13:37.099454 139629081356096 kCustomCompressionCC supported: 0
|
||||
2026/04/02-21:13:37.099455 139629081356096 kCustomCompression92 supported: 0
|
||||
2026/04/02-21:13:37.099455 139629081356096 kCustomCompressionB9 supported: 0
|
||||
2026/04/02-21:13:37.099456 139629081356096 kCustomCompression8F supported: 0
|
||||
2026/04/02-21:13:37.099457 139629081356096 kCustomCompression8A supported: 0
|
||||
2026/04/02-21:13:37.099457 139629081356096 kCustomCompression9B supported: 0
|
||||
2026/04/02-21:13:37.099458 139629081356096 kZSTD supported: 0
|
||||
2026/04/02-21:13:37.099459 139629081356096 kCustomCompressionAA supported: 0
|
||||
2026/04/02-21:13:37.099459 139629081356096 kCustomCompressionA2 supported: 0
|
||||
2026/04/02-21:13:37.099460 139629081356096 kZlibCompression supported: 0
|
||||
2026/04/02-21:13:37.099461 139629081356096 kXpressCompression supported: 0
|
||||
2026/04/02-21:13:37.099462 139629081356096 kCustomCompressionFD supported: 0
|
||||
2026/04/02-21:13:37.099462 139629081356096 kCustomCompressionE2 supported: 0
|
||||
2026/04/02-21:13:37.099463 139629081356096 kLZ4HCCompression supported: 1
|
||||
2026/04/02-21:13:37.099464 139629081356096 kCustomCompressionA6 supported: 0
|
||||
2026/04/02-21:13:37.099464 139629081356096 kCustomCompression85 supported: 0
|
||||
2026/04/02-21:13:37.099465 139629081356096 kCustomCompressionA4 supported: 0
|
||||
2026/04/02-21:13:37.099466 139629081356096 kCustomCompression86 supported: 0
|
||||
2026/04/02-21:13:37.099466 139629081356096 kCustomCompression83 supported: 0
|
||||
2026/04/02-21:13:37.099467 139629081356096 kCustomCompression87 supported: 0
|
||||
2026/04/02-21:13:37.099467 139629081356096 kCustomCompression89 supported: 0
|
||||
2026/04/02-21:13:37.099468 139629081356096 kCustomCompression8C supported: 0
|
||||
2026/04/02-21:13:37.099469 139629081356096 kCustomCompressionDB supported: 0
|
||||
2026/04/02-21:13:37.099469 139629081356096 kCustomCompressionF3 supported: 0
|
||||
2026/04/02-21:13:37.099470 139629081356096 kCustomCompressionE6 supported: 0
|
||||
2026/04/02-21:13:37.099471 139629081356096 kCustomCompression8E supported: 0
|
||||
2026/04/02-21:13:37.099471 139629081356096 kCustomCompressionDA supported: 0
|
||||
2026/04/02-21:13:37.099472 139629081356096 kCustomCompression93 supported: 0
|
||||
2026/04/02-21:13:37.099473 139629081356096 kCustomCompression94 supported: 0
|
||||
2026/04/02-21:13:37.099473 139629081356096 kCustomCompression9E supported: 0
|
||||
2026/04/02-21:13:37.099474 139629081356096 kCustomCompressionB4 supported: 0
|
||||
2026/04/02-21:13:37.099475 139629081356096 kCustomCompressionFB supported: 0
|
||||
2026/04/02-21:13:37.099476 139629081356096 kCustomCompressionB5 supported: 0
|
||||
2026/04/02-21:13:37.099476 139629081356096 kCustomCompressionD5 supported: 0
|
||||
2026/04/02-21:13:37.099477 139629081356096 kCustomCompressionB8 supported: 0
|
||||
2026/04/02-21:13:37.099478 139629081356096 kCustomCompressionD1 supported: 0
|
||||
2026/04/02-21:13:37.099478 139629081356096 kCustomCompressionBA supported: 0
|
||||
2026/04/02-21:13:37.099479 139629081356096 kCustomCompressionBC supported: 0
|
||||
2026/04/02-21:13:37.099480 139629081356096 kCustomCompressionCE supported: 0
|
||||
2026/04/02-21:13:37.099480 139629081356096 kCustomCompressionBD supported: 0
|
||||
2026/04/02-21:13:37.099481 139629081356096 kCustomCompressionC4 supported: 0
|
||||
2026/04/02-21:13:37.099481 139629081356096 kCustomCompression9A supported: 0
|
||||
2026/04/02-21:13:37.099482 139629081356096 kCustomCompression99 supported: 0
|
||||
2026/04/02-21:13:37.099483 139629081356096 kCustomCompressionBE supported: 0
|
||||
2026/04/02-21:13:37.099483 139629081356096 kCustomCompressionE5 supported: 0
|
||||
2026/04/02-21:13:37.099484 139629081356096 kCustomCompressionD9 supported: 0
|
||||
2026/04/02-21:13:37.099485 139629081356096 kCustomCompressionC1 supported: 0
|
||||
2026/04/02-21:13:37.099485 139629081356096 kCustomCompressionC5 supported: 0
|
||||
2026/04/02-21:13:37.099486 139629081356096 kCustomCompressionC2 supported: 0
|
||||
2026/04/02-21:13:37.099487 139629081356096 kCustomCompressionA5 supported: 0
|
||||
2026/04/02-21:13:37.099487 139629081356096 kCustomCompressionC7 supported: 0
|
||||
2026/04/02-21:13:37.099488 139629081356096 kCustomCompressionBF supported: 0
|
||||
2026/04/02-21:13:37.099488 139629081356096 kCustomCompressionE8 supported: 0
|
||||
2026/04/02-21:13:37.099489 139629081356096 kCustomCompressionC8 supported: 0
|
||||
2026/04/02-21:13:37.099490 139629081356096 kCustomCompressionAF supported: 0
|
||||
2026/04/02-21:13:37.099490 139629081356096 kCustomCompressionCA supported: 0
|
||||
2026/04/02-21:13:37.099491 139629081356096 kCustomCompressionCD supported: 0
|
||||
2026/04/02-21:13:37.099492 139629081356096 kCustomCompressionC0 supported: 0
|
||||
2026/04/02-21:13:37.099492 139629081356096 kCustomCompressionCF supported: 0
|
||||
2026/04/02-21:13:37.099493 139629081356096 kCustomCompressionF9 supported: 0
|
||||
2026/04/02-21:13:37.099494 139629081356096 kCustomCompressionD0 supported: 0
|
||||
2026/04/02-21:13:37.099494 139629081356096 kCustomCompressionD2 supported: 0
|
||||
2026/04/02-21:13:37.099495 139629081356096 kCustomCompressionAD supported: 0
|
||||
2026/04/02-21:13:37.099496 139629081356096 kCustomCompressionD3 supported: 0
|
||||
2026/04/02-21:13:37.099496 139629081356096 kCustomCompressionD4 supported: 0
|
||||
2026/04/02-21:13:37.099497 139629081356096 kCustomCompressionD7 supported: 0
|
||||
2026/04/02-21:13:37.099497 139629081356096 kCustomCompression82 supported: 0
|
||||
2026/04/02-21:13:37.099498 139629081356096 kCustomCompressionDD supported: 0
|
||||
2026/04/02-21:13:37.099499 139629081356096 kCustomCompressionC3 supported: 0
|
||||
2026/04/02-21:13:37.099499 139629081356096 kCustomCompressionEE supported: 0
|
||||
2026/04/02-21:13:37.099500 139629081356096 kCustomCompressionDE supported: 0
|
||||
2026/04/02-21:13:37.099501 139629081356096 kCustomCompressionDF supported: 0
|
||||
2026/04/02-21:13:37.099501 139629081356096 kCustomCompressionA7 supported: 0
|
||||
2026/04/02-21:13:37.099502 139629081356096 kCustomCompressionE0 supported: 0
|
||||
2026/04/02-21:13:37.099502 139629081356096 kCustomCompressionF1 supported: 0
|
||||
2026/04/02-21:13:37.099503 139629081356096 kCustomCompressionE1 supported: 0
|
||||
2026/04/02-21:13:37.099504 139629081356096 kCustomCompressionF5 supported: 0
|
||||
2026/04/02-21:13:37.099504 139629081356096 kCustomCompression80 supported: 0
|
||||
2026/04/02-21:13:37.099505 139629081356096 kCustomCompressionE3 supported: 0
|
||||
2026/04/02-21:13:37.099506 139629081356096 kCustomCompressionE4 supported: 0
|
||||
2026/04/02-21:13:37.099506 139629081356096 kCustomCompressionB0 supported: 0
|
||||
2026/04/02-21:13:37.099507 139629081356096 kCustomCompressionEA supported: 0
|
||||
2026/04/02-21:13:37.099507 139629081356096 kCustomCompressionFA supported: 0
|
||||
2026/04/02-21:13:37.099508 139629081356096 kCustomCompressionE7 supported: 0
|
||||
2026/04/02-21:13:37.099509 139629081356096 kCustomCompressionAE supported: 0
|
||||
2026/04/02-21:13:37.099509 139629081356096 kCustomCompressionEB supported: 0
|
||||
2026/04/02-21:13:37.099510 139629081356096 kCustomCompressionED supported: 0
|
||||
2026/04/02-21:13:37.099520 139629081356096 kCustomCompressionB6 supported: 0
|
||||
2026/04/02-21:13:37.099522 139629081356096 kCustomCompressionEF supported: 0
|
||||
2026/04/02-21:13:37.099523 139629081356096 kCustomCompressionF0 supported: 0
|
||||
2026/04/02-21:13:37.099524 139629081356096 kCustomCompressionB7 supported: 0
|
||||
2026/04/02-21:13:37.099525 139629081356096 kCustomCompressionF2 supported: 0
|
||||
2026/04/02-21:13:37.099526 139629081356096 kCustomCompressionA1 supported: 0
|
||||
2026/04/02-21:13:37.099527 139629081356096 kCustomCompressionF4 supported: 0
|
||||
2026/04/02-21:13:37.099527 139629081356096 kSnappyCompression supported: 0
|
||||
2026/04/02-21:13:37.099528 139629081356096 kCustomCompressionF6 supported: 0
|
||||
2026/04/02-21:13:37.099530 139629081356096 Fast CRC32 supported: Not supported on x86
|
||||
2026/04/02-21:13:37.099531 139629081356096 DMutex implementation: pthread_mutex_t
|
||||
2026/04/02-21:13:37.099532 139629081356096 Jemalloc supported: 0
|
||||
2026/04/02-21:13:37.099568 139629081356096 [WARN] [db/db_impl/db_impl_open.cc:2687] DB::Open() failed: IO error: lock hold by current process, acquire time 1775156918 acquiring thread 139629081356096: data/osint/oxigraph/LOCK: No locks available
|
||||
@@ -0,0 +1,238 @@
|
||||
2026/04/02-21:13:37.101990 139629081356096 RocksDB version: 10.10.1
|
||||
2026/04/02-21:13:37.102015 139629081356096 DB SUMMARY
|
||||
2026/04/02-21:13:37.102017 139629081356096 Host name (Env): Lucas
|
||||
2026/04/02-21:13:37.102018 139629081356096 DB Session ID: 86F26ZGOLUEYUL8ZU31S
|
||||
2026/04/02-21:13:37.102037 139629081356096 CURRENT file: CURRENT
|
||||
2026/04/02-21:13:37.102038 139629081356096 IDENTITY file: IDENTITY
|
||||
2026/04/02-21:13:37.102041 139629081356096 MANIFEST file: MANIFEST-000026 size: 1785 Bytes
|
||||
2026/04/02-21:13:37.102043 139629081356096 SST files in data/osint/oxigraph dir, Total Num: 5, files: 000011.sst 000015.sst 000016.sst 000017.sst 000018.sst
|
||||
2026/04/02-21:13:37.102044 139629081356096 Write Ahead Log file in data/osint/oxigraph: 000025.log size: 0 ;
|
||||
2026/04/02-21:13:37.102046 139629081356096 Options.error_if_exists: 0
|
||||
2026/04/02-21:13:37.102047 139629081356096 Options.create_if_missing: 1
|
||||
2026/04/02-21:13:37.102047 139629081356096 Options.paranoid_checks: 1
|
||||
2026/04/02-21:13:37.102048 139629081356096 Options.flush_verify_memtable_count: 1
|
||||
2026/04/02-21:13:37.102049 139629081356096 Options.compaction_verify_record_count: 1
|
||||
2026/04/02-21:13:37.102050 139629081356096 Options.track_and_verify_wals_in_manifest: 0
|
||||
2026/04/02-21:13:37.102050 139629081356096 Options.track_and_verify_wals: 0
|
||||
2026/04/02-21:13:37.102051 139629081356096 Options.verify_sst_unique_id_in_manifest: 1
|
||||
2026/04/02-21:13:37.102052 139629081356096 Options.env: 0x3a912f30
|
||||
2026/04/02-21:13:37.102053 139629081356096 Options.fs: PosixFileSystem
|
||||
2026/04/02-21:13:37.102054 139629081356096 Options.info_log: 0x3aa73a10
|
||||
2026/04/02-21:13:37.102054 139629081356096 Options.max_file_opening_threads: 16
|
||||
2026/04/02-21:13:37.102055 139629081356096 Options.statistics: (nil)
|
||||
2026/04/02-21:13:37.102056 139629081356096 Options.use_fsync: 0
|
||||
2026/04/02-21:13:37.102057 139629081356096 Options.max_log_file_size: 1048576
|
||||
2026/04/02-21:13:37.102058 139629081356096 Options.log_file_time_to_roll: 0
|
||||
2026/04/02-21:13:37.102058 139629081356096 Options.keep_log_file_num: 1000
|
||||
2026/04/02-21:13:37.102059 139629081356096 Options.recycle_log_file_num: 10
|
||||
2026/04/02-21:13:37.102060 139629081356096 Options.allow_fallocate: 1
|
||||
2026/04/02-21:13:37.102060 139629081356096 Options.allow_mmap_reads: 0
|
||||
2026/04/02-21:13:37.102061 139629081356096 Options.allow_mmap_writes: 0
|
||||
2026/04/02-21:13:37.102062 139629081356096 Options.use_direct_reads: 0
|
||||
2026/04/02-21:13:37.102062 139629081356096 Options.use_direct_io_for_flush_and_compaction: 0
|
||||
2026/04/02-21:13:37.102063 139629081356096 Options.create_missing_column_families: 1
|
||||
2026/04/02-21:13:37.102064 139629081356096 Options.db_log_dir:
|
||||
2026/04/02-21:13:37.102064 139629081356096 Options.wal_dir:
|
||||
2026/04/02-21:13:37.102065 139629081356096 Options.table_cache_numshardbits: 6
|
||||
2026/04/02-21:13:37.102066 139629081356096 Options.WAL_ttl_seconds: 0
|
||||
2026/04/02-21:13:37.102066 139629081356096 Options.WAL_size_limit_MB: 0
|
||||
2026/04/02-21:13:37.102067 139629081356096 Options.max_write_batch_group_size_bytes: 1048576
|
||||
2026/04/02-21:13:37.102068 139629081356096 Options.is_fd_close_on_exec: 1
|
||||
2026/04/02-21:13:37.102068 139629081356096 Options.advise_random_on_open: 1
|
||||
2026/04/02-21:13:37.102069 139629081356096 Options.db_write_buffer_size: 0
|
||||
2026/04/02-21:13:37.102070 139629081356096 Options.write_buffer_manager: 0x3a9aef60
|
||||
2026/04/02-21:13:37.102070 139629081356096 Options.use_adaptive_mutex: 0
|
||||
2026/04/02-21:13:37.102071 139629081356096 Options.rate_limiter: (nil)
|
||||
2026/04/02-21:13:37.102072 139629081356096 Options.sst_file_manager.rate_bytes_per_sec: 0
|
||||
2026/04/02-21:13:37.102073 139629081356096 Options.wal_recovery_mode: 2
|
||||
2026/04/02-21:13:37.102073 139629081356096 Options.enable_thread_tracking: 0
|
||||
2026/04/02-21:13:37.102074 139629081356096 Options.enable_pipelined_write: 0
|
||||
2026/04/02-21:13:37.102075 139629081356096 Options.unordered_write: 0
|
||||
2026/04/02-21:13:37.102075 139629081356096 Options.allow_concurrent_memtable_write: 1
|
||||
2026/04/02-21:13:37.102076 139629081356096 Options.enable_write_thread_adaptive_yield: 1
|
||||
2026/04/02-21:13:37.102077 139629081356096 Options.write_thread_max_yield_usec: 100
|
||||
2026/04/02-21:13:37.102077 139629081356096 Options.write_thread_slow_yield_usec: 3
|
||||
2026/04/02-21:13:37.102078 139629081356096 Options.row_cache: None
|
||||
2026/04/02-21:13:37.102079 139629081356096 Options.wal_filter: None
|
||||
2026/04/02-21:13:37.102079 139629081356096 Options.avoid_flush_during_recovery: 0
|
||||
2026/04/02-21:13:37.102080 139629081356096 Options.allow_ingest_behind: 0
|
||||
2026/04/02-21:13:37.102080 139629081356096 Options.two_write_queues: 0
|
||||
2026/04/02-21:13:37.102081 139629081356096 Options.manual_wal_flush: 0
|
||||
2026/04/02-21:13:37.102082 139629081356096 Options.wal_compression: 0
|
||||
2026/04/02-21:13:37.102082 139629081356096 Options.background_close_inactive_wals: 0
|
||||
2026/04/02-21:13:37.102083 139629081356096 Options.atomic_flush: 0
|
||||
2026/04/02-21:13:37.102083 139629081356096 Options.avoid_unnecessary_blocking_io: 0
|
||||
2026/04/02-21:13:37.102084 139629081356096 Options.prefix_seek_opt_in_only: 0
|
||||
2026/04/02-21:13:37.102085 139629081356096 Options.persist_stats_to_disk: 0
|
||||
2026/04/02-21:13:37.102085 139629081356096 Options.write_dbid_to_manifest: 1
|
||||
2026/04/02-21:13:37.102086 139629081356096 Options.write_identity_file: 1
|
||||
2026/04/02-21:13:37.102087 139629081356096 Options.log_readahead_size: 0
|
||||
2026/04/02-21:13:37.102087 139629081356096 Options.file_checksum_gen_factory: Unknown
|
||||
2026/04/02-21:13:37.102088 139629081356096 Options.best_efforts_recovery: 0
|
||||
2026/04/02-21:13:37.102089 139629081356096 Options.max_bgerror_resume_count: 2147483647
|
||||
2026/04/02-21:13:37.102089 139629081356096 Options.bgerror_resume_retry_interval: 1000000
|
||||
2026/04/02-21:13:37.102090 139629081356096 Options.allow_data_in_errors: 0
|
||||
2026/04/02-21:13:37.102091 139629081356096 Options.db_host_id: __hostname__
|
||||
2026/04/02-21:13:37.102092 139629081356096 Options.enforce_single_del_contracts: true
|
||||
2026/04/02-21:13:37.102093 139629081356096 Options.metadata_write_temperature: kUnknown
|
||||
2026/04/02-21:13:37.102093 139629081356096 Options.wal_write_temperature: kUnknown
|
||||
2026/04/02-21:13:37.102094 139629081356096 Options.max_background_jobs: 24
|
||||
2026/04/02-21:13:37.102095 139629081356096 Options.max_background_compactions: -1
|
||||
2026/04/02-21:13:37.102095 139629081356096 Options.max_subcompactions: 1
|
||||
2026/04/02-21:13:37.102096 139629081356096 Options.avoid_flush_during_shutdown: 0
|
||||
2026/04/02-21:13:37.102097 139629081356096 Options.writable_file_max_buffer_size: 1048576
|
||||
2026/04/02-21:13:37.102097 139629081356096 Options.delayed_write_rate : 16777216
|
||||
2026/04/02-21:13:37.102098 139629081356096 Options.max_total_wal_size: 0
|
||||
2026/04/02-21:13:37.102099 139629081356096 Options.delete_obsolete_files_period_micros: 21600000000
|
||||
2026/04/02-21:13:37.102099 139629081356096 Options.stats_dump_period_sec: 600
|
||||
2026/04/02-21:13:37.102100 139629081356096 Options.stats_persist_period_sec: 600
|
||||
2026/04/02-21:13:37.102101 139629081356096 Options.stats_history_buffer_size: 1048576
|
||||
2026/04/02-21:13:37.102101 139629081356096 Options.max_open_files: 4048
|
||||
2026/04/02-21:13:37.102102 139629081356096 Options.bytes_per_sync: 0
|
||||
2026/04/02-21:13:37.102103 139629081356096 Options.wal_bytes_per_sync: 0
|
||||
2026/04/02-21:13:37.102103 139629081356096 Options.strict_bytes_per_sync: 0
|
||||
2026/04/02-21:13:37.102104 139629081356096 Options.compaction_readahead_size: 2097152
|
||||
2026/04/02-21:13:37.102105 139629081356096 Options.max_background_flushes: -1
|
||||
2026/04/02-21:13:37.102105 139629081356096 Options.max_manifest_file_size: 1073741824
|
||||
2026/04/02-21:13:37.102106 139629081356096 Options.max_manifest_space_amp_pct: 500
|
||||
2026/04/02-21:13:37.102106 139629081356096 Options.manifest_preallocation_size: 4194304
|
||||
2026/04/02-21:13:37.102107 139629081356096 Options.daily_offpeak_time_utc:
|
||||
2026/04/02-21:13:37.102108 139629081356096 Compression algorithms supported:
|
||||
2026/04/02-21:13:37.102109 139629081356096 kCustomCompressionFE supported: 0
|
||||
2026/04/02-21:13:37.102110 139629081356096 kCustomCompressionFC supported: 0
|
||||
2026/04/02-21:13:37.102110 139629081356096 kCustomCompressionF8 supported: 0
|
||||
2026/04/02-21:13:37.102111 139629081356096 kCustomCompressionF7 supported: 0
|
||||
2026/04/02-21:13:37.102112 139629081356096 kCustomCompressionB2 supported: 0
|
||||
2026/04/02-21:13:37.102113 139629081356096 kLZ4Compression supported: 1
|
||||
2026/04/02-21:13:37.102113 139629081356096 kCustomCompression88 supported: 0
|
||||
2026/04/02-21:13:37.102114 139629081356096 kCustomCompressionD8 supported: 0
|
||||
2026/04/02-21:13:37.102115 139629081356096 kCustomCompression9F supported: 0
|
||||
2026/04/02-21:13:37.102116 139629081356096 kCustomCompressionD6 supported: 0
|
||||
2026/04/02-21:13:37.102116 139629081356096 kCustomCompressionA9 supported: 0
|
||||
2026/04/02-21:13:37.102117 139629081356096 kCustomCompressionEC supported: 0
|
||||
2026/04/02-21:13:37.102118 139629081356096 kCustomCompressionA3 supported: 0
|
||||
2026/04/02-21:13:37.102118 139629081356096 kCustomCompressionCB supported: 0
|
||||
2026/04/02-21:13:37.102119 139629081356096 kCustomCompression90 supported: 0
|
||||
2026/04/02-21:13:37.102120 139629081356096 kCustomCompressionA0 supported: 0
|
||||
2026/04/02-21:13:37.102120 139629081356096 kCustomCompressionC6 supported: 0
|
||||
2026/04/02-21:13:37.102121 139629081356096 kCustomCompression9D supported: 0
|
||||
2026/04/02-21:13:37.102122 139629081356096 kCustomCompression8B supported: 0
|
||||
2026/04/02-21:13:37.102123 139629081356096 kCustomCompressionA8 supported: 0
|
||||
2026/04/02-21:13:37.102124 139629081356096 kCustomCompression8D supported: 0
|
||||
2026/04/02-21:13:37.102125 139629081356096 kCustomCompression97 supported: 0
|
||||
2026/04/02-21:13:37.102125 139629081356096 kCustomCompression98 supported: 0
|
||||
2026/04/02-21:13:37.102126 139629081356096 kCustomCompressionAC supported: 0
|
||||
2026/04/02-21:13:37.102127 139629081356096 kCustomCompressionE9 supported: 0
|
||||
2026/04/02-21:13:37.102127 139629081356096 kCustomCompression96 supported: 0
|
||||
2026/04/02-21:13:37.102128 139629081356096 kCustomCompressionB1 supported: 0
|
||||
2026/04/02-21:13:37.102129 139629081356096 kCustomCompression95 supported: 0
|
||||
2026/04/02-21:13:37.102129 139629081356096 kCustomCompression84 supported: 0
|
||||
2026/04/02-21:13:37.102130 139629081356096 kCustomCompression91 supported: 0
|
||||
2026/04/02-21:13:37.102130 139629081356096 kCustomCompressionAB supported: 0
|
||||
2026/04/02-21:13:37.102131 139629081356096 kCustomCompressionB3 supported: 0
|
||||
2026/04/02-21:13:37.102132 139629081356096 kCustomCompression81 supported: 0
|
||||
2026/04/02-21:13:37.102133 139629081356096 kCustomCompressionDC supported: 0
|
||||
2026/04/02-21:13:37.102133 139629081356096 kBZip2Compression supported: 0
|
||||
2026/04/02-21:13:37.102134 139629081356096 kCustomCompressionBB supported: 0
|
||||
2026/04/02-21:13:37.102135 139629081356096 kCustomCompression9C supported: 0
|
||||
2026/04/02-21:13:37.102135 139629081356096 kCustomCompressionC9 supported: 0
|
||||
2026/04/02-21:13:37.102136 139629081356096 kCustomCompressionCC supported: 0
|
||||
2026/04/02-21:13:37.102137 139629081356096 kCustomCompression92 supported: 0
|
||||
2026/04/02-21:13:37.102137 139629081356096 kCustomCompressionB9 supported: 0
|
||||
2026/04/02-21:13:37.102138 139629081356096 kCustomCompression8F supported: 0
|
||||
2026/04/02-21:13:37.102138 139629081356096 kCustomCompression8A supported: 0
|
||||
2026/04/02-21:13:37.102139 139629081356096 kCustomCompression9B supported: 0
|
||||
2026/04/02-21:13:37.102140 139629081356096 kZSTD supported: 0
|
||||
2026/04/02-21:13:37.102140 139629081356096 kCustomCompressionAA supported: 0
|
||||
2026/04/02-21:13:37.102141 139629081356096 kCustomCompressionA2 supported: 0
|
||||
2026/04/02-21:13:37.102142 139629081356096 kZlibCompression supported: 0
|
||||
2026/04/02-21:13:37.102142 139629081356096 kXpressCompression supported: 0
|
||||
2026/04/02-21:13:37.102143 139629081356096 kCustomCompressionFD supported: 0
|
||||
2026/04/02-21:13:37.102144 139629081356096 kCustomCompressionE2 supported: 0
|
||||
2026/04/02-21:13:37.102144 139629081356096 kLZ4HCCompression supported: 1
|
||||
2026/04/02-21:13:37.102145 139629081356096 kCustomCompressionA6 supported: 0
|
||||
2026/04/02-21:13:37.102146 139629081356096 kCustomCompression85 supported: 0
|
||||
2026/04/02-21:13:37.102146 139629081356096 kCustomCompressionA4 supported: 0
|
||||
2026/04/02-21:13:37.102147 139629081356096 kCustomCompression86 supported: 0
|
||||
2026/04/02-21:13:37.102148 139629081356096 kCustomCompression83 supported: 0
|
||||
2026/04/02-21:13:37.102149 139629081356096 kCustomCompression87 supported: 0
|
||||
2026/04/02-21:13:37.102149 139629081356096 kCustomCompression89 supported: 0
|
||||
2026/04/02-21:13:37.102150 139629081356096 kCustomCompression8C supported: 0
|
||||
2026/04/02-21:13:37.102150 139629081356096 kCustomCompressionDB supported: 0
|
||||
2026/04/02-21:13:37.102151 139629081356096 kCustomCompressionF3 supported: 0
|
||||
2026/04/02-21:13:37.102152 139629081356096 kCustomCompressionE6 supported: 0
|
||||
2026/04/02-21:13:37.102152 139629081356096 kCustomCompression8E supported: 0
|
||||
2026/04/02-21:13:37.102153 139629081356096 kCustomCompressionDA supported: 0
|
||||
2026/04/02-21:13:37.102154 139629081356096 kCustomCompression93 supported: 0
|
||||
2026/04/02-21:13:37.102154 139629081356096 kCustomCompression94 supported: 0
|
||||
2026/04/02-21:13:37.102155 139629081356096 kCustomCompression9E supported: 0
|
||||
2026/04/02-21:13:37.102155 139629081356096 kCustomCompressionB4 supported: 0
|
||||
2026/04/02-21:13:37.102156 139629081356096 kCustomCompressionFB supported: 0
|
||||
2026/04/02-21:13:37.102157 139629081356096 kCustomCompressionB5 supported: 0
|
||||
2026/04/02-21:13:37.102157 139629081356096 kCustomCompressionD5 supported: 0
|
||||
2026/04/02-21:13:37.102158 139629081356096 kCustomCompressionB8 supported: 0
|
||||
2026/04/02-21:13:37.102159 139629081356096 kCustomCompressionD1 supported: 0
|
||||
2026/04/02-21:13:37.102159 139629081356096 kCustomCompressionBA supported: 0
|
||||
2026/04/02-21:13:37.102160 139629081356096 kCustomCompressionBC supported: 0
|
||||
2026/04/02-21:13:37.102161 139629081356096 kCustomCompressionCE supported: 0
|
||||
2026/04/02-21:13:37.102161 139629081356096 kCustomCompressionBD supported: 0
|
||||
2026/04/02-21:13:37.102162 139629081356096 kCustomCompressionC4 supported: 0
|
||||
2026/04/02-21:13:37.102163 139629081356096 kCustomCompression9A supported: 0
|
||||
2026/04/02-21:13:37.102164 139629081356096 kCustomCompression99 supported: 0
|
||||
2026/04/02-21:13:37.102164 139629081356096 kCustomCompressionBE supported: 0
|
||||
2026/04/02-21:13:37.102165 139629081356096 kCustomCompressionE5 supported: 0
|
||||
2026/04/02-21:13:37.102166 139629081356096 kCustomCompressionD9 supported: 0
|
||||
2026/04/02-21:13:37.102166 139629081356096 kCustomCompressionC1 supported: 0
|
||||
2026/04/02-21:13:37.102167 139629081356096 kCustomCompressionC5 supported: 0
|
||||
2026/04/02-21:13:37.102167 139629081356096 kCustomCompressionC2 supported: 0
|
||||
2026/04/02-21:13:37.102168 139629081356096 kCustomCompressionA5 supported: 0
|
||||
2026/04/02-21:13:37.102169 139629081356096 kCustomCompressionC7 supported: 0
|
||||
2026/04/02-21:13:37.102169 139629081356096 kCustomCompressionBF supported: 0
|
||||
2026/04/02-21:13:37.102170 139629081356096 kCustomCompressionE8 supported: 0
|
||||
2026/04/02-21:13:37.102171 139629081356096 kCustomCompressionC8 supported: 0
|
||||
2026/04/02-21:13:37.102171 139629081356096 kCustomCompressionAF supported: 0
|
||||
2026/04/02-21:13:37.102172 139629081356096 kCustomCompressionCA supported: 0
|
||||
2026/04/02-21:13:37.102172 139629081356096 kCustomCompressionCD supported: 0
|
||||
2026/04/02-21:13:37.102173 139629081356096 kCustomCompressionC0 supported: 0
|
||||
2026/04/02-21:13:37.102174 139629081356096 kCustomCompressionCF supported: 0
|
||||
2026/04/02-21:13:37.102174 139629081356096 kCustomCompressionF9 supported: 0
|
||||
2026/04/02-21:13:37.102175 139629081356096 kCustomCompressionD0 supported: 0
|
||||
2026/04/02-21:13:37.102176 139629081356096 kCustomCompressionD2 supported: 0
|
||||
2026/04/02-21:13:37.102176 139629081356096 kCustomCompressionAD supported: 0
|
||||
2026/04/02-21:13:37.102177 139629081356096 kCustomCompressionD3 supported: 0
|
||||
2026/04/02-21:13:37.102178 139629081356096 kCustomCompressionD4 supported: 0
|
||||
2026/04/02-21:13:37.102178 139629081356096 kCustomCompressionD7 supported: 0
|
||||
2026/04/02-21:13:37.102179 139629081356096 kCustomCompression82 supported: 0
|
||||
2026/04/02-21:13:37.102179 139629081356096 kCustomCompressionDD supported: 0
|
||||
2026/04/02-21:13:37.102180 139629081356096 kCustomCompressionC3 supported: 0
|
||||
2026/04/02-21:13:37.102181 139629081356096 kCustomCompressionEE supported: 0
|
||||
2026/04/02-21:13:37.102181 139629081356096 kCustomCompressionDE supported: 0
|
||||
2026/04/02-21:13:37.102182 139629081356096 kCustomCompressionDF supported: 0
|
||||
2026/04/02-21:13:37.102183 139629081356096 kCustomCompressionA7 supported: 0
|
||||
2026/04/02-21:13:37.102183 139629081356096 kCustomCompressionE0 supported: 0
|
||||
2026/04/02-21:13:37.102184 139629081356096 kCustomCompressionF1 supported: 0
|
||||
2026/04/02-21:13:37.102184 139629081356096 kCustomCompressionE1 supported: 0
|
||||
2026/04/02-21:13:37.102185 139629081356096 kCustomCompressionF5 supported: 0
|
||||
2026/04/02-21:13:37.102186 139629081356096 kCustomCompression80 supported: 0
|
||||
2026/04/02-21:13:37.102187 139629081356096 kCustomCompressionE3 supported: 0
|
||||
2026/04/02-21:13:37.102188 139629081356096 kCustomCompressionE4 supported: 0
|
||||
2026/04/02-21:13:37.102188 139629081356096 kCustomCompressionB0 supported: 0
|
||||
2026/04/02-21:13:37.102189 139629081356096 kCustomCompressionEA supported: 0
|
||||
2026/04/02-21:13:37.102189 139629081356096 kCustomCompressionFA supported: 0
|
||||
2026/04/02-21:13:37.102190 139629081356096 kCustomCompressionE7 supported: 0
|
||||
2026/04/02-21:13:37.102191 139629081356096 kCustomCompressionAE supported: 0
|
||||
2026/04/02-21:13:37.102191 139629081356096 kCustomCompressionEB supported: 0
|
||||
2026/04/02-21:13:37.102192 139629081356096 kCustomCompressionED supported: 0
|
||||
2026/04/02-21:13:37.102193 139629081356096 kCustomCompressionB6 supported: 0
|
||||
2026/04/02-21:13:37.102193 139629081356096 kCustomCompressionEF supported: 0
|
||||
2026/04/02-21:13:37.102194 139629081356096 kCustomCompressionF0 supported: 0
|
||||
2026/04/02-21:13:37.102194 139629081356096 kCustomCompressionB7 supported: 0
|
||||
2026/04/02-21:13:37.102195 139629081356096 kCustomCompressionF2 supported: 0
|
||||
2026/04/02-21:13:37.102196 139629081356096 kCustomCompressionA1 supported: 0
|
||||
2026/04/02-21:13:37.102196 139629081356096 kCustomCompressionF4 supported: 0
|
||||
2026/04/02-21:13:37.102197 139629081356096 kSnappyCompression supported: 0
|
||||
2026/04/02-21:13:37.102198 139629081356096 kCustomCompressionF6 supported: 0
|
||||
2026/04/02-21:13:37.102199 139629081356096 Fast CRC32 supported: Not supported on x86
|
||||
2026/04/02-21:13:37.102200 139629081356096 DMutex implementation: pthread_mutex_t
|
||||
2026/04/02-21:13:37.102200 139629081356096 Jemalloc supported: 0
|
||||
2026/04/02-21:13:37.102222 139629081356096 [WARN] [db/db_impl/db_impl_open.cc:2687] DB::Open() failed: IO error: lock hold by current process, acquire time 1775156918 acquiring thread 139629081356096: data/osint/oxigraph/LOCK: No locks available
|
||||
@@ -0,0 +1,238 @@
|
||||
2026/04/02-21:13:37.104486 139629081356096 RocksDB version: 10.10.1
|
||||
2026/04/02-21:13:37.104619 139629081356096 DB SUMMARY
|
||||
2026/04/02-21:13:37.104625 139629081356096 Host name (Env): Lucas
|
||||
2026/04/02-21:13:37.104626 139629081356096 DB Session ID: 86F26ZGOLUEYUL8ZU31T
|
||||
2026/04/02-21:13:37.104670 139629081356096 CURRENT file: CURRENT
|
||||
2026/04/02-21:13:37.104674 139629081356096 IDENTITY file: IDENTITY
|
||||
2026/04/02-21:13:37.104677 139629081356096 MANIFEST file: MANIFEST-000026 size: 1785 Bytes
|
||||
2026/04/02-21:13:37.104679 139629081356096 SST files in data/osint/oxigraph dir, Total Num: 5, files: 000011.sst 000015.sst 000016.sst 000017.sst 000018.sst
|
||||
2026/04/02-21:13:37.104681 139629081356096 Write Ahead Log file in data/osint/oxigraph: 000025.log size: 0 ;
|
||||
2026/04/02-21:13:37.104682 139629081356096 Options.error_if_exists: 0
|
||||
2026/04/02-21:13:37.104683 139629081356096 Options.create_if_missing: 1
|
||||
2026/04/02-21:13:37.104684 139629081356096 Options.paranoid_checks: 1
|
||||
2026/04/02-21:13:37.104685 139629081356096 Options.flush_verify_memtable_count: 1
|
||||
2026/04/02-21:13:37.104685 139629081356096 Options.compaction_verify_record_count: 1
|
||||
2026/04/02-21:13:37.104686 139629081356096 Options.track_and_verify_wals_in_manifest: 0
|
||||
2026/04/02-21:13:37.104687 139629081356096 Options.track_and_verify_wals: 0
|
||||
2026/04/02-21:13:37.104688 139629081356096 Options.verify_sst_unique_id_in_manifest: 1
|
||||
2026/04/02-21:13:37.104689 139629081356096 Options.env: 0x3a912f30
|
||||
2026/04/02-21:13:37.104690 139629081356096 Options.fs: PosixFileSystem
|
||||
2026/04/02-21:13:37.104691 139629081356096 Options.info_log: 0x3aa73a10
|
||||
2026/04/02-21:13:37.104691 139629081356096 Options.max_file_opening_threads: 16
|
||||
2026/04/02-21:13:37.104692 139629081356096 Options.statistics: (nil)
|
||||
2026/04/02-21:13:37.104693 139629081356096 Options.use_fsync: 0
|
||||
2026/04/02-21:13:37.104694 139629081356096 Options.max_log_file_size: 1048576
|
||||
2026/04/02-21:13:37.104695 139629081356096 Options.log_file_time_to_roll: 0
|
||||
2026/04/02-21:13:37.104696 139629081356096 Options.keep_log_file_num: 1000
|
||||
2026/04/02-21:13:37.104697 139629081356096 Options.recycle_log_file_num: 10
|
||||
2026/04/02-21:13:37.104698 139629081356096 Options.allow_fallocate: 1
|
||||
2026/04/02-21:13:37.104698 139629081356096 Options.allow_mmap_reads: 0
|
||||
2026/04/02-21:13:37.104699 139629081356096 Options.allow_mmap_writes: 0
|
||||
2026/04/02-21:13:37.104699 139629081356096 Options.use_direct_reads: 0
|
||||
2026/04/02-21:13:37.104700 139629081356096 Options.use_direct_io_for_flush_and_compaction: 0
|
||||
2026/04/02-21:13:37.104701 139629081356096 Options.create_missing_column_families: 1
|
||||
2026/04/02-21:13:37.104701 139629081356096 Options.db_log_dir:
|
||||
2026/04/02-21:13:37.104702 139629081356096 Options.wal_dir:
|
||||
2026/04/02-21:13:37.104703 139629081356096 Options.table_cache_numshardbits: 6
|
||||
2026/04/02-21:13:37.104703 139629081356096 Options.WAL_ttl_seconds: 0
|
||||
2026/04/02-21:13:37.104704 139629081356096 Options.WAL_size_limit_MB: 0
|
||||
2026/04/02-21:13:37.104704 139629081356096 Options.max_write_batch_group_size_bytes: 1048576
|
||||
2026/04/02-21:13:37.104705 139629081356096 Options.is_fd_close_on_exec: 1
|
||||
2026/04/02-21:13:37.104706 139629081356096 Options.advise_random_on_open: 1
|
||||
2026/04/02-21:13:37.104707 139629081356096 Options.db_write_buffer_size: 0
|
||||
2026/04/02-21:13:37.104707 139629081356096 Options.write_buffer_manager: 0x3aa152c0
|
||||
2026/04/02-21:13:37.104708 139629081356096 Options.use_adaptive_mutex: 0
|
||||
2026/04/02-21:13:37.104709 139629081356096 Options.rate_limiter: (nil)
|
||||
2026/04/02-21:13:37.104710 139629081356096 Options.sst_file_manager.rate_bytes_per_sec: 0
|
||||
2026/04/02-21:13:37.104710 139629081356096 Options.wal_recovery_mode: 2
|
||||
2026/04/02-21:13:37.104711 139629081356096 Options.enable_thread_tracking: 0
|
||||
2026/04/02-21:13:37.104712 139629081356096 Options.enable_pipelined_write: 0
|
||||
2026/04/02-21:13:37.104712 139629081356096 Options.unordered_write: 0
|
||||
2026/04/02-21:13:37.104713 139629081356096 Options.allow_concurrent_memtable_write: 1
|
||||
2026/04/02-21:13:37.104714 139629081356096 Options.enable_write_thread_adaptive_yield: 1
|
||||
2026/04/02-21:13:37.104714 139629081356096 Options.write_thread_max_yield_usec: 100
|
||||
2026/04/02-21:13:37.104715 139629081356096 Options.write_thread_slow_yield_usec: 3
|
||||
2026/04/02-21:13:37.104715 139629081356096 Options.row_cache: None
|
||||
2026/04/02-21:13:37.104716 139629081356096 Options.wal_filter: None
|
||||
2026/04/02-21:13:37.104717 139629081356096 Options.avoid_flush_during_recovery: 0
|
||||
2026/04/02-21:13:37.104717 139629081356096 Options.allow_ingest_behind: 0
|
||||
2026/04/02-21:13:37.104718 139629081356096 Options.two_write_queues: 0
|
||||
2026/04/02-21:13:37.104719 139629081356096 Options.manual_wal_flush: 0
|
||||
2026/04/02-21:13:37.104719 139629081356096 Options.wal_compression: 0
|
||||
2026/04/02-21:13:37.104720 139629081356096 Options.background_close_inactive_wals: 0
|
||||
2026/04/02-21:13:37.104720 139629081356096 Options.atomic_flush: 0
|
||||
2026/04/02-21:13:37.104721 139629081356096 Options.avoid_unnecessary_blocking_io: 0
|
||||
2026/04/02-21:13:37.104722 139629081356096 Options.prefix_seek_opt_in_only: 0
|
||||
2026/04/02-21:13:37.104722 139629081356096 Options.persist_stats_to_disk: 0
|
||||
2026/04/02-21:13:37.104723 139629081356096 Options.write_dbid_to_manifest: 1
|
||||
2026/04/02-21:13:37.104724 139629081356096 Options.write_identity_file: 1
|
||||
2026/04/02-21:13:37.104724 139629081356096 Options.log_readahead_size: 0
|
||||
2026/04/02-21:13:37.104725 139629081356096 Options.file_checksum_gen_factory: Unknown
|
||||
2026/04/02-21:13:37.104726 139629081356096 Options.best_efforts_recovery: 0
|
||||
2026/04/02-21:13:37.104726 139629081356096 Options.max_bgerror_resume_count: 2147483647
|
||||
2026/04/02-21:13:37.104727 139629081356096 Options.bgerror_resume_retry_interval: 1000000
|
||||
2026/04/02-21:13:37.104727 139629081356096 Options.allow_data_in_errors: 0
|
||||
2026/04/02-21:13:37.104729 139629081356096 Options.db_host_id: __hostname__
|
||||
2026/04/02-21:13:37.104729 139629081356096 Options.enforce_single_del_contracts: true
|
||||
2026/04/02-21:13:37.104730 139629081356096 Options.metadata_write_temperature: kUnknown
|
||||
2026/04/02-21:13:37.104731 139629081356096 Options.wal_write_temperature: kUnknown
|
||||
2026/04/02-21:13:37.104732 139629081356096 Options.max_background_jobs: 24
|
||||
2026/04/02-21:13:37.104732 139629081356096 Options.max_background_compactions: -1
|
||||
2026/04/02-21:13:37.104733 139629081356096 Options.max_subcompactions: 1
|
||||
2026/04/02-21:13:37.104734 139629081356096 Options.avoid_flush_during_shutdown: 0
|
||||
2026/04/02-21:13:37.104734 139629081356096 Options.writable_file_max_buffer_size: 1048576
|
||||
2026/04/02-21:13:37.104735 139629081356096 Options.delayed_write_rate : 16777216
|
||||
2026/04/02-21:13:37.104736 139629081356096 Options.max_total_wal_size: 0
|
||||
2026/04/02-21:13:37.104736 139629081356096 Options.delete_obsolete_files_period_micros: 21600000000
|
||||
2026/04/02-21:13:37.104737 139629081356096 Options.stats_dump_period_sec: 600
|
||||
2026/04/02-21:13:37.104738 139629081356096 Options.stats_persist_period_sec: 600
|
||||
2026/04/02-21:13:37.104738 139629081356096 Options.stats_history_buffer_size: 1048576
|
||||
2026/04/02-21:13:37.104739 139629081356096 Options.max_open_files: 4048
|
||||
2026/04/02-21:13:37.104740 139629081356096 Options.bytes_per_sync: 0
|
||||
2026/04/02-21:13:37.104740 139629081356096 Options.wal_bytes_per_sync: 0
|
||||
2026/04/02-21:13:37.104741 139629081356096 Options.strict_bytes_per_sync: 0
|
||||
2026/04/02-21:13:37.104741 139629081356096 Options.compaction_readahead_size: 2097152
|
||||
2026/04/02-21:13:37.104742 139629081356096 Options.max_background_flushes: -1
|
||||
2026/04/02-21:13:37.104743 139629081356096 Options.max_manifest_file_size: 1073741824
|
||||
2026/04/02-21:13:37.104743 139629081356096 Options.max_manifest_space_amp_pct: 500
|
||||
2026/04/02-21:13:37.104744 139629081356096 Options.manifest_preallocation_size: 4194304
|
||||
2026/04/02-21:13:37.104745 139629081356096 Options.daily_offpeak_time_utc:
|
||||
2026/04/02-21:13:37.104745 139629081356096 Compression algorithms supported:
|
||||
2026/04/02-21:13:37.104746 139629081356096 kCustomCompressionFE supported: 0
|
||||
2026/04/02-21:13:37.104747 139629081356096 kCustomCompressionFC supported: 0
|
||||
2026/04/02-21:13:37.104748 139629081356096 kCustomCompressionF8 supported: 0
|
||||
2026/04/02-21:13:37.104749 139629081356096 kCustomCompressionF7 supported: 0
|
||||
2026/04/02-21:13:37.104751 139629081356096 kCustomCompressionB2 supported: 0
|
||||
2026/04/02-21:13:37.104751 139629081356096 kLZ4Compression supported: 1
|
||||
2026/04/02-21:13:37.104752 139629081356096 kCustomCompression88 supported: 0
|
||||
2026/04/02-21:13:37.104753 139629081356096 kCustomCompressionD8 supported: 0
|
||||
2026/04/02-21:13:37.104753 139629081356096 kCustomCompression9F supported: 0
|
||||
2026/04/02-21:13:37.104754 139629081356096 kCustomCompressionD6 supported: 0
|
||||
2026/04/02-21:13:37.104755 139629081356096 kCustomCompressionA9 supported: 0
|
||||
2026/04/02-21:13:37.104756 139629081356096 kCustomCompressionEC supported: 0
|
||||
2026/04/02-21:13:37.104756 139629081356096 kCustomCompressionA3 supported: 0
|
||||
2026/04/02-21:13:37.104757 139629081356096 kCustomCompressionCB supported: 0
|
||||
2026/04/02-21:13:37.104758 139629081356096 kCustomCompression90 supported: 0
|
||||
2026/04/02-21:13:37.104758 139629081356096 kCustomCompressionA0 supported: 0
|
||||
2026/04/02-21:13:37.104759 139629081356096 kCustomCompressionC6 supported: 0
|
||||
2026/04/02-21:13:37.104760 139629081356096 kCustomCompression9D supported: 0
|
||||
2026/04/02-21:13:37.104761 139629081356096 kCustomCompression8B supported: 0
|
||||
2026/04/02-21:13:37.104761 139629081356096 kCustomCompressionA8 supported: 0
|
||||
2026/04/02-21:13:37.104762 139629081356096 kCustomCompression8D supported: 0
|
||||
2026/04/02-21:13:37.104762 139629081356096 kCustomCompression97 supported: 0
|
||||
2026/04/02-21:13:37.104763 139629081356096 kCustomCompression98 supported: 0
|
||||
2026/04/02-21:13:37.104764 139629081356096 kCustomCompressionAC supported: 0
|
||||
2026/04/02-21:13:37.104765 139629081356096 kCustomCompressionE9 supported: 0
|
||||
2026/04/02-21:13:37.104766 139629081356096 kCustomCompression96 supported: 0
|
||||
2026/04/02-21:13:37.104766 139629081356096 kCustomCompressionB1 supported: 0
|
||||
2026/04/02-21:13:37.104767 139629081356096 kCustomCompression95 supported: 0
|
||||
2026/04/02-21:13:37.104767 139629081356096 kCustomCompression84 supported: 0
|
||||
2026/04/02-21:13:37.104768 139629081356096 kCustomCompression91 supported: 0
|
||||
2026/04/02-21:13:37.104769 139629081356096 kCustomCompressionAB supported: 0
|
||||
2026/04/02-21:13:37.104769 139629081356096 kCustomCompressionB3 supported: 0
|
||||
2026/04/02-21:13:37.104770 139629081356096 kCustomCompression81 supported: 0
|
||||
2026/04/02-21:13:37.104771 139629081356096 kCustomCompressionDC supported: 0
|
||||
2026/04/02-21:13:37.104771 139629081356096 kBZip2Compression supported: 0
|
||||
2026/04/02-21:13:37.104772 139629081356096 kCustomCompressionBB supported: 0
|
||||
2026/04/02-21:13:37.104773 139629081356096 kCustomCompression9C supported: 0
|
||||
2026/04/02-21:13:37.104773 139629081356096 kCustomCompressionC9 supported: 0
|
||||
2026/04/02-21:13:37.104774 139629081356096 kCustomCompressionCC supported: 0
|
||||
2026/04/02-21:13:37.104774 139629081356096 kCustomCompression92 supported: 0
|
||||
2026/04/02-21:13:37.104775 139629081356096 kCustomCompressionB9 supported: 0
|
||||
2026/04/02-21:13:37.104776 139629081356096 kCustomCompression8F supported: 0
|
||||
2026/04/02-21:13:37.104776 139629081356096 kCustomCompression8A supported: 0
|
||||
2026/04/02-21:13:37.104777 139629081356096 kCustomCompression9B supported: 0
|
||||
2026/04/02-21:13:37.104778 139629081356096 kZSTD supported: 0
|
||||
2026/04/02-21:13:37.104778 139629081356096 kCustomCompressionAA supported: 0
|
||||
2026/04/02-21:13:37.104779 139629081356096 kCustomCompressionA2 supported: 0
|
||||
2026/04/02-21:13:37.104779 139629081356096 kZlibCompression supported: 0
|
||||
2026/04/02-21:13:37.104780 139629081356096 kXpressCompression supported: 0
|
||||
2026/04/02-21:13:37.104781 139629081356096 kCustomCompressionFD supported: 0
|
||||
2026/04/02-21:13:37.104782 139629081356096 kCustomCompressionE2 supported: 0
|
||||
2026/04/02-21:13:37.104782 139629081356096 kLZ4HCCompression supported: 1
|
||||
2026/04/02-21:13:37.104783 139629081356096 kCustomCompressionA6 supported: 0
|
||||
2026/04/02-21:13:37.104783 139629081356096 kCustomCompression85 supported: 0
|
||||
2026/04/02-21:13:37.104784 139629081356096 kCustomCompressionA4 supported: 0
|
||||
2026/04/02-21:13:37.104785 139629081356096 kCustomCompression86 supported: 0
|
||||
2026/04/02-21:13:37.104785 139629081356096 kCustomCompression83 supported: 0
|
||||
2026/04/02-21:13:37.104786 139629081356096 kCustomCompression87 supported: 0
|
||||
2026/04/02-21:13:37.104787 139629081356096 kCustomCompression89 supported: 0
|
||||
2026/04/02-21:13:37.104787 139629081356096 kCustomCompression8C supported: 0
|
||||
2026/04/02-21:13:37.104788 139629081356096 kCustomCompressionDB supported: 0
|
||||
2026/04/02-21:13:37.104788 139629081356096 kCustomCompressionF3 supported: 0
|
||||
2026/04/02-21:13:37.104789 139629081356096 kCustomCompressionE6 supported: 0
|
||||
2026/04/02-21:13:37.104790 139629081356096 kCustomCompression8E supported: 0
|
||||
2026/04/02-21:13:37.104791 139629081356096 kCustomCompressionDA supported: 0
|
||||
2026/04/02-21:13:37.104791 139629081356096 kCustomCompression93 supported: 0
|
||||
2026/04/02-21:13:37.104792 139629081356096 kCustomCompression94 supported: 0
|
||||
2026/04/02-21:13:37.104792 139629081356096 kCustomCompression9E supported: 0
|
||||
2026/04/02-21:13:37.104793 139629081356096 kCustomCompressionB4 supported: 0
|
||||
2026/04/02-21:13:37.104794 139629081356096 kCustomCompressionFB supported: 0
|
||||
2026/04/02-21:13:37.104794 139629081356096 kCustomCompressionB5 supported: 0
|
||||
2026/04/02-21:13:37.104795 139629081356096 kCustomCompressionD5 supported: 0
|
||||
2026/04/02-21:13:37.104796 139629081356096 kCustomCompressionB8 supported: 0
|
||||
2026/04/02-21:13:37.104797 139629081356096 kCustomCompressionD1 supported: 0
|
||||
2026/04/02-21:13:37.104797 139629081356096 kCustomCompressionBA supported: 0
|
||||
2026/04/02-21:13:37.104798 139629081356096 kCustomCompressionBC supported: 0
|
||||
2026/04/02-21:13:37.104798 139629081356096 kCustomCompressionCE supported: 0
|
||||
2026/04/02-21:13:37.104799 139629081356096 kCustomCompressionBD supported: 0
|
||||
2026/04/02-21:13:37.104800 139629081356096 kCustomCompressionC4 supported: 0
|
||||
2026/04/02-21:13:37.104800 139629081356096 kCustomCompression9A supported: 0
|
||||
2026/04/02-21:13:37.104801 139629081356096 kCustomCompression99 supported: 0
|
||||
2026/04/02-21:13:37.104801 139629081356096 kCustomCompressionBE supported: 0
|
||||
2026/04/02-21:13:37.104802 139629081356096 kCustomCompressionE5 supported: 0
|
||||
2026/04/02-21:13:37.104803 139629081356096 kCustomCompressionD9 supported: 0
|
||||
2026/04/02-21:13:37.104803 139629081356096 kCustomCompressionC1 supported: 0
|
||||
2026/04/02-21:13:37.104804 139629081356096 kCustomCompressionC5 supported: 0
|
||||
2026/04/02-21:13:37.104805 139629081356096 kCustomCompressionC2 supported: 0
|
||||
2026/04/02-21:13:37.104805 139629081356096 kCustomCompressionA5 supported: 0
|
||||
2026/04/02-21:13:37.104806 139629081356096 kCustomCompressionC7 supported: 0
|
||||
2026/04/02-21:13:37.104806 139629081356096 kCustomCompressionBF supported: 0
|
||||
2026/04/02-21:13:37.104807 139629081356096 kCustomCompressionE8 supported: 0
|
||||
2026/04/02-21:13:37.104808 139629081356096 kCustomCompressionC8 supported: 0
|
||||
2026/04/02-21:13:37.104808 139629081356096 kCustomCompressionAF supported: 0
|
||||
2026/04/02-21:13:37.104809 139629081356096 kCustomCompressionCA supported: 0
|
||||
2026/04/02-21:13:37.104810 139629081356096 kCustomCompressionCD supported: 0
|
||||
2026/04/02-21:13:37.104810 139629081356096 kCustomCompressionC0 supported: 0
|
||||
2026/04/02-21:13:37.104811 139629081356096 kCustomCompressionCF supported: 0
|
||||
2026/04/02-21:13:37.104812 139629081356096 kCustomCompressionF9 supported: 0
|
||||
2026/04/02-21:13:37.104812 139629081356096 kCustomCompressionD0 supported: 0
|
||||
2026/04/02-21:13:37.104813 139629081356096 kCustomCompressionD2 supported: 0
|
||||
2026/04/02-21:13:37.104813 139629081356096 kCustomCompressionAD supported: 0
|
||||
2026/04/02-21:13:37.104814 139629081356096 kCustomCompressionD3 supported: 0
|
||||
2026/04/02-21:13:37.104815 139629081356096 kCustomCompressionD4 supported: 0
|
||||
2026/04/02-21:13:37.104815 139629081356096 kCustomCompressionD7 supported: 0
|
||||
2026/04/02-21:13:37.104816 139629081356096 kCustomCompression82 supported: 0
|
||||
2026/04/02-21:13:37.104817 139629081356096 kCustomCompressionDD supported: 0
|
||||
2026/04/02-21:13:37.104817 139629081356096 kCustomCompressionC3 supported: 0
|
||||
2026/04/02-21:13:37.104818 139629081356096 kCustomCompressionEE supported: 0
|
||||
2026/04/02-21:13:37.104818 139629081356096 kCustomCompressionDE supported: 0
|
||||
2026/04/02-21:13:37.104819 139629081356096 kCustomCompressionDF supported: 0
|
||||
2026/04/02-21:13:37.104820 139629081356096 kCustomCompressionA7 supported: 0
|
||||
2026/04/02-21:13:37.104820 139629081356096 kCustomCompressionE0 supported: 0
|
||||
2026/04/02-21:13:37.104821 139629081356096 kCustomCompressionF1 supported: 0
|
||||
2026/04/02-21:13:37.104822 139629081356096 kCustomCompressionE1 supported: 0
|
||||
2026/04/02-21:13:37.104822 139629081356096 kCustomCompressionF5 supported: 0
|
||||
2026/04/02-21:13:37.104823 139629081356096 kCustomCompression80 supported: 0
|
||||
2026/04/02-21:13:37.104823 139629081356096 kCustomCompressionE3 supported: 0
|
||||
2026/04/02-21:13:37.104824 139629081356096 kCustomCompressionE4 supported: 0
|
||||
2026/04/02-21:13:37.104825 139629081356096 kCustomCompressionB0 supported: 0
|
||||
2026/04/02-21:13:37.104825 139629081356096 kCustomCompressionEA supported: 0
|
||||
2026/04/02-21:13:37.104826 139629081356096 kCustomCompressionFA supported: 0
|
||||
2026/04/02-21:13:37.104827 139629081356096 kCustomCompressionE7 supported: 0
|
||||
2026/04/02-21:13:37.104827 139629081356096 kCustomCompressionAE supported: 0
|
||||
2026/04/02-21:13:37.104828 139629081356096 kCustomCompressionEB supported: 0
|
||||
2026/04/02-21:13:37.104829 139629081356096 kCustomCompressionED supported: 0
|
||||
2026/04/02-21:13:37.104829 139629081356096 kCustomCompressionB6 supported: 0
|
||||
2026/04/02-21:13:37.104830 139629081356096 kCustomCompressionEF supported: 0
|
||||
2026/04/02-21:13:37.104831 139629081356096 kCustomCompressionF0 supported: 0
|
||||
2026/04/02-21:13:37.104831 139629081356096 kCustomCompressionB7 supported: 0
|
||||
2026/04/02-21:13:37.104832 139629081356096 kCustomCompressionF2 supported: 0
|
||||
2026/04/02-21:13:37.104832 139629081356096 kCustomCompressionA1 supported: 0
|
||||
2026/04/02-21:13:37.104833 139629081356096 kCustomCompressionF4 supported: 0
|
||||
2026/04/02-21:13:37.104834 139629081356096 kSnappyCompression supported: 0
|
||||
2026/04/02-21:13:37.104834 139629081356096 kCustomCompressionF6 supported: 0
|
||||
2026/04/02-21:13:37.104836 139629081356096 Fast CRC32 supported: Not supported on x86
|
||||
2026/04/02-21:13:37.104836 139629081356096 DMutex implementation: pthread_mutex_t
|
||||
2026/04/02-21:13:37.104837 139629081356096 Jemalloc supported: 0
|
||||
2026/04/02-21:13:37.104863 139629081356096 [WARN] [db/db_impl/db_impl_open.cc:2687] DB::Open() failed: IO error: lock hold by current process, acquire time 1775156918 acquiring thread 139629081356096: data/osint/oxigraph/LOCK: No locks available
|
||||
@@ -0,0 +1,238 @@
|
||||
2026/04/02-21:13:37.106961 139629081356096 RocksDB version: 10.10.1
|
||||
2026/04/02-21:13:37.106982 139629081356096 DB SUMMARY
|
||||
2026/04/02-21:13:37.106984 139629081356096 Host name (Env): Lucas
|
||||
2026/04/02-21:13:37.106985 139629081356096 DB Session ID: 86F26ZGOLUEYUL8ZU31U
|
||||
2026/04/02-21:13:37.107003 139629081356096 CURRENT file: CURRENT
|
||||
2026/04/02-21:13:37.107004 139629081356096 IDENTITY file: IDENTITY
|
||||
2026/04/02-21:13:37.107006 139629081356096 MANIFEST file: MANIFEST-000026 size: 1785 Bytes
|
||||
2026/04/02-21:13:37.107008 139629081356096 SST files in data/osint/oxigraph dir, Total Num: 5, files: 000011.sst 000015.sst 000016.sst 000017.sst 000018.sst
|
||||
2026/04/02-21:13:37.107009 139629081356096 Write Ahead Log file in data/osint/oxigraph: 000025.log size: 0 ;
|
||||
2026/04/02-21:13:37.107010 139629081356096 Options.error_if_exists: 0
|
||||
2026/04/02-21:13:37.107011 139629081356096 Options.create_if_missing: 1
|
||||
2026/04/02-21:13:37.107012 139629081356096 Options.paranoid_checks: 1
|
||||
2026/04/02-21:13:37.107012 139629081356096 Options.flush_verify_memtable_count: 1
|
||||
2026/04/02-21:13:37.107013 139629081356096 Options.compaction_verify_record_count: 1
|
||||
2026/04/02-21:13:37.107014 139629081356096 Options.track_and_verify_wals_in_manifest: 0
|
||||
2026/04/02-21:13:37.107015 139629081356096 Options.track_and_verify_wals: 0
|
||||
2026/04/02-21:13:37.107016 139629081356096 Options.verify_sst_unique_id_in_manifest: 1
|
||||
2026/04/02-21:13:37.107016 139629081356096 Options.env: 0x3a912f30
|
||||
2026/04/02-21:13:37.107017 139629081356096 Options.fs: PosixFileSystem
|
||||
2026/04/02-21:13:37.107018 139629081356096 Options.info_log: 0x3aa73a10
|
||||
2026/04/02-21:13:37.107019 139629081356096 Options.max_file_opening_threads: 16
|
||||
2026/04/02-21:13:37.107020 139629081356096 Options.statistics: (nil)
|
||||
2026/04/02-21:13:37.107020 139629081356096 Options.use_fsync: 0
|
||||
2026/04/02-21:13:37.107021 139629081356096 Options.max_log_file_size: 1048576
|
||||
2026/04/02-21:13:37.107022 139629081356096 Options.log_file_time_to_roll: 0
|
||||
2026/04/02-21:13:37.107023 139629081356096 Options.keep_log_file_num: 1000
|
||||
2026/04/02-21:13:37.107023 139629081356096 Options.recycle_log_file_num: 10
|
||||
2026/04/02-21:13:37.107024 139629081356096 Options.allow_fallocate: 1
|
||||
2026/04/02-21:13:37.107025 139629081356096 Options.allow_mmap_reads: 0
|
||||
2026/04/02-21:13:37.107025 139629081356096 Options.allow_mmap_writes: 0
|
||||
2026/04/02-21:13:37.107026 139629081356096 Options.use_direct_reads: 0
|
||||
2026/04/02-21:13:37.107027 139629081356096 Options.use_direct_io_for_flush_and_compaction: 0
|
||||
2026/04/02-21:13:37.107027 139629081356096 Options.create_missing_column_families: 1
|
||||
2026/04/02-21:13:37.107028 139629081356096 Options.db_log_dir:
|
||||
2026/04/02-21:13:37.107029 139629081356096 Options.wal_dir:
|
||||
2026/04/02-21:13:37.107029 139629081356096 Options.table_cache_numshardbits: 6
|
||||
2026/04/02-21:13:37.107030 139629081356096 Options.WAL_ttl_seconds: 0
|
||||
2026/04/02-21:13:37.107030 139629081356096 Options.WAL_size_limit_MB: 0
|
||||
2026/04/02-21:13:37.107031 139629081356096 Options.max_write_batch_group_size_bytes: 1048576
|
||||
2026/04/02-21:13:37.107032 139629081356096 Options.is_fd_close_on_exec: 1
|
||||
2026/04/02-21:13:37.107033 139629081356096 Options.advise_random_on_open: 1
|
||||
2026/04/02-21:13:37.107033 139629081356096 Options.db_write_buffer_size: 0
|
||||
2026/04/02-21:13:37.107034 139629081356096 Options.write_buffer_manager: 0x3a99eac0
|
||||
2026/04/02-21:13:37.107035 139629081356096 Options.use_adaptive_mutex: 0
|
||||
2026/04/02-21:13:37.107035 139629081356096 Options.rate_limiter: (nil)
|
||||
2026/04/02-21:13:37.107036 139629081356096 Options.sst_file_manager.rate_bytes_per_sec: 0
|
||||
2026/04/02-21:13:37.107037 139629081356096 Options.wal_recovery_mode: 2
|
||||
2026/04/02-21:13:37.107037 139629081356096 Options.enable_thread_tracking: 0
|
||||
2026/04/02-21:13:37.107038 139629081356096 Options.enable_pipelined_write: 0
|
||||
2026/04/02-21:13:37.107039 139629081356096 Options.unordered_write: 0
|
||||
2026/04/02-21:13:37.107039 139629081356096 Options.allow_concurrent_memtable_write: 1
|
||||
2026/04/02-21:13:37.107040 139629081356096 Options.enable_write_thread_adaptive_yield: 1
|
||||
2026/04/02-21:13:37.107041 139629081356096 Options.write_thread_max_yield_usec: 100
|
||||
2026/04/02-21:13:37.107041 139629081356096 Options.write_thread_slow_yield_usec: 3
|
||||
2026/04/02-21:13:37.107042 139629081356096 Options.row_cache: None
|
||||
2026/04/02-21:13:37.107043 139629081356096 Options.wal_filter: None
|
||||
2026/04/02-21:13:37.107043 139629081356096 Options.avoid_flush_during_recovery: 0
|
||||
2026/04/02-21:13:37.107044 139629081356096 Options.allow_ingest_behind: 0
|
||||
2026/04/02-21:13:37.107044 139629081356096 Options.two_write_queues: 0
|
||||
2026/04/02-21:13:37.107045 139629081356096 Options.manual_wal_flush: 0
|
||||
2026/04/02-21:13:37.107046 139629081356096 Options.wal_compression: 0
|
||||
2026/04/02-21:13:37.107046 139629081356096 Options.background_close_inactive_wals: 0
|
||||
2026/04/02-21:13:37.107047 139629081356096 Options.atomic_flush: 0
|
||||
2026/04/02-21:13:37.107048 139629081356096 Options.avoid_unnecessary_blocking_io: 0
|
||||
2026/04/02-21:13:37.107048 139629081356096 Options.prefix_seek_opt_in_only: 0
|
||||
2026/04/02-21:13:37.107049 139629081356096 Options.persist_stats_to_disk: 0
|
||||
2026/04/02-21:13:37.107049 139629081356096 Options.write_dbid_to_manifest: 1
|
||||
2026/04/02-21:13:37.107050 139629081356096 Options.write_identity_file: 1
|
||||
2026/04/02-21:13:37.107051 139629081356096 Options.log_readahead_size: 0
|
||||
2026/04/02-21:13:37.107051 139629081356096 Options.file_checksum_gen_factory: Unknown
|
||||
2026/04/02-21:13:37.107052 139629081356096 Options.best_efforts_recovery: 0
|
||||
2026/04/02-21:13:37.107053 139629081356096 Options.max_bgerror_resume_count: 2147483647
|
||||
2026/04/02-21:13:37.107053 139629081356096 Options.bgerror_resume_retry_interval: 1000000
|
||||
2026/04/02-21:13:37.107054 139629081356096 Options.allow_data_in_errors: 0
|
||||
2026/04/02-21:13:37.107055 139629081356096 Options.db_host_id: __hostname__
|
||||
2026/04/02-21:13:37.107055 139629081356096 Options.enforce_single_del_contracts: true
|
||||
2026/04/02-21:13:37.107056 139629081356096 Options.metadata_write_temperature: kUnknown
|
||||
2026/04/02-21:13:37.107057 139629081356096 Options.wal_write_temperature: kUnknown
|
||||
2026/04/02-21:13:37.107058 139629081356096 Options.max_background_jobs: 24
|
||||
2026/04/02-21:13:37.107058 139629081356096 Options.max_background_compactions: -1
|
||||
2026/04/02-21:13:37.107059 139629081356096 Options.max_subcompactions: 1
|
||||
2026/04/02-21:13:37.107060 139629081356096 Options.avoid_flush_during_shutdown: 0
|
||||
2026/04/02-21:13:37.107060 139629081356096 Options.writable_file_max_buffer_size: 1048576
|
||||
2026/04/02-21:13:37.107061 139629081356096 Options.delayed_write_rate : 16777216
|
||||
2026/04/02-21:13:37.107062 139629081356096 Options.max_total_wal_size: 0
|
||||
2026/04/02-21:13:37.107063 139629081356096 Options.delete_obsolete_files_period_micros: 21600000000
|
||||
2026/04/02-21:13:37.107063 139629081356096 Options.stats_dump_period_sec: 600
|
||||
2026/04/02-21:13:37.107064 139629081356096 Options.stats_persist_period_sec: 600
|
||||
2026/04/02-21:13:37.107065 139629081356096 Options.stats_history_buffer_size: 1048576
|
||||
2026/04/02-21:13:37.107065 139629081356096 Options.max_open_files: 4048
|
||||
2026/04/02-21:13:37.107066 139629081356096 Options.bytes_per_sync: 0
|
||||
2026/04/02-21:13:37.107067 139629081356096 Options.wal_bytes_per_sync: 0
|
||||
2026/04/02-21:13:37.107067 139629081356096 Options.strict_bytes_per_sync: 0
|
||||
2026/04/02-21:13:37.107068 139629081356096 Options.compaction_readahead_size: 2097152
|
||||
2026/04/02-21:13:37.107069 139629081356096 Options.max_background_flushes: -1
|
||||
2026/04/02-21:13:37.107069 139629081356096 Options.max_manifest_file_size: 1073741824
|
||||
2026/04/02-21:13:37.107070 139629081356096 Options.max_manifest_space_amp_pct: 500
|
||||
2026/04/02-21:13:37.107071 139629081356096 Options.manifest_preallocation_size: 4194304
|
||||
2026/04/02-21:13:37.107071 139629081356096 Options.daily_offpeak_time_utc:
|
||||
2026/04/02-21:13:37.107072 139629081356096 Compression algorithms supported:
|
||||
2026/04/02-21:13:37.107073 139629081356096 kCustomCompressionFE supported: 0
|
||||
2026/04/02-21:13:37.107074 139629081356096 kCustomCompressionFC supported: 0
|
||||
2026/04/02-21:13:37.107075 139629081356096 kCustomCompressionF8 supported: 0
|
||||
2026/04/02-21:13:37.107076 139629081356096 kCustomCompressionF7 supported: 0
|
||||
2026/04/02-21:13:37.107077 139629081356096 kCustomCompressionB2 supported: 0
|
||||
2026/04/02-21:13:37.107077 139629081356096 kLZ4Compression supported: 1
|
||||
2026/04/02-21:13:37.107078 139629081356096 kCustomCompression88 supported: 0
|
||||
2026/04/02-21:13:37.107079 139629081356096 kCustomCompressionD8 supported: 0
|
||||
2026/04/02-21:13:37.107080 139629081356096 kCustomCompression9F supported: 0
|
||||
2026/04/02-21:13:37.107080 139629081356096 kCustomCompressionD6 supported: 0
|
||||
2026/04/02-21:13:37.107081 139629081356096 kCustomCompressionA9 supported: 0
|
||||
2026/04/02-21:13:37.107083 139629081356096 kCustomCompressionEC supported: 0
|
||||
2026/04/02-21:13:37.107083 139629081356096 kCustomCompressionA3 supported: 0
|
||||
2026/04/02-21:13:37.107084 139629081356096 kCustomCompressionCB supported: 0
|
||||
2026/04/02-21:13:37.107085 139629081356096 kCustomCompression90 supported: 0
|
||||
2026/04/02-21:13:37.107085 139629081356096 kCustomCompressionA0 supported: 0
|
||||
2026/04/02-21:13:37.107086 139629081356096 kCustomCompressionC6 supported: 0
|
||||
2026/04/02-21:13:37.107087 139629081356096 kCustomCompression9D supported: 0
|
||||
2026/04/02-21:13:37.107087 139629081356096 kCustomCompression8B supported: 0
|
||||
2026/04/02-21:13:37.107088 139629081356096 kCustomCompressionA8 supported: 0
|
||||
2026/04/02-21:13:37.107089 139629081356096 kCustomCompression8D supported: 0
|
||||
2026/04/02-21:13:37.107089 139629081356096 kCustomCompression97 supported: 0
|
||||
2026/04/02-21:13:37.107090 139629081356096 kCustomCompression98 supported: 0
|
||||
2026/04/02-21:13:37.107091 139629081356096 kCustomCompressionAC supported: 0
|
||||
2026/04/02-21:13:37.107091 139629081356096 kCustomCompressionE9 supported: 0
|
||||
2026/04/02-21:13:37.107092 139629081356096 kCustomCompression96 supported: 0
|
||||
2026/04/02-21:13:37.107092 139629081356096 kCustomCompressionB1 supported: 0
|
||||
2026/04/02-21:13:37.107093 139629081356096 kCustomCompression95 supported: 0
|
||||
2026/04/02-21:13:37.107094 139629081356096 kCustomCompression84 supported: 0
|
||||
2026/04/02-21:13:37.107094 139629081356096 kCustomCompression91 supported: 0
|
||||
2026/04/02-21:13:37.107095 139629081356096 kCustomCompressionAB supported: 0
|
||||
2026/04/02-21:13:37.107096 139629081356096 kCustomCompressionB3 supported: 0
|
||||
2026/04/02-21:13:37.107096 139629081356096 kCustomCompression81 supported: 0
|
||||
2026/04/02-21:13:37.107097 139629081356096 kCustomCompressionDC supported: 0
|
||||
2026/04/02-21:13:37.107098 139629081356096 kBZip2Compression supported: 0
|
||||
2026/04/02-21:13:37.107098 139629081356096 kCustomCompressionBB supported: 0
|
||||
2026/04/02-21:13:37.107099 139629081356096 kCustomCompression9C supported: 0
|
||||
2026/04/02-21:13:37.107100 139629081356096 kCustomCompressionC9 supported: 0
|
||||
2026/04/02-21:13:37.107100 139629081356096 kCustomCompressionCC supported: 0
|
||||
2026/04/02-21:13:37.107101 139629081356096 kCustomCompression92 supported: 0
|
||||
2026/04/02-21:13:37.107102 139629081356096 kCustomCompressionB9 supported: 0
|
||||
2026/04/02-21:13:37.107102 139629081356096 kCustomCompression8F supported: 0
|
||||
2026/04/02-21:13:37.107103 139629081356096 kCustomCompression8A supported: 0
|
||||
2026/04/02-21:13:37.107103 139629081356096 kCustomCompression9B supported: 0
|
||||
2026/04/02-21:13:37.107104 139629081356096 kZSTD supported: 0
|
||||
2026/04/02-21:13:37.107105 139629081356096 kCustomCompressionAA supported: 0
|
||||
2026/04/02-21:13:37.107105 139629081356096 kCustomCompressionA2 supported: 0
|
||||
2026/04/02-21:13:37.107106 139629081356096 kZlibCompression supported: 0
|
||||
2026/04/02-21:13:37.107107 139629081356096 kXpressCompression supported: 0
|
||||
2026/04/02-21:13:37.107107 139629081356096 kCustomCompressionFD supported: 0
|
||||
2026/04/02-21:13:37.107108 139629081356096 kCustomCompressionE2 supported: 0
|
||||
2026/04/02-21:13:37.107109 139629081356096 kLZ4HCCompression supported: 1
|
||||
2026/04/02-21:13:37.107110 139629081356096 kCustomCompressionA6 supported: 0
|
||||
2026/04/02-21:13:37.107110 139629081356096 kCustomCompression85 supported: 0
|
||||
2026/04/02-21:13:37.107111 139629081356096 kCustomCompressionA4 supported: 0
|
||||
2026/04/02-21:13:37.107111 139629081356096 kCustomCompression86 supported: 0
|
||||
2026/04/02-21:13:37.107112 139629081356096 kCustomCompression83 supported: 0
|
||||
2026/04/02-21:13:37.107113 139629081356096 kCustomCompression87 supported: 0
|
||||
2026/04/02-21:13:37.107113 139629081356096 kCustomCompression89 supported: 0
|
||||
2026/04/02-21:13:37.107114 139629081356096 kCustomCompression8C supported: 0
|
||||
2026/04/02-21:13:37.107114 139629081356096 kCustomCompressionDB supported: 0
|
||||
2026/04/02-21:13:37.107115 139629081356096 kCustomCompressionF3 supported: 0
|
||||
2026/04/02-21:13:37.107116 139629081356096 kCustomCompressionE6 supported: 0
|
||||
2026/04/02-21:13:37.107116 139629081356096 kCustomCompression8E supported: 0
|
||||
2026/04/02-21:13:37.107117 139629081356096 kCustomCompressionDA supported: 0
|
||||
2026/04/02-21:13:37.107118 139629081356096 kCustomCompression93 supported: 0
|
||||
2026/04/02-21:13:37.107118 139629081356096 kCustomCompression94 supported: 0
|
||||
2026/04/02-21:13:37.107119 139629081356096 kCustomCompression9E supported: 0
|
||||
2026/04/02-21:13:37.107119 139629081356096 kCustomCompressionB4 supported: 0
|
||||
2026/04/02-21:13:37.107120 139629081356096 kCustomCompressionFB supported: 0
|
||||
2026/04/02-21:13:37.107121 139629081356096 kCustomCompressionB5 supported: 0
|
||||
2026/04/02-21:13:37.107122 139629081356096 kCustomCompressionD5 supported: 0
|
||||
2026/04/02-21:13:37.107122 139629081356096 kCustomCompressionB8 supported: 0
|
||||
2026/04/02-21:13:37.107123 139629081356096 kCustomCompressionD1 supported: 0
|
||||
2026/04/02-21:13:37.107123 139629081356096 kCustomCompressionBA supported: 0
|
||||
2026/04/02-21:13:37.107124 139629081356096 kCustomCompressionBC supported: 0
|
||||
2026/04/02-21:13:37.107125 139629081356096 kCustomCompressionCE supported: 0
|
||||
2026/04/02-21:13:37.107125 139629081356096 kCustomCompressionBD supported: 0
|
||||
2026/04/02-21:13:37.107126 139629081356096 kCustomCompressionC4 supported: 0
|
||||
2026/04/02-21:13:37.107127 139629081356096 kCustomCompression9A supported: 0
|
||||
2026/04/02-21:13:37.107127 139629081356096 kCustomCompression99 supported: 0
|
||||
2026/04/02-21:13:37.107128 139629081356096 kCustomCompressionBE supported: 0
|
||||
2026/04/02-21:13:37.107128 139629081356096 kCustomCompressionE5 supported: 0
|
||||
2026/04/02-21:13:37.107129 139629081356096 kCustomCompressionD9 supported: 0
|
||||
2026/04/02-21:13:37.107130 139629081356096 kCustomCompressionC1 supported: 0
|
||||
2026/04/02-21:13:37.107130 139629081356096 kCustomCompressionC5 supported: 0
|
||||
2026/04/02-21:13:37.107131 139629081356096 kCustomCompressionC2 supported: 0
|
||||
2026/04/02-21:13:37.107131 139629081356096 kCustomCompressionA5 supported: 0
|
||||
2026/04/02-21:13:37.107132 139629081356096 kCustomCompressionC7 supported: 0
|
||||
2026/04/02-21:13:37.107133 139629081356096 kCustomCompressionBF supported: 0
|
||||
2026/04/02-21:13:37.107133 139629081356096 kCustomCompressionE8 supported: 0
|
||||
2026/04/02-21:13:37.107134 139629081356096 kCustomCompressionC8 supported: 0
|
||||
2026/04/02-21:13:37.107135 139629081356096 kCustomCompressionAF supported: 0
|
||||
2026/04/02-21:13:37.107135 139629081356096 kCustomCompressionCA supported: 0
|
||||
2026/04/02-21:13:37.107136 139629081356096 kCustomCompressionCD supported: 0
|
||||
2026/04/02-21:13:37.107136 139629081356096 kCustomCompressionC0 supported: 0
|
||||
2026/04/02-21:13:37.107137 139629081356096 kCustomCompressionCF supported: 0
|
||||
2026/04/02-21:13:37.107138 139629081356096 kCustomCompressionF9 supported: 0
|
||||
2026/04/02-21:13:37.107138 139629081356096 kCustomCompressionD0 supported: 0
|
||||
2026/04/02-21:13:37.107139 139629081356096 kCustomCompressionD2 supported: 0
|
||||
2026/04/02-21:13:37.107140 139629081356096 kCustomCompressionAD supported: 0
|
||||
2026/04/02-21:13:37.107140 139629081356096 kCustomCompressionD3 supported: 0
|
||||
2026/04/02-21:13:37.107141 139629081356096 kCustomCompressionD4 supported: 0
|
||||
2026/04/02-21:13:37.107142 139629081356096 kCustomCompressionD7 supported: 0
|
||||
2026/04/02-21:13:37.107142 139629081356096 kCustomCompression82 supported: 0
|
||||
2026/04/02-21:13:37.107143 139629081356096 kCustomCompressionDD supported: 0
|
||||
2026/04/02-21:13:37.107143 139629081356096 kCustomCompressionC3 supported: 0
|
||||
2026/04/02-21:13:37.107144 139629081356096 kCustomCompressionEE supported: 0
|
||||
2026/04/02-21:13:37.107145 139629081356096 kCustomCompressionDE supported: 0
|
||||
2026/04/02-21:13:37.107145 139629081356096 kCustomCompressionDF supported: 0
|
||||
2026/04/02-21:13:37.107146 139629081356096 kCustomCompressionA7 supported: 0
|
||||
2026/04/02-21:13:37.107146 139629081356096 kCustomCompressionE0 supported: 0
|
||||
2026/04/02-21:13:37.107147 139629081356096 kCustomCompressionF1 supported: 0
|
||||
2026/04/02-21:13:37.107148 139629081356096 kCustomCompressionE1 supported: 0
|
||||
2026/04/02-21:13:37.107148 139629081356096 kCustomCompressionF5 supported: 0
|
||||
2026/04/02-21:13:37.107149 139629081356096 kCustomCompression80 supported: 0
|
||||
2026/04/02-21:13:37.107150 139629081356096 kCustomCompressionE3 supported: 0
|
||||
2026/04/02-21:13:37.107150 139629081356096 kCustomCompressionE4 supported: 0
|
||||
2026/04/02-21:13:37.107151 139629081356096 kCustomCompressionB0 supported: 0
|
||||
2026/04/02-21:13:37.107151 139629081356096 kCustomCompressionEA supported: 0
|
||||
2026/04/02-21:13:37.107152 139629081356096 kCustomCompressionFA supported: 0
|
||||
2026/04/02-21:13:37.107153 139629081356096 kCustomCompressionE7 supported: 0
|
||||
2026/04/02-21:13:37.107153 139629081356096 kCustomCompressionAE supported: 0
|
||||
2026/04/02-21:13:37.107154 139629081356096 kCustomCompressionEB supported: 0
|
||||
2026/04/02-21:13:37.107155 139629081356096 kCustomCompressionED supported: 0
|
||||
2026/04/02-21:13:37.107155 139629081356096 kCustomCompressionB6 supported: 0
|
||||
2026/04/02-21:13:37.107156 139629081356096 kCustomCompressionEF supported: 0
|
||||
2026/04/02-21:13:37.107157 139629081356096 kCustomCompressionF0 supported: 0
|
||||
2026/04/02-21:13:37.107157 139629081356096 kCustomCompressionB7 supported: 0
|
||||
2026/04/02-21:13:37.107158 139629081356096 kCustomCompressionF2 supported: 0
|
||||
2026/04/02-21:13:37.107158 139629081356096 kCustomCompressionA1 supported: 0
|
||||
2026/04/02-21:13:37.107159 139629081356096 kCustomCompressionF4 supported: 0
|
||||
2026/04/02-21:13:37.107160 139629081356096 kSnappyCompression supported: 0
|
||||
2026/04/02-21:13:37.107160 139629081356096 kCustomCompressionF6 supported: 0
|
||||
2026/04/02-21:13:37.107161 139629081356096 Fast CRC32 supported: Not supported on x86
|
||||
2026/04/02-21:13:37.107162 139629081356096 DMutex implementation: pthread_mutex_t
|
||||
2026/04/02-21:13:37.107163 139629081356096 Jemalloc supported: 0
|
||||
2026/04/02-21:13:37.107183 139629081356096 [WARN] [db/db_impl/db_impl_open.cc:2687] DB::Open() failed: IO error: lock hold by current process, acquire time 1775156918 acquiring thread 139629081356096: data/osint/oxigraph/LOCK: No locks available
|
||||
@@ -0,0 +1,238 @@
|
||||
2026/04/02-21:13:37.109232 139629081356096 RocksDB version: 10.10.1
|
||||
2026/04/02-21:13:37.109254 139629081356096 DB SUMMARY
|
||||
2026/04/02-21:13:37.109256 139629081356096 Host name (Env): Lucas
|
||||
2026/04/02-21:13:37.109256 139629081356096 DB Session ID: 86F26ZGOLUEYUL8ZU31V
|
||||
2026/04/02-21:13:37.109274 139629081356096 CURRENT file: CURRENT
|
||||
2026/04/02-21:13:37.109275 139629081356096 IDENTITY file: IDENTITY
|
||||
2026/04/02-21:13:37.109277 139629081356096 MANIFEST file: MANIFEST-000026 size: 1785 Bytes
|
||||
2026/04/02-21:13:37.109279 139629081356096 SST files in data/osint/oxigraph dir, Total Num: 5, files: 000011.sst 000015.sst 000016.sst 000017.sst 000018.sst
|
||||
2026/04/02-21:13:37.109280 139629081356096 Write Ahead Log file in data/osint/oxigraph: 000025.log size: 0 ;
|
||||
2026/04/02-21:13:37.109281 139629081356096 Options.error_if_exists: 0
|
||||
2026/04/02-21:13:37.109282 139629081356096 Options.create_if_missing: 1
|
||||
2026/04/02-21:13:37.109283 139629081356096 Options.paranoid_checks: 1
|
||||
2026/04/02-21:13:37.109283 139629081356096 Options.flush_verify_memtable_count: 1
|
||||
2026/04/02-21:13:37.109284 139629081356096 Options.compaction_verify_record_count: 1
|
||||
2026/04/02-21:13:37.109285 139629081356096 Options.track_and_verify_wals_in_manifest: 0
|
||||
2026/04/02-21:13:37.109286 139629081356096 Options.track_and_verify_wals: 0
|
||||
2026/04/02-21:13:37.109286 139629081356096 Options.verify_sst_unique_id_in_manifest: 1
|
||||
2026/04/02-21:13:37.109287 139629081356096 Options.env: 0x3a912f30
|
||||
2026/04/02-21:13:37.109288 139629081356096 Options.fs: PosixFileSystem
|
||||
2026/04/02-21:13:37.109289 139629081356096 Options.info_log: 0x3aa73a10
|
||||
2026/04/02-21:13:37.109289 139629081356096 Options.max_file_opening_threads: 16
|
||||
2026/04/02-21:13:37.109290 139629081356096 Options.statistics: (nil)
|
||||
2026/04/02-21:13:37.109291 139629081356096 Options.use_fsync: 0
|
||||
2026/04/02-21:13:37.109292 139629081356096 Options.max_log_file_size: 1048576
|
||||
2026/04/02-21:13:37.109292 139629081356096 Options.log_file_time_to_roll: 0
|
||||
2026/04/02-21:13:37.109293 139629081356096 Options.keep_log_file_num: 1000
|
||||
2026/04/02-21:13:37.109294 139629081356096 Options.recycle_log_file_num: 10
|
||||
2026/04/02-21:13:37.109294 139629081356096 Options.allow_fallocate: 1
|
||||
2026/04/02-21:13:37.109295 139629081356096 Options.allow_mmap_reads: 0
|
||||
2026/04/02-21:13:37.109296 139629081356096 Options.allow_mmap_writes: 0
|
||||
2026/04/02-21:13:37.109296 139629081356096 Options.use_direct_reads: 0
|
||||
2026/04/02-21:13:37.109297 139629081356096 Options.use_direct_io_for_flush_and_compaction: 0
|
||||
2026/04/02-21:13:37.109298 139629081356096 Options.create_missing_column_families: 1
|
||||
2026/04/02-21:13:37.109298 139629081356096 Options.db_log_dir:
|
||||
2026/04/02-21:13:37.109299 139629081356096 Options.wal_dir:
|
||||
2026/04/02-21:13:37.109300 139629081356096 Options.table_cache_numshardbits: 6
|
||||
2026/04/02-21:13:37.109300 139629081356096 Options.WAL_ttl_seconds: 0
|
||||
2026/04/02-21:13:37.109301 139629081356096 Options.WAL_size_limit_MB: 0
|
||||
2026/04/02-21:13:37.109301 139629081356096 Options.max_write_batch_group_size_bytes: 1048576
|
||||
2026/04/02-21:13:37.109302 139629081356096 Options.is_fd_close_on_exec: 1
|
||||
2026/04/02-21:13:37.109303 139629081356096 Options.advise_random_on_open: 1
|
||||
2026/04/02-21:13:37.109303 139629081356096 Options.db_write_buffer_size: 0
|
||||
2026/04/02-21:13:37.109304 139629081356096 Options.write_buffer_manager: 0x3a9fe170
|
||||
2026/04/02-21:13:37.109305 139629081356096 Options.use_adaptive_mutex: 0
|
||||
2026/04/02-21:13:37.109306 139629081356096 Options.rate_limiter: (nil)
|
||||
2026/04/02-21:13:37.109307 139629081356096 Options.sst_file_manager.rate_bytes_per_sec: 0
|
||||
2026/04/02-21:13:37.109307 139629081356096 Options.wal_recovery_mode: 2
|
||||
2026/04/02-21:13:37.109308 139629081356096 Options.enable_thread_tracking: 0
|
||||
2026/04/02-21:13:37.109309 139629081356096 Options.enable_pipelined_write: 0
|
||||
2026/04/02-21:13:37.109309 139629081356096 Options.unordered_write: 0
|
||||
2026/04/02-21:13:37.109310 139629081356096 Options.allow_concurrent_memtable_write: 1
|
||||
2026/04/02-21:13:37.109310 139629081356096 Options.enable_write_thread_adaptive_yield: 1
|
||||
2026/04/02-21:13:37.109311 139629081356096 Options.write_thread_max_yield_usec: 100
|
||||
2026/04/02-21:13:37.109312 139629081356096 Options.write_thread_slow_yield_usec: 3
|
||||
2026/04/02-21:13:37.109312 139629081356096 Options.row_cache: None
|
||||
2026/04/02-21:13:37.109313 139629081356096 Options.wal_filter: None
|
||||
2026/04/02-21:13:37.109314 139629081356096 Options.avoid_flush_during_recovery: 0
|
||||
2026/04/02-21:13:37.109314 139629081356096 Options.allow_ingest_behind: 0
|
||||
2026/04/02-21:13:37.109315 139629081356096 Options.two_write_queues: 0
|
||||
2026/04/02-21:13:37.109316 139629081356096 Options.manual_wal_flush: 0
|
||||
2026/04/02-21:13:37.109316 139629081356096 Options.wal_compression: 0
|
||||
2026/04/02-21:13:37.109317 139629081356096 Options.background_close_inactive_wals: 0
|
||||
2026/04/02-21:13:37.109317 139629081356096 Options.atomic_flush: 0
|
||||
2026/04/02-21:13:37.109318 139629081356096 Options.avoid_unnecessary_blocking_io: 0
|
||||
2026/04/02-21:13:37.109319 139629081356096 Options.prefix_seek_opt_in_only: 0
|
||||
2026/04/02-21:13:37.109319 139629081356096 Options.persist_stats_to_disk: 0
|
||||
2026/04/02-21:13:37.109320 139629081356096 Options.write_dbid_to_manifest: 1
|
||||
2026/04/02-21:13:37.109320 139629081356096 Options.write_identity_file: 1
|
||||
2026/04/02-21:13:37.109321 139629081356096 Options.log_readahead_size: 0
|
||||
2026/04/02-21:13:37.109322 139629081356096 Options.file_checksum_gen_factory: Unknown
|
||||
2026/04/02-21:13:37.109322 139629081356096 Options.best_efforts_recovery: 0
|
||||
2026/04/02-21:13:37.109323 139629081356096 Options.max_bgerror_resume_count: 2147483647
|
||||
2026/04/02-21:13:37.109324 139629081356096 Options.bgerror_resume_retry_interval: 1000000
|
||||
2026/04/02-21:13:37.109324 139629081356096 Options.allow_data_in_errors: 0
|
||||
2026/04/02-21:13:37.109325 139629081356096 Options.db_host_id: __hostname__
|
||||
2026/04/02-21:13:37.109326 139629081356096 Options.enforce_single_del_contracts: true
|
||||
2026/04/02-21:13:37.109326 139629081356096 Options.metadata_write_temperature: kUnknown
|
||||
2026/04/02-21:13:37.109327 139629081356096 Options.wal_write_temperature: kUnknown
|
||||
2026/04/02-21:13:37.109328 139629081356096 Options.max_background_jobs: 24
|
||||
2026/04/02-21:13:37.109328 139629081356096 Options.max_background_compactions: -1
|
||||
2026/04/02-21:13:37.109329 139629081356096 Options.max_subcompactions: 1
|
||||
2026/04/02-21:13:37.109330 139629081356096 Options.avoid_flush_during_shutdown: 0
|
||||
2026/04/02-21:13:37.109330 139629081356096 Options.writable_file_max_buffer_size: 1048576
|
||||
2026/04/02-21:13:37.109331 139629081356096 Options.delayed_write_rate : 16777216
|
||||
2026/04/02-21:13:37.109332 139629081356096 Options.max_total_wal_size: 0
|
||||
2026/04/02-21:13:37.109333 139629081356096 Options.delete_obsolete_files_period_micros: 21600000000
|
||||
2026/04/02-21:13:37.109333 139629081356096 Options.stats_dump_period_sec: 600
|
||||
2026/04/02-21:13:37.109334 139629081356096 Options.stats_persist_period_sec: 600
|
||||
2026/04/02-21:13:37.109335 139629081356096 Options.stats_history_buffer_size: 1048576
|
||||
2026/04/02-21:13:37.109335 139629081356096 Options.max_open_files: 4048
|
||||
2026/04/02-21:13:37.109336 139629081356096 Options.bytes_per_sync: 0
|
||||
2026/04/02-21:13:37.109337 139629081356096 Options.wal_bytes_per_sync: 0
|
||||
2026/04/02-21:13:37.109337 139629081356096 Options.strict_bytes_per_sync: 0
|
||||
2026/04/02-21:13:37.109338 139629081356096 Options.compaction_readahead_size: 2097152
|
||||
2026/04/02-21:13:37.109338 139629081356096 Options.max_background_flushes: -1
|
||||
2026/04/02-21:13:37.109339 139629081356096 Options.max_manifest_file_size: 1073741824
|
||||
2026/04/02-21:13:37.109340 139629081356096 Options.max_manifest_space_amp_pct: 500
|
||||
2026/04/02-21:13:37.109340 139629081356096 Options.manifest_preallocation_size: 4194304
|
||||
2026/04/02-21:13:37.109341 139629081356096 Options.daily_offpeak_time_utc:
|
||||
2026/04/02-21:13:37.109342 139629081356096 Compression algorithms supported:
|
||||
2026/04/02-21:13:37.109342 139629081356096 kCustomCompressionFE supported: 0
|
||||
2026/04/02-21:13:37.109343 139629081356096 kCustomCompressionFC supported: 0
|
||||
2026/04/02-21:13:37.109344 139629081356096 kCustomCompressionF8 supported: 0
|
||||
2026/04/02-21:13:37.109344 139629081356096 kCustomCompressionF7 supported: 0
|
||||
2026/04/02-21:13:37.109345 139629081356096 kCustomCompressionB2 supported: 0
|
||||
2026/04/02-21:13:37.109346 139629081356096 kLZ4Compression supported: 1
|
||||
2026/04/02-21:13:37.109347 139629081356096 kCustomCompression88 supported: 0
|
||||
2026/04/02-21:13:37.109347 139629081356096 kCustomCompressionD8 supported: 0
|
||||
2026/04/02-21:13:37.109348 139629081356096 kCustomCompression9F supported: 0
|
||||
2026/04/02-21:13:37.109349 139629081356096 kCustomCompressionD6 supported: 0
|
||||
2026/04/02-21:13:37.109350 139629081356096 kCustomCompressionA9 supported: 0
|
||||
2026/04/02-21:13:37.109350 139629081356096 kCustomCompressionEC supported: 0
|
||||
2026/04/02-21:13:37.109351 139629081356096 kCustomCompressionA3 supported: 0
|
||||
2026/04/02-21:13:37.109352 139629081356096 kCustomCompressionCB supported: 0
|
||||
2026/04/02-21:13:37.109352 139629081356096 kCustomCompression90 supported: 0
|
||||
2026/04/02-21:13:37.109353 139629081356096 kCustomCompressionA0 supported: 0
|
||||
2026/04/02-21:13:37.109354 139629081356096 kCustomCompressionC6 supported: 0
|
||||
2026/04/02-21:13:37.109354 139629081356096 kCustomCompression9D supported: 0
|
||||
2026/04/02-21:13:37.109355 139629081356096 kCustomCompression8B supported: 0
|
||||
2026/04/02-21:13:37.109355 139629081356096 kCustomCompressionA8 supported: 0
|
||||
2026/04/02-21:13:37.109356 139629081356096 kCustomCompression8D supported: 0
|
||||
2026/04/02-21:13:37.109357 139629081356096 kCustomCompression97 supported: 0
|
||||
2026/04/02-21:13:37.109357 139629081356096 kCustomCompression98 supported: 0
|
||||
2026/04/02-21:13:37.109358 139629081356096 kCustomCompressionAC supported: 0
|
||||
2026/04/02-21:13:37.109359 139629081356096 kCustomCompressionE9 supported: 0
|
||||
2026/04/02-21:13:37.109359 139629081356096 kCustomCompression96 supported: 0
|
||||
2026/04/02-21:13:37.109360 139629081356096 kCustomCompressionB1 supported: 0
|
||||
2026/04/02-21:13:37.109360 139629081356096 kCustomCompression95 supported: 0
|
||||
2026/04/02-21:13:37.109361 139629081356096 kCustomCompression84 supported: 0
|
||||
2026/04/02-21:13:37.109362 139629081356096 kCustomCompression91 supported: 0
|
||||
2026/04/02-21:13:37.109362 139629081356096 kCustomCompressionAB supported: 0
|
||||
2026/04/02-21:13:37.109363 139629081356096 kCustomCompressionB3 supported: 0
|
||||
2026/04/02-21:13:37.109364 139629081356096 kCustomCompression81 supported: 0
|
||||
2026/04/02-21:13:37.109364 139629081356096 kCustomCompressionDC supported: 0
|
||||
2026/04/02-21:13:37.109365 139629081356096 kBZip2Compression supported: 0
|
||||
2026/04/02-21:13:37.109366 139629081356096 kCustomCompressionBB supported: 0
|
||||
2026/04/02-21:13:37.109367 139629081356096 kCustomCompression9C supported: 0
|
||||
2026/04/02-21:13:37.109367 139629081356096 kCustomCompressionC9 supported: 0
|
||||
2026/04/02-21:13:37.109368 139629081356096 kCustomCompressionCC supported: 0
|
||||
2026/04/02-21:13:37.109369 139629081356096 kCustomCompression92 supported: 0
|
||||
2026/04/02-21:13:37.109369 139629081356096 kCustomCompressionB9 supported: 0
|
||||
2026/04/02-21:13:37.109370 139629081356096 kCustomCompression8F supported: 0
|
||||
2026/04/02-21:13:37.109370 139629081356096 kCustomCompression8A supported: 0
|
||||
2026/04/02-21:13:37.109371 139629081356096 kCustomCompression9B supported: 0
|
||||
2026/04/02-21:13:37.109372 139629081356096 kZSTD supported: 0
|
||||
2026/04/02-21:13:37.109372 139629081356096 kCustomCompressionAA supported: 0
|
||||
2026/04/02-21:13:37.109373 139629081356096 kCustomCompressionA2 supported: 0
|
||||
2026/04/02-21:13:37.109374 139629081356096 kZlibCompression supported: 0
|
||||
2026/04/02-21:13:37.109374 139629081356096 kXpressCompression supported: 0
|
||||
2026/04/02-21:13:37.109375 139629081356096 kCustomCompressionFD supported: 0
|
||||
2026/04/02-21:13:37.109376 139629081356096 kCustomCompressionE2 supported: 0
|
||||
2026/04/02-21:13:37.109376 139629081356096 kLZ4HCCompression supported: 1
|
||||
2026/04/02-21:13:37.109377 139629081356096 kCustomCompressionA6 supported: 0
|
||||
2026/04/02-21:13:37.109378 139629081356096 kCustomCompression85 supported: 0
|
||||
2026/04/02-21:13:37.109378 139629081356096 kCustomCompressionA4 supported: 0
|
||||
2026/04/02-21:13:37.109379 139629081356096 kCustomCompression86 supported: 0
|
||||
2026/04/02-21:13:37.109379 139629081356096 kCustomCompression83 supported: 0
|
||||
2026/04/02-21:13:37.109380 139629081356096 kCustomCompression87 supported: 0
|
||||
2026/04/02-21:13:37.109381 139629081356096 kCustomCompression89 supported: 0
|
||||
2026/04/02-21:13:37.109381 139629081356096 kCustomCompression8C supported: 0
|
||||
2026/04/02-21:13:37.109382 139629081356096 kCustomCompressionDB supported: 0
|
||||
2026/04/02-21:13:37.109383 139629081356096 kCustomCompressionF3 supported: 0
|
||||
2026/04/02-21:13:37.109383 139629081356096 kCustomCompressionE6 supported: 0
|
||||
2026/04/02-21:13:37.109384 139629081356096 kCustomCompression8E supported: 0
|
||||
2026/04/02-21:13:37.109384 139629081356096 kCustomCompressionDA supported: 0
|
||||
2026/04/02-21:13:37.109385 139629081356096 kCustomCompression93 supported: 0
|
||||
2026/04/02-21:13:37.109386 139629081356096 kCustomCompression94 supported: 0
|
||||
2026/04/02-21:13:37.109386 139629081356096 kCustomCompression9E supported: 0
|
||||
2026/04/02-21:13:37.109387 139629081356096 kCustomCompressionB4 supported: 0
|
||||
2026/04/02-21:13:37.109388 139629081356096 kCustomCompressionFB supported: 0
|
||||
2026/04/02-21:13:37.109388 139629081356096 kCustomCompressionB5 supported: 0
|
||||
2026/04/02-21:13:37.109389 139629081356096 kCustomCompressionD5 supported: 0
|
||||
2026/04/02-21:13:37.109389 139629081356096 kCustomCompressionB8 supported: 0
|
||||
2026/04/02-21:13:37.109390 139629081356096 kCustomCompressionD1 supported: 0
|
||||
2026/04/02-21:13:37.109391 139629081356096 kCustomCompressionBA supported: 0
|
||||
2026/04/02-21:13:37.109391 139629081356096 kCustomCompressionBC supported: 0
|
||||
2026/04/02-21:13:37.109392 139629081356096 kCustomCompressionCE supported: 0
|
||||
2026/04/02-21:13:37.109393 139629081356096 kCustomCompressionBD supported: 0
|
||||
2026/04/02-21:13:37.109393 139629081356096 kCustomCompressionC4 supported: 0
|
||||
2026/04/02-21:13:37.109394 139629081356096 kCustomCompression9A supported: 0
|
||||
2026/04/02-21:13:37.109394 139629081356096 kCustomCompression99 supported: 0
|
||||
2026/04/02-21:13:37.109395 139629081356096 kCustomCompressionBE supported: 0
|
||||
2026/04/02-21:13:37.109396 139629081356096 kCustomCompressionE5 supported: 0
|
||||
2026/04/02-21:13:37.109396 139629081356096 kCustomCompressionD9 supported: 0
|
||||
2026/04/02-21:13:37.109397 139629081356096 kCustomCompressionC1 supported: 0
|
||||
2026/04/02-21:13:37.109397 139629081356096 kCustomCompressionC5 supported: 0
|
||||
2026/04/02-21:13:37.109398 139629081356096 kCustomCompressionC2 supported: 0
|
||||
2026/04/02-21:13:37.109399 139629081356096 kCustomCompressionA5 supported: 0
|
||||
2026/04/02-21:13:37.109399 139629081356096 kCustomCompressionC7 supported: 0
|
||||
2026/04/02-21:13:37.109400 139629081356096 kCustomCompressionBF supported: 0
|
||||
2026/04/02-21:13:37.109400 139629081356096 kCustomCompressionE8 supported: 0
|
||||
2026/04/02-21:13:37.109401 139629081356096 kCustomCompressionC8 supported: 0
|
||||
2026/04/02-21:13:37.109402 139629081356096 kCustomCompressionAF supported: 0
|
||||
2026/04/02-21:13:37.109402 139629081356096 kCustomCompressionCA supported: 0
|
||||
2026/04/02-21:13:37.109403 139629081356096 kCustomCompressionCD supported: 0
|
||||
2026/04/02-21:13:37.109404 139629081356096 kCustomCompressionC0 supported: 0
|
||||
2026/04/02-21:13:37.109404 139629081356096 kCustomCompressionCF supported: 0
|
||||
2026/04/02-21:13:37.109405 139629081356096 kCustomCompressionF9 supported: 0
|
||||
2026/04/02-21:13:37.109406 139629081356096 kCustomCompressionD0 supported: 0
|
||||
2026/04/02-21:13:37.109406 139629081356096 kCustomCompressionD2 supported: 0
|
||||
2026/04/02-21:13:37.109407 139629081356096 kCustomCompressionAD supported: 0
|
||||
2026/04/02-21:13:37.109408 139629081356096 kCustomCompressionD3 supported: 0
|
||||
2026/04/02-21:13:37.109408 139629081356096 kCustomCompressionD4 supported: 0
|
||||
2026/04/02-21:13:37.109409 139629081356096 kCustomCompressionD7 supported: 0
|
||||
2026/04/02-21:13:37.109410 139629081356096 kCustomCompression82 supported: 0
|
||||
2026/04/02-21:13:37.109410 139629081356096 kCustomCompressionDD supported: 0
|
||||
2026/04/02-21:13:37.109411 139629081356096 kCustomCompressionC3 supported: 0
|
||||
2026/04/02-21:13:37.109411 139629081356096 kCustomCompressionEE supported: 0
|
||||
2026/04/02-21:13:37.109412 139629081356096 kCustomCompressionDE supported: 0
|
||||
2026/04/02-21:13:37.109413 139629081356096 kCustomCompressionDF supported: 0
|
||||
2026/04/02-21:13:37.109413 139629081356096 kCustomCompressionA7 supported: 0
|
||||
2026/04/02-21:13:37.109414 139629081356096 kCustomCompressionE0 supported: 0
|
||||
2026/04/02-21:13:37.109415 139629081356096 kCustomCompressionF1 supported: 0
|
||||
2026/04/02-21:13:37.109415 139629081356096 kCustomCompressionE1 supported: 0
|
||||
2026/04/02-21:13:37.109416 139629081356096 kCustomCompressionF5 supported: 0
|
||||
2026/04/02-21:13:37.109416 139629081356096 kCustomCompression80 supported: 0
|
||||
2026/04/02-21:13:37.109417 139629081356096 kCustomCompressionE3 supported: 0
|
||||
2026/04/02-21:13:37.109418 139629081356096 kCustomCompressionE4 supported: 0
|
||||
2026/04/02-21:13:37.109418 139629081356096 kCustomCompressionB0 supported: 0
|
||||
2026/04/02-21:13:37.109419 139629081356096 kCustomCompressionEA supported: 0
|
||||
2026/04/02-21:13:37.109419 139629081356096 kCustomCompressionFA supported: 0
|
||||
2026/04/02-21:13:37.109420 139629081356096 kCustomCompressionE7 supported: 0
|
||||
2026/04/02-21:13:37.109421 139629081356096 kCustomCompressionAE supported: 0
|
||||
2026/04/02-21:13:37.109421 139629081356096 kCustomCompressionEB supported: 0
|
||||
2026/04/02-21:13:37.109422 139629081356096 kCustomCompressionED supported: 0
|
||||
2026/04/02-21:13:37.109423 139629081356096 kCustomCompressionB6 supported: 0
|
||||
2026/04/02-21:13:37.109423 139629081356096 kCustomCompressionEF supported: 0
|
||||
2026/04/02-21:13:37.109424 139629081356096 kCustomCompressionF0 supported: 0
|
||||
2026/04/02-21:13:37.109424 139629081356096 kCustomCompressionB7 supported: 0
|
||||
2026/04/02-21:13:37.109425 139629081356096 kCustomCompressionF2 supported: 0
|
||||
2026/04/02-21:13:37.109426 139629081356096 kCustomCompressionA1 supported: 0
|
||||
2026/04/02-21:13:37.109426 139629081356096 kCustomCompressionF4 supported: 0
|
||||
2026/04/02-21:13:37.109427 139629081356096 kSnappyCompression supported: 0
|
||||
2026/04/02-21:13:37.109427 139629081356096 kCustomCompressionF6 supported: 0
|
||||
2026/04/02-21:13:37.109429 139629081356096 Fast CRC32 supported: Not supported on x86
|
||||
2026/04/02-21:13:37.109429 139629081356096 DMutex implementation: pthread_mutex_t
|
||||
2026/04/02-21:13:37.109430 139629081356096 Jemalloc supported: 0
|
||||
2026/04/02-21:13:37.109450 139629081356096 [WARN] [db/db_impl/db_impl_open.cc:2687] DB::Open() failed: IO error: lock hold by current process, acquire time 1775156918 acquiring thread 139629081356096: data/osint/oxigraph/LOCK: No locks available
|
||||
@@ -0,0 +1,238 @@
|
||||
2026/04/02-21:13:37.111137 139629081356096 RocksDB version: 10.10.1
|
||||
2026/04/02-21:13:37.111185 139629081356096 DB SUMMARY
|
||||
2026/04/02-21:13:37.111187 139629081356096 Host name (Env): Lucas
|
||||
2026/04/02-21:13:37.111188 139629081356096 DB Session ID: 86F26ZGOLUEYUL8ZU324
|
||||
2026/04/02-21:13:37.111205 139629081356096 CURRENT file: CURRENT
|
||||
2026/04/02-21:13:37.111206 139629081356096 IDENTITY file: IDENTITY
|
||||
2026/04/02-21:13:37.111208 139629081356096 MANIFEST file: MANIFEST-000026 size: 1785 Bytes
|
||||
2026/04/02-21:13:37.111209 139629081356096 SST files in data/osint/oxigraph dir, Total Num: 5, files: 000011.sst 000015.sst 000016.sst 000017.sst 000018.sst
|
||||
2026/04/02-21:13:37.111210 139629081356096 Write Ahead Log file in data/osint/oxigraph: 000025.log size: 0 ;
|
||||
2026/04/02-21:13:37.111220 139629081356096 Options.error_if_exists: 0
|
||||
2026/04/02-21:13:37.111221 139629081356096 Options.create_if_missing: 1
|
||||
2026/04/02-21:13:37.111230 139629081356096 Options.paranoid_checks: 1
|
||||
2026/04/02-21:13:37.111232 139629081356096 Options.flush_verify_memtable_count: 1
|
||||
2026/04/02-21:13:37.111233 139629081356096 Options.compaction_verify_record_count: 1
|
||||
2026/04/02-21:13:37.111233 139629081356096 Options.track_and_verify_wals_in_manifest: 0
|
||||
2026/04/02-21:13:37.111234 139629081356096 Options.track_and_verify_wals: 0
|
||||
2026/04/02-21:13:37.111235 139629081356096 Options.verify_sst_unique_id_in_manifest: 1
|
||||
2026/04/02-21:13:37.111236 139629081356096 Options.env: 0x3a912f30
|
||||
2026/04/02-21:13:37.111237 139629081356096 Options.fs: PosixFileSystem
|
||||
2026/04/02-21:13:37.111238 139629081356096 Options.info_log: 0x3aa73a10
|
||||
2026/04/02-21:13:37.111239 139629081356096 Options.max_file_opening_threads: 16
|
||||
2026/04/02-21:13:37.111240 139629081356096 Options.statistics: (nil)
|
||||
2026/04/02-21:13:37.111241 139629081356096 Options.use_fsync: 0
|
||||
2026/04/02-21:13:37.111241 139629081356096 Options.max_log_file_size: 1048576
|
||||
2026/04/02-21:13:37.111242 139629081356096 Options.log_file_time_to_roll: 0
|
||||
2026/04/02-21:13:37.111243 139629081356096 Options.keep_log_file_num: 1000
|
||||
2026/04/02-21:13:37.111243 139629081356096 Options.recycle_log_file_num: 10
|
||||
2026/04/02-21:13:37.111244 139629081356096 Options.allow_fallocate: 1
|
||||
2026/04/02-21:13:37.111245 139629081356096 Options.allow_mmap_reads: 0
|
||||
2026/04/02-21:13:37.111245 139629081356096 Options.allow_mmap_writes: 0
|
||||
2026/04/02-21:13:37.111246 139629081356096 Options.use_direct_reads: 0
|
||||
2026/04/02-21:13:37.111247 139629081356096 Options.use_direct_io_for_flush_and_compaction: 0
|
||||
2026/04/02-21:13:37.111262 139629081356096 Options.create_missing_column_families: 1
|
||||
2026/04/02-21:13:37.111263 139629081356096 Options.db_log_dir:
|
||||
2026/04/02-21:13:37.111264 139629081356096 Options.wal_dir:
|
||||
2026/04/02-21:13:37.111265 139629081356096 Options.table_cache_numshardbits: 6
|
||||
2026/04/02-21:13:37.111266 139629081356096 Options.WAL_ttl_seconds: 0
|
||||
2026/04/02-21:13:37.111267 139629081356096 Options.WAL_size_limit_MB: 0
|
||||
2026/04/02-21:13:37.111267 139629081356096 Options.max_write_batch_group_size_bytes: 1048576
|
||||
2026/04/02-21:13:37.111268 139629081356096 Options.is_fd_close_on_exec: 1
|
||||
2026/04/02-21:13:37.111269 139629081356096 Options.advise_random_on_open: 1
|
||||
2026/04/02-21:13:37.111270 139629081356096 Options.db_write_buffer_size: 0
|
||||
2026/04/02-21:13:37.111270 139629081356096 Options.write_buffer_manager: 0x3ab24970
|
||||
2026/04/02-21:13:37.111271 139629081356096 Options.use_adaptive_mutex: 0
|
||||
2026/04/02-21:13:37.111272 139629081356096 Options.rate_limiter: (nil)
|
||||
2026/04/02-21:13:37.111273 139629081356096 Options.sst_file_manager.rate_bytes_per_sec: 0
|
||||
2026/04/02-21:13:37.111274 139629081356096 Options.wal_recovery_mode: 2
|
||||
2026/04/02-21:13:37.111274 139629081356096 Options.enable_thread_tracking: 0
|
||||
2026/04/02-21:13:37.111275 139629081356096 Options.enable_pipelined_write: 0
|
||||
2026/04/02-21:13:37.111276 139629081356096 Options.unordered_write: 0
|
||||
2026/04/02-21:13:37.111276 139629081356096 Options.allow_concurrent_memtable_write: 1
|
||||
2026/04/02-21:13:37.111277 139629081356096 Options.enable_write_thread_adaptive_yield: 1
|
||||
2026/04/02-21:13:37.111277 139629081356096 Options.write_thread_max_yield_usec: 100
|
||||
2026/04/02-21:13:37.111278 139629081356096 Options.write_thread_slow_yield_usec: 3
|
||||
2026/04/02-21:13:37.111279 139629081356096 Options.row_cache: None
|
||||
2026/04/02-21:13:37.111280 139629081356096 Options.wal_filter: None
|
||||
2026/04/02-21:13:37.111280 139629081356096 Options.avoid_flush_during_recovery: 0
|
||||
2026/04/02-21:13:37.111281 139629081356096 Options.allow_ingest_behind: 0
|
||||
2026/04/02-21:13:37.111281 139629081356096 Options.two_write_queues: 0
|
||||
2026/04/02-21:13:37.111282 139629081356096 Options.manual_wal_flush: 0
|
||||
2026/04/02-21:13:37.111283 139629081356096 Options.wal_compression: 0
|
||||
2026/04/02-21:13:37.111283 139629081356096 Options.background_close_inactive_wals: 0
|
||||
2026/04/02-21:13:37.111284 139629081356096 Options.atomic_flush: 0
|
||||
2026/04/02-21:13:37.111285 139629081356096 Options.avoid_unnecessary_blocking_io: 0
|
||||
2026/04/02-21:13:37.111285 139629081356096 Options.prefix_seek_opt_in_only: 0
|
||||
2026/04/02-21:13:37.111286 139629081356096 Options.persist_stats_to_disk: 0
|
||||
2026/04/02-21:13:37.111287 139629081356096 Options.write_dbid_to_manifest: 1
|
||||
2026/04/02-21:13:37.111287 139629081356096 Options.write_identity_file: 1
|
||||
2026/04/02-21:13:37.111288 139629081356096 Options.log_readahead_size: 0
|
||||
2026/04/02-21:13:37.111289 139629081356096 Options.file_checksum_gen_factory: Unknown
|
||||
2026/04/02-21:13:37.111289 139629081356096 Options.best_efforts_recovery: 0
|
||||
2026/04/02-21:13:37.111290 139629081356096 Options.max_bgerror_resume_count: 2147483647
|
||||
2026/04/02-21:13:37.111291 139629081356096 Options.bgerror_resume_retry_interval: 1000000
|
||||
2026/04/02-21:13:37.111291 139629081356096 Options.allow_data_in_errors: 0
|
||||
2026/04/02-21:13:37.111292 139629081356096 Options.db_host_id: __hostname__
|
||||
2026/04/02-21:13:37.111293 139629081356096 Options.enforce_single_del_contracts: true
|
||||
2026/04/02-21:13:37.111293 139629081356096 Options.metadata_write_temperature: kUnknown
|
||||
2026/04/02-21:13:37.111294 139629081356096 Options.wal_write_temperature: kUnknown
|
||||
2026/04/02-21:13:37.111295 139629081356096 Options.max_background_jobs: 24
|
||||
2026/04/02-21:13:37.111295 139629081356096 Options.max_background_compactions: -1
|
||||
2026/04/02-21:13:37.111296 139629081356096 Options.max_subcompactions: 1
|
||||
2026/04/02-21:13:37.111297 139629081356096 Options.avoid_flush_during_shutdown: 0
|
||||
2026/04/02-21:13:37.111298 139629081356096 Options.writable_file_max_buffer_size: 1048576
|
||||
2026/04/02-21:13:37.111298 139629081356096 Options.delayed_write_rate : 16777216
|
||||
2026/04/02-21:13:37.111299 139629081356096 Options.max_total_wal_size: 0
|
||||
2026/04/02-21:13:37.111300 139629081356096 Options.delete_obsolete_files_period_micros: 21600000000
|
||||
2026/04/02-21:13:37.111300 139629081356096 Options.stats_dump_period_sec: 600
|
||||
2026/04/02-21:13:37.111301 139629081356096 Options.stats_persist_period_sec: 600
|
||||
2026/04/02-21:13:37.111302 139629081356096 Options.stats_history_buffer_size: 1048576
|
||||
2026/04/02-21:13:37.111302 139629081356096 Options.max_open_files: 4048
|
||||
2026/04/02-21:13:37.111303 139629081356096 Options.bytes_per_sync: 0
|
||||
2026/04/02-21:13:37.111303 139629081356096 Options.wal_bytes_per_sync: 0
|
||||
2026/04/02-21:13:37.111304 139629081356096 Options.strict_bytes_per_sync: 0
|
||||
2026/04/02-21:13:37.111305 139629081356096 Options.compaction_readahead_size: 2097152
|
||||
2026/04/02-21:13:37.111305 139629081356096 Options.max_background_flushes: -1
|
||||
2026/04/02-21:13:37.111306 139629081356096 Options.max_manifest_file_size: 1073741824
|
||||
2026/04/02-21:13:37.111307 139629081356096 Options.max_manifest_space_amp_pct: 500
|
||||
2026/04/02-21:13:37.111307 139629081356096 Options.manifest_preallocation_size: 4194304
|
||||
2026/04/02-21:13:37.111308 139629081356096 Options.daily_offpeak_time_utc:
|
||||
2026/04/02-21:13:37.111308 139629081356096 Compression algorithms supported:
|
||||
2026/04/02-21:13:37.111309 139629081356096 kCustomCompressionFE supported: 0
|
||||
2026/04/02-21:13:37.111310 139629081356096 kCustomCompressionFC supported: 0
|
||||
2026/04/02-21:13:37.111311 139629081356096 kCustomCompressionF8 supported: 0
|
||||
2026/04/02-21:13:37.111312 139629081356096 kCustomCompressionF7 supported: 0
|
||||
2026/04/02-21:13:37.111313 139629081356096 kCustomCompressionB2 supported: 0
|
||||
2026/04/02-21:13:37.111314 139629081356096 kLZ4Compression supported: 1
|
||||
2026/04/02-21:13:37.111314 139629081356096 kCustomCompression88 supported: 0
|
||||
2026/04/02-21:13:37.111315 139629081356096 kCustomCompressionD8 supported: 0
|
||||
2026/04/02-21:13:37.111316 139629081356096 kCustomCompression9F supported: 0
|
||||
2026/04/02-21:13:37.111317 139629081356096 kCustomCompressionD6 supported: 0
|
||||
2026/04/02-21:13:37.111317 139629081356096 kCustomCompressionA9 supported: 0
|
||||
2026/04/02-21:13:37.111319 139629081356096 kCustomCompressionEC supported: 0
|
||||
2026/04/02-21:13:37.111319 139629081356096 kCustomCompressionA3 supported: 0
|
||||
2026/04/02-21:13:37.111320 139629081356096 kCustomCompressionCB supported: 0
|
||||
2026/04/02-21:13:37.111321 139629081356096 kCustomCompression90 supported: 0
|
||||
2026/04/02-21:13:37.111321 139629081356096 kCustomCompressionA0 supported: 0
|
||||
2026/04/02-21:13:37.111322 139629081356096 kCustomCompressionC6 supported: 0
|
||||
2026/04/02-21:13:37.111322 139629081356096 kCustomCompression9D supported: 0
|
||||
2026/04/02-21:13:37.111323 139629081356096 kCustomCompression8B supported: 0
|
||||
2026/04/02-21:13:37.111324 139629081356096 kCustomCompressionA8 supported: 0
|
||||
2026/04/02-21:13:37.111324 139629081356096 kCustomCompression8D supported: 0
|
||||
2026/04/02-21:13:37.111325 139629081356096 kCustomCompression97 supported: 0
|
||||
2026/04/02-21:13:37.111326 139629081356096 kCustomCompression98 supported: 0
|
||||
2026/04/02-21:13:37.111326 139629081356096 kCustomCompressionAC supported: 0
|
||||
2026/04/02-21:13:37.111327 139629081356096 kCustomCompressionE9 supported: 0
|
||||
2026/04/02-21:13:37.111328 139629081356096 kCustomCompression96 supported: 0
|
||||
2026/04/02-21:13:37.111328 139629081356096 kCustomCompressionB1 supported: 0
|
||||
2026/04/02-21:13:37.111329 139629081356096 kCustomCompression95 supported: 0
|
||||
2026/04/02-21:13:37.111330 139629081356096 kCustomCompression84 supported: 0
|
||||
2026/04/02-21:13:37.111330 139629081356096 kCustomCompression91 supported: 0
|
||||
2026/04/02-21:13:37.111331 139629081356096 kCustomCompressionAB supported: 0
|
||||
2026/04/02-21:13:37.111332 139629081356096 kCustomCompressionB3 supported: 0
|
||||
2026/04/02-21:13:37.111332 139629081356096 kCustomCompression81 supported: 0
|
||||
2026/04/02-21:13:37.111333 139629081356096 kCustomCompressionDC supported: 0
|
||||
2026/04/02-21:13:37.111334 139629081356096 kBZip2Compression supported: 0
|
||||
2026/04/02-21:13:37.111334 139629081356096 kCustomCompressionBB supported: 0
|
||||
2026/04/02-21:13:37.111335 139629081356096 kCustomCompression9C supported: 0
|
||||
2026/04/02-21:13:37.111336 139629081356096 kCustomCompressionC9 supported: 0
|
||||
2026/04/02-21:13:37.111336 139629081356096 kCustomCompressionCC supported: 0
|
||||
2026/04/02-21:13:37.111337 139629081356096 kCustomCompression92 supported: 0
|
||||
2026/04/02-21:13:37.111338 139629081356096 kCustomCompressionB9 supported: 0
|
||||
2026/04/02-21:13:37.111338 139629081356096 kCustomCompression8F supported: 0
|
||||
2026/04/02-21:13:37.111339 139629081356096 kCustomCompression8A supported: 0
|
||||
2026/04/02-21:13:37.111339 139629081356096 kCustomCompression9B supported: 0
|
||||
2026/04/02-21:13:37.111340 139629081356096 kZSTD supported: 0
|
||||
2026/04/02-21:13:37.111341 139629081356096 kCustomCompressionAA supported: 0
|
||||
2026/04/02-21:13:37.111341 139629081356096 kCustomCompressionA2 supported: 0
|
||||
2026/04/02-21:13:37.111342 139629081356096 kZlibCompression supported: 0
|
||||
2026/04/02-21:13:37.111343 139629081356096 kXpressCompression supported: 0
|
||||
2026/04/02-21:13:37.111343 139629081356096 kCustomCompressionFD supported: 0
|
||||
2026/04/02-21:13:37.111344 139629081356096 kCustomCompressionE2 supported: 0
|
||||
2026/04/02-21:13:37.111345 139629081356096 kLZ4HCCompression supported: 1
|
||||
2026/04/02-21:13:37.111345 139629081356096 kCustomCompressionA6 supported: 0
|
||||
2026/04/02-21:13:37.111346 139629081356096 kCustomCompression85 supported: 0
|
||||
2026/04/02-21:13:37.111347 139629081356096 kCustomCompressionA4 supported: 0
|
||||
2026/04/02-21:13:37.111347 139629081356096 kCustomCompression86 supported: 0
|
||||
2026/04/02-21:13:37.111348 139629081356096 kCustomCompression83 supported: 0
|
||||
2026/04/02-21:13:37.111348 139629081356096 kCustomCompression87 supported: 0
|
||||
2026/04/02-21:13:37.111349 139629081356096 kCustomCompression89 supported: 0
|
||||
2026/04/02-21:13:37.111350 139629081356096 kCustomCompression8C supported: 0
|
||||
2026/04/02-21:13:37.111350 139629081356096 kCustomCompressionDB supported: 0
|
||||
2026/04/02-21:13:37.111351 139629081356096 kCustomCompressionF3 supported: 0
|
||||
2026/04/02-21:13:37.111352 139629081356096 kCustomCompressionE6 supported: 0
|
||||
2026/04/02-21:13:37.111352 139629081356096 kCustomCompression8E supported: 0
|
||||
2026/04/02-21:13:37.111353 139629081356096 kCustomCompressionDA supported: 0
|
||||
2026/04/02-21:13:37.111353 139629081356096 kCustomCompression93 supported: 0
|
||||
2026/04/02-21:13:37.111354 139629081356096 kCustomCompression94 supported: 0
|
||||
2026/04/02-21:13:37.111355 139629081356096 kCustomCompression9E supported: 0
|
||||
2026/04/02-21:13:37.111355 139629081356096 kCustomCompressionB4 supported: 0
|
||||
2026/04/02-21:13:37.111356 139629081356096 kCustomCompressionFB supported: 0
|
||||
2026/04/02-21:13:37.111357 139629081356096 kCustomCompressionB5 supported: 0
|
||||
2026/04/02-21:13:37.111357 139629081356096 kCustomCompressionD5 supported: 0
|
||||
2026/04/02-21:13:37.111358 139629081356096 kCustomCompressionB8 supported: 0
|
||||
2026/04/02-21:13:37.111358 139629081356096 kCustomCompressionD1 supported: 0
|
||||
2026/04/02-21:13:37.111359 139629081356096 kCustomCompressionBA supported: 0
|
||||
2026/04/02-21:13:37.111360 139629081356096 kCustomCompressionBC supported: 0
|
||||
2026/04/02-21:13:37.111360 139629081356096 kCustomCompressionCE supported: 0
|
||||
2026/04/02-21:13:37.111361 139629081356096 kCustomCompressionBD supported: 0
|
||||
2026/04/02-21:13:37.111362 139629081356096 kCustomCompressionC4 supported: 0
|
||||
2026/04/02-21:13:37.111362 139629081356096 kCustomCompression9A supported: 0
|
||||
2026/04/02-21:13:37.111363 139629081356096 kCustomCompression99 supported: 0
|
||||
2026/04/02-21:13:37.111363 139629081356096 kCustomCompressionBE supported: 0
|
||||
2026/04/02-21:13:37.111364 139629081356096 kCustomCompressionE5 supported: 0
|
||||
2026/04/02-21:13:37.111365 139629081356096 kCustomCompressionD9 supported: 0
|
||||
2026/04/02-21:13:37.111365 139629081356096 kCustomCompressionC1 supported: 0
|
||||
2026/04/02-21:13:37.111366 139629081356096 kCustomCompressionC5 supported: 0
|
||||
2026/04/02-21:13:37.111367 139629081356096 kCustomCompressionC2 supported: 0
|
||||
2026/04/02-21:13:37.111367 139629081356096 kCustomCompressionA5 supported: 0
|
||||
2026/04/02-21:13:37.111368 139629081356096 kCustomCompressionC7 supported: 0
|
||||
2026/04/02-21:13:37.111368 139629081356096 kCustomCompressionBF supported: 0
|
||||
2026/04/02-21:13:37.111369 139629081356096 kCustomCompressionE8 supported: 0
|
||||
2026/04/02-21:13:37.111370 139629081356096 kCustomCompressionC8 supported: 0
|
||||
2026/04/02-21:13:37.111370 139629081356096 kCustomCompressionAF supported: 0
|
||||
2026/04/02-21:13:37.111371 139629081356096 kCustomCompressionCA supported: 0
|
||||
2026/04/02-21:13:37.111372 139629081356096 kCustomCompressionCD supported: 0
|
||||
2026/04/02-21:13:37.111372 139629081356096 kCustomCompressionC0 supported: 0
|
||||
2026/04/02-21:13:37.111373 139629081356096 kCustomCompressionCF supported: 0
|
||||
2026/04/02-21:13:37.111374 139629081356096 kCustomCompressionF9 supported: 0
|
||||
2026/04/02-21:13:37.111374 139629081356096 kCustomCompressionD0 supported: 0
|
||||
2026/04/02-21:13:37.111375 139629081356096 kCustomCompressionD2 supported: 0
|
||||
2026/04/02-21:13:37.111375 139629081356096 kCustomCompressionAD supported: 0
|
||||
2026/04/02-21:13:37.111376 139629081356096 kCustomCompressionD3 supported: 0
|
||||
2026/04/02-21:13:37.111377 139629081356096 kCustomCompressionD4 supported: 0
|
||||
2026/04/02-21:13:37.111377 139629081356096 kCustomCompressionD7 supported: 0
|
||||
2026/04/02-21:13:37.111378 139629081356096 kCustomCompression82 supported: 0
|
||||
2026/04/02-21:13:37.111378 139629081356096 kCustomCompressionDD supported: 0
|
||||
2026/04/02-21:13:37.111379 139629081356096 kCustomCompressionC3 supported: 0
|
||||
2026/04/02-21:13:37.111380 139629081356096 kCustomCompressionEE supported: 0
|
||||
2026/04/02-21:13:37.111380 139629081356096 kCustomCompressionDE supported: 0
|
||||
2026/04/02-21:13:37.111381 139629081356096 kCustomCompressionDF supported: 0
|
||||
2026/04/02-21:13:37.111382 139629081356096 kCustomCompressionA7 supported: 0
|
||||
2026/04/02-21:13:37.111382 139629081356096 kCustomCompressionE0 supported: 0
|
||||
2026/04/02-21:13:37.111383 139629081356096 kCustomCompressionF1 supported: 0
|
||||
2026/04/02-21:13:37.111383 139629081356096 kCustomCompressionE1 supported: 0
|
||||
2026/04/02-21:13:37.111384 139629081356096 kCustomCompressionF5 supported: 0
|
||||
2026/04/02-21:13:37.111385 139629081356096 kCustomCompression80 supported: 0
|
||||
2026/04/02-21:13:37.111385 139629081356096 kCustomCompressionE3 supported: 0
|
||||
2026/04/02-21:13:37.111386 139629081356096 kCustomCompressionE4 supported: 0
|
||||
2026/04/02-21:13:37.111387 139629081356096 kCustomCompressionB0 supported: 0
|
||||
2026/04/02-21:13:37.111387 139629081356096 kCustomCompressionEA supported: 0
|
||||
2026/04/02-21:13:37.111388 139629081356096 kCustomCompressionFA supported: 0
|
||||
2026/04/02-21:13:37.111389 139629081356096 kCustomCompressionE7 supported: 0
|
||||
2026/04/02-21:13:37.111389 139629081356096 kCustomCompressionAE supported: 0
|
||||
2026/04/02-21:13:37.111390 139629081356096 kCustomCompressionEB supported: 0
|
||||
2026/04/02-21:13:37.111390 139629081356096 kCustomCompressionED supported: 0
|
||||
2026/04/02-21:13:37.111391 139629081356096 kCustomCompressionB6 supported: 0
|
||||
2026/04/02-21:13:37.111392 139629081356096 kCustomCompressionEF supported: 0
|
||||
2026/04/02-21:13:37.111392 139629081356096 kCustomCompressionF0 supported: 0
|
||||
2026/04/02-21:13:37.111393 139629081356096 kCustomCompressionB7 supported: 0
|
||||
2026/04/02-21:13:37.111394 139629081356096 kCustomCompressionF2 supported: 0
|
||||
2026/04/02-21:13:37.111394 139629081356096 kCustomCompressionA1 supported: 0
|
||||
2026/04/02-21:13:37.111395 139629081356096 kCustomCompressionF4 supported: 0
|
||||
2026/04/02-21:13:37.111395 139629081356096 kSnappyCompression supported: 0
|
||||
2026/04/02-21:13:37.111396 139629081356096 kCustomCompressionF6 supported: 0
|
||||
2026/04/02-21:13:37.111397 139629081356096 Fast CRC32 supported: Not supported on x86
|
||||
2026/04/02-21:13:37.111398 139629081356096 DMutex implementation: pthread_mutex_t
|
||||
2026/04/02-21:13:37.111399 139629081356096 Jemalloc supported: 0
|
||||
2026/04/02-21:13:37.111423 139629081356096 [WARN] [db/db_impl/db_impl_open.cc:2687] DB::Open() failed: IO error: lock hold by current process, acquire time 1775156918 acquiring thread 139629081356096: data/osint/oxigraph/LOCK: No locks available
|
||||
@@ -0,0 +1,238 @@
|
||||
2026/04/02-21:13:37.113110 139629081356096 RocksDB version: 10.10.1
|
||||
2026/04/02-21:13:37.113133 139629081356096 DB SUMMARY
|
||||
2026/04/02-21:13:37.113135 139629081356096 Host name (Env): Lucas
|
||||
2026/04/02-21:13:37.113136 139629081356096 DB Session ID: 86F26ZGOLUEYUL8ZU325
|
||||
2026/04/02-21:13:37.113154 139629081356096 CURRENT file: CURRENT
|
||||
2026/04/02-21:13:37.113155 139629081356096 IDENTITY file: IDENTITY
|
||||
2026/04/02-21:13:37.113157 139629081356096 MANIFEST file: MANIFEST-000026 size: 1785 Bytes
|
||||
2026/04/02-21:13:37.113158 139629081356096 SST files in data/osint/oxigraph dir, Total Num: 5, files: 000011.sst 000015.sst 000016.sst 000017.sst 000018.sst
|
||||
2026/04/02-21:13:37.113159 139629081356096 Write Ahead Log file in data/osint/oxigraph: 000025.log size: 0 ;
|
||||
2026/04/02-21:13:37.113161 139629081356096 Options.error_if_exists: 0
|
||||
2026/04/02-21:13:37.113162 139629081356096 Options.create_if_missing: 1
|
||||
2026/04/02-21:13:37.113162 139629081356096 Options.paranoid_checks: 1
|
||||
2026/04/02-21:13:37.113163 139629081356096 Options.flush_verify_memtable_count: 1
|
||||
2026/04/02-21:13:37.113164 139629081356096 Options.compaction_verify_record_count: 1
|
||||
2026/04/02-21:13:37.113165 139629081356096 Options.track_and_verify_wals_in_manifest: 0
|
||||
2026/04/02-21:13:37.113165 139629081356096 Options.track_and_verify_wals: 0
|
||||
2026/04/02-21:13:37.113167 139629081356096 Options.verify_sst_unique_id_in_manifest: 1
|
||||
2026/04/02-21:13:37.113167 139629081356096 Options.env: 0x3a912f30
|
||||
2026/04/02-21:13:37.113168 139629081356096 Options.fs: PosixFileSystem
|
||||
2026/04/02-21:13:37.113169 139629081356096 Options.info_log: 0x3aa73a10
|
||||
2026/04/02-21:13:37.113170 139629081356096 Options.max_file_opening_threads: 16
|
||||
2026/04/02-21:13:37.113171 139629081356096 Options.statistics: (nil)
|
||||
2026/04/02-21:13:37.113171 139629081356096 Options.use_fsync: 0
|
||||
2026/04/02-21:13:37.113172 139629081356096 Options.max_log_file_size: 1048576
|
||||
2026/04/02-21:13:37.113173 139629081356096 Options.log_file_time_to_roll: 0
|
||||
2026/04/02-21:13:37.113173 139629081356096 Options.keep_log_file_num: 1000
|
||||
2026/04/02-21:13:37.113174 139629081356096 Options.recycle_log_file_num: 10
|
||||
2026/04/02-21:13:37.113175 139629081356096 Options.allow_fallocate: 1
|
||||
2026/04/02-21:13:37.113175 139629081356096 Options.allow_mmap_reads: 0
|
||||
2026/04/02-21:13:37.113176 139629081356096 Options.allow_mmap_writes: 0
|
||||
2026/04/02-21:13:37.113176 139629081356096 Options.use_direct_reads: 0
|
||||
2026/04/02-21:13:37.113177 139629081356096 Options.use_direct_io_for_flush_and_compaction: 0
|
||||
2026/04/02-21:13:37.113178 139629081356096 Options.create_missing_column_families: 1
|
||||
2026/04/02-21:13:37.113178 139629081356096 Options.db_log_dir:
|
||||
2026/04/02-21:13:37.113179 139629081356096 Options.wal_dir:
|
||||
2026/04/02-21:13:37.113180 139629081356096 Options.table_cache_numshardbits: 6
|
||||
2026/04/02-21:13:37.113180 139629081356096 Options.WAL_ttl_seconds: 0
|
||||
2026/04/02-21:13:37.113181 139629081356096 Options.WAL_size_limit_MB: 0
|
||||
2026/04/02-21:13:37.113182 139629081356096 Options.max_write_batch_group_size_bytes: 1048576
|
||||
2026/04/02-21:13:37.113183 139629081356096 Options.is_fd_close_on_exec: 1
|
||||
2026/04/02-21:13:37.113183 139629081356096 Options.advise_random_on_open: 1
|
||||
2026/04/02-21:13:37.113184 139629081356096 Options.db_write_buffer_size: 0
|
||||
2026/04/02-21:13:37.113184 139629081356096 Options.write_buffer_manager: 0x3a9aea30
|
||||
2026/04/02-21:13:37.113185 139629081356096 Options.use_adaptive_mutex: 0
|
||||
2026/04/02-21:13:37.113186 139629081356096 Options.rate_limiter: (nil)
|
||||
2026/04/02-21:13:37.113187 139629081356096 Options.sst_file_manager.rate_bytes_per_sec: 0
|
||||
2026/04/02-21:13:37.113187 139629081356096 Options.wal_recovery_mode: 2
|
||||
2026/04/02-21:13:37.113188 139629081356096 Options.enable_thread_tracking: 0
|
||||
2026/04/02-21:13:37.113188 139629081356096 Options.enable_pipelined_write: 0
|
||||
2026/04/02-21:13:37.113189 139629081356096 Options.unordered_write: 0
|
||||
2026/04/02-21:13:37.113190 139629081356096 Options.allow_concurrent_memtable_write: 1
|
||||
2026/04/02-21:13:37.113190 139629081356096 Options.enable_write_thread_adaptive_yield: 1
|
||||
2026/04/02-21:13:37.113191 139629081356096 Options.write_thread_max_yield_usec: 100
|
||||
2026/04/02-21:13:37.113191 139629081356096 Options.write_thread_slow_yield_usec: 3
|
||||
2026/04/02-21:13:37.113192 139629081356096 Options.row_cache: None
|
||||
2026/04/02-21:13:37.113193 139629081356096 Options.wal_filter: None
|
||||
2026/04/02-21:13:37.113194 139629081356096 Options.avoid_flush_during_recovery: 0
|
||||
2026/04/02-21:13:37.113194 139629081356096 Options.allow_ingest_behind: 0
|
||||
2026/04/02-21:13:37.113195 139629081356096 Options.two_write_queues: 0
|
||||
2026/04/02-21:13:37.113195 139629081356096 Options.manual_wal_flush: 0
|
||||
2026/04/02-21:13:37.113196 139629081356096 Options.wal_compression: 0
|
||||
2026/04/02-21:13:37.113197 139629081356096 Options.background_close_inactive_wals: 0
|
||||
2026/04/02-21:13:37.113197 139629081356096 Options.atomic_flush: 0
|
||||
2026/04/02-21:13:37.113198 139629081356096 Options.avoid_unnecessary_blocking_io: 0
|
||||
2026/04/02-21:13:37.113199 139629081356096 Options.prefix_seek_opt_in_only: 0
|
||||
2026/04/02-21:13:37.113199 139629081356096 Options.persist_stats_to_disk: 0
|
||||
2026/04/02-21:13:37.113200 139629081356096 Options.write_dbid_to_manifest: 1
|
||||
2026/04/02-21:13:37.113200 139629081356096 Options.write_identity_file: 1
|
||||
2026/04/02-21:13:37.113201 139629081356096 Options.log_readahead_size: 0
|
||||
2026/04/02-21:13:37.113202 139629081356096 Options.file_checksum_gen_factory: Unknown
|
||||
2026/04/02-21:13:37.113202 139629081356096 Options.best_efforts_recovery: 0
|
||||
2026/04/02-21:13:37.113203 139629081356096 Options.max_bgerror_resume_count: 2147483647
|
||||
2026/04/02-21:13:37.113204 139629081356096 Options.bgerror_resume_retry_interval: 1000000
|
||||
2026/04/02-21:13:37.113204 139629081356096 Options.allow_data_in_errors: 0
|
||||
2026/04/02-21:13:37.113205 139629081356096 Options.db_host_id: __hostname__
|
||||
2026/04/02-21:13:37.113206 139629081356096 Options.enforce_single_del_contracts: true
|
||||
2026/04/02-21:13:37.113207 139629081356096 Options.metadata_write_temperature: kUnknown
|
||||
2026/04/02-21:13:37.113208 139629081356096 Options.wal_write_temperature: kUnknown
|
||||
2026/04/02-21:13:37.113208 139629081356096 Options.max_background_jobs: 24
|
||||
2026/04/02-21:13:37.113209 139629081356096 Options.max_background_compactions: -1
|
||||
2026/04/02-21:13:37.113209 139629081356096 Options.max_subcompactions: 1
|
||||
2026/04/02-21:13:37.113210 139629081356096 Options.avoid_flush_during_shutdown: 0
|
||||
2026/04/02-21:13:37.113211 139629081356096 Options.writable_file_max_buffer_size: 1048576
|
||||
2026/04/02-21:13:37.113212 139629081356096 Options.delayed_write_rate : 16777216
|
||||
2026/04/02-21:13:37.113212 139629081356096 Options.max_total_wal_size: 0
|
||||
2026/04/02-21:13:37.113213 139629081356096 Options.delete_obsolete_files_period_micros: 21600000000
|
||||
2026/04/02-21:13:37.113214 139629081356096 Options.stats_dump_period_sec: 600
|
||||
2026/04/02-21:13:37.113214 139629081356096 Options.stats_persist_period_sec: 600
|
||||
2026/04/02-21:13:37.113215 139629081356096 Options.stats_history_buffer_size: 1048576
|
||||
2026/04/02-21:13:37.113215 139629081356096 Options.max_open_files: 4048
|
||||
2026/04/02-21:13:37.113216 139629081356096 Options.bytes_per_sync: 0
|
||||
2026/04/02-21:13:37.113217 139629081356096 Options.wal_bytes_per_sync: 0
|
||||
2026/04/02-21:13:37.113217 139629081356096 Options.strict_bytes_per_sync: 0
|
||||
2026/04/02-21:13:37.113218 139629081356096 Options.compaction_readahead_size: 2097152
|
||||
2026/04/02-21:13:37.113219 139629081356096 Options.max_background_flushes: -1
|
||||
2026/04/02-21:13:37.113219 139629081356096 Options.max_manifest_file_size: 1073741824
|
||||
2026/04/02-21:13:37.113220 139629081356096 Options.max_manifest_space_amp_pct: 500
|
||||
2026/04/02-21:13:37.113221 139629081356096 Options.manifest_preallocation_size: 4194304
|
||||
2026/04/02-21:13:37.113221 139629081356096 Options.daily_offpeak_time_utc:
|
||||
2026/04/02-21:13:37.113222 139629081356096 Compression algorithms supported:
|
||||
2026/04/02-21:13:37.113223 139629081356096 kCustomCompressionFE supported: 0
|
||||
2026/04/02-21:13:37.113224 139629081356096 kCustomCompressionFC supported: 0
|
||||
2026/04/02-21:13:37.113225 139629081356096 kCustomCompressionF8 supported: 0
|
||||
2026/04/02-21:13:37.113225 139629081356096 kCustomCompressionF7 supported: 0
|
||||
2026/04/02-21:13:37.113226 139629081356096 kCustomCompressionB2 supported: 0
|
||||
2026/04/02-21:13:37.113227 139629081356096 kLZ4Compression supported: 1
|
||||
2026/04/02-21:13:37.113228 139629081356096 kCustomCompression88 supported: 0
|
||||
2026/04/02-21:13:37.113228 139629081356096 kCustomCompressionD8 supported: 0
|
||||
2026/04/02-21:13:37.113229 139629081356096 kCustomCompression9F supported: 0
|
||||
2026/04/02-21:13:37.113230 139629081356096 kCustomCompressionD6 supported: 0
|
||||
2026/04/02-21:13:37.113230 139629081356096 kCustomCompressionA9 supported: 0
|
||||
2026/04/02-21:13:37.113231 139629081356096 kCustomCompressionEC supported: 0
|
||||
2026/04/02-21:13:37.113232 139629081356096 kCustomCompressionA3 supported: 0
|
||||
2026/04/02-21:13:37.113233 139629081356096 kCustomCompressionCB supported: 0
|
||||
2026/04/02-21:13:37.113233 139629081356096 kCustomCompression90 supported: 0
|
||||
2026/04/02-21:13:37.113234 139629081356096 kCustomCompressionA0 supported: 0
|
||||
2026/04/02-21:13:37.113235 139629081356096 kCustomCompressionC6 supported: 0
|
||||
2026/04/02-21:13:37.113235 139629081356096 kCustomCompression9D supported: 0
|
||||
2026/04/02-21:13:37.113236 139629081356096 kCustomCompression8B supported: 0
|
||||
2026/04/02-21:13:37.113237 139629081356096 kCustomCompressionA8 supported: 0
|
||||
2026/04/02-21:13:37.113237 139629081356096 kCustomCompression8D supported: 0
|
||||
2026/04/02-21:13:37.113238 139629081356096 kCustomCompression97 supported: 0
|
||||
2026/04/02-21:13:37.113238 139629081356096 kCustomCompression98 supported: 0
|
||||
2026/04/02-21:13:37.113239 139629081356096 kCustomCompressionAC supported: 0
|
||||
2026/04/02-21:13:37.113240 139629081356096 kCustomCompressionE9 supported: 0
|
||||
2026/04/02-21:13:37.113241 139629081356096 kCustomCompression96 supported: 0
|
||||
2026/04/02-21:13:37.113241 139629081356096 kCustomCompressionB1 supported: 0
|
||||
2026/04/02-21:13:37.113242 139629081356096 kCustomCompression95 supported: 0
|
||||
2026/04/02-21:13:37.113243 139629081356096 kCustomCompression84 supported: 0
|
||||
2026/04/02-21:13:37.113243 139629081356096 kCustomCompression91 supported: 0
|
||||
2026/04/02-21:13:37.113244 139629081356096 kCustomCompressionAB supported: 0
|
||||
2026/04/02-21:13:37.113245 139629081356096 kCustomCompressionB3 supported: 0
|
||||
2026/04/02-21:13:37.113245 139629081356096 kCustomCompression81 supported: 0
|
||||
2026/04/02-21:13:37.113246 139629081356096 kCustomCompressionDC supported: 0
|
||||
2026/04/02-21:13:37.113247 139629081356096 kBZip2Compression supported: 0
|
||||
2026/04/02-21:13:37.113247 139629081356096 kCustomCompressionBB supported: 0
|
||||
2026/04/02-21:13:37.113248 139629081356096 kCustomCompression9C supported: 0
|
||||
2026/04/02-21:13:37.113248 139629081356096 kCustomCompressionC9 supported: 0
|
||||
2026/04/02-21:13:37.113249 139629081356096 kCustomCompressionCC supported: 0
|
||||
2026/04/02-21:13:37.113250 139629081356096 kCustomCompression92 supported: 0
|
||||
2026/04/02-21:13:37.113250 139629081356096 kCustomCompressionB9 supported: 0
|
||||
2026/04/02-21:13:37.113251 139629081356096 kCustomCompression8F supported: 0
|
||||
2026/04/02-21:13:37.113251 139629081356096 kCustomCompression8A supported: 0
|
||||
2026/04/02-21:13:37.113252 139629081356096 kCustomCompression9B supported: 0
|
||||
2026/04/02-21:13:37.113253 139629081356096 kZSTD supported: 0
|
||||
2026/04/02-21:13:37.113253 139629081356096 kCustomCompressionAA supported: 0
|
||||
2026/04/02-21:13:37.113254 139629081356096 kCustomCompressionA2 supported: 0
|
||||
2026/04/02-21:13:37.113255 139629081356096 kZlibCompression supported: 0
|
||||
2026/04/02-21:13:37.113255 139629081356096 kXpressCompression supported: 0
|
||||
2026/04/02-21:13:37.113256 139629081356096 kCustomCompressionFD supported: 0
|
||||
2026/04/02-21:13:37.113257 139629081356096 kCustomCompressionE2 supported: 0
|
||||
2026/04/02-21:13:37.113257 139629081356096 kLZ4HCCompression supported: 1
|
||||
2026/04/02-21:13:37.113258 139629081356096 kCustomCompressionA6 supported: 0
|
||||
2026/04/02-21:13:37.113259 139629081356096 kCustomCompression85 supported: 0
|
||||
2026/04/02-21:13:37.113259 139629081356096 kCustomCompressionA4 supported: 0
|
||||
2026/04/02-21:13:37.113260 139629081356096 kCustomCompression86 supported: 0
|
||||
2026/04/02-21:13:37.113261 139629081356096 kCustomCompression83 supported: 0
|
||||
2026/04/02-21:13:37.113261 139629081356096 kCustomCompression87 supported: 0
|
||||
2026/04/02-21:13:37.113262 139629081356096 kCustomCompression89 supported: 0
|
||||
2026/04/02-21:13:37.113262 139629081356096 kCustomCompression8C supported: 0
|
||||
2026/04/02-21:13:37.113263 139629081356096 kCustomCompressionDB supported: 0
|
||||
2026/04/02-21:13:37.113264 139629081356096 kCustomCompressionF3 supported: 0
|
||||
2026/04/02-21:13:37.113264 139629081356096 kCustomCompressionE6 supported: 0
|
||||
2026/04/02-21:13:37.113265 139629081356096 kCustomCompression8E supported: 0
|
||||
2026/04/02-21:13:37.113266 139629081356096 kCustomCompressionDA supported: 0
|
||||
2026/04/02-21:13:37.113266 139629081356096 kCustomCompression93 supported: 0
|
||||
2026/04/02-21:13:37.113267 139629081356096 kCustomCompression94 supported: 0
|
||||
2026/04/02-21:13:37.113267 139629081356096 kCustomCompression9E supported: 0
|
||||
2026/04/02-21:13:37.113268 139629081356096 kCustomCompressionB4 supported: 0
|
||||
2026/04/02-21:13:37.113269 139629081356096 kCustomCompressionFB supported: 0
|
||||
2026/04/02-21:13:37.113269 139629081356096 kCustomCompressionB5 supported: 0
|
||||
2026/04/02-21:13:37.113270 139629081356096 kCustomCompressionD5 supported: 0
|
||||
2026/04/02-21:13:37.113271 139629081356096 kCustomCompressionB8 supported: 0
|
||||
2026/04/02-21:13:37.113271 139629081356096 kCustomCompressionD1 supported: 0
|
||||
2026/04/02-21:13:37.113272 139629081356096 kCustomCompressionBA supported: 0
|
||||
2026/04/02-21:13:37.113272 139629081356096 kCustomCompressionBC supported: 0
|
||||
2026/04/02-21:13:37.113273 139629081356096 kCustomCompressionCE supported: 0
|
||||
2026/04/02-21:13:37.113274 139629081356096 kCustomCompressionBD supported: 0
|
||||
2026/04/02-21:13:37.113274 139629081356096 kCustomCompressionC4 supported: 0
|
||||
2026/04/02-21:13:37.113275 139629081356096 kCustomCompression9A supported: 0
|
||||
2026/04/02-21:13:37.113275 139629081356096 kCustomCompression99 supported: 0
|
||||
2026/04/02-21:13:37.113276 139629081356096 kCustomCompressionBE supported: 0
|
||||
2026/04/02-21:13:37.113277 139629081356096 kCustomCompressionE5 supported: 0
|
||||
2026/04/02-21:13:37.113277 139629081356096 kCustomCompressionD9 supported: 0
|
||||
2026/04/02-21:13:37.113278 139629081356096 kCustomCompressionC1 supported: 0
|
||||
2026/04/02-21:13:37.113279 139629081356096 kCustomCompressionC5 supported: 0
|
||||
2026/04/02-21:13:37.113279 139629081356096 kCustomCompressionC2 supported: 0
|
||||
2026/04/02-21:13:37.113280 139629081356096 kCustomCompressionA5 supported: 0
|
||||
2026/04/02-21:13:37.113280 139629081356096 kCustomCompressionC7 supported: 0
|
||||
2026/04/02-21:13:37.113281 139629081356096 kCustomCompressionBF supported: 0
|
||||
2026/04/02-21:13:37.113282 139629081356096 kCustomCompressionE8 supported: 0
|
||||
2026/04/02-21:13:37.113282 139629081356096 kCustomCompressionC8 supported: 0
|
||||
2026/04/02-21:13:37.113283 139629081356096 kCustomCompressionAF supported: 0
|
||||
2026/04/02-21:13:37.113283 139629081356096 kCustomCompressionCA supported: 0
|
||||
2026/04/02-21:13:37.113284 139629081356096 kCustomCompressionCD supported: 0
|
||||
2026/04/02-21:13:37.113285 139629081356096 kCustomCompressionC0 supported: 0
|
||||
2026/04/02-21:13:37.113285 139629081356096 kCustomCompressionCF supported: 0
|
||||
2026/04/02-21:13:37.113286 139629081356096 kCustomCompressionF9 supported: 0
|
||||
2026/04/02-21:13:37.113287 139629081356096 kCustomCompressionD0 supported: 0
|
||||
2026/04/02-21:13:37.113287 139629081356096 kCustomCompressionD2 supported: 0
|
||||
2026/04/02-21:13:37.113288 139629081356096 kCustomCompressionAD supported: 0
|
||||
2026/04/02-21:13:37.113289 139629081356096 kCustomCompressionD3 supported: 0
|
||||
2026/04/02-21:13:37.113289 139629081356096 kCustomCompressionD4 supported: 0
|
||||
2026/04/02-21:13:37.113290 139629081356096 kCustomCompressionD7 supported: 0
|
||||
2026/04/02-21:13:37.113290 139629081356096 kCustomCompression82 supported: 0
|
||||
2026/04/02-21:13:37.113291 139629081356096 kCustomCompressionDD supported: 0
|
||||
2026/04/02-21:13:37.113292 139629081356096 kCustomCompressionC3 supported: 0
|
||||
2026/04/02-21:13:37.113292 139629081356096 kCustomCompressionEE supported: 0
|
||||
2026/04/02-21:13:37.113293 139629081356096 kCustomCompressionDE supported: 0
|
||||
2026/04/02-21:13:37.113294 139629081356096 kCustomCompressionDF supported: 0
|
||||
2026/04/02-21:13:37.113294 139629081356096 kCustomCompressionA7 supported: 0
|
||||
2026/04/02-21:13:37.113295 139629081356096 kCustomCompressionE0 supported: 0
|
||||
2026/04/02-21:13:37.113296 139629081356096 kCustomCompressionF1 supported: 0
|
||||
2026/04/02-21:13:37.113296 139629081356096 kCustomCompressionE1 supported: 0
|
||||
2026/04/02-21:13:37.113297 139629081356096 kCustomCompressionF5 supported: 0
|
||||
2026/04/02-21:13:37.113297 139629081356096 kCustomCompression80 supported: 0
|
||||
2026/04/02-21:13:37.113298 139629081356096 kCustomCompressionE3 supported: 0
|
||||
2026/04/02-21:13:37.113299 139629081356096 kCustomCompressionE4 supported: 0
|
||||
2026/04/02-21:13:37.113299 139629081356096 kCustomCompressionB0 supported: 0
|
||||
2026/04/02-21:13:37.113300 139629081356096 kCustomCompressionEA supported: 0
|
||||
2026/04/02-21:13:37.113301 139629081356096 kCustomCompressionFA supported: 0
|
||||
2026/04/02-21:13:37.113301 139629081356096 kCustomCompressionE7 supported: 0
|
||||
2026/04/02-21:13:37.113302 139629081356096 kCustomCompressionAE supported: 0
|
||||
2026/04/02-21:13:37.113302 139629081356096 kCustomCompressionEB supported: 0
|
||||
2026/04/02-21:13:37.113303 139629081356096 kCustomCompressionED supported: 0
|
||||
2026/04/02-21:13:37.113304 139629081356096 kCustomCompressionB6 supported: 0
|
||||
2026/04/02-21:13:37.113304 139629081356096 kCustomCompressionEF supported: 0
|
||||
2026/04/02-21:13:37.113305 139629081356096 kCustomCompressionF0 supported: 0
|
||||
2026/04/02-21:13:37.113306 139629081356096 kCustomCompressionB7 supported: 0
|
||||
2026/04/02-21:13:37.113306 139629081356096 kCustomCompressionF2 supported: 0
|
||||
2026/04/02-21:13:37.113307 139629081356096 kCustomCompressionA1 supported: 0
|
||||
2026/04/02-21:13:37.113307 139629081356096 kCustomCompressionF4 supported: 0
|
||||
2026/04/02-21:13:37.113308 139629081356096 kSnappyCompression supported: 0
|
||||
2026/04/02-21:13:37.113309 139629081356096 kCustomCompressionF6 supported: 0
|
||||
2026/04/02-21:13:37.113310 139629081356096 Fast CRC32 supported: Not supported on x86
|
||||
2026/04/02-21:13:37.113311 139629081356096 DMutex implementation: pthread_mutex_t
|
||||
2026/04/02-21:13:37.113311 139629081356096 Jemalloc supported: 0
|
||||
2026/04/02-21:13:37.113332 139629081356096 [WARN] [db/db_impl/db_impl_open.cc:2687] DB::Open() failed: IO error: lock hold by current process, acquire time 1775156918 acquiring thread 139629081356096: data/osint/oxigraph/LOCK: No locks available
|
||||
@@ -0,0 +1,238 @@
|
||||
2026/04/02-21:13:37.115435 139629081356096 RocksDB version: 10.10.1
|
||||
2026/04/02-21:13:37.115460 139629081356096 DB SUMMARY
|
||||
2026/04/02-21:13:37.115462 139629081356096 Host name (Env): Lucas
|
||||
2026/04/02-21:13:37.115463 139629081356096 DB Session ID: 86F26ZGOLUEYUL8ZU326
|
||||
2026/04/02-21:13:37.115481 139629081356096 CURRENT file: CURRENT
|
||||
2026/04/02-21:13:37.115483 139629081356096 IDENTITY file: IDENTITY
|
||||
2026/04/02-21:13:37.115485 139629081356096 MANIFEST file: MANIFEST-000026 size: 1785 Bytes
|
||||
2026/04/02-21:13:37.115487 139629081356096 SST files in data/osint/oxigraph dir, Total Num: 5, files: 000011.sst 000015.sst 000016.sst 000017.sst 000018.sst
|
||||
2026/04/02-21:13:37.115488 139629081356096 Write Ahead Log file in data/osint/oxigraph: 000025.log size: 0 ;
|
||||
2026/04/02-21:13:37.115489 139629081356096 Options.error_if_exists: 0
|
||||
2026/04/02-21:13:37.115490 139629081356096 Options.create_if_missing: 1
|
||||
2026/04/02-21:13:37.115490 139629081356096 Options.paranoid_checks: 1
|
||||
2026/04/02-21:13:37.115491 139629081356096 Options.flush_verify_memtable_count: 1
|
||||
2026/04/02-21:13:37.115492 139629081356096 Options.compaction_verify_record_count: 1
|
||||
2026/04/02-21:13:37.115493 139629081356096 Options.track_and_verify_wals_in_manifest: 0
|
||||
2026/04/02-21:13:37.115494 139629081356096 Options.track_and_verify_wals: 0
|
||||
2026/04/02-21:13:37.115494 139629081356096 Options.verify_sst_unique_id_in_manifest: 1
|
||||
2026/04/02-21:13:37.115495 139629081356096 Options.env: 0x3a912f30
|
||||
2026/04/02-21:13:37.115496 139629081356096 Options.fs: PosixFileSystem
|
||||
2026/04/02-21:13:37.115497 139629081356096 Options.info_log: 0x3aa73a10
|
||||
2026/04/02-21:13:37.115497 139629081356096 Options.max_file_opening_threads: 16
|
||||
2026/04/02-21:13:37.115498 139629081356096 Options.statistics: (nil)
|
||||
2026/04/02-21:13:37.115499 139629081356096 Options.use_fsync: 0
|
||||
2026/04/02-21:13:37.115500 139629081356096 Options.max_log_file_size: 1048576
|
||||
2026/04/02-21:13:37.115500 139629081356096 Options.log_file_time_to_roll: 0
|
||||
2026/04/02-21:13:37.115501 139629081356096 Options.keep_log_file_num: 1000
|
||||
2026/04/02-21:13:37.115502 139629081356096 Options.recycle_log_file_num: 10
|
||||
2026/04/02-21:13:37.115502 139629081356096 Options.allow_fallocate: 1
|
||||
2026/04/02-21:13:37.115503 139629081356096 Options.allow_mmap_reads: 0
|
||||
2026/04/02-21:13:37.115504 139629081356096 Options.allow_mmap_writes: 0
|
||||
2026/04/02-21:13:37.115504 139629081356096 Options.use_direct_reads: 0
|
||||
2026/04/02-21:13:37.115505 139629081356096 Options.use_direct_io_for_flush_and_compaction: 0
|
||||
2026/04/02-21:13:37.115505 139629081356096 Options.create_missing_column_families: 1
|
||||
2026/04/02-21:13:37.115506 139629081356096 Options.db_log_dir:
|
||||
2026/04/02-21:13:37.115507 139629081356096 Options.wal_dir:
|
||||
2026/04/02-21:13:37.115507 139629081356096 Options.table_cache_numshardbits: 6
|
||||
2026/04/02-21:13:37.115508 139629081356096 Options.WAL_ttl_seconds: 0
|
||||
2026/04/02-21:13:37.115509 139629081356096 Options.WAL_size_limit_MB: 0
|
||||
2026/04/02-21:13:37.115509 139629081356096 Options.max_write_batch_group_size_bytes: 1048576
|
||||
2026/04/02-21:13:37.115510 139629081356096 Options.is_fd_close_on_exec: 1
|
||||
2026/04/02-21:13:37.115511 139629081356096 Options.advise_random_on_open: 1
|
||||
2026/04/02-21:13:37.115511 139629081356096 Options.db_write_buffer_size: 0
|
||||
2026/04/02-21:13:37.115512 139629081356096 Options.write_buffer_manager: 0x3a936eb0
|
||||
2026/04/02-21:13:37.115513 139629081356096 Options.use_adaptive_mutex: 0
|
||||
2026/04/02-21:13:37.115514 139629081356096 Options.rate_limiter: (nil)
|
||||
2026/04/02-21:13:37.115514 139629081356096 Options.sst_file_manager.rate_bytes_per_sec: 0
|
||||
2026/04/02-21:13:37.115515 139629081356096 Options.wal_recovery_mode: 2
|
||||
2026/04/02-21:13:37.115516 139629081356096 Options.enable_thread_tracking: 0
|
||||
2026/04/02-21:13:37.115516 139629081356096 Options.enable_pipelined_write: 0
|
||||
2026/04/02-21:13:37.115517 139629081356096 Options.unordered_write: 0
|
||||
2026/04/02-21:13:37.115517 139629081356096 Options.allow_concurrent_memtable_write: 1
|
||||
2026/04/02-21:13:37.115518 139629081356096 Options.enable_write_thread_adaptive_yield: 1
|
||||
2026/04/02-21:13:37.115519 139629081356096 Options.write_thread_max_yield_usec: 100
|
||||
2026/04/02-21:13:37.115519 139629081356096 Options.write_thread_slow_yield_usec: 3
|
||||
2026/04/02-21:13:37.115520 139629081356096 Options.row_cache: None
|
||||
2026/04/02-21:13:37.115521 139629081356096 Options.wal_filter: None
|
||||
2026/04/02-21:13:37.115521 139629081356096 Options.avoid_flush_during_recovery: 0
|
||||
2026/04/02-21:13:37.115522 139629081356096 Options.allow_ingest_behind: 0
|
||||
2026/04/02-21:13:37.115522 139629081356096 Options.two_write_queues: 0
|
||||
2026/04/02-21:13:37.115523 139629081356096 Options.manual_wal_flush: 0
|
||||
2026/04/02-21:13:37.115524 139629081356096 Options.wal_compression: 0
|
||||
2026/04/02-21:13:37.115524 139629081356096 Options.background_close_inactive_wals: 0
|
||||
2026/04/02-21:13:37.115525 139629081356096 Options.atomic_flush: 0
|
||||
2026/04/02-21:13:37.115525 139629081356096 Options.avoid_unnecessary_blocking_io: 0
|
||||
2026/04/02-21:13:37.115526 139629081356096 Options.prefix_seek_opt_in_only: 0
|
||||
2026/04/02-21:13:37.115527 139629081356096 Options.persist_stats_to_disk: 0
|
||||
2026/04/02-21:13:37.115527 139629081356096 Options.write_dbid_to_manifest: 1
|
||||
2026/04/02-21:13:37.115528 139629081356096 Options.write_identity_file: 1
|
||||
2026/04/02-21:13:37.115528 139629081356096 Options.log_readahead_size: 0
|
||||
2026/04/02-21:13:37.115529 139629081356096 Options.file_checksum_gen_factory: Unknown
|
||||
2026/04/02-21:13:37.115530 139629081356096 Options.best_efforts_recovery: 0
|
||||
2026/04/02-21:13:37.115530 139629081356096 Options.max_bgerror_resume_count: 2147483647
|
||||
2026/04/02-21:13:37.115531 139629081356096 Options.bgerror_resume_retry_interval: 1000000
|
||||
2026/04/02-21:13:37.115532 139629081356096 Options.allow_data_in_errors: 0
|
||||
2026/04/02-21:13:37.115533 139629081356096 Options.db_host_id: __hostname__
|
||||
2026/04/02-21:13:37.115533 139629081356096 Options.enforce_single_del_contracts: true
|
||||
2026/04/02-21:13:37.115534 139629081356096 Options.metadata_write_temperature: kUnknown
|
||||
2026/04/02-21:13:37.115535 139629081356096 Options.wal_write_temperature: kUnknown
|
||||
2026/04/02-21:13:37.115535 139629081356096 Options.max_background_jobs: 24
|
||||
2026/04/02-21:13:37.115536 139629081356096 Options.max_background_compactions: -1
|
||||
2026/04/02-21:13:37.115537 139629081356096 Options.max_subcompactions: 1
|
||||
2026/04/02-21:13:37.115537 139629081356096 Options.avoid_flush_during_shutdown: 0
|
||||
2026/04/02-21:13:37.115538 139629081356096 Options.writable_file_max_buffer_size: 1048576
|
||||
2026/04/02-21:13:37.115539 139629081356096 Options.delayed_write_rate : 16777216
|
||||
2026/04/02-21:13:37.115539 139629081356096 Options.max_total_wal_size: 0
|
||||
2026/04/02-21:13:37.115540 139629081356096 Options.delete_obsolete_files_period_micros: 21600000000
|
||||
2026/04/02-21:13:37.115541 139629081356096 Options.stats_dump_period_sec: 600
|
||||
2026/04/02-21:13:37.115541 139629081356096 Options.stats_persist_period_sec: 600
|
||||
2026/04/02-21:13:37.115542 139629081356096 Options.stats_history_buffer_size: 1048576
|
||||
2026/04/02-21:13:37.115543 139629081356096 Options.max_open_files: 4048
|
||||
2026/04/02-21:13:37.115543 139629081356096 Options.bytes_per_sync: 0
|
||||
2026/04/02-21:13:37.115544 139629081356096 Options.wal_bytes_per_sync: 0
|
||||
2026/04/02-21:13:37.115545 139629081356096 Options.strict_bytes_per_sync: 0
|
||||
2026/04/02-21:13:37.115545 139629081356096 Options.compaction_readahead_size: 2097152
|
||||
2026/04/02-21:13:37.115546 139629081356096 Options.max_background_flushes: -1
|
||||
2026/04/02-21:13:37.115546 139629081356096 Options.max_manifest_file_size: 1073741824
|
||||
2026/04/02-21:13:37.115547 139629081356096 Options.max_manifest_space_amp_pct: 500
|
||||
2026/04/02-21:13:37.115548 139629081356096 Options.manifest_preallocation_size: 4194304
|
||||
2026/04/02-21:13:37.115548 139629081356096 Options.daily_offpeak_time_utc:
|
||||
2026/04/02-21:13:37.115549 139629081356096 Compression algorithms supported:
|
||||
2026/04/02-21:13:37.115550 139629081356096 kCustomCompressionFE supported: 0
|
||||
2026/04/02-21:13:37.115551 139629081356096 kCustomCompressionFC supported: 0
|
||||
2026/04/02-21:13:37.115552 139629081356096 kCustomCompressionF8 supported: 0
|
||||
2026/04/02-21:13:37.115552 139629081356096 kCustomCompressionF7 supported: 0
|
||||
2026/04/02-21:13:37.115554 139629081356096 kCustomCompressionB2 supported: 0
|
||||
2026/04/02-21:13:37.115554 139629081356096 kLZ4Compression supported: 1
|
||||
2026/04/02-21:13:37.115555 139629081356096 kCustomCompression88 supported: 0
|
||||
2026/04/02-21:13:37.115556 139629081356096 kCustomCompressionD8 supported: 0
|
||||
2026/04/02-21:13:37.115556 139629081356096 kCustomCompression9F supported: 0
|
||||
2026/04/02-21:13:37.115557 139629081356096 kCustomCompressionD6 supported: 0
|
||||
2026/04/02-21:13:37.115558 139629081356096 kCustomCompressionA9 supported: 0
|
||||
2026/04/02-21:13:37.115559 139629081356096 kCustomCompressionEC supported: 0
|
||||
2026/04/02-21:13:37.115559 139629081356096 kCustomCompressionA3 supported: 0
|
||||
2026/04/02-21:13:37.115560 139629081356096 kCustomCompressionCB supported: 0
|
||||
2026/04/02-21:13:37.115560 139629081356096 kCustomCompression90 supported: 0
|
||||
2026/04/02-21:13:37.115561 139629081356096 kCustomCompressionA0 supported: 0
|
||||
2026/04/02-21:13:37.115562 139629081356096 kCustomCompressionC6 supported: 0
|
||||
2026/04/02-21:13:37.115562 139629081356096 kCustomCompression9D supported: 0
|
||||
2026/04/02-21:13:37.115563 139629081356096 kCustomCompression8B supported: 0
|
||||
2026/04/02-21:13:37.115564 139629081356096 kCustomCompressionA8 supported: 0
|
||||
2026/04/02-21:13:37.115564 139629081356096 kCustomCompression8D supported: 0
|
||||
2026/04/02-21:13:37.115565 139629081356096 kCustomCompression97 supported: 0
|
||||
2026/04/02-21:13:37.115566 139629081356096 kCustomCompression98 supported: 0
|
||||
2026/04/02-21:13:37.115566 139629081356096 kCustomCompressionAC supported: 0
|
||||
2026/04/02-21:13:37.115567 139629081356096 kCustomCompressionE9 supported: 0
|
||||
2026/04/02-21:13:37.115568 139629081356096 kCustomCompression96 supported: 0
|
||||
2026/04/02-21:13:37.115568 139629081356096 kCustomCompressionB1 supported: 0
|
||||
2026/04/02-21:13:37.115569 139629081356096 kCustomCompression95 supported: 0
|
||||
2026/04/02-21:13:37.115570 139629081356096 kCustomCompression84 supported: 0
|
||||
2026/04/02-21:13:37.115570 139629081356096 kCustomCompression91 supported: 0
|
||||
2026/04/02-21:13:37.115571 139629081356096 kCustomCompressionAB supported: 0
|
||||
2026/04/02-21:13:37.115571 139629081356096 kCustomCompressionB3 supported: 0
|
||||
2026/04/02-21:13:37.115572 139629081356096 kCustomCompression81 supported: 0
|
||||
2026/04/02-21:13:37.115573 139629081356096 kCustomCompressionDC supported: 0
|
||||
2026/04/02-21:13:37.115573 139629081356096 kBZip2Compression supported: 0
|
||||
2026/04/02-21:13:37.115574 139629081356096 kCustomCompressionBB supported: 0
|
||||
2026/04/02-21:13:37.115575 139629081356096 kCustomCompression9C supported: 0
|
||||
2026/04/02-21:13:37.115575 139629081356096 kCustomCompressionC9 supported: 0
|
||||
2026/04/02-21:13:37.115576 139629081356096 kCustomCompressionCC supported: 0
|
||||
2026/04/02-21:13:37.115577 139629081356096 kCustomCompression92 supported: 0
|
||||
2026/04/02-21:13:37.115577 139629081356096 kCustomCompressionB9 supported: 0
|
||||
2026/04/02-21:13:37.115578 139629081356096 kCustomCompression8F supported: 0
|
||||
2026/04/02-21:13:37.115579 139629081356096 kCustomCompression8A supported: 0
|
||||
2026/04/02-21:13:37.115579 139629081356096 kCustomCompression9B supported: 0
|
||||
2026/04/02-21:13:37.115580 139629081356096 kZSTD supported: 0
|
||||
2026/04/02-21:13:37.115580 139629081356096 kCustomCompressionAA supported: 0
|
||||
2026/04/02-21:13:37.115581 139629081356096 kCustomCompressionA2 supported: 0
|
||||
2026/04/02-21:13:37.115582 139629081356096 kZlibCompression supported: 0
|
||||
2026/04/02-21:13:37.115582 139629081356096 kXpressCompression supported: 0
|
||||
2026/04/02-21:13:37.115583 139629081356096 kCustomCompressionFD supported: 0
|
||||
2026/04/02-21:13:37.115584 139629081356096 kCustomCompressionE2 supported: 0
|
||||
2026/04/02-21:13:37.115584 139629081356096 kLZ4HCCompression supported: 1
|
||||
2026/04/02-21:13:37.115585 139629081356096 kCustomCompressionA6 supported: 0
|
||||
2026/04/02-21:13:37.115586 139629081356096 kCustomCompression85 supported: 0
|
||||
2026/04/02-21:13:37.115586 139629081356096 kCustomCompressionA4 supported: 0
|
||||
2026/04/02-21:13:37.115587 139629081356096 kCustomCompression86 supported: 0
|
||||
2026/04/02-21:13:37.115587 139629081356096 kCustomCompression83 supported: 0
|
||||
2026/04/02-21:13:37.115588 139629081356096 kCustomCompression87 supported: 0
|
||||
2026/04/02-21:13:37.115589 139629081356096 kCustomCompression89 supported: 0
|
||||
2026/04/02-21:13:37.115589 139629081356096 kCustomCompression8C supported: 0
|
||||
2026/04/02-21:13:37.115590 139629081356096 kCustomCompressionDB supported: 0
|
||||
2026/04/02-21:13:37.115591 139629081356096 kCustomCompressionF3 supported: 0
|
||||
2026/04/02-21:13:37.115592 139629081356096 kCustomCompressionE6 supported: 0
|
||||
2026/04/02-21:13:37.115592 139629081356096 kCustomCompression8E supported: 0
|
||||
2026/04/02-21:13:37.115593 139629081356096 kCustomCompressionDA supported: 0
|
||||
2026/04/02-21:13:37.115594 139629081356096 kCustomCompression93 supported: 0
|
||||
2026/04/02-21:13:37.115594 139629081356096 kCustomCompression94 supported: 0
|
||||
2026/04/02-21:13:37.115595 139629081356096 kCustomCompression9E supported: 0
|
||||
2026/04/02-21:13:37.115596 139629081356096 kCustomCompressionB4 supported: 0
|
||||
2026/04/02-21:13:37.115596 139629081356096 kCustomCompressionFB supported: 0
|
||||
2026/04/02-21:13:37.115597 139629081356096 kCustomCompressionB5 supported: 0
|
||||
2026/04/02-21:13:37.115597 139629081356096 kCustomCompressionD5 supported: 0
|
||||
2026/04/02-21:13:37.115598 139629081356096 kCustomCompressionB8 supported: 0
|
||||
2026/04/02-21:13:37.115599 139629081356096 kCustomCompressionD1 supported: 0
|
||||
2026/04/02-21:13:37.115599 139629081356096 kCustomCompressionBA supported: 0
|
||||
2026/04/02-21:13:37.115600 139629081356096 kCustomCompressionBC supported: 0
|
||||
2026/04/02-21:13:37.115601 139629081356096 kCustomCompressionCE supported: 0
|
||||
2026/04/02-21:13:37.115601 139629081356096 kCustomCompressionBD supported: 0
|
||||
2026/04/02-21:13:37.115602 139629081356096 kCustomCompressionC4 supported: 0
|
||||
2026/04/02-21:13:37.115602 139629081356096 kCustomCompression9A supported: 0
|
||||
2026/04/02-21:13:37.115603 139629081356096 kCustomCompression99 supported: 0
|
||||
2026/04/02-21:13:37.115604 139629081356096 kCustomCompressionBE supported: 0
|
||||
2026/04/02-21:13:37.115604 139629081356096 kCustomCompressionE5 supported: 0
|
||||
2026/04/02-21:13:37.115605 139629081356096 kCustomCompressionD9 supported: 0
|
||||
2026/04/02-21:13:37.115606 139629081356096 kCustomCompressionC1 supported: 0
|
||||
2026/04/02-21:13:37.115606 139629081356096 kCustomCompressionC5 supported: 0
|
||||
2026/04/02-21:13:37.115607 139629081356096 kCustomCompressionC2 supported: 0
|
||||
2026/04/02-21:13:37.115607 139629081356096 kCustomCompressionA5 supported: 0
|
||||
2026/04/02-21:13:37.115608 139629081356096 kCustomCompressionC7 supported: 0
|
||||
2026/04/02-21:13:37.115609 139629081356096 kCustomCompressionBF supported: 0
|
||||
2026/04/02-21:13:37.115609 139629081356096 kCustomCompressionE8 supported: 0
|
||||
2026/04/02-21:13:37.115610 139629081356096 kCustomCompressionC8 supported: 0
|
||||
2026/04/02-21:13:37.115610 139629081356096 kCustomCompressionAF supported: 0
|
||||
2026/04/02-21:13:37.115611 139629081356096 kCustomCompressionCA supported: 0
|
||||
2026/04/02-21:13:37.115612 139629081356096 kCustomCompressionCD supported: 0
|
||||
2026/04/02-21:13:37.115612 139629081356096 kCustomCompressionC0 supported: 0
|
||||
2026/04/02-21:13:37.115613 139629081356096 kCustomCompressionCF supported: 0
|
||||
2026/04/02-21:13:37.115614 139629081356096 kCustomCompressionF9 supported: 0
|
||||
2026/04/02-21:13:37.115614 139629081356096 kCustomCompressionD0 supported: 0
|
||||
2026/04/02-21:13:37.115615 139629081356096 kCustomCompressionD2 supported: 0
|
||||
2026/04/02-21:13:37.115616 139629081356096 kCustomCompressionAD supported: 0
|
||||
2026/04/02-21:13:37.115616 139629081356096 kCustomCompressionD3 supported: 0
|
||||
2026/04/02-21:13:37.115617 139629081356096 kCustomCompressionD4 supported: 0
|
||||
2026/04/02-21:13:37.115617 139629081356096 kCustomCompressionD7 supported: 0
|
||||
2026/04/02-21:13:37.115618 139629081356096 kCustomCompression82 supported: 0
|
||||
2026/04/02-21:13:37.115619 139629081356096 kCustomCompressionDD supported: 0
|
||||
2026/04/02-21:13:37.115619 139629081356096 kCustomCompressionC3 supported: 0
|
||||
2026/04/02-21:13:37.115620 139629081356096 kCustomCompressionEE supported: 0
|
||||
2026/04/02-21:13:37.115621 139629081356096 kCustomCompressionDE supported: 0
|
||||
2026/04/02-21:13:37.115621 139629081356096 kCustomCompressionDF supported: 0
|
||||
2026/04/02-21:13:37.115622 139629081356096 kCustomCompressionA7 supported: 0
|
||||
2026/04/02-21:13:37.115623 139629081356096 kCustomCompressionE0 supported: 0
|
||||
2026/04/02-21:13:37.115623 139629081356096 kCustomCompressionF1 supported: 0
|
||||
2026/04/02-21:13:37.115624 139629081356096 kCustomCompressionE1 supported: 0
|
||||
2026/04/02-21:13:37.115624 139629081356096 kCustomCompressionF5 supported: 0
|
||||
2026/04/02-21:13:37.115625 139629081356096 kCustomCompression80 supported: 0
|
||||
2026/04/02-21:13:37.115626 139629081356096 kCustomCompressionE3 supported: 0
|
||||
2026/04/02-21:13:37.115626 139629081356096 kCustomCompressionE4 supported: 0
|
||||
2026/04/02-21:13:37.115627 139629081356096 kCustomCompressionB0 supported: 0
|
||||
2026/04/02-21:13:37.115628 139629081356096 kCustomCompressionEA supported: 0
|
||||
2026/04/02-21:13:37.115628 139629081356096 kCustomCompressionFA supported: 0
|
||||
2026/04/02-21:13:37.115629 139629081356096 kCustomCompressionE7 supported: 0
|
||||
2026/04/02-21:13:37.115629 139629081356096 kCustomCompressionAE supported: 0
|
||||
2026/04/02-21:13:37.115630 139629081356096 kCustomCompressionEB supported: 0
|
||||
2026/04/02-21:13:37.115631 139629081356096 kCustomCompressionED supported: 0
|
||||
2026/04/02-21:13:37.115631 139629081356096 kCustomCompressionB6 supported: 0
|
||||
2026/04/02-21:13:37.115632 139629081356096 kCustomCompressionEF supported: 0
|
||||
2026/04/02-21:13:37.115633 139629081356096 kCustomCompressionF0 supported: 0
|
||||
2026/04/02-21:13:37.115633 139629081356096 kCustomCompressionB7 supported: 0
|
||||
2026/04/02-21:13:37.115634 139629081356096 kCustomCompressionF2 supported: 0
|
||||
2026/04/02-21:13:37.115634 139629081356096 kCustomCompressionA1 supported: 0
|
||||
2026/04/02-21:13:37.115635 139629081356096 kCustomCompressionF4 supported: 0
|
||||
2026/04/02-21:13:37.115636 139629081356096 kSnappyCompression supported: 0
|
||||
2026/04/02-21:13:37.115636 139629081356096 kCustomCompressionF6 supported: 0
|
||||
2026/04/02-21:13:37.115637 139629081356096 Fast CRC32 supported: Not supported on x86
|
||||
2026/04/02-21:13:37.115639 139629081356096 DMutex implementation: pthread_mutex_t
|
||||
2026/04/02-21:13:37.115639 139629081356096 Jemalloc supported: 0
|
||||
2026/04/02-21:13:37.115659 139629081356096 [WARN] [db/db_impl/db_impl_open.cc:2687] DB::Open() failed: IO error: lock hold by current process, acquire time 1775156918 acquiring thread 139629081356096: data/osint/oxigraph/LOCK: No locks available
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,238 @@
|
||||
2026/04/02-21:13:52.985182 139629081356096 RocksDB version: 10.10.1
|
||||
2026/04/02-21:13:52.985207 139629081356096 DB SUMMARY
|
||||
2026/04/02-21:13:52.985209 139629081356096 Host name (Env): Lucas
|
||||
2026/04/02-21:13:52.985210 139629081356096 DB Session ID: 86F26ZGOLUEYUL8ZU321
|
||||
2026/04/02-21:13:52.985230 139629081356096 CURRENT file: CURRENT
|
||||
2026/04/02-21:13:52.985231 139629081356096 IDENTITY file: IDENTITY
|
||||
2026/04/02-21:13:52.985234 139629081356096 MANIFEST file: MANIFEST-000034 size: 1785 Bytes
|
||||
2026/04/02-21:13:52.985236 139629081356096 SST files in data/osint/oxigraph dir, Total Num: 5, files: 000011.sst 000015.sst 000016.sst 000017.sst 000018.sst
|
||||
2026/04/02-21:13:52.985237 139629081356096 Write Ahead Log file in data/osint/oxigraph: 000033.log size: 0 ;
|
||||
2026/04/02-21:13:52.985239 139629081356096 Options.error_if_exists: 0
|
||||
2026/04/02-21:13:52.985240 139629081356096 Options.create_if_missing: 1
|
||||
2026/04/02-21:13:52.985240 139629081356096 Options.paranoid_checks: 1
|
||||
2026/04/02-21:13:52.985241 139629081356096 Options.flush_verify_memtable_count: 1
|
||||
2026/04/02-21:13:52.985242 139629081356096 Options.compaction_verify_record_count: 1
|
||||
2026/04/02-21:13:52.985243 139629081356096 Options.track_and_verify_wals_in_manifest: 0
|
||||
2026/04/02-21:13:52.985243 139629081356096 Options.track_and_verify_wals: 0
|
||||
2026/04/02-21:13:52.985244 139629081356096 Options.verify_sst_unique_id_in_manifest: 1
|
||||
2026/04/02-21:13:52.985245 139629081356096 Options.env: 0x3a912f30
|
||||
2026/04/02-21:13:52.985246 139629081356096 Options.fs: PosixFileSystem
|
||||
2026/04/02-21:13:52.985247 139629081356096 Options.info_log: 0x3aa53570
|
||||
2026/04/02-21:13:52.985248 139629081356096 Options.max_file_opening_threads: 16
|
||||
2026/04/02-21:13:52.985248 139629081356096 Options.statistics: (nil)
|
||||
2026/04/02-21:13:52.985249 139629081356096 Options.use_fsync: 0
|
||||
2026/04/02-21:13:52.985250 139629081356096 Options.max_log_file_size: 1048576
|
||||
2026/04/02-21:13:52.985251 139629081356096 Options.log_file_time_to_roll: 0
|
||||
2026/04/02-21:13:52.985251 139629081356096 Options.keep_log_file_num: 1000
|
||||
2026/04/02-21:13:52.985252 139629081356096 Options.recycle_log_file_num: 10
|
||||
2026/04/02-21:13:52.985253 139629081356096 Options.allow_fallocate: 1
|
||||
2026/04/02-21:13:52.985253 139629081356096 Options.allow_mmap_reads: 0
|
||||
2026/04/02-21:13:52.985254 139629081356096 Options.allow_mmap_writes: 0
|
||||
2026/04/02-21:13:52.985255 139629081356096 Options.use_direct_reads: 0
|
||||
2026/04/02-21:13:52.985255 139629081356096 Options.use_direct_io_for_flush_and_compaction: 0
|
||||
2026/04/02-21:13:52.985256 139629081356096 Options.create_missing_column_families: 1
|
||||
2026/04/02-21:13:52.985257 139629081356096 Options.db_log_dir:
|
||||
2026/04/02-21:13:52.985257 139629081356096 Options.wal_dir:
|
||||
2026/04/02-21:13:52.985258 139629081356096 Options.table_cache_numshardbits: 6
|
||||
2026/04/02-21:13:52.985259 139629081356096 Options.WAL_ttl_seconds: 0
|
||||
2026/04/02-21:13:52.985259 139629081356096 Options.WAL_size_limit_MB: 0
|
||||
2026/04/02-21:13:52.985260 139629081356096 Options.max_write_batch_group_size_bytes: 1048576
|
||||
2026/04/02-21:13:52.985261 139629081356096 Options.is_fd_close_on_exec: 1
|
||||
2026/04/02-21:13:52.985262 139629081356096 Options.advise_random_on_open: 1
|
||||
2026/04/02-21:13:52.985262 139629081356096 Options.db_write_buffer_size: 0
|
||||
2026/04/02-21:13:52.985263 139629081356096 Options.write_buffer_manager: 0x3aa0d3c0
|
||||
2026/04/02-21:13:52.985264 139629081356096 Options.use_adaptive_mutex: 0
|
||||
2026/04/02-21:13:52.985265 139629081356096 Options.rate_limiter: (nil)
|
||||
2026/04/02-21:13:52.985266 139629081356096 Options.sst_file_manager.rate_bytes_per_sec: 0
|
||||
2026/04/02-21:13:52.985266 139629081356096 Options.wal_recovery_mode: 2
|
||||
2026/04/02-21:13:52.985267 139629081356096 Options.enable_thread_tracking: 0
|
||||
2026/04/02-21:13:52.985268 139629081356096 Options.enable_pipelined_write: 0
|
||||
2026/04/02-21:13:52.985268 139629081356096 Options.unordered_write: 0
|
||||
2026/04/02-21:13:52.985269 139629081356096 Options.allow_concurrent_memtable_write: 1
|
||||
2026/04/02-21:13:52.985269 139629081356096 Options.enable_write_thread_adaptive_yield: 1
|
||||
2026/04/02-21:13:52.985270 139629081356096 Options.write_thread_max_yield_usec: 100
|
||||
2026/04/02-21:13:52.985271 139629081356096 Options.write_thread_slow_yield_usec: 3
|
||||
2026/04/02-21:13:52.985271 139629081356096 Options.row_cache: None
|
||||
2026/04/02-21:13:52.985272 139629081356096 Options.wal_filter: None
|
||||
2026/04/02-21:13:52.985273 139629081356096 Options.avoid_flush_during_recovery: 0
|
||||
2026/04/02-21:13:52.985273 139629081356096 Options.allow_ingest_behind: 0
|
||||
2026/04/02-21:13:52.985274 139629081356096 Options.two_write_queues: 0
|
||||
2026/04/02-21:13:52.985275 139629081356096 Options.manual_wal_flush: 0
|
||||
2026/04/02-21:13:52.985275 139629081356096 Options.wal_compression: 0
|
||||
2026/04/02-21:13:52.985276 139629081356096 Options.background_close_inactive_wals: 0
|
||||
2026/04/02-21:13:52.985276 139629081356096 Options.atomic_flush: 0
|
||||
2026/04/02-21:13:52.985277 139629081356096 Options.avoid_unnecessary_blocking_io: 0
|
||||
2026/04/02-21:13:52.985278 139629081356096 Options.prefix_seek_opt_in_only: 0
|
||||
2026/04/02-21:13:52.985278 139629081356096 Options.persist_stats_to_disk: 0
|
||||
2026/04/02-21:13:52.985279 139629081356096 Options.write_dbid_to_manifest: 1
|
||||
2026/04/02-21:13:52.985279 139629081356096 Options.write_identity_file: 1
|
||||
2026/04/02-21:13:52.985280 139629081356096 Options.log_readahead_size: 0
|
||||
2026/04/02-21:13:52.985281 139629081356096 Options.file_checksum_gen_factory: Unknown
|
||||
2026/04/02-21:13:52.985281 139629081356096 Options.best_efforts_recovery: 0
|
||||
2026/04/02-21:13:52.985282 139629081356096 Options.max_bgerror_resume_count: 2147483647
|
||||
2026/04/02-21:13:52.985283 139629081356096 Options.bgerror_resume_retry_interval: 1000000
|
||||
2026/04/02-21:13:52.985283 139629081356096 Options.allow_data_in_errors: 0
|
||||
2026/04/02-21:13:52.985284 139629081356096 Options.db_host_id: __hostname__
|
||||
2026/04/02-21:13:52.985285 139629081356096 Options.enforce_single_del_contracts: true
|
||||
2026/04/02-21:13:52.985286 139629081356096 Options.metadata_write_temperature: kUnknown
|
||||
2026/04/02-21:13:52.985286 139629081356096 Options.wal_write_temperature: kUnknown
|
||||
2026/04/02-21:13:52.985287 139629081356096 Options.max_background_jobs: 24
|
||||
2026/04/02-21:13:52.985288 139629081356096 Options.max_background_compactions: -1
|
||||
2026/04/02-21:13:52.985288 139629081356096 Options.max_subcompactions: 1
|
||||
2026/04/02-21:13:52.985289 139629081356096 Options.avoid_flush_during_shutdown: 0
|
||||
2026/04/02-21:13:52.985290 139629081356096 Options.writable_file_max_buffer_size: 1048576
|
||||
2026/04/02-21:13:52.985291 139629081356096 Options.delayed_write_rate : 16777216
|
||||
2026/04/02-21:13:52.985292 139629081356096 Options.max_total_wal_size: 0
|
||||
2026/04/02-21:13:52.985292 139629081356096 Options.delete_obsolete_files_period_micros: 21600000000
|
||||
2026/04/02-21:13:52.985293 139629081356096 Options.stats_dump_period_sec: 600
|
||||
2026/04/02-21:13:52.985294 139629081356096 Options.stats_persist_period_sec: 600
|
||||
2026/04/02-21:13:52.985294 139629081356096 Options.stats_history_buffer_size: 1048576
|
||||
2026/04/02-21:13:52.985295 139629081356096 Options.max_open_files: 4048
|
||||
2026/04/02-21:13:52.985296 139629081356096 Options.bytes_per_sync: 0
|
||||
2026/04/02-21:13:52.985296 139629081356096 Options.wal_bytes_per_sync: 0
|
||||
2026/04/02-21:13:52.985297 139629081356096 Options.strict_bytes_per_sync: 0
|
||||
2026/04/02-21:13:52.985297 139629081356096 Options.compaction_readahead_size: 2097152
|
||||
2026/04/02-21:13:52.985298 139629081356096 Options.max_background_flushes: -1
|
||||
2026/04/02-21:13:52.985299 139629081356096 Options.max_manifest_file_size: 1073741824
|
||||
2026/04/02-21:13:52.985299 139629081356096 Options.max_manifest_space_amp_pct: 500
|
||||
2026/04/02-21:13:52.985300 139629081356096 Options.manifest_preallocation_size: 4194304
|
||||
2026/04/02-21:13:52.985300 139629081356096 Options.daily_offpeak_time_utc:
|
||||
2026/04/02-21:13:52.985301 139629081356096 Compression algorithms supported:
|
||||
2026/04/02-21:13:52.985302 139629081356096 kCustomCompressionFE supported: 0
|
||||
2026/04/02-21:13:52.985303 139629081356096 kCustomCompressionFC supported: 0
|
||||
2026/04/02-21:13:52.985304 139629081356096 kCustomCompressionF8 supported: 0
|
||||
2026/04/02-21:13:52.985305 139629081356096 kCustomCompressionF7 supported: 0
|
||||
2026/04/02-21:13:52.985306 139629081356096 kCustomCompressionB2 supported: 0
|
||||
2026/04/02-21:13:52.985306 139629081356096 kLZ4Compression supported: 1
|
||||
2026/04/02-21:13:52.985307 139629081356096 kCustomCompression88 supported: 0
|
||||
2026/04/02-21:13:52.985308 139629081356096 kCustomCompressionD8 supported: 0
|
||||
2026/04/02-21:13:52.985309 139629081356096 kCustomCompression9F supported: 0
|
||||
2026/04/02-21:13:52.985309 139629081356096 kCustomCompressionD6 supported: 0
|
||||
2026/04/02-21:13:52.985310 139629081356096 kCustomCompressionA9 supported: 0
|
||||
2026/04/02-21:13:52.985311 139629081356096 kCustomCompressionEC supported: 0
|
||||
2026/04/02-21:13:52.985311 139629081356096 kCustomCompressionA3 supported: 0
|
||||
2026/04/02-21:13:52.985312 139629081356096 kCustomCompressionCB supported: 0
|
||||
2026/04/02-21:13:52.985313 139629081356096 kCustomCompression90 supported: 0
|
||||
2026/04/02-21:13:52.985313 139629081356096 kCustomCompressionA0 supported: 0
|
||||
2026/04/02-21:13:52.985314 139629081356096 kCustomCompressionC6 supported: 0
|
||||
2026/04/02-21:13:52.985315 139629081356096 kCustomCompression9D supported: 0
|
||||
2026/04/02-21:13:52.985315 139629081356096 kCustomCompression8B supported: 0
|
||||
2026/04/02-21:13:52.985316 139629081356096 kCustomCompressionA8 supported: 0
|
||||
2026/04/02-21:13:52.985317 139629081356096 kCustomCompression8D supported: 0
|
||||
2026/04/02-21:13:52.985317 139629081356096 kCustomCompression97 supported: 0
|
||||
2026/04/02-21:13:52.985318 139629081356096 kCustomCompression98 supported: 0
|
||||
2026/04/02-21:13:52.985319 139629081356096 kCustomCompressionAC supported: 0
|
||||
2026/04/02-21:13:52.985319 139629081356096 kCustomCompressionE9 supported: 0
|
||||
2026/04/02-21:13:52.985320 139629081356096 kCustomCompression96 supported: 0
|
||||
2026/04/02-21:13:52.985321 139629081356096 kCustomCompressionB1 supported: 0
|
||||
2026/04/02-21:13:52.985321 139629081356096 kCustomCompression95 supported: 0
|
||||
2026/04/02-21:13:52.985322 139629081356096 kCustomCompression84 supported: 0
|
||||
2026/04/02-21:13:52.985323 139629081356096 kCustomCompression91 supported: 0
|
||||
2026/04/02-21:13:52.985323 139629081356096 kCustomCompressionAB supported: 0
|
||||
2026/04/02-21:13:52.985324 139629081356096 kCustomCompressionB3 supported: 0
|
||||
2026/04/02-21:13:52.985325 139629081356096 kCustomCompression81 supported: 0
|
||||
2026/04/02-21:13:52.985325 139629081356096 kCustomCompressionDC supported: 0
|
||||
2026/04/02-21:13:52.985326 139629081356096 kBZip2Compression supported: 0
|
||||
2026/04/02-21:13:52.985327 139629081356096 kCustomCompressionBB supported: 0
|
||||
2026/04/02-21:13:52.985328 139629081356096 kCustomCompression9C supported: 0
|
||||
2026/04/02-21:13:52.985328 139629081356096 kCustomCompressionC9 supported: 0
|
||||
2026/04/02-21:13:52.985329 139629081356096 kCustomCompressionCC supported: 0
|
||||
2026/04/02-21:13:52.985330 139629081356096 kCustomCompression92 supported: 0
|
||||
2026/04/02-21:13:52.985330 139629081356096 kCustomCompressionB9 supported: 0
|
||||
2026/04/02-21:13:52.985331 139629081356096 kCustomCompression8F supported: 0
|
||||
2026/04/02-21:13:52.985331 139629081356096 kCustomCompression8A supported: 0
|
||||
2026/04/02-21:13:52.985332 139629081356096 kCustomCompression9B supported: 0
|
||||
2026/04/02-21:13:52.985333 139629081356096 kZSTD supported: 0
|
||||
2026/04/02-21:13:52.985333 139629081356096 kCustomCompressionAA supported: 0
|
||||
2026/04/02-21:13:52.985334 139629081356096 kCustomCompressionA2 supported: 0
|
||||
2026/04/02-21:13:52.985335 139629081356096 kZlibCompression supported: 0
|
||||
2026/04/02-21:13:52.985335 139629081356096 kXpressCompression supported: 0
|
||||
2026/04/02-21:13:52.985336 139629081356096 kCustomCompressionFD supported: 0
|
||||
2026/04/02-21:13:52.985337 139629081356096 kCustomCompressionE2 supported: 0
|
||||
2026/04/02-21:13:52.985338 139629081356096 kLZ4HCCompression supported: 1
|
||||
2026/04/02-21:13:52.985338 139629081356096 kCustomCompressionA6 supported: 0
|
||||
2026/04/02-21:13:52.985339 139629081356096 kCustomCompression85 supported: 0
|
||||
2026/04/02-21:13:52.985339 139629081356096 kCustomCompressionA4 supported: 0
|
||||
2026/04/02-21:13:52.985340 139629081356096 kCustomCompression86 supported: 0
|
||||
2026/04/02-21:13:52.985341 139629081356096 kCustomCompression83 supported: 0
|
||||
2026/04/02-21:13:52.985341 139629081356096 kCustomCompression87 supported: 0
|
||||
2026/04/02-21:13:52.985342 139629081356096 kCustomCompression89 supported: 0
|
||||
2026/04/02-21:13:52.985342 139629081356096 kCustomCompression8C supported: 0
|
||||
2026/04/02-21:13:52.985343 139629081356096 kCustomCompressionDB supported: 0
|
||||
2026/04/02-21:13:52.985344 139629081356096 kCustomCompressionF3 supported: 0
|
||||
2026/04/02-21:13:52.985344 139629081356096 kCustomCompressionE6 supported: 0
|
||||
2026/04/02-21:13:52.985345 139629081356096 kCustomCompression8E supported: 0
|
||||
2026/04/02-21:13:52.985346 139629081356096 kCustomCompressionDA supported: 0
|
||||
2026/04/02-21:13:52.985346 139629081356096 kCustomCompression93 supported: 0
|
||||
2026/04/02-21:13:52.985347 139629081356096 kCustomCompression94 supported: 0
|
||||
2026/04/02-21:13:52.985347 139629081356096 kCustomCompression9E supported: 0
|
||||
2026/04/02-21:13:52.985348 139629081356096 kCustomCompressionB4 supported: 0
|
||||
2026/04/02-21:13:52.985349 139629081356096 kCustomCompressionFB supported: 0
|
||||
2026/04/02-21:13:52.985349 139629081356096 kCustomCompressionB5 supported: 0
|
||||
2026/04/02-21:13:52.985350 139629081356096 kCustomCompressionD5 supported: 0
|
||||
2026/04/02-21:13:52.985351 139629081356096 kCustomCompressionB8 supported: 0
|
||||
2026/04/02-21:13:52.985351 139629081356096 kCustomCompressionD1 supported: 0
|
||||
2026/04/02-21:13:52.985352 139629081356096 kCustomCompressionBA supported: 0
|
||||
2026/04/02-21:13:52.985352 139629081356096 kCustomCompressionBC supported: 0
|
||||
2026/04/02-21:13:52.985353 139629081356096 kCustomCompressionCE supported: 0
|
||||
2026/04/02-21:13:52.985354 139629081356096 kCustomCompressionBD supported: 0
|
||||
2026/04/02-21:13:52.985354 139629081356096 kCustomCompressionC4 supported: 0
|
||||
2026/04/02-21:13:52.985355 139629081356096 kCustomCompression9A supported: 0
|
||||
2026/04/02-21:13:52.985356 139629081356096 kCustomCompression99 supported: 0
|
||||
2026/04/02-21:13:52.985356 139629081356096 kCustomCompressionBE supported: 0
|
||||
2026/04/02-21:13:52.985357 139629081356096 kCustomCompressionE5 supported: 0
|
||||
2026/04/02-21:13:52.985357 139629081356096 kCustomCompressionD9 supported: 0
|
||||
2026/04/02-21:13:52.985358 139629081356096 kCustomCompressionC1 supported: 0
|
||||
2026/04/02-21:13:52.985359 139629081356096 kCustomCompressionC5 supported: 0
|
||||
2026/04/02-21:13:52.985359 139629081356096 kCustomCompressionC2 supported: 0
|
||||
2026/04/02-21:13:52.985360 139629081356096 kCustomCompressionA5 supported: 0
|
||||
2026/04/02-21:13:52.985360 139629081356096 kCustomCompressionC7 supported: 0
|
||||
2026/04/02-21:13:52.985361 139629081356096 kCustomCompressionBF supported: 0
|
||||
2026/04/02-21:13:52.985362 139629081356096 kCustomCompressionE8 supported: 0
|
||||
2026/04/02-21:13:52.985362 139629081356096 kCustomCompressionC8 supported: 0
|
||||
2026/04/02-21:13:52.985363 139629081356096 kCustomCompressionAF supported: 0
|
||||
2026/04/02-21:13:52.985364 139629081356096 kCustomCompressionCA supported: 0
|
||||
2026/04/02-21:13:52.985364 139629081356096 kCustomCompressionCD supported: 0
|
||||
2026/04/02-21:13:52.985365 139629081356096 kCustomCompressionC0 supported: 0
|
||||
2026/04/02-21:13:52.985365 139629081356096 kCustomCompressionCF supported: 0
|
||||
2026/04/02-21:13:52.985366 139629081356096 kCustomCompressionF9 supported: 0
|
||||
2026/04/02-21:13:52.985367 139629081356096 kCustomCompressionD0 supported: 0
|
||||
2026/04/02-21:13:52.985368 139629081356096 kCustomCompressionD2 supported: 0
|
||||
2026/04/02-21:13:52.985368 139629081356096 kCustomCompressionAD supported: 0
|
||||
2026/04/02-21:13:52.985369 139629081356096 kCustomCompressionD3 supported: 0
|
||||
2026/04/02-21:13:52.985370 139629081356096 kCustomCompressionD4 supported: 0
|
||||
2026/04/02-21:13:52.985370 139629081356096 kCustomCompressionD7 supported: 0
|
||||
2026/04/02-21:13:52.985371 139629081356096 kCustomCompression82 supported: 0
|
||||
2026/04/02-21:13:52.985371 139629081356096 kCustomCompressionDD supported: 0
|
||||
2026/04/02-21:13:52.985372 139629081356096 kCustomCompressionC3 supported: 0
|
||||
2026/04/02-21:13:52.985373 139629081356096 kCustomCompressionEE supported: 0
|
||||
2026/04/02-21:13:52.985373 139629081356096 kCustomCompressionDE supported: 0
|
||||
2026/04/02-21:13:52.985374 139629081356096 kCustomCompressionDF supported: 0
|
||||
2026/04/02-21:13:52.985374 139629081356096 kCustomCompressionA7 supported: 0
|
||||
2026/04/02-21:13:52.985375 139629081356096 kCustomCompressionE0 supported: 0
|
||||
2026/04/02-21:13:52.985376 139629081356096 kCustomCompressionF1 supported: 0
|
||||
2026/04/02-21:13:52.985376 139629081356096 kCustomCompressionE1 supported: 0
|
||||
2026/04/02-21:13:52.985377 139629081356096 kCustomCompressionF5 supported: 0
|
||||
2026/04/02-21:13:52.985378 139629081356096 kCustomCompression80 supported: 0
|
||||
2026/04/02-21:13:52.985378 139629081356096 kCustomCompressionE3 supported: 0
|
||||
2026/04/02-21:13:52.985379 139629081356096 kCustomCompressionE4 supported: 0
|
||||
2026/04/02-21:13:52.985379 139629081356096 kCustomCompressionB0 supported: 0
|
||||
2026/04/02-21:13:52.985380 139629081356096 kCustomCompressionEA supported: 0
|
||||
2026/04/02-21:13:52.985381 139629081356096 kCustomCompressionFA supported: 0
|
||||
2026/04/02-21:13:52.985381 139629081356096 kCustomCompressionE7 supported: 0
|
||||
2026/04/02-21:13:52.985382 139629081356096 kCustomCompressionAE supported: 0
|
||||
2026/04/02-21:13:52.985382 139629081356096 kCustomCompressionEB supported: 0
|
||||
2026/04/02-21:13:52.985383 139629081356096 kCustomCompressionED supported: 0
|
||||
2026/04/02-21:13:52.985384 139629081356096 kCustomCompressionB6 supported: 0
|
||||
2026/04/02-21:13:52.985384 139629081356096 kCustomCompressionEF supported: 0
|
||||
2026/04/02-21:13:52.985385 139629081356096 kCustomCompressionF0 supported: 0
|
||||
2026/04/02-21:13:52.985386 139629081356096 kCustomCompressionB7 supported: 0
|
||||
2026/04/02-21:13:52.985386 139629081356096 kCustomCompressionF2 supported: 0
|
||||
2026/04/02-21:13:52.985387 139629081356096 kCustomCompressionA1 supported: 0
|
||||
2026/04/02-21:13:52.985387 139629081356096 kCustomCompressionF4 supported: 0
|
||||
2026/04/02-21:13:52.985388 139629081356096 kSnappyCompression supported: 0
|
||||
2026/04/02-21:13:52.985389 139629081356096 kCustomCompressionF6 supported: 0
|
||||
2026/04/02-21:13:52.985390 139629081356096 Fast CRC32 supported: Not supported on x86
|
||||
2026/04/02-21:13:52.985391 139629081356096 DMutex implementation: pthread_mutex_t
|
||||
2026/04/02-21:13:52.985391 139629081356096 Jemalloc supported: 0
|
||||
2026/04/02-21:13:52.985414 139629081356096 [WARN] [db/db_impl/db_impl_open.cc:2687] DB::Open() failed: IO error: lock hold by current process, acquire time 1775157232 acquiring thread 139629081356096: data/osint/oxigraph/LOCK: No locks available
|
||||
@@ -0,0 +1,238 @@
|
||||
2026/04/02-21:13:52.986288 139629081356096 RocksDB version: 10.10.1
|
||||
2026/04/02-21:13:52.986311 139629081356096 DB SUMMARY
|
||||
2026/04/02-21:13:52.986313 139629081356096 Host name (Env): Lucas
|
||||
2026/04/02-21:13:52.986314 139629081356096 DB Session ID: 86F26ZGOLUEYUL8ZU322
|
||||
2026/04/02-21:13:52.986330 139629081356096 CURRENT file: CURRENT
|
||||
2026/04/02-21:13:52.986331 139629081356096 IDENTITY file: IDENTITY
|
||||
2026/04/02-21:13:52.986334 139629081356096 MANIFEST file: MANIFEST-000034 size: 1785 Bytes
|
||||
2026/04/02-21:13:52.986335 139629081356096 SST files in data/osint/oxigraph dir, Total Num: 5, files: 000011.sst 000015.sst 000016.sst 000017.sst 000018.sst
|
||||
2026/04/02-21:13:52.986337 139629081356096 Write Ahead Log file in data/osint/oxigraph: 000033.log size: 0 ;
|
||||
2026/04/02-21:13:52.986338 139629081356096 Options.error_if_exists: 0
|
||||
2026/04/02-21:13:52.986339 139629081356096 Options.create_if_missing: 1
|
||||
2026/04/02-21:13:52.986339 139629081356096 Options.paranoid_checks: 1
|
||||
2026/04/02-21:13:52.986340 139629081356096 Options.flush_verify_memtable_count: 1
|
||||
2026/04/02-21:13:52.986341 139629081356096 Options.compaction_verify_record_count: 1
|
||||
2026/04/02-21:13:52.986341 139629081356096 Options.track_and_verify_wals_in_manifest: 0
|
||||
2026/04/02-21:13:52.986342 139629081356096 Options.track_and_verify_wals: 0
|
||||
2026/04/02-21:13:52.986343 139629081356096 Options.verify_sst_unique_id_in_manifest: 1
|
||||
2026/04/02-21:13:52.986343 139629081356096 Options.env: 0x3a912f30
|
||||
2026/04/02-21:13:52.986344 139629081356096 Options.fs: PosixFileSystem
|
||||
2026/04/02-21:13:52.986345 139629081356096 Options.info_log: 0x3aa53570
|
||||
2026/04/02-21:13:52.986346 139629081356096 Options.max_file_opening_threads: 16
|
||||
2026/04/02-21:13:52.986347 139629081356096 Options.statistics: (nil)
|
||||
2026/04/02-21:13:52.986347 139629081356096 Options.use_fsync: 0
|
||||
2026/04/02-21:13:52.986348 139629081356096 Options.max_log_file_size: 1048576
|
||||
2026/04/02-21:13:52.986349 139629081356096 Options.log_file_time_to_roll: 0
|
||||
2026/04/02-21:13:52.986349 139629081356096 Options.keep_log_file_num: 1000
|
||||
2026/04/02-21:13:52.986350 139629081356096 Options.recycle_log_file_num: 10
|
||||
2026/04/02-21:13:52.986351 139629081356096 Options.allow_fallocate: 1
|
||||
2026/04/02-21:13:52.986351 139629081356096 Options.allow_mmap_reads: 0
|
||||
2026/04/02-21:13:52.986352 139629081356096 Options.allow_mmap_writes: 0
|
||||
2026/04/02-21:13:52.986353 139629081356096 Options.use_direct_reads: 0
|
||||
2026/04/02-21:13:52.986353 139629081356096 Options.use_direct_io_for_flush_and_compaction: 0
|
||||
2026/04/02-21:13:52.986354 139629081356096 Options.create_missing_column_families: 1
|
||||
2026/04/02-21:13:52.986354 139629081356096 Options.db_log_dir:
|
||||
2026/04/02-21:13:52.986355 139629081356096 Options.wal_dir:
|
||||
2026/04/02-21:13:52.986356 139629081356096 Options.table_cache_numshardbits: 6
|
||||
2026/04/02-21:13:52.986356 139629081356096 Options.WAL_ttl_seconds: 0
|
||||
2026/04/02-21:13:52.986357 139629081356096 Options.WAL_size_limit_MB: 0
|
||||
2026/04/02-21:13:52.986358 139629081356096 Options.max_write_batch_group_size_bytes: 1048576
|
||||
2026/04/02-21:13:52.986358 139629081356096 Options.is_fd_close_on_exec: 1
|
||||
2026/04/02-21:13:52.986359 139629081356096 Options.advise_random_on_open: 1
|
||||
2026/04/02-21:13:52.986360 139629081356096 Options.db_write_buffer_size: 0
|
||||
2026/04/02-21:13:52.986360 139629081356096 Options.write_buffer_manager: 0x3aa0d3c0
|
||||
2026/04/02-21:13:52.986361 139629081356096 Options.use_adaptive_mutex: 0
|
||||
2026/04/02-21:13:52.986362 139629081356096 Options.rate_limiter: (nil)
|
||||
2026/04/02-21:13:52.986362 139629081356096 Options.sst_file_manager.rate_bytes_per_sec: 0
|
||||
2026/04/02-21:13:52.986363 139629081356096 Options.wal_recovery_mode: 2
|
||||
2026/04/02-21:13:52.986364 139629081356096 Options.enable_thread_tracking: 0
|
||||
2026/04/02-21:13:52.986364 139629081356096 Options.enable_pipelined_write: 0
|
||||
2026/04/02-21:13:52.986365 139629081356096 Options.unordered_write: 0
|
||||
2026/04/02-21:13:52.986365 139629081356096 Options.allow_concurrent_memtable_write: 1
|
||||
2026/04/02-21:13:52.986366 139629081356096 Options.enable_write_thread_adaptive_yield: 1
|
||||
2026/04/02-21:13:52.986367 139629081356096 Options.write_thread_max_yield_usec: 100
|
||||
2026/04/02-21:13:52.986367 139629081356096 Options.write_thread_slow_yield_usec: 3
|
||||
2026/04/02-21:13:52.986368 139629081356096 Options.row_cache: None
|
||||
2026/04/02-21:13:52.986369 139629081356096 Options.wal_filter: None
|
||||
2026/04/02-21:13:52.986369 139629081356096 Options.avoid_flush_during_recovery: 0
|
||||
2026/04/02-21:13:52.986370 139629081356096 Options.allow_ingest_behind: 0
|
||||
2026/04/02-21:13:52.986371 139629081356096 Options.two_write_queues: 0
|
||||
2026/04/02-21:13:52.986371 139629081356096 Options.manual_wal_flush: 0
|
||||
2026/04/02-21:13:52.986372 139629081356096 Options.wal_compression: 0
|
||||
2026/04/02-21:13:52.986372 139629081356096 Options.background_close_inactive_wals: 0
|
||||
2026/04/02-21:13:52.986373 139629081356096 Options.atomic_flush: 0
|
||||
2026/04/02-21:13:52.986374 139629081356096 Options.avoid_unnecessary_blocking_io: 0
|
||||
2026/04/02-21:13:52.986374 139629081356096 Options.prefix_seek_opt_in_only: 0
|
||||
2026/04/02-21:13:52.986375 139629081356096 Options.persist_stats_to_disk: 0
|
||||
2026/04/02-21:13:52.986375 139629081356096 Options.write_dbid_to_manifest: 1
|
||||
2026/04/02-21:13:52.986376 139629081356096 Options.write_identity_file: 1
|
||||
2026/04/02-21:13:52.986377 139629081356096 Options.log_readahead_size: 0
|
||||
2026/04/02-21:13:52.986377 139629081356096 Options.file_checksum_gen_factory: Unknown
|
||||
2026/04/02-21:13:52.986378 139629081356096 Options.best_efforts_recovery: 0
|
||||
2026/04/02-21:13:52.986379 139629081356096 Options.max_bgerror_resume_count: 2147483647
|
||||
2026/04/02-21:13:52.986379 139629081356096 Options.bgerror_resume_retry_interval: 1000000
|
||||
2026/04/02-21:13:52.986380 139629081356096 Options.allow_data_in_errors: 0
|
||||
2026/04/02-21:13:52.986381 139629081356096 Options.db_host_id: __hostname__
|
||||
2026/04/02-21:13:52.986381 139629081356096 Options.enforce_single_del_contracts: true
|
||||
2026/04/02-21:13:52.986382 139629081356096 Options.metadata_write_temperature: kUnknown
|
||||
2026/04/02-21:13:52.986383 139629081356096 Options.wal_write_temperature: kUnknown
|
||||
2026/04/02-21:13:52.986383 139629081356096 Options.max_background_jobs: 24
|
||||
2026/04/02-21:13:52.986384 139629081356096 Options.max_background_compactions: -1
|
||||
2026/04/02-21:13:52.986385 139629081356096 Options.max_subcompactions: 1
|
||||
2026/04/02-21:13:52.986385 139629081356096 Options.avoid_flush_during_shutdown: 0
|
||||
2026/04/02-21:13:52.986386 139629081356096 Options.writable_file_max_buffer_size: 1048576
|
||||
2026/04/02-21:13:52.986387 139629081356096 Options.delayed_write_rate : 16777216
|
||||
2026/04/02-21:13:52.986387 139629081356096 Options.max_total_wal_size: 0
|
||||
2026/04/02-21:13:52.986388 139629081356096 Options.delete_obsolete_files_period_micros: 21600000000
|
||||
2026/04/02-21:13:52.986389 139629081356096 Options.stats_dump_period_sec: 600
|
||||
2026/04/02-21:13:52.986389 139629081356096 Options.stats_persist_period_sec: 600
|
||||
2026/04/02-21:13:52.986390 139629081356096 Options.stats_history_buffer_size: 1048576
|
||||
2026/04/02-21:13:52.986391 139629081356096 Options.max_open_files: 4048
|
||||
2026/04/02-21:13:52.986391 139629081356096 Options.bytes_per_sync: 0
|
||||
2026/04/02-21:13:52.986392 139629081356096 Options.wal_bytes_per_sync: 0
|
||||
2026/04/02-21:13:52.986393 139629081356096 Options.strict_bytes_per_sync: 0
|
||||
2026/04/02-21:13:52.986393 139629081356096 Options.compaction_readahead_size: 2097152
|
||||
2026/04/02-21:13:52.986394 139629081356096 Options.max_background_flushes: -1
|
||||
2026/04/02-21:13:52.986394 139629081356096 Options.max_manifest_file_size: 1073741824
|
||||
2026/04/02-21:13:52.986395 139629081356096 Options.max_manifest_space_amp_pct: 500
|
||||
2026/04/02-21:13:52.986396 139629081356096 Options.manifest_preallocation_size: 4194304
|
||||
2026/04/02-21:13:52.986396 139629081356096 Options.daily_offpeak_time_utc:
|
||||
2026/04/02-21:13:52.986397 139629081356096 Compression algorithms supported:
|
||||
2026/04/02-21:13:52.986398 139629081356096 kCustomCompressionFE supported: 0
|
||||
2026/04/02-21:13:52.986399 139629081356096 kCustomCompressionFC supported: 0
|
||||
2026/04/02-21:13:52.986399 139629081356096 kCustomCompressionF8 supported: 0
|
||||
2026/04/02-21:13:52.986400 139629081356096 kCustomCompressionF7 supported: 0
|
||||
2026/04/02-21:13:52.986401 139629081356096 kCustomCompressionB2 supported: 0
|
||||
2026/04/02-21:13:52.986401 139629081356096 kLZ4Compression supported: 1
|
||||
2026/04/02-21:13:52.986402 139629081356096 kCustomCompression88 supported: 0
|
||||
2026/04/02-21:13:52.986403 139629081356096 kCustomCompressionD8 supported: 0
|
||||
2026/04/02-21:13:52.986403 139629081356096 kCustomCompression9F supported: 0
|
||||
2026/04/02-21:13:52.986404 139629081356096 kCustomCompressionD6 supported: 0
|
||||
2026/04/02-21:13:52.986405 139629081356096 kCustomCompressionA9 supported: 0
|
||||
2026/04/02-21:13:52.986405 139629081356096 kCustomCompressionEC supported: 0
|
||||
2026/04/02-21:13:52.986406 139629081356096 kCustomCompressionA3 supported: 0
|
||||
2026/04/02-21:13:52.986407 139629081356096 kCustomCompressionCB supported: 0
|
||||
2026/04/02-21:13:52.986407 139629081356096 kCustomCompression90 supported: 0
|
||||
2026/04/02-21:13:52.986408 139629081356096 kCustomCompressionA0 supported: 0
|
||||
2026/04/02-21:13:52.986409 139629081356096 kCustomCompressionC6 supported: 0
|
||||
2026/04/02-21:13:52.986409 139629081356096 kCustomCompression9D supported: 0
|
||||
2026/04/02-21:13:52.986410 139629081356096 kCustomCompression8B supported: 0
|
||||
2026/04/02-21:13:52.986410 139629081356096 kCustomCompressionA8 supported: 0
|
||||
2026/04/02-21:13:52.986411 139629081356096 kCustomCompression8D supported: 0
|
||||
2026/04/02-21:13:52.986412 139629081356096 kCustomCompression97 supported: 0
|
||||
2026/04/02-21:13:52.986412 139629081356096 kCustomCompression98 supported: 0
|
||||
2026/04/02-21:13:52.986413 139629081356096 kCustomCompressionAC supported: 0
|
||||
2026/04/02-21:13:52.986414 139629081356096 kCustomCompressionE9 supported: 0
|
||||
2026/04/02-21:13:52.986415 139629081356096 kCustomCompression96 supported: 0
|
||||
2026/04/02-21:13:52.986415 139629081356096 kCustomCompressionB1 supported: 0
|
||||
2026/04/02-21:13:52.986416 139629081356096 kCustomCompression95 supported: 0
|
||||
2026/04/02-21:13:52.986416 139629081356096 kCustomCompression84 supported: 0
|
||||
2026/04/02-21:13:52.986417 139629081356096 kCustomCompression91 supported: 0
|
||||
2026/04/02-21:13:52.986418 139629081356096 kCustomCompressionAB supported: 0
|
||||
2026/04/02-21:13:52.986418 139629081356096 kCustomCompressionB3 supported: 0
|
||||
2026/04/02-21:13:52.986419 139629081356096 kCustomCompression81 supported: 0
|
||||
2026/04/02-21:13:52.986420 139629081356096 kCustomCompressionDC supported: 0
|
||||
2026/04/02-21:13:52.986420 139629081356096 kBZip2Compression supported: 0
|
||||
2026/04/02-21:13:52.986421 139629081356096 kCustomCompressionBB supported: 0
|
||||
2026/04/02-21:13:52.986422 139629081356096 kCustomCompression9C supported: 0
|
||||
2026/04/02-21:13:52.986422 139629081356096 kCustomCompressionC9 supported: 0
|
||||
2026/04/02-21:13:52.986423 139629081356096 kCustomCompressionCC supported: 0
|
||||
2026/04/02-21:13:52.986423 139629081356096 kCustomCompression92 supported: 0
|
||||
2026/04/02-21:13:52.986424 139629081356096 kCustomCompressionB9 supported: 0
|
||||
2026/04/02-21:13:52.986425 139629081356096 kCustomCompression8F supported: 0
|
||||
2026/04/02-21:13:52.986425 139629081356096 kCustomCompression8A supported: 0
|
||||
2026/04/02-21:13:52.986426 139629081356096 kCustomCompression9B supported: 0
|
||||
2026/04/02-21:13:52.986427 139629081356096 kZSTD supported: 0
|
||||
2026/04/02-21:13:52.986428 139629081356096 kCustomCompressionAA supported: 0
|
||||
2026/04/02-21:13:52.986428 139629081356096 kCustomCompressionA2 supported: 0
|
||||
2026/04/02-21:13:52.986429 139629081356096 kZlibCompression supported: 0
|
||||
2026/04/02-21:13:52.986430 139629081356096 kXpressCompression supported: 0
|
||||
2026/04/02-21:13:52.986430 139629081356096 kCustomCompressionFD supported: 0
|
||||
2026/04/02-21:13:52.986431 139629081356096 kCustomCompressionE2 supported: 0
|
||||
2026/04/02-21:13:52.986432 139629081356096 kLZ4HCCompression supported: 1
|
||||
2026/04/02-21:13:52.986432 139629081356096 kCustomCompressionA6 supported: 0
|
||||
2026/04/02-21:13:52.986433 139629081356096 kCustomCompression85 supported: 0
|
||||
2026/04/02-21:13:52.986433 139629081356096 kCustomCompressionA4 supported: 0
|
||||
2026/04/02-21:13:52.986434 139629081356096 kCustomCompression86 supported: 0
|
||||
2026/04/02-21:13:52.986435 139629081356096 kCustomCompression83 supported: 0
|
||||
2026/04/02-21:13:52.986435 139629081356096 kCustomCompression87 supported: 0
|
||||
2026/04/02-21:13:52.986436 139629081356096 kCustomCompression89 supported: 0
|
||||
2026/04/02-21:13:52.986437 139629081356096 kCustomCompression8C supported: 0
|
||||
2026/04/02-21:13:52.986437 139629081356096 kCustomCompressionDB supported: 0
|
||||
2026/04/02-21:13:52.986438 139629081356096 kCustomCompressionF3 supported: 0
|
||||
2026/04/02-21:13:52.986438 139629081356096 kCustomCompressionE6 supported: 0
|
||||
2026/04/02-21:13:52.986439 139629081356096 kCustomCompression8E supported: 0
|
||||
2026/04/02-21:13:52.986440 139629081356096 kCustomCompressionDA supported: 0
|
||||
2026/04/02-21:13:52.986440 139629081356096 kCustomCompression93 supported: 0
|
||||
2026/04/02-21:13:52.986441 139629081356096 kCustomCompression94 supported: 0
|
||||
2026/04/02-21:13:52.986442 139629081356096 kCustomCompression9E supported: 0
|
||||
2026/04/02-21:13:52.986442 139629081356096 kCustomCompressionB4 supported: 0
|
||||
2026/04/02-21:13:52.986443 139629081356096 kCustomCompressionFB supported: 0
|
||||
2026/04/02-21:13:52.986443 139629081356096 kCustomCompressionB5 supported: 0
|
||||
2026/04/02-21:13:52.986444 139629081356096 kCustomCompressionD5 supported: 0
|
||||
2026/04/02-21:13:52.986445 139629081356096 kCustomCompressionB8 supported: 0
|
||||
2026/04/02-21:13:52.986445 139629081356096 kCustomCompressionD1 supported: 0
|
||||
2026/04/02-21:13:52.986446 139629081356096 kCustomCompressionBA supported: 0
|
||||
2026/04/02-21:13:52.986447 139629081356096 kCustomCompressionBC supported: 0
|
||||
2026/04/02-21:13:52.986447 139629081356096 kCustomCompressionCE supported: 0
|
||||
2026/04/02-21:13:52.986448 139629081356096 kCustomCompressionBD supported: 0
|
||||
2026/04/02-21:13:52.986449 139629081356096 kCustomCompressionC4 supported: 0
|
||||
2026/04/02-21:13:52.986449 139629081356096 kCustomCompression9A supported: 0
|
||||
2026/04/02-21:13:52.986450 139629081356096 kCustomCompression99 supported: 0
|
||||
2026/04/02-21:13:52.986450 139629081356096 kCustomCompressionBE supported: 0
|
||||
2026/04/02-21:13:52.986451 139629081356096 kCustomCompressionE5 supported: 0
|
||||
2026/04/02-21:13:52.986452 139629081356096 kCustomCompressionD9 supported: 0
|
||||
2026/04/02-21:13:52.986452 139629081356096 kCustomCompressionC1 supported: 0
|
||||
2026/04/02-21:13:52.986453 139629081356096 kCustomCompressionC5 supported: 0
|
||||
2026/04/02-21:13:52.986453 139629081356096 kCustomCompressionC2 supported: 0
|
||||
2026/04/02-21:13:52.986454 139629081356096 kCustomCompressionA5 supported: 0
|
||||
2026/04/02-21:13:52.986455 139629081356096 kCustomCompressionC7 supported: 0
|
||||
2026/04/02-21:13:52.986455 139629081356096 kCustomCompressionBF supported: 0
|
||||
2026/04/02-21:13:52.986456 139629081356096 kCustomCompressionE8 supported: 0
|
||||
2026/04/02-21:13:52.986456 139629081356096 kCustomCompressionC8 supported: 0
|
||||
2026/04/02-21:13:52.986457 139629081356096 kCustomCompressionAF supported: 0
|
||||
2026/04/02-21:13:52.986458 139629081356096 kCustomCompressionCA supported: 0
|
||||
2026/04/02-21:13:52.986458 139629081356096 kCustomCompressionCD supported: 0
|
||||
2026/04/02-21:13:52.986459 139629081356096 kCustomCompressionC0 supported: 0
|
||||
2026/04/02-21:13:52.986460 139629081356096 kCustomCompressionCF supported: 0
|
||||
2026/04/02-21:13:52.986460 139629081356096 kCustomCompressionF9 supported: 0
|
||||
2026/04/02-21:13:52.986461 139629081356096 kCustomCompressionD0 supported: 0
|
||||
2026/04/02-21:13:52.986462 139629081356096 kCustomCompressionD2 supported: 0
|
||||
2026/04/02-21:13:52.986462 139629081356096 kCustomCompressionAD supported: 0
|
||||
2026/04/02-21:13:52.986463 139629081356096 kCustomCompressionD3 supported: 0
|
||||
2026/04/02-21:13:52.986464 139629081356096 kCustomCompressionD4 supported: 0
|
||||
2026/04/02-21:13:52.986464 139629081356096 kCustomCompressionD7 supported: 0
|
||||
2026/04/02-21:13:52.986465 139629081356096 kCustomCompression82 supported: 0
|
||||
2026/04/02-21:13:52.986465 139629081356096 kCustomCompressionDD supported: 0
|
||||
2026/04/02-21:13:52.986466 139629081356096 kCustomCompressionC3 supported: 0
|
||||
2026/04/02-21:13:52.986467 139629081356096 kCustomCompressionEE supported: 0
|
||||
2026/04/02-21:13:52.986467 139629081356096 kCustomCompressionDE supported: 0
|
||||
2026/04/02-21:13:52.986468 139629081356096 kCustomCompressionDF supported: 0
|
||||
2026/04/02-21:13:52.986469 139629081356096 kCustomCompressionA7 supported: 0
|
||||
2026/04/02-21:13:52.986469 139629081356096 kCustomCompressionE0 supported: 0
|
||||
2026/04/02-21:13:52.986470 139629081356096 kCustomCompressionF1 supported: 0
|
||||
2026/04/02-21:13:52.986470 139629081356096 kCustomCompressionE1 supported: 0
|
||||
2026/04/02-21:13:52.986471 139629081356096 kCustomCompressionF5 supported: 0
|
||||
2026/04/02-21:13:52.986472 139629081356096 kCustomCompression80 supported: 0
|
||||
2026/04/02-21:13:52.986472 139629081356096 kCustomCompressionE3 supported: 0
|
||||
2026/04/02-21:13:52.986473 139629081356096 kCustomCompressionE4 supported: 0
|
||||
2026/04/02-21:13:52.986473 139629081356096 kCustomCompressionB0 supported: 0
|
||||
2026/04/02-21:13:52.986474 139629081356096 kCustomCompressionEA supported: 0
|
||||
2026/04/02-21:13:52.986475 139629081356096 kCustomCompressionFA supported: 0
|
||||
2026/04/02-21:13:52.986475 139629081356096 kCustomCompressionE7 supported: 0
|
||||
2026/04/02-21:13:52.986476 139629081356096 kCustomCompressionAE supported: 0
|
||||
2026/04/02-21:13:52.986477 139629081356096 kCustomCompressionEB supported: 0
|
||||
2026/04/02-21:13:52.986477 139629081356096 kCustomCompressionED supported: 0
|
||||
2026/04/02-21:13:52.986478 139629081356096 kCustomCompressionB6 supported: 0
|
||||
2026/04/02-21:13:52.986478 139629081356096 kCustomCompressionEF supported: 0
|
||||
2026/04/02-21:13:52.986479 139629081356096 kCustomCompressionF0 supported: 0
|
||||
2026/04/02-21:13:52.986480 139629081356096 kCustomCompressionB7 supported: 0
|
||||
2026/04/02-21:13:52.986480 139629081356096 kCustomCompressionF2 supported: 0
|
||||
2026/04/02-21:13:52.986481 139629081356096 kCustomCompressionA1 supported: 0
|
||||
2026/04/02-21:13:52.986482 139629081356096 kCustomCompressionF4 supported: 0
|
||||
2026/04/02-21:13:52.986482 139629081356096 kSnappyCompression supported: 0
|
||||
2026/04/02-21:13:52.986483 139629081356096 kCustomCompressionF6 supported: 0
|
||||
2026/04/02-21:13:52.986484 139629081356096 Fast CRC32 supported: Not supported on x86
|
||||
2026/04/02-21:13:52.986485 139629081356096 DMutex implementation: pthread_mutex_t
|
||||
2026/04/02-21:13:52.986485 139629081356096 Jemalloc supported: 0
|
||||
2026/04/02-21:13:52.986503 139629081356096 [WARN] [db/db_impl/db_impl_open.cc:2687] DB::Open() failed: IO error: lock hold by current process, acquire time 1775157232 acquiring thread 139629081356096: data/osint/oxigraph/LOCK: No locks available
|
||||
@@ -0,0 +1,238 @@
|
||||
2026/04/02-21:13:52.987204 139629081356096 RocksDB version: 10.10.1
|
||||
2026/04/02-21:13:52.987225 139629081356096 DB SUMMARY
|
||||
2026/04/02-21:13:52.987227 139629081356096 Host name (Env): Lucas
|
||||
2026/04/02-21:13:52.987228 139629081356096 DB Session ID: 86F26ZGOLUEYUL8ZU323
|
||||
2026/04/02-21:13:52.987245 139629081356096 CURRENT file: CURRENT
|
||||
2026/04/02-21:13:52.987245 139629081356096 IDENTITY file: IDENTITY
|
||||
2026/04/02-21:13:52.987248 139629081356096 MANIFEST file: MANIFEST-000034 size: 1785 Bytes
|
||||
2026/04/02-21:13:52.987249 139629081356096 SST files in data/osint/oxigraph dir, Total Num: 5, files: 000011.sst 000015.sst 000016.sst 000017.sst 000018.sst
|
||||
2026/04/02-21:13:52.987250 139629081356096 Write Ahead Log file in data/osint/oxigraph: 000033.log size: 0 ;
|
||||
2026/04/02-21:13:52.987251 139629081356096 Options.error_if_exists: 0
|
||||
2026/04/02-21:13:52.987252 139629081356096 Options.create_if_missing: 1
|
||||
2026/04/02-21:13:52.987253 139629081356096 Options.paranoid_checks: 1
|
||||
2026/04/02-21:13:52.987253 139629081356096 Options.flush_verify_memtable_count: 1
|
||||
2026/04/02-21:13:52.987254 139629081356096 Options.compaction_verify_record_count: 1
|
||||
2026/04/02-21:13:52.987255 139629081356096 Options.track_and_verify_wals_in_manifest: 0
|
||||
2026/04/02-21:13:52.987255 139629081356096 Options.track_and_verify_wals: 0
|
||||
2026/04/02-21:13:52.987256 139629081356096 Options.verify_sst_unique_id_in_manifest: 1
|
||||
2026/04/02-21:13:52.987257 139629081356096 Options.env: 0x3a912f30
|
||||
2026/04/02-21:13:52.987258 139629081356096 Options.fs: PosixFileSystem
|
||||
2026/04/02-21:13:52.987258 139629081356096 Options.info_log: 0x3aa53570
|
||||
2026/04/02-21:13:52.987259 139629081356096 Options.max_file_opening_threads: 16
|
||||
2026/04/02-21:13:52.987260 139629081356096 Options.statistics: (nil)
|
||||
2026/04/02-21:13:52.987261 139629081356096 Options.use_fsync: 0
|
||||
2026/04/02-21:13:52.987261 139629081356096 Options.max_log_file_size: 1048576
|
||||
2026/04/02-21:13:52.987262 139629081356096 Options.log_file_time_to_roll: 0
|
||||
2026/04/02-21:13:52.987263 139629081356096 Options.keep_log_file_num: 1000
|
||||
2026/04/02-21:13:52.987263 139629081356096 Options.recycle_log_file_num: 10
|
||||
2026/04/02-21:13:52.987264 139629081356096 Options.allow_fallocate: 1
|
||||
2026/04/02-21:13:52.987265 139629081356096 Options.allow_mmap_reads: 0
|
||||
2026/04/02-21:13:52.987265 139629081356096 Options.allow_mmap_writes: 0
|
||||
2026/04/02-21:13:52.987266 139629081356096 Options.use_direct_reads: 0
|
||||
2026/04/02-21:13:52.987267 139629081356096 Options.use_direct_io_for_flush_and_compaction: 0
|
||||
2026/04/02-21:13:52.987267 139629081356096 Options.create_missing_column_families: 1
|
||||
2026/04/02-21:13:52.987268 139629081356096 Options.db_log_dir:
|
||||
2026/04/02-21:13:52.987269 139629081356096 Options.wal_dir:
|
||||
2026/04/02-21:13:52.987269 139629081356096 Options.table_cache_numshardbits: 6
|
||||
2026/04/02-21:13:52.987270 139629081356096 Options.WAL_ttl_seconds: 0
|
||||
2026/04/02-21:13:52.987270 139629081356096 Options.WAL_size_limit_MB: 0
|
||||
2026/04/02-21:13:52.987271 139629081356096 Options.max_write_batch_group_size_bytes: 1048576
|
||||
2026/04/02-21:13:52.987272 139629081356096 Options.is_fd_close_on_exec: 1
|
||||
2026/04/02-21:13:52.987272 139629081356096 Options.advise_random_on_open: 1
|
||||
2026/04/02-21:13:52.987273 139629081356096 Options.db_write_buffer_size: 0
|
||||
2026/04/02-21:13:52.987274 139629081356096 Options.write_buffer_manager: 0x3aa0d3c0
|
||||
2026/04/02-21:13:52.987274 139629081356096 Options.use_adaptive_mutex: 0
|
||||
2026/04/02-21:13:52.987275 139629081356096 Options.rate_limiter: (nil)
|
||||
2026/04/02-21:13:52.987276 139629081356096 Options.sst_file_manager.rate_bytes_per_sec: 0
|
||||
2026/04/02-21:13:52.987276 139629081356096 Options.wal_recovery_mode: 2
|
||||
2026/04/02-21:13:52.987277 139629081356096 Options.enable_thread_tracking: 0
|
||||
2026/04/02-21:13:52.987278 139629081356096 Options.enable_pipelined_write: 0
|
||||
2026/04/02-21:13:52.987278 139629081356096 Options.unordered_write: 0
|
||||
2026/04/02-21:13:52.987279 139629081356096 Options.allow_concurrent_memtable_write: 1
|
||||
2026/04/02-21:13:52.987279 139629081356096 Options.enable_write_thread_adaptive_yield: 1
|
||||
2026/04/02-21:13:52.987280 139629081356096 Options.write_thread_max_yield_usec: 100
|
||||
2026/04/02-21:13:52.987281 139629081356096 Options.write_thread_slow_yield_usec: 3
|
||||
2026/04/02-21:13:52.987281 139629081356096 Options.row_cache: None
|
||||
2026/04/02-21:13:52.987282 139629081356096 Options.wal_filter: None
|
||||
2026/04/02-21:13:52.987282 139629081356096 Options.avoid_flush_during_recovery: 0
|
||||
2026/04/02-21:13:52.987283 139629081356096 Options.allow_ingest_behind: 0
|
||||
2026/04/02-21:13:52.987284 139629081356096 Options.two_write_queues: 0
|
||||
2026/04/02-21:13:52.987284 139629081356096 Options.manual_wal_flush: 0
|
||||
2026/04/02-21:13:52.987285 139629081356096 Options.wal_compression: 0
|
||||
2026/04/02-21:13:52.987285 139629081356096 Options.background_close_inactive_wals: 0
|
||||
2026/04/02-21:13:52.987286 139629081356096 Options.atomic_flush: 0
|
||||
2026/04/02-21:13:52.987287 139629081356096 Options.avoid_unnecessary_blocking_io: 0
|
||||
2026/04/02-21:13:52.987287 139629081356096 Options.prefix_seek_opt_in_only: 0
|
||||
2026/04/02-21:13:52.987288 139629081356096 Options.persist_stats_to_disk: 0
|
||||
2026/04/02-21:13:52.987288 139629081356096 Options.write_dbid_to_manifest: 1
|
||||
2026/04/02-21:13:52.987289 139629081356096 Options.write_identity_file: 1
|
||||
2026/04/02-21:13:52.987290 139629081356096 Options.log_readahead_size: 0
|
||||
2026/04/02-21:13:52.987290 139629081356096 Options.file_checksum_gen_factory: Unknown
|
||||
2026/04/02-21:13:52.987291 139629081356096 Options.best_efforts_recovery: 0
|
||||
2026/04/02-21:13:52.987292 139629081356096 Options.max_bgerror_resume_count: 2147483647
|
||||
2026/04/02-21:13:52.987292 139629081356096 Options.bgerror_resume_retry_interval: 1000000
|
||||
2026/04/02-21:13:52.987293 139629081356096 Options.allow_data_in_errors: 0
|
||||
2026/04/02-21:13:52.987294 139629081356096 Options.db_host_id: __hostname__
|
||||
2026/04/02-21:13:52.987294 139629081356096 Options.enforce_single_del_contracts: true
|
||||
2026/04/02-21:13:52.987295 139629081356096 Options.metadata_write_temperature: kUnknown
|
||||
2026/04/02-21:13:52.987296 139629081356096 Options.wal_write_temperature: kUnknown
|
||||
2026/04/02-21:13:52.987296 139629081356096 Options.max_background_jobs: 24
|
||||
2026/04/02-21:13:52.987297 139629081356096 Options.max_background_compactions: -1
|
||||
2026/04/02-21:13:52.987298 139629081356096 Options.max_subcompactions: 1
|
||||
2026/04/02-21:13:52.987298 139629081356096 Options.avoid_flush_during_shutdown: 0
|
||||
2026/04/02-21:13:52.987299 139629081356096 Options.writable_file_max_buffer_size: 1048576
|
||||
2026/04/02-21:13:52.987300 139629081356096 Options.delayed_write_rate : 16777216
|
||||
2026/04/02-21:13:52.987300 139629081356096 Options.max_total_wal_size: 0
|
||||
2026/04/02-21:13:52.987301 139629081356096 Options.delete_obsolete_files_period_micros: 21600000000
|
||||
2026/04/02-21:13:52.987302 139629081356096 Options.stats_dump_period_sec: 600
|
||||
2026/04/02-21:13:52.987302 139629081356096 Options.stats_persist_period_sec: 600
|
||||
2026/04/02-21:13:52.987303 139629081356096 Options.stats_history_buffer_size: 1048576
|
||||
2026/04/02-21:13:52.987304 139629081356096 Options.max_open_files: 4048
|
||||
2026/04/02-21:13:52.987304 139629081356096 Options.bytes_per_sync: 0
|
||||
2026/04/02-21:13:52.987305 139629081356096 Options.wal_bytes_per_sync: 0
|
||||
2026/04/02-21:13:52.987305 139629081356096 Options.strict_bytes_per_sync: 0
|
||||
2026/04/02-21:13:52.987306 139629081356096 Options.compaction_readahead_size: 2097152
|
||||
2026/04/02-21:13:52.987307 139629081356096 Options.max_background_flushes: -1
|
||||
2026/04/02-21:13:52.987307 139629081356096 Options.max_manifest_file_size: 1073741824
|
||||
2026/04/02-21:13:52.987308 139629081356096 Options.max_manifest_space_amp_pct: 500
|
||||
2026/04/02-21:13:52.987309 139629081356096 Options.manifest_preallocation_size: 4194304
|
||||
2026/04/02-21:13:52.987309 139629081356096 Options.daily_offpeak_time_utc:
|
||||
2026/04/02-21:13:52.987310 139629081356096 Compression algorithms supported:
|
||||
2026/04/02-21:13:52.987311 139629081356096 kCustomCompressionFE supported: 0
|
||||
2026/04/02-21:13:52.987311 139629081356096 kCustomCompressionFC supported: 0
|
||||
2026/04/02-21:13:52.987312 139629081356096 kCustomCompressionF8 supported: 0
|
||||
2026/04/02-21:13:52.987313 139629081356096 kCustomCompressionF7 supported: 0
|
||||
2026/04/02-21:13:52.987313 139629081356096 kCustomCompressionB2 supported: 0
|
||||
2026/04/02-21:13:52.987314 139629081356096 kLZ4Compression supported: 1
|
||||
2026/04/02-21:13:52.987315 139629081356096 kCustomCompression88 supported: 0
|
||||
2026/04/02-21:13:52.987315 139629081356096 kCustomCompressionD8 supported: 0
|
||||
2026/04/02-21:13:52.987316 139629081356096 kCustomCompression9F supported: 0
|
||||
2026/04/02-21:13:52.987317 139629081356096 kCustomCompressionD6 supported: 0
|
||||
2026/04/02-21:13:52.987317 139629081356096 kCustomCompressionA9 supported: 0
|
||||
2026/04/02-21:13:52.987318 139629081356096 kCustomCompressionEC supported: 0
|
||||
2026/04/02-21:13:52.987319 139629081356096 kCustomCompressionA3 supported: 0
|
||||
2026/04/02-21:13:52.987319 139629081356096 kCustomCompressionCB supported: 0
|
||||
2026/04/02-21:13:52.987320 139629081356096 kCustomCompression90 supported: 0
|
||||
2026/04/02-21:13:52.987320 139629081356096 kCustomCompressionA0 supported: 0
|
||||
2026/04/02-21:13:52.987321 139629081356096 kCustomCompressionC6 supported: 0
|
||||
2026/04/02-21:13:52.987322 139629081356096 kCustomCompression9D supported: 0
|
||||
2026/04/02-21:13:52.987322 139629081356096 kCustomCompression8B supported: 0
|
||||
2026/04/02-21:13:52.987323 139629081356096 kCustomCompressionA8 supported: 0
|
||||
2026/04/02-21:13:52.987324 139629081356096 kCustomCompression8D supported: 0
|
||||
2026/04/02-21:13:52.987324 139629081356096 kCustomCompression97 supported: 0
|
||||
2026/04/02-21:13:52.987325 139629081356096 kCustomCompression98 supported: 0
|
||||
2026/04/02-21:13:52.987325 139629081356096 kCustomCompressionAC supported: 0
|
||||
2026/04/02-21:13:52.987326 139629081356096 kCustomCompressionE9 supported: 0
|
||||
2026/04/02-21:13:52.987327 139629081356096 kCustomCompression96 supported: 0
|
||||
2026/04/02-21:13:52.987328 139629081356096 kCustomCompressionB1 supported: 0
|
||||
2026/04/02-21:13:52.987328 139629081356096 kCustomCompression95 supported: 0
|
||||
2026/04/02-21:13:52.987329 139629081356096 kCustomCompression84 supported: 0
|
||||
2026/04/02-21:13:52.987329 139629081356096 kCustomCompression91 supported: 0
|
||||
2026/04/02-21:13:52.987330 139629081356096 kCustomCompressionAB supported: 0
|
||||
2026/04/02-21:13:52.987331 139629081356096 kCustomCompressionB3 supported: 0
|
||||
2026/04/02-21:13:52.987331 139629081356096 kCustomCompression81 supported: 0
|
||||
2026/04/02-21:13:52.987332 139629081356096 kCustomCompressionDC supported: 0
|
||||
2026/04/02-21:13:52.987333 139629081356096 kBZip2Compression supported: 0
|
||||
2026/04/02-21:13:52.987333 139629081356096 kCustomCompressionBB supported: 0
|
||||
2026/04/02-21:13:52.987334 139629081356096 kCustomCompression9C supported: 0
|
||||
2026/04/02-21:13:52.987335 139629081356096 kCustomCompressionC9 supported: 0
|
||||
2026/04/02-21:13:52.987335 139629081356096 kCustomCompressionCC supported: 0
|
||||
2026/04/02-21:13:52.987336 139629081356096 kCustomCompression92 supported: 0
|
||||
2026/04/02-21:13:52.987336 139629081356096 kCustomCompressionB9 supported: 0
|
||||
2026/04/02-21:13:52.987337 139629081356096 kCustomCompression8F supported: 0
|
||||
2026/04/02-21:13:52.987338 139629081356096 kCustomCompression8A supported: 0
|
||||
2026/04/02-21:13:52.987338 139629081356096 kCustomCompression9B supported: 0
|
||||
2026/04/02-21:13:52.987339 139629081356096 kZSTD supported: 0
|
||||
2026/04/02-21:13:52.987340 139629081356096 kCustomCompressionAA supported: 0
|
||||
2026/04/02-21:13:52.987340 139629081356096 kCustomCompressionA2 supported: 0
|
||||
2026/04/02-21:13:52.987341 139629081356096 kZlibCompression supported: 0
|
||||
2026/04/02-21:13:52.987341 139629081356096 kXpressCompression supported: 0
|
||||
2026/04/02-21:13:52.987342 139629081356096 kCustomCompressionFD supported: 0
|
||||
2026/04/02-21:13:52.987343 139629081356096 kCustomCompressionE2 supported: 0
|
||||
2026/04/02-21:13:52.987343 139629081356096 kLZ4HCCompression supported: 1
|
||||
2026/04/02-21:13:52.987344 139629081356096 kCustomCompressionA6 supported: 0
|
||||
2026/04/02-21:13:52.987345 139629081356096 kCustomCompression85 supported: 0
|
||||
2026/04/02-21:13:52.987345 139629081356096 kCustomCompressionA4 supported: 0
|
||||
2026/04/02-21:13:52.987346 139629081356096 kCustomCompression86 supported: 0
|
||||
2026/04/02-21:13:52.987347 139629081356096 kCustomCompression83 supported: 0
|
||||
2026/04/02-21:13:52.987347 139629081356096 kCustomCompression87 supported: 0
|
||||
2026/04/02-21:13:52.987348 139629081356096 kCustomCompression89 supported: 0
|
||||
2026/04/02-21:13:52.987348 139629081356096 kCustomCompression8C supported: 0
|
||||
2026/04/02-21:13:52.987349 139629081356096 kCustomCompressionDB supported: 0
|
||||
2026/04/02-21:13:52.987350 139629081356096 kCustomCompressionF3 supported: 0
|
||||
2026/04/02-21:13:52.987350 139629081356096 kCustomCompressionE6 supported: 0
|
||||
2026/04/02-21:13:52.987351 139629081356096 kCustomCompression8E supported: 0
|
||||
2026/04/02-21:13:52.987352 139629081356096 kCustomCompressionDA supported: 0
|
||||
2026/04/02-21:13:52.987352 139629081356096 kCustomCompression93 supported: 0
|
||||
2026/04/02-21:13:52.987353 139629081356096 kCustomCompression94 supported: 0
|
||||
2026/04/02-21:13:52.987353 139629081356096 kCustomCompression9E supported: 0
|
||||
2026/04/02-21:13:52.987354 139629081356096 kCustomCompressionB4 supported: 0
|
||||
2026/04/02-21:13:52.987355 139629081356096 kCustomCompressionFB supported: 0
|
||||
2026/04/02-21:13:52.987355 139629081356096 kCustomCompressionB5 supported: 0
|
||||
2026/04/02-21:13:52.987356 139629081356096 kCustomCompressionD5 supported: 0
|
||||
2026/04/02-21:13:52.987357 139629081356096 kCustomCompressionB8 supported: 0
|
||||
2026/04/02-21:13:52.987357 139629081356096 kCustomCompressionD1 supported: 0
|
||||
2026/04/02-21:13:52.987358 139629081356096 kCustomCompressionBA supported: 0
|
||||
2026/04/02-21:13:52.987358 139629081356096 kCustomCompressionBC supported: 0
|
||||
2026/04/02-21:13:52.987359 139629081356096 kCustomCompressionCE supported: 0
|
||||
2026/04/02-21:13:52.987360 139629081356096 kCustomCompressionBD supported: 0
|
||||
2026/04/02-21:13:52.987360 139629081356096 kCustomCompressionC4 supported: 0
|
||||
2026/04/02-21:13:52.987361 139629081356096 kCustomCompression9A supported: 0
|
||||
2026/04/02-21:13:52.987362 139629081356096 kCustomCompression99 supported: 0
|
||||
2026/04/02-21:13:52.987362 139629081356096 kCustomCompressionBE supported: 0
|
||||
2026/04/02-21:13:52.987363 139629081356096 kCustomCompressionE5 supported: 0
|
||||
2026/04/02-21:13:52.987363 139629081356096 kCustomCompressionD9 supported: 0
|
||||
2026/04/02-21:13:52.987364 139629081356096 kCustomCompressionC1 supported: 0
|
||||
2026/04/02-21:13:52.987365 139629081356096 kCustomCompressionC5 supported: 0
|
||||
2026/04/02-21:13:52.987365 139629081356096 kCustomCompressionC2 supported: 0
|
||||
2026/04/02-21:13:52.987366 139629081356096 kCustomCompressionA5 supported: 0
|
||||
2026/04/02-21:13:52.987367 139629081356096 kCustomCompressionC7 supported: 0
|
||||
2026/04/02-21:13:52.987367 139629081356096 kCustomCompressionBF supported: 0
|
||||
2026/04/02-21:13:52.987368 139629081356096 kCustomCompressionE8 supported: 0
|
||||
2026/04/02-21:13:52.987368 139629081356096 kCustomCompressionC8 supported: 0
|
||||
2026/04/02-21:13:52.987369 139629081356096 kCustomCompressionAF supported: 0
|
||||
2026/04/02-21:13:52.987370 139629081356096 kCustomCompressionCA supported: 0
|
||||
2026/04/02-21:13:52.987370 139629081356096 kCustomCompressionCD supported: 0
|
||||
2026/04/02-21:13:52.987371 139629081356096 kCustomCompressionC0 supported: 0
|
||||
2026/04/02-21:13:52.987371 139629081356096 kCustomCompressionCF supported: 0
|
||||
2026/04/02-21:13:52.987372 139629081356096 kCustomCompressionF9 supported: 0
|
||||
2026/04/02-21:13:52.987373 139629081356096 kCustomCompressionD0 supported: 0
|
||||
2026/04/02-21:13:52.987373 139629081356096 kCustomCompressionD2 supported: 0
|
||||
2026/04/02-21:13:52.987374 139629081356096 kCustomCompressionAD supported: 0
|
||||
2026/04/02-21:13:52.987375 139629081356096 kCustomCompressionD3 supported: 0
|
||||
2026/04/02-21:13:52.987375 139629081356096 kCustomCompressionD4 supported: 0
|
||||
2026/04/02-21:13:52.987376 139629081356096 kCustomCompressionD7 supported: 0
|
||||
2026/04/02-21:13:52.987376 139629081356096 kCustomCompression82 supported: 0
|
||||
2026/04/02-21:13:52.987377 139629081356096 kCustomCompressionDD supported: 0
|
||||
2026/04/02-21:13:52.987378 139629081356096 kCustomCompressionC3 supported: 0
|
||||
2026/04/02-21:13:52.987378 139629081356096 kCustomCompressionEE supported: 0
|
||||
2026/04/02-21:13:52.987379 139629081356096 kCustomCompressionDE supported: 0
|
||||
2026/04/02-21:13:52.987380 139629081356096 kCustomCompressionDF supported: 0
|
||||
2026/04/02-21:13:52.987380 139629081356096 kCustomCompressionA7 supported: 0
|
||||
2026/04/02-21:13:52.987381 139629081356096 kCustomCompressionE0 supported: 0
|
||||
2026/04/02-21:13:52.987381 139629081356096 kCustomCompressionF1 supported: 0
|
||||
2026/04/02-21:13:52.987382 139629081356096 kCustomCompressionE1 supported: 0
|
||||
2026/04/02-21:13:52.987383 139629081356096 kCustomCompressionF5 supported: 0
|
||||
2026/04/02-21:13:52.987383 139629081356096 kCustomCompression80 supported: 0
|
||||
2026/04/02-21:13:52.987384 139629081356096 kCustomCompressionE3 supported: 0
|
||||
2026/04/02-21:13:52.987384 139629081356096 kCustomCompressionE4 supported: 0
|
||||
2026/04/02-21:13:52.987385 139629081356096 kCustomCompressionB0 supported: 0
|
||||
2026/04/02-21:13:52.987386 139629081356096 kCustomCompressionEA supported: 0
|
||||
2026/04/02-21:13:52.987386 139629081356096 kCustomCompressionFA supported: 0
|
||||
2026/04/02-21:13:52.987387 139629081356096 kCustomCompressionE7 supported: 0
|
||||
2026/04/02-21:13:52.987388 139629081356096 kCustomCompressionAE supported: 0
|
||||
2026/04/02-21:13:52.987388 139629081356096 kCustomCompressionEB supported: 0
|
||||
2026/04/02-21:13:52.987389 139629081356096 kCustomCompressionED supported: 0
|
||||
2026/04/02-21:13:52.987389 139629081356096 kCustomCompressionB6 supported: 0
|
||||
2026/04/02-21:13:52.987390 139629081356096 kCustomCompressionEF supported: 0
|
||||
2026/04/02-21:13:52.987391 139629081356096 kCustomCompressionF0 supported: 0
|
||||
2026/04/02-21:13:52.987391 139629081356096 kCustomCompressionB7 supported: 0
|
||||
2026/04/02-21:13:52.987392 139629081356096 kCustomCompressionF2 supported: 0
|
||||
2026/04/02-21:13:52.987393 139629081356096 kCustomCompressionA1 supported: 0
|
||||
2026/04/02-21:13:52.987393 139629081356096 kCustomCompressionF4 supported: 0
|
||||
2026/04/02-21:13:52.987394 139629081356096 kSnappyCompression supported: 0
|
||||
2026/04/02-21:13:52.987395 139629081356096 kCustomCompressionF6 supported: 0
|
||||
2026/04/02-21:13:52.987395 139629081356096 Fast CRC32 supported: Not supported on x86
|
||||
2026/04/02-21:13:52.987396 139629081356096 DMutex implementation: pthread_mutex_t
|
||||
2026/04/02-21:13:52.987397 139629081356096 Jemalloc supported: 0
|
||||
2026/04/02-21:13:52.987413 139629081356096 [WARN] [db/db_impl/db_impl_open.cc:2687] DB::Open() failed: IO error: lock hold by current process, acquire time 1775157232 acquiring thread 139629081356096: data/osint/oxigraph/LOCK: No locks available
|
||||
@@ -0,0 +1,238 @@
|
||||
2026/04/02-21:13:52.987927 139629081356096 RocksDB version: 10.10.1
|
||||
2026/04/02-21:13:52.987944 139629081356096 DB SUMMARY
|
||||
2026/04/02-21:13:52.987946 139629081356096 Host name (Env): Lucas
|
||||
2026/04/02-21:13:52.987947 139629081356096 DB Session ID: 86F26ZGOLUEYUL8ZU31G
|
||||
2026/04/02-21:13:52.987962 139629081356096 CURRENT file: CURRENT
|
||||
2026/04/02-21:13:52.987963 139629081356096 IDENTITY file: IDENTITY
|
||||
2026/04/02-21:13:52.987965 139629081356096 MANIFEST file: MANIFEST-000034 size: 1785 Bytes
|
||||
2026/04/02-21:13:52.987966 139629081356096 SST files in data/osint/oxigraph dir, Total Num: 5, files: 000011.sst 000015.sst 000016.sst 000017.sst 000018.sst
|
||||
2026/04/02-21:13:52.987967 139629081356096 Write Ahead Log file in data/osint/oxigraph: 000033.log size: 0 ;
|
||||
2026/04/02-21:13:52.987969 139629081356096 Options.error_if_exists: 0
|
||||
2026/04/02-21:13:52.987969 139629081356096 Options.create_if_missing: 1
|
||||
2026/04/02-21:13:52.987970 139629081356096 Options.paranoid_checks: 1
|
||||
2026/04/02-21:13:52.987971 139629081356096 Options.flush_verify_memtable_count: 1
|
||||
2026/04/02-21:13:52.987971 139629081356096 Options.compaction_verify_record_count: 1
|
||||
2026/04/02-21:13:52.987972 139629081356096 Options.track_and_verify_wals_in_manifest: 0
|
||||
2026/04/02-21:13:52.987973 139629081356096 Options.track_and_verify_wals: 0
|
||||
2026/04/02-21:13:52.987974 139629081356096 Options.verify_sst_unique_id_in_manifest: 1
|
||||
2026/04/02-21:13:52.987974 139629081356096 Options.env: 0x3a912f30
|
||||
2026/04/02-21:13:52.987975 139629081356096 Options.fs: PosixFileSystem
|
||||
2026/04/02-21:13:52.987976 139629081356096 Options.info_log: 0x3aa53570
|
||||
2026/04/02-21:13:52.987977 139629081356096 Options.max_file_opening_threads: 16
|
||||
2026/04/02-21:13:52.987977 139629081356096 Options.statistics: (nil)
|
||||
2026/04/02-21:13:52.987978 139629081356096 Options.use_fsync: 0
|
||||
2026/04/02-21:13:52.987979 139629081356096 Options.max_log_file_size: 1048576
|
||||
2026/04/02-21:13:52.987980 139629081356096 Options.log_file_time_to_roll: 0
|
||||
2026/04/02-21:13:52.987980 139629081356096 Options.keep_log_file_num: 1000
|
||||
2026/04/02-21:13:52.987981 139629081356096 Options.recycle_log_file_num: 10
|
||||
2026/04/02-21:13:52.987981 139629081356096 Options.allow_fallocate: 1
|
||||
2026/04/02-21:13:52.987982 139629081356096 Options.allow_mmap_reads: 0
|
||||
2026/04/02-21:13:52.987983 139629081356096 Options.allow_mmap_writes: 0
|
||||
2026/04/02-21:13:52.987983 139629081356096 Options.use_direct_reads: 0
|
||||
2026/04/02-21:13:52.987984 139629081356096 Options.use_direct_io_for_flush_and_compaction: 0
|
||||
2026/04/02-21:13:52.987985 139629081356096 Options.create_missing_column_families: 1
|
||||
2026/04/02-21:13:52.987985 139629081356096 Options.db_log_dir:
|
||||
2026/04/02-21:13:52.987986 139629081356096 Options.wal_dir:
|
||||
2026/04/02-21:13:52.987986 139629081356096 Options.table_cache_numshardbits: 6
|
||||
2026/04/02-21:13:52.987987 139629081356096 Options.WAL_ttl_seconds: 0
|
||||
2026/04/02-21:13:52.987988 139629081356096 Options.WAL_size_limit_MB: 0
|
||||
2026/04/02-21:13:52.987988 139629081356096 Options.max_write_batch_group_size_bytes: 1048576
|
||||
2026/04/02-21:13:52.987989 139629081356096 Options.is_fd_close_on_exec: 1
|
||||
2026/04/02-21:13:52.987990 139629081356096 Options.advise_random_on_open: 1
|
||||
2026/04/02-21:13:52.987990 139629081356096 Options.db_write_buffer_size: 0
|
||||
2026/04/02-21:13:52.987991 139629081356096 Options.write_buffer_manager: 0x3aa0d3c0
|
||||
2026/04/02-21:13:52.987992 139629081356096 Options.use_adaptive_mutex: 0
|
||||
2026/04/02-21:13:52.987992 139629081356096 Options.rate_limiter: (nil)
|
||||
2026/04/02-21:13:52.987993 139629081356096 Options.sst_file_manager.rate_bytes_per_sec: 0
|
||||
2026/04/02-21:13:52.987994 139629081356096 Options.wal_recovery_mode: 2
|
||||
2026/04/02-21:13:52.987994 139629081356096 Options.enable_thread_tracking: 0
|
||||
2026/04/02-21:13:52.987995 139629081356096 Options.enable_pipelined_write: 0
|
||||
2026/04/02-21:13:52.987995 139629081356096 Options.unordered_write: 0
|
||||
2026/04/02-21:13:52.987996 139629081356096 Options.allow_concurrent_memtable_write: 1
|
||||
2026/04/02-21:13:52.987997 139629081356096 Options.enable_write_thread_adaptive_yield: 1
|
||||
2026/04/02-21:13:52.987997 139629081356096 Options.write_thread_max_yield_usec: 100
|
||||
2026/04/02-21:13:52.987998 139629081356096 Options.write_thread_slow_yield_usec: 3
|
||||
2026/04/02-21:13:52.987998 139629081356096 Options.row_cache: None
|
||||
2026/04/02-21:13:52.987999 139629081356096 Options.wal_filter: None
|
||||
2026/04/02-21:13:52.988000 139629081356096 Options.avoid_flush_during_recovery: 0
|
||||
2026/04/02-21:13:52.988000 139629081356096 Options.allow_ingest_behind: 0
|
||||
2026/04/02-21:13:52.988001 139629081356096 Options.two_write_queues: 0
|
||||
2026/04/02-21:13:52.988002 139629081356096 Options.manual_wal_flush: 0
|
||||
2026/04/02-21:13:52.988002 139629081356096 Options.wal_compression: 0
|
||||
2026/04/02-21:13:52.988003 139629081356096 Options.background_close_inactive_wals: 0
|
||||
2026/04/02-21:13:52.988003 139629081356096 Options.atomic_flush: 0
|
||||
2026/04/02-21:13:52.988004 139629081356096 Options.avoid_unnecessary_blocking_io: 0
|
||||
2026/04/02-21:13:52.988005 139629081356096 Options.prefix_seek_opt_in_only: 0
|
||||
2026/04/02-21:13:52.988005 139629081356096 Options.persist_stats_to_disk: 0
|
||||
2026/04/02-21:13:52.988006 139629081356096 Options.write_dbid_to_manifest: 1
|
||||
2026/04/02-21:13:52.988007 139629081356096 Options.write_identity_file: 1
|
||||
2026/04/02-21:13:52.988007 139629081356096 Options.log_readahead_size: 0
|
||||
2026/04/02-21:13:52.988008 139629081356096 Options.file_checksum_gen_factory: Unknown
|
||||
2026/04/02-21:13:52.988009 139629081356096 Options.best_efforts_recovery: 0
|
||||
2026/04/02-21:13:52.988009 139629081356096 Options.max_bgerror_resume_count: 2147483647
|
||||
2026/04/02-21:13:52.988010 139629081356096 Options.bgerror_resume_retry_interval: 1000000
|
||||
2026/04/02-21:13:52.988011 139629081356096 Options.allow_data_in_errors: 0
|
||||
2026/04/02-21:13:52.988011 139629081356096 Options.db_host_id: __hostname__
|
||||
2026/04/02-21:13:52.988012 139629081356096 Options.enforce_single_del_contracts: true
|
||||
2026/04/02-21:13:52.988013 139629081356096 Options.metadata_write_temperature: kUnknown
|
||||
2026/04/02-21:13:52.988013 139629081356096 Options.wal_write_temperature: kUnknown
|
||||
2026/04/02-21:13:52.988014 139629081356096 Options.max_background_jobs: 24
|
||||
2026/04/02-21:13:52.988015 139629081356096 Options.max_background_compactions: -1
|
||||
2026/04/02-21:13:52.988015 139629081356096 Options.max_subcompactions: 1
|
||||
2026/04/02-21:13:52.988016 139629081356096 Options.avoid_flush_during_shutdown: 0
|
||||
2026/04/02-21:13:52.988017 139629081356096 Options.writable_file_max_buffer_size: 1048576
|
||||
2026/04/02-21:13:52.988017 139629081356096 Options.delayed_write_rate : 16777216
|
||||
2026/04/02-21:13:52.988018 139629081356096 Options.max_total_wal_size: 0
|
||||
2026/04/02-21:13:52.988019 139629081356096 Options.delete_obsolete_files_period_micros: 21600000000
|
||||
2026/04/02-21:13:52.988019 139629081356096 Options.stats_dump_period_sec: 600
|
||||
2026/04/02-21:13:52.988020 139629081356096 Options.stats_persist_period_sec: 600
|
||||
2026/04/02-21:13:52.988021 139629081356096 Options.stats_history_buffer_size: 1048576
|
||||
2026/04/02-21:13:52.988021 139629081356096 Options.max_open_files: 4048
|
||||
2026/04/02-21:13:52.988022 139629081356096 Options.bytes_per_sync: 0
|
||||
2026/04/02-21:13:52.988022 139629081356096 Options.wal_bytes_per_sync: 0
|
||||
2026/04/02-21:13:52.988023 139629081356096 Options.strict_bytes_per_sync: 0
|
||||
2026/04/02-21:13:52.988024 139629081356096 Options.compaction_readahead_size: 2097152
|
||||
2026/04/02-21:13:52.988024 139629081356096 Options.max_background_flushes: -1
|
||||
2026/04/02-21:13:52.988025 139629081356096 Options.max_manifest_file_size: 1073741824
|
||||
2026/04/02-21:13:52.988026 139629081356096 Options.max_manifest_space_amp_pct: 500
|
||||
2026/04/02-21:13:52.988026 139629081356096 Options.manifest_preallocation_size: 4194304
|
||||
2026/04/02-21:13:52.988027 139629081356096 Options.daily_offpeak_time_utc:
|
||||
2026/04/02-21:13:52.988027 139629081356096 Compression algorithms supported:
|
||||
2026/04/02-21:13:52.988028 139629081356096 kCustomCompressionFE supported: 0
|
||||
2026/04/02-21:13:52.988029 139629081356096 kCustomCompressionFC supported: 0
|
||||
2026/04/02-21:13:52.988030 139629081356096 kCustomCompressionF8 supported: 0
|
||||
2026/04/02-21:13:52.988031 139629081356096 kCustomCompressionF7 supported: 0
|
||||
2026/04/02-21:13:52.988031 139629081356096 kCustomCompressionB2 supported: 0
|
||||
2026/04/02-21:13:52.988032 139629081356096 kLZ4Compression supported: 1
|
||||
2026/04/02-21:13:52.988033 139629081356096 kCustomCompression88 supported: 0
|
||||
2026/04/02-21:13:52.988033 139629081356096 kCustomCompressionD8 supported: 0
|
||||
2026/04/02-21:13:52.988034 139629081356096 kCustomCompression9F supported: 0
|
||||
2026/04/02-21:13:52.988035 139629081356096 kCustomCompressionD6 supported: 0
|
||||
2026/04/02-21:13:52.988035 139629081356096 kCustomCompressionA9 supported: 0
|
||||
2026/04/02-21:13:52.988036 139629081356096 kCustomCompressionEC supported: 0
|
||||
2026/04/02-21:13:52.988036 139629081356096 kCustomCompressionA3 supported: 0
|
||||
2026/04/02-21:13:52.988037 139629081356096 kCustomCompressionCB supported: 0
|
||||
2026/04/02-21:13:52.988038 139629081356096 kCustomCompression90 supported: 0
|
||||
2026/04/02-21:13:52.988038 139629081356096 kCustomCompressionA0 supported: 0
|
||||
2026/04/02-21:13:52.988039 139629081356096 kCustomCompressionC6 supported: 0
|
||||
2026/04/02-21:13:52.988040 139629081356096 kCustomCompression9D supported: 0
|
||||
2026/04/02-21:13:52.988040 139629081356096 kCustomCompression8B supported: 0
|
||||
2026/04/02-21:13:52.988041 139629081356096 kCustomCompressionA8 supported: 0
|
||||
2026/04/02-21:13:52.988042 139629081356096 kCustomCompression8D supported: 0
|
||||
2026/04/02-21:13:52.988042 139629081356096 kCustomCompression97 supported: 0
|
||||
2026/04/02-21:13:52.988043 139629081356096 kCustomCompression98 supported: 0
|
||||
2026/04/02-21:13:52.988044 139629081356096 kCustomCompressionAC supported: 0
|
||||
2026/04/02-21:13:52.988044 139629081356096 kCustomCompressionE9 supported: 0
|
||||
2026/04/02-21:13:52.988045 139629081356096 kCustomCompression96 supported: 0
|
||||
2026/04/02-21:13:52.988045 139629081356096 kCustomCompressionB1 supported: 0
|
||||
2026/04/02-21:13:52.988046 139629081356096 kCustomCompression95 supported: 0
|
||||
2026/04/02-21:13:52.988047 139629081356096 kCustomCompression84 supported: 0
|
||||
2026/04/02-21:13:52.988047 139629081356096 kCustomCompression91 supported: 0
|
||||
2026/04/02-21:13:52.988048 139629081356096 kCustomCompressionAB supported: 0
|
||||
2026/04/02-21:13:52.988048 139629081356096 kCustomCompressionB3 supported: 0
|
||||
2026/04/02-21:13:52.988049 139629081356096 kCustomCompression81 supported: 0
|
||||
2026/04/02-21:13:52.988050 139629081356096 kCustomCompressionDC supported: 0
|
||||
2026/04/02-21:13:52.988050 139629081356096 kBZip2Compression supported: 0
|
||||
2026/04/02-21:13:52.988051 139629081356096 kCustomCompressionBB supported: 0
|
||||
2026/04/02-21:13:52.988052 139629081356096 kCustomCompression9C supported: 0
|
||||
2026/04/02-21:13:52.988052 139629081356096 kCustomCompressionC9 supported: 0
|
||||
2026/04/02-21:13:52.988053 139629081356096 kCustomCompressionCC supported: 0
|
||||
2026/04/02-21:13:52.988054 139629081356096 kCustomCompression92 supported: 0
|
||||
2026/04/02-21:13:52.988054 139629081356096 kCustomCompressionB9 supported: 0
|
||||
2026/04/02-21:13:52.988055 139629081356096 kCustomCompression8F supported: 0
|
||||
2026/04/02-21:13:52.988055 139629081356096 kCustomCompression8A supported: 0
|
||||
2026/04/02-21:13:52.988056 139629081356096 kCustomCompression9B supported: 0
|
||||
2026/04/02-21:13:52.988057 139629081356096 kZSTD supported: 0
|
||||
2026/04/02-21:13:52.988057 139629081356096 kCustomCompressionAA supported: 0
|
||||
2026/04/02-21:13:52.988058 139629081356096 kCustomCompressionA2 supported: 0
|
||||
2026/04/02-21:13:52.988059 139629081356096 kZlibCompression supported: 0
|
||||
2026/04/02-21:13:52.988059 139629081356096 kXpressCompression supported: 0
|
||||
2026/04/02-21:13:52.988060 139629081356096 kCustomCompressionFD supported: 0
|
||||
2026/04/02-21:13:52.988061 139629081356096 kCustomCompressionE2 supported: 0
|
||||
2026/04/02-21:13:52.988061 139629081356096 kLZ4HCCompression supported: 1
|
||||
2026/04/02-21:13:52.988062 139629081356096 kCustomCompressionA6 supported: 0
|
||||
2026/04/02-21:13:52.988062 139629081356096 kCustomCompression85 supported: 0
|
||||
2026/04/02-21:13:52.988063 139629081356096 kCustomCompressionA4 supported: 0
|
||||
2026/04/02-21:13:52.988064 139629081356096 kCustomCompression86 supported: 0
|
||||
2026/04/02-21:13:52.988064 139629081356096 kCustomCompression83 supported: 0
|
||||
2026/04/02-21:13:52.988065 139629081356096 kCustomCompression87 supported: 0
|
||||
2026/04/02-21:13:52.988066 139629081356096 kCustomCompression89 supported: 0
|
||||
2026/04/02-21:13:52.988066 139629081356096 kCustomCompression8C supported: 0
|
||||
2026/04/02-21:13:52.988067 139629081356096 kCustomCompressionDB supported: 0
|
||||
2026/04/02-21:13:52.988067 139629081356096 kCustomCompressionF3 supported: 0
|
||||
2026/04/02-21:13:52.988068 139629081356096 kCustomCompressionE6 supported: 0
|
||||
2026/04/02-21:13:52.988069 139629081356096 kCustomCompression8E supported: 0
|
||||
2026/04/02-21:13:52.988069 139629081356096 kCustomCompressionDA supported: 0
|
||||
2026/04/02-21:13:52.988070 139629081356096 kCustomCompression93 supported: 0
|
||||
2026/04/02-21:13:52.988070 139629081356096 kCustomCompression94 supported: 0
|
||||
2026/04/02-21:13:52.988071 139629081356096 kCustomCompression9E supported: 0
|
||||
2026/04/02-21:13:52.988072 139629081356096 kCustomCompressionB4 supported: 0
|
||||
2026/04/02-21:13:52.988072 139629081356096 kCustomCompressionFB supported: 0
|
||||
2026/04/02-21:13:52.988073 139629081356096 kCustomCompressionB5 supported: 0
|
||||
2026/04/02-21:13:52.988074 139629081356096 kCustomCompressionD5 supported: 0
|
||||
2026/04/02-21:13:52.988074 139629081356096 kCustomCompressionB8 supported: 0
|
||||
2026/04/02-21:13:52.988075 139629081356096 kCustomCompressionD1 supported: 0
|
||||
2026/04/02-21:13:52.988076 139629081356096 kCustomCompressionBA supported: 0
|
||||
2026/04/02-21:13:52.988076 139629081356096 kCustomCompressionBC supported: 0
|
||||
2026/04/02-21:13:52.988077 139629081356096 kCustomCompressionCE supported: 0
|
||||
2026/04/02-21:13:52.988077 139629081356096 kCustomCompressionBD supported: 0
|
||||
2026/04/02-21:13:52.988078 139629081356096 kCustomCompressionC4 supported: 0
|
||||
2026/04/02-21:13:52.988079 139629081356096 kCustomCompression9A supported: 0
|
||||
2026/04/02-21:13:52.988079 139629081356096 kCustomCompression99 supported: 0
|
||||
2026/04/02-21:13:52.988080 139629081356096 kCustomCompressionBE supported: 0
|
||||
2026/04/02-21:13:52.988080 139629081356096 kCustomCompressionE5 supported: 0
|
||||
2026/04/02-21:13:52.988081 139629081356096 kCustomCompressionD9 supported: 0
|
||||
2026/04/02-21:13:52.988082 139629081356096 kCustomCompressionC1 supported: 0
|
||||
2026/04/02-21:13:52.988082 139629081356096 kCustomCompressionC5 supported: 0
|
||||
2026/04/02-21:13:52.988083 139629081356096 kCustomCompressionC2 supported: 0
|
||||
2026/04/02-21:13:52.988084 139629081356096 kCustomCompressionA5 supported: 0
|
||||
2026/04/02-21:13:52.988084 139629081356096 kCustomCompressionC7 supported: 0
|
||||
2026/04/02-21:13:52.988085 139629081356096 kCustomCompressionBF supported: 0
|
||||
2026/04/02-21:13:52.988085 139629081356096 kCustomCompressionE8 supported: 0
|
||||
2026/04/02-21:13:52.988086 139629081356096 kCustomCompressionC8 supported: 0
|
||||
2026/04/02-21:13:52.988087 139629081356096 kCustomCompressionAF supported: 0
|
||||
2026/04/02-21:13:52.988087 139629081356096 kCustomCompressionCA supported: 0
|
||||
2026/04/02-21:13:52.988088 139629081356096 kCustomCompressionCD supported: 0
|
||||
2026/04/02-21:13:52.988088 139629081356096 kCustomCompressionC0 supported: 0
|
||||
2026/04/02-21:13:52.988089 139629081356096 kCustomCompressionCF supported: 0
|
||||
2026/04/02-21:13:52.988090 139629081356096 kCustomCompressionF9 supported: 0
|
||||
2026/04/02-21:13:52.988090 139629081356096 kCustomCompressionD0 supported: 0
|
||||
2026/04/02-21:13:52.988091 139629081356096 kCustomCompressionD2 supported: 0
|
||||
2026/04/02-21:13:52.988092 139629081356096 kCustomCompressionAD supported: 0
|
||||
2026/04/02-21:13:52.988092 139629081356096 kCustomCompressionD3 supported: 0
|
||||
2026/04/02-21:13:52.988093 139629081356096 kCustomCompressionD4 supported: 0
|
||||
2026/04/02-21:13:52.988093 139629081356096 kCustomCompressionD7 supported: 0
|
||||
2026/04/02-21:13:52.988094 139629081356096 kCustomCompression82 supported: 0
|
||||
2026/04/02-21:13:52.988095 139629081356096 kCustomCompressionDD supported: 0
|
||||
2026/04/02-21:13:52.988095 139629081356096 kCustomCompressionC3 supported: 0
|
||||
2026/04/02-21:13:52.988096 139629081356096 kCustomCompressionEE supported: 0
|
||||
2026/04/02-21:13:52.988097 139629081356096 kCustomCompressionDE supported: 0
|
||||
2026/04/02-21:13:52.988097 139629081356096 kCustomCompressionDF supported: 0
|
||||
2026/04/02-21:13:52.988098 139629081356096 kCustomCompressionA7 supported: 0
|
||||
2026/04/02-21:13:52.988098 139629081356096 kCustomCompressionE0 supported: 0
|
||||
2026/04/02-21:13:52.988099 139629081356096 kCustomCompressionF1 supported: 0
|
||||
2026/04/02-21:13:52.988100 139629081356096 kCustomCompressionE1 supported: 0
|
||||
2026/04/02-21:13:52.988100 139629081356096 kCustomCompressionF5 supported: 0
|
||||
2026/04/02-21:13:52.988101 139629081356096 kCustomCompression80 supported: 0
|
||||
2026/04/02-21:13:52.988102 139629081356096 kCustomCompressionE3 supported: 0
|
||||
2026/04/02-21:13:52.988102 139629081356096 kCustomCompressionE4 supported: 0
|
||||
2026/04/02-21:13:52.988103 139629081356096 kCustomCompressionB0 supported: 0
|
||||
2026/04/02-21:13:52.988103 139629081356096 kCustomCompressionEA supported: 0
|
||||
2026/04/02-21:13:52.988104 139629081356096 kCustomCompressionFA supported: 0
|
||||
2026/04/02-21:13:52.988105 139629081356096 kCustomCompressionE7 supported: 0
|
||||
2026/04/02-21:13:52.988105 139629081356096 kCustomCompressionAE supported: 0
|
||||
2026/04/02-21:13:52.988106 139629081356096 kCustomCompressionEB supported: 0
|
||||
2026/04/02-21:13:52.988107 139629081356096 kCustomCompressionED supported: 0
|
||||
2026/04/02-21:13:52.988107 139629081356096 kCustomCompressionB6 supported: 0
|
||||
2026/04/02-21:13:52.988108 139629081356096 kCustomCompressionEF supported: 0
|
||||
2026/04/02-21:13:52.988108 139629081356096 kCustomCompressionF0 supported: 0
|
||||
2026/04/02-21:13:52.988109 139629081356096 kCustomCompressionB7 supported: 0
|
||||
2026/04/02-21:13:52.988110 139629081356096 kCustomCompressionF2 supported: 0
|
||||
2026/04/02-21:13:52.988110 139629081356096 kCustomCompressionA1 supported: 0
|
||||
2026/04/02-21:13:52.988111 139629081356096 kCustomCompressionF4 supported: 0
|
||||
2026/04/02-21:13:52.988112 139629081356096 kSnappyCompression supported: 0
|
||||
2026/04/02-21:13:52.988112 139629081356096 kCustomCompressionF6 supported: 0
|
||||
2026/04/02-21:13:52.988113 139629081356096 Fast CRC32 supported: Not supported on x86
|
||||
2026/04/02-21:13:52.988114 139629081356096 DMutex implementation: pthread_mutex_t
|
||||
2026/04/02-21:13:52.988114 139629081356096 Jemalloc supported: 0
|
||||
2026/04/02-21:13:52.988131 139629081356096 [WARN] [db/db_impl/db_impl_open.cc:2687] DB::Open() failed: IO error: lock hold by current process, acquire time 1775157232 acquiring thread 139629081356096: data/osint/oxigraph/LOCK: No locks available
|
||||
@@ -0,0 +1,238 @@
|
||||
2026/04/02-21:13:52.988695 139629081356096 RocksDB version: 10.10.1
|
||||
2026/04/02-21:13:52.988713 139629081356096 DB SUMMARY
|
||||
2026/04/02-21:13:52.988715 139629081356096 Host name (Env): Lucas
|
||||
2026/04/02-21:13:52.988716 139629081356096 DB Session ID: 86F26ZGOLUEYUL8ZU31H
|
||||
2026/04/02-21:13:52.988730 139629081356096 CURRENT file: CURRENT
|
||||
2026/04/02-21:13:52.988731 139629081356096 IDENTITY file: IDENTITY
|
||||
2026/04/02-21:13:52.988733 139629081356096 MANIFEST file: MANIFEST-000034 size: 1785 Bytes
|
||||
2026/04/02-21:13:52.988735 139629081356096 SST files in data/osint/oxigraph dir, Total Num: 5, files: 000011.sst 000015.sst 000016.sst 000017.sst 000018.sst
|
||||
2026/04/02-21:13:52.988736 139629081356096 Write Ahead Log file in data/osint/oxigraph: 000033.log size: 0 ;
|
||||
2026/04/02-21:13:52.988737 139629081356096 Options.error_if_exists: 0
|
||||
2026/04/02-21:13:52.988738 139629081356096 Options.create_if_missing: 1
|
||||
2026/04/02-21:13:52.988739 139629081356096 Options.paranoid_checks: 1
|
||||
2026/04/02-21:13:52.988739 139629081356096 Options.flush_verify_memtable_count: 1
|
||||
2026/04/02-21:13:52.988740 139629081356096 Options.compaction_verify_record_count: 1
|
||||
2026/04/02-21:13:52.988741 139629081356096 Options.track_and_verify_wals_in_manifest: 0
|
||||
2026/04/02-21:13:52.988741 139629081356096 Options.track_and_verify_wals: 0
|
||||
2026/04/02-21:13:52.988742 139629081356096 Options.verify_sst_unique_id_in_manifest: 1
|
||||
2026/04/02-21:13:52.988743 139629081356096 Options.env: 0x3a912f30
|
||||
2026/04/02-21:13:52.988743 139629081356096 Options.fs: PosixFileSystem
|
||||
2026/04/02-21:13:52.988744 139629081356096 Options.info_log: 0x3aa53570
|
||||
2026/04/02-21:13:52.988745 139629081356096 Options.max_file_opening_threads: 16
|
||||
2026/04/02-21:13:52.988745 139629081356096 Options.statistics: (nil)
|
||||
2026/04/02-21:13:52.988746 139629081356096 Options.use_fsync: 0
|
||||
2026/04/02-21:13:52.988747 139629081356096 Options.max_log_file_size: 1048576
|
||||
2026/04/02-21:13:52.988747 139629081356096 Options.log_file_time_to_roll: 0
|
||||
2026/04/02-21:13:52.988748 139629081356096 Options.keep_log_file_num: 1000
|
||||
2026/04/02-21:13:52.988749 139629081356096 Options.recycle_log_file_num: 10
|
||||
2026/04/02-21:13:52.988749 139629081356096 Options.allow_fallocate: 1
|
||||
2026/04/02-21:13:52.988750 139629081356096 Options.allow_mmap_reads: 0
|
||||
2026/04/02-21:13:52.988751 139629081356096 Options.allow_mmap_writes: 0
|
||||
2026/04/02-21:13:52.988751 139629081356096 Options.use_direct_reads: 0
|
||||
2026/04/02-21:13:52.988752 139629081356096 Options.use_direct_io_for_flush_and_compaction: 0
|
||||
2026/04/02-21:13:52.988753 139629081356096 Options.create_missing_column_families: 1
|
||||
2026/04/02-21:13:52.988753 139629081356096 Options.db_log_dir:
|
||||
2026/04/02-21:13:52.988754 139629081356096 Options.wal_dir:
|
||||
2026/04/02-21:13:52.988754 139629081356096 Options.table_cache_numshardbits: 6
|
||||
2026/04/02-21:13:52.988755 139629081356096 Options.WAL_ttl_seconds: 0
|
||||
2026/04/02-21:13:52.988756 139629081356096 Options.WAL_size_limit_MB: 0
|
||||
2026/04/02-21:13:52.988756 139629081356096 Options.max_write_batch_group_size_bytes: 1048576
|
||||
2026/04/02-21:13:52.988757 139629081356096 Options.is_fd_close_on_exec: 1
|
||||
2026/04/02-21:13:52.988758 139629081356096 Options.advise_random_on_open: 1
|
||||
2026/04/02-21:13:52.988758 139629081356096 Options.db_write_buffer_size: 0
|
||||
2026/04/02-21:13:52.988759 139629081356096 Options.write_buffer_manager: 0x3aa0d3c0
|
||||
2026/04/02-21:13:52.988760 139629081356096 Options.use_adaptive_mutex: 0
|
||||
2026/04/02-21:13:52.988760 139629081356096 Options.rate_limiter: (nil)
|
||||
2026/04/02-21:13:52.988761 139629081356096 Options.sst_file_manager.rate_bytes_per_sec: 0
|
||||
2026/04/02-21:13:52.988762 139629081356096 Options.wal_recovery_mode: 2
|
||||
2026/04/02-21:13:52.988762 139629081356096 Options.enable_thread_tracking: 0
|
||||
2026/04/02-21:13:52.988763 139629081356096 Options.enable_pipelined_write: 0
|
||||
2026/04/02-21:13:52.988763 139629081356096 Options.unordered_write: 0
|
||||
2026/04/02-21:13:52.988764 139629081356096 Options.allow_concurrent_memtable_write: 1
|
||||
2026/04/02-21:13:52.988765 139629081356096 Options.enable_write_thread_adaptive_yield: 1
|
||||
2026/04/02-21:13:52.988765 139629081356096 Options.write_thread_max_yield_usec: 100
|
||||
2026/04/02-21:13:52.988766 139629081356096 Options.write_thread_slow_yield_usec: 3
|
||||
2026/04/02-21:13:52.988766 139629081356096 Options.row_cache: None
|
||||
2026/04/02-21:13:52.988767 139629081356096 Options.wal_filter: None
|
||||
2026/04/02-21:13:52.988768 139629081356096 Options.avoid_flush_during_recovery: 0
|
||||
2026/04/02-21:13:52.988768 139629081356096 Options.allow_ingest_behind: 0
|
||||
2026/04/02-21:13:52.988769 139629081356096 Options.two_write_queues: 0
|
||||
2026/04/02-21:13:52.988769 139629081356096 Options.manual_wal_flush: 0
|
||||
2026/04/02-21:13:52.988770 139629081356096 Options.wal_compression: 0
|
||||
2026/04/02-21:13:52.988771 139629081356096 Options.background_close_inactive_wals: 0
|
||||
2026/04/02-21:13:52.988771 139629081356096 Options.atomic_flush: 0
|
||||
2026/04/02-21:13:52.988772 139629081356096 Options.avoid_unnecessary_blocking_io: 0
|
||||
2026/04/02-21:13:52.988772 139629081356096 Options.prefix_seek_opt_in_only: 0
|
||||
2026/04/02-21:13:52.988773 139629081356096 Options.persist_stats_to_disk: 0
|
||||
2026/04/02-21:13:52.988774 139629081356096 Options.write_dbid_to_manifest: 1
|
||||
2026/04/02-21:13:52.988774 139629081356096 Options.write_identity_file: 1
|
||||
2026/04/02-21:13:52.988775 139629081356096 Options.log_readahead_size: 0
|
||||
2026/04/02-21:13:52.988776 139629081356096 Options.file_checksum_gen_factory: Unknown
|
||||
2026/04/02-21:13:52.988776 139629081356096 Options.best_efforts_recovery: 0
|
||||
2026/04/02-21:13:52.988777 139629081356096 Options.max_bgerror_resume_count: 2147483647
|
||||
2026/04/02-21:13:52.988778 139629081356096 Options.bgerror_resume_retry_interval: 1000000
|
||||
2026/04/02-21:13:52.988778 139629081356096 Options.allow_data_in_errors: 0
|
||||
2026/04/02-21:13:52.988779 139629081356096 Options.db_host_id: __hostname__
|
||||
2026/04/02-21:13:52.988780 139629081356096 Options.enforce_single_del_contracts: true
|
||||
2026/04/02-21:13:52.988780 139629081356096 Options.metadata_write_temperature: kUnknown
|
||||
2026/04/02-21:13:52.988781 139629081356096 Options.wal_write_temperature: kUnknown
|
||||
2026/04/02-21:13:52.988782 139629081356096 Options.max_background_jobs: 24
|
||||
2026/04/02-21:13:52.988782 139629081356096 Options.max_background_compactions: -1
|
||||
2026/04/02-21:13:52.988783 139629081356096 Options.max_subcompactions: 1
|
||||
2026/04/02-21:13:52.988783 139629081356096 Options.avoid_flush_during_shutdown: 0
|
||||
2026/04/02-21:13:52.988784 139629081356096 Options.writable_file_max_buffer_size: 1048576
|
||||
2026/04/02-21:13:52.988785 139629081356096 Options.delayed_write_rate : 16777216
|
||||
2026/04/02-21:13:52.988785 139629081356096 Options.max_total_wal_size: 0
|
||||
2026/04/02-21:13:52.988786 139629081356096 Options.delete_obsolete_files_period_micros: 21600000000
|
||||
2026/04/02-21:13:52.988787 139629081356096 Options.stats_dump_period_sec: 600
|
||||
2026/04/02-21:13:52.988787 139629081356096 Options.stats_persist_period_sec: 600
|
||||
2026/04/02-21:13:52.988788 139629081356096 Options.stats_history_buffer_size: 1048576
|
||||
2026/04/02-21:13:52.988789 139629081356096 Options.max_open_files: 4048
|
||||
2026/04/02-21:13:52.988789 139629081356096 Options.bytes_per_sync: 0
|
||||
2026/04/02-21:13:52.988790 139629081356096 Options.wal_bytes_per_sync: 0
|
||||
2026/04/02-21:13:52.988790 139629081356096 Options.strict_bytes_per_sync: 0
|
||||
2026/04/02-21:13:52.988791 139629081356096 Options.compaction_readahead_size: 2097152
|
||||
2026/04/02-21:13:52.988792 139629081356096 Options.max_background_flushes: -1
|
||||
2026/04/02-21:13:52.988792 139629081356096 Options.max_manifest_file_size: 1073741824
|
||||
2026/04/02-21:13:52.988793 139629081356096 Options.max_manifest_space_amp_pct: 500
|
||||
2026/04/02-21:13:52.988794 139629081356096 Options.manifest_preallocation_size: 4194304
|
||||
2026/04/02-21:13:52.988794 139629081356096 Options.daily_offpeak_time_utc:
|
||||
2026/04/02-21:13:52.988795 139629081356096 Compression algorithms supported:
|
||||
2026/04/02-21:13:52.988796 139629081356096 kCustomCompressionFE supported: 0
|
||||
2026/04/02-21:13:52.988796 139629081356096 kCustomCompressionFC supported: 0
|
||||
2026/04/02-21:13:52.988797 139629081356096 kCustomCompressionF8 supported: 0
|
||||
2026/04/02-21:13:52.988798 139629081356096 kCustomCompressionF7 supported: 0
|
||||
2026/04/02-21:13:52.988798 139629081356096 kCustomCompressionB2 supported: 0
|
||||
2026/04/02-21:13:52.988799 139629081356096 kLZ4Compression supported: 1
|
||||
2026/04/02-21:13:52.988800 139629081356096 kCustomCompression88 supported: 0
|
||||
2026/04/02-21:13:52.988800 139629081356096 kCustomCompressionD8 supported: 0
|
||||
2026/04/02-21:13:52.988801 139629081356096 kCustomCompression9F supported: 0
|
||||
2026/04/02-21:13:52.988802 139629081356096 kCustomCompressionD6 supported: 0
|
||||
2026/04/02-21:13:52.988802 139629081356096 kCustomCompressionA9 supported: 0
|
||||
2026/04/02-21:13:52.988803 139629081356096 kCustomCompressionEC supported: 0
|
||||
2026/04/02-21:13:52.988804 139629081356096 kCustomCompressionA3 supported: 0
|
||||
2026/04/02-21:13:52.988804 139629081356096 kCustomCompressionCB supported: 0
|
||||
2026/04/02-21:13:52.988805 139629081356096 kCustomCompression90 supported: 0
|
||||
2026/04/02-21:13:52.988805 139629081356096 kCustomCompressionA0 supported: 0
|
||||
2026/04/02-21:13:52.988806 139629081356096 kCustomCompressionC6 supported: 0
|
||||
2026/04/02-21:13:52.988807 139629081356096 kCustomCompression9D supported: 0
|
||||
2026/04/02-21:13:52.988807 139629081356096 kCustomCompression8B supported: 0
|
||||
2026/04/02-21:13:52.988808 139629081356096 kCustomCompressionA8 supported: 0
|
||||
2026/04/02-21:13:52.988808 139629081356096 kCustomCompression8D supported: 0
|
||||
2026/04/02-21:13:52.988809 139629081356096 kCustomCompression97 supported: 0
|
||||
2026/04/02-21:13:52.988810 139629081356096 kCustomCompression98 supported: 0
|
||||
2026/04/02-21:13:52.988810 139629081356096 kCustomCompressionAC supported: 0
|
||||
2026/04/02-21:13:52.988811 139629081356096 kCustomCompressionE9 supported: 0
|
||||
2026/04/02-21:13:52.988812 139629081356096 kCustomCompression96 supported: 0
|
||||
2026/04/02-21:13:52.988812 139629081356096 kCustomCompressionB1 supported: 0
|
||||
2026/04/02-21:13:52.988813 139629081356096 kCustomCompression95 supported: 0
|
||||
2026/04/02-21:13:52.988814 139629081356096 kCustomCompression84 supported: 0
|
||||
2026/04/02-21:13:52.988814 139629081356096 kCustomCompression91 supported: 0
|
||||
2026/04/02-21:13:52.988815 139629081356096 kCustomCompressionAB supported: 0
|
||||
2026/04/02-21:13:52.988815 139629081356096 kCustomCompressionB3 supported: 0
|
||||
2026/04/02-21:13:52.988816 139629081356096 kCustomCompression81 supported: 0
|
||||
2026/04/02-21:13:52.988817 139629081356096 kCustomCompressionDC supported: 0
|
||||
2026/04/02-21:13:52.988817 139629081356096 kBZip2Compression supported: 0
|
||||
2026/04/02-21:13:52.988818 139629081356096 kCustomCompressionBB supported: 0
|
||||
2026/04/02-21:13:52.988819 139629081356096 kCustomCompression9C supported: 0
|
||||
2026/04/02-21:13:52.988819 139629081356096 kCustomCompressionC9 supported: 0
|
||||
2026/04/02-21:13:52.988820 139629081356096 kCustomCompressionCC supported: 0
|
||||
2026/04/02-21:13:52.988821 139629081356096 kCustomCompression92 supported: 0
|
||||
2026/04/02-21:13:52.988821 139629081356096 kCustomCompressionB9 supported: 0
|
||||
2026/04/02-21:13:52.988822 139629081356096 kCustomCompression8F supported: 0
|
||||
2026/04/02-21:13:52.988822 139629081356096 kCustomCompression8A supported: 0
|
||||
2026/04/02-21:13:52.988823 139629081356096 kCustomCompression9B supported: 0
|
||||
2026/04/02-21:13:52.988824 139629081356096 kZSTD supported: 0
|
||||
2026/04/02-21:13:52.988824 139629081356096 kCustomCompressionAA supported: 0
|
||||
2026/04/02-21:13:52.988825 139629081356096 kCustomCompressionA2 supported: 0
|
||||
2026/04/02-21:13:52.988826 139629081356096 kZlibCompression supported: 0
|
||||
2026/04/02-21:13:52.988826 139629081356096 kXpressCompression supported: 0
|
||||
2026/04/02-21:13:52.988827 139629081356096 kCustomCompressionFD supported: 0
|
||||
2026/04/02-21:13:52.988827 139629081356096 kCustomCompressionE2 supported: 0
|
||||
2026/04/02-21:13:52.988828 139629081356096 kLZ4HCCompression supported: 1
|
||||
2026/04/02-21:13:52.988829 139629081356096 kCustomCompressionA6 supported: 0
|
||||
2026/04/02-21:13:52.988829 139629081356096 kCustomCompression85 supported: 0
|
||||
2026/04/02-21:13:52.988830 139629081356096 kCustomCompressionA4 supported: 0
|
||||
2026/04/02-21:13:52.988831 139629081356096 kCustomCompression86 supported: 0
|
||||
2026/04/02-21:13:52.988831 139629081356096 kCustomCompression83 supported: 0
|
||||
2026/04/02-21:13:52.988832 139629081356096 kCustomCompression87 supported: 0
|
||||
2026/04/02-21:13:52.988832 139629081356096 kCustomCompression89 supported: 0
|
||||
2026/04/02-21:13:52.988833 139629081356096 kCustomCompression8C supported: 0
|
||||
2026/04/02-21:13:52.988834 139629081356096 kCustomCompressionDB supported: 0
|
||||
2026/04/02-21:13:52.988834 139629081356096 kCustomCompressionF3 supported: 0
|
||||
2026/04/02-21:13:52.988835 139629081356096 kCustomCompressionE6 supported: 0
|
||||
2026/04/02-21:13:52.988836 139629081356096 kCustomCompression8E supported: 0
|
||||
2026/04/02-21:13:52.988836 139629081356096 kCustomCompressionDA supported: 0
|
||||
2026/04/02-21:13:52.988837 139629081356096 kCustomCompression93 supported: 0
|
||||
2026/04/02-21:13:52.988837 139629081356096 kCustomCompression94 supported: 0
|
||||
2026/04/02-21:13:52.988838 139629081356096 kCustomCompression9E supported: 0
|
||||
2026/04/02-21:13:52.988839 139629081356096 kCustomCompressionB4 supported: 0
|
||||
2026/04/02-21:13:52.988839 139629081356096 kCustomCompressionFB supported: 0
|
||||
2026/04/02-21:13:52.988840 139629081356096 kCustomCompressionB5 supported: 0
|
||||
2026/04/02-21:13:52.988840 139629081356096 kCustomCompressionD5 supported: 0
|
||||
2026/04/02-21:13:52.988841 139629081356096 kCustomCompressionB8 supported: 0
|
||||
2026/04/02-21:13:52.988842 139629081356096 kCustomCompressionD1 supported: 0
|
||||
2026/04/02-21:13:52.988842 139629081356096 kCustomCompressionBA supported: 0
|
||||
2026/04/02-21:13:52.988843 139629081356096 kCustomCompressionBC supported: 0
|
||||
2026/04/02-21:13:52.988844 139629081356096 kCustomCompressionCE supported: 0
|
||||
2026/04/02-21:13:52.988844 139629081356096 kCustomCompressionBD supported: 0
|
||||
2026/04/02-21:13:52.988845 139629081356096 kCustomCompressionC4 supported: 0
|
||||
2026/04/02-21:13:52.988846 139629081356096 kCustomCompression9A supported: 0
|
||||
2026/04/02-21:13:52.988846 139629081356096 kCustomCompression99 supported: 0
|
||||
2026/04/02-21:13:52.988847 139629081356096 kCustomCompressionBE supported: 0
|
||||
2026/04/02-21:13:52.988847 139629081356096 kCustomCompressionE5 supported: 0
|
||||
2026/04/02-21:13:52.988848 139629081356096 kCustomCompressionD9 supported: 0
|
||||
2026/04/02-21:13:52.988849 139629081356096 kCustomCompressionC1 supported: 0
|
||||
2026/04/02-21:13:52.988849 139629081356096 kCustomCompressionC5 supported: 0
|
||||
2026/04/02-21:13:52.988850 139629081356096 kCustomCompressionC2 supported: 0
|
||||
2026/04/02-21:13:52.988850 139629081356096 kCustomCompressionA5 supported: 0
|
||||
2026/04/02-21:13:52.988851 139629081356096 kCustomCompressionC7 supported: 0
|
||||
2026/04/02-21:13:52.988852 139629081356096 kCustomCompressionBF supported: 0
|
||||
2026/04/02-21:13:52.988852 139629081356096 kCustomCompressionE8 supported: 0
|
||||
2026/04/02-21:13:52.988853 139629081356096 kCustomCompressionC8 supported: 0
|
||||
2026/04/02-21:13:52.988853 139629081356096 kCustomCompressionAF supported: 0
|
||||
2026/04/02-21:13:52.988854 139629081356096 kCustomCompressionCA supported: 0
|
||||
2026/04/02-21:13:52.988855 139629081356096 kCustomCompressionCD supported: 0
|
||||
2026/04/02-21:13:52.988855 139629081356096 kCustomCompressionC0 supported: 0
|
||||
2026/04/02-21:13:52.988856 139629081356096 kCustomCompressionCF supported: 0
|
||||
2026/04/02-21:13:52.988857 139629081356096 kCustomCompressionF9 supported: 0
|
||||
2026/04/02-21:13:52.988857 139629081356096 kCustomCompressionD0 supported: 0
|
||||
2026/04/02-21:13:52.988858 139629081356096 kCustomCompressionD2 supported: 0
|
||||
2026/04/02-21:13:52.988858 139629081356096 kCustomCompressionAD supported: 0
|
||||
2026/04/02-21:13:52.988859 139629081356096 kCustomCompressionD3 supported: 0
|
||||
2026/04/02-21:13:52.988860 139629081356096 kCustomCompressionD4 supported: 0
|
||||
2026/04/02-21:13:52.988860 139629081356096 kCustomCompressionD7 supported: 0
|
||||
2026/04/02-21:13:52.988861 139629081356096 kCustomCompression82 supported: 0
|
||||
2026/04/02-21:13:52.988861 139629081356096 kCustomCompressionDD supported: 0
|
||||
2026/04/02-21:13:52.988862 139629081356096 kCustomCompressionC3 supported: 0
|
||||
2026/04/02-21:13:52.988863 139629081356096 kCustomCompressionEE supported: 0
|
||||
2026/04/02-21:13:52.988863 139629081356096 kCustomCompressionDE supported: 0
|
||||
2026/04/02-21:13:52.988864 139629081356096 kCustomCompressionDF supported: 0
|
||||
2026/04/02-21:13:52.988865 139629081356096 kCustomCompressionA7 supported: 0
|
||||
2026/04/02-21:13:52.988865 139629081356096 kCustomCompressionE0 supported: 0
|
||||
2026/04/02-21:13:52.988866 139629081356096 kCustomCompressionF1 supported: 0
|
||||
2026/04/02-21:13:52.988866 139629081356096 kCustomCompressionE1 supported: 0
|
||||
2026/04/02-21:13:52.988867 139629081356096 kCustomCompressionF5 supported: 0
|
||||
2026/04/02-21:13:52.988868 139629081356096 kCustomCompression80 supported: 0
|
||||
2026/04/02-21:13:52.988868 139629081356096 kCustomCompressionE3 supported: 0
|
||||
2026/04/02-21:13:52.988869 139629081356096 kCustomCompressionE4 supported: 0
|
||||
2026/04/02-21:13:52.988869 139629081356096 kCustomCompressionB0 supported: 0
|
||||
2026/04/02-21:13:52.988870 139629081356096 kCustomCompressionEA supported: 0
|
||||
2026/04/02-21:13:52.988871 139629081356096 kCustomCompressionFA supported: 0
|
||||
2026/04/02-21:13:52.988871 139629081356096 kCustomCompressionE7 supported: 0
|
||||
2026/04/02-21:13:52.988872 139629081356096 kCustomCompressionAE supported: 0
|
||||
2026/04/02-21:13:52.988873 139629081356096 kCustomCompressionEB supported: 0
|
||||
2026/04/02-21:13:52.988873 139629081356096 kCustomCompressionED supported: 0
|
||||
2026/04/02-21:13:52.988874 139629081356096 kCustomCompressionB6 supported: 0
|
||||
2026/04/02-21:13:52.988875 139629081356096 kCustomCompressionEF supported: 0
|
||||
2026/04/02-21:13:52.988875 139629081356096 kCustomCompressionF0 supported: 0
|
||||
2026/04/02-21:13:52.988876 139629081356096 kCustomCompressionB7 supported: 0
|
||||
2026/04/02-21:13:52.988876 139629081356096 kCustomCompressionF2 supported: 0
|
||||
2026/04/02-21:13:52.988877 139629081356096 kCustomCompressionA1 supported: 0
|
||||
2026/04/02-21:13:52.988878 139629081356096 kCustomCompressionF4 supported: 0
|
||||
2026/04/02-21:13:52.988878 139629081356096 kSnappyCompression supported: 0
|
||||
2026/04/02-21:13:52.988879 139629081356096 kCustomCompressionF6 supported: 0
|
||||
2026/04/02-21:13:52.988880 139629081356096 Fast CRC32 supported: Not supported on x86
|
||||
2026/04/02-21:13:52.988880 139629081356096 DMutex implementation: pthread_mutex_t
|
||||
2026/04/02-21:13:52.988881 139629081356096 Jemalloc supported: 0
|
||||
2026/04/02-21:13:52.988897 139629081356096 [WARN] [db/db_impl/db_impl_open.cc:2687] DB::Open() failed: IO error: lock hold by current process, acquire time 1775157232 acquiring thread 139629081356096: data/osint/oxigraph/LOCK: No locks available
|
||||
@@ -0,0 +1,238 @@
|
||||
2026/04/02-21:13:52.989443 139629081356096 RocksDB version: 10.10.1
|
||||
2026/04/02-21:13:52.989465 139629081356096 DB SUMMARY
|
||||
2026/04/02-21:13:52.989467 139629081356096 Host name (Env): Lucas
|
||||
2026/04/02-21:13:52.989468 139629081356096 DB Session ID: 86F26ZGOLUEYUL8ZU31I
|
||||
2026/04/02-21:13:52.989490 139629081356096 CURRENT file: CURRENT
|
||||
2026/04/02-21:13:52.989491 139629081356096 IDENTITY file: IDENTITY
|
||||
2026/04/02-21:13:52.989493 139629081356096 MANIFEST file: MANIFEST-000034 size: 1785 Bytes
|
||||
2026/04/02-21:13:52.989494 139629081356096 SST files in data/osint/oxigraph dir, Total Num: 5, files: 000011.sst 000015.sst 000016.sst 000017.sst 000018.sst
|
||||
2026/04/02-21:13:52.989495 139629081356096 Write Ahead Log file in data/osint/oxigraph: 000033.log size: 0 ;
|
||||
2026/04/02-21:13:52.989496 139629081356096 Options.error_if_exists: 0
|
||||
2026/04/02-21:13:52.989497 139629081356096 Options.create_if_missing: 1
|
||||
2026/04/02-21:13:52.989497 139629081356096 Options.paranoid_checks: 1
|
||||
2026/04/02-21:13:52.989498 139629081356096 Options.flush_verify_memtable_count: 1
|
||||
2026/04/02-21:13:52.989499 139629081356096 Options.compaction_verify_record_count: 1
|
||||
2026/04/02-21:13:52.989499 139629081356096 Options.track_and_verify_wals_in_manifest: 0
|
||||
2026/04/02-21:13:52.989500 139629081356096 Options.track_and_verify_wals: 0
|
||||
2026/04/02-21:13:52.989501 139629081356096 Options.verify_sst_unique_id_in_manifest: 1
|
||||
2026/04/02-21:13:52.989501 139629081356096 Options.env: 0x3a912f30
|
||||
2026/04/02-21:13:52.989502 139629081356096 Options.fs: PosixFileSystem
|
||||
2026/04/02-21:13:52.989503 139629081356096 Options.info_log: 0x3aa53570
|
||||
2026/04/02-21:13:52.989504 139629081356096 Options.max_file_opening_threads: 16
|
||||
2026/04/02-21:13:52.989504 139629081356096 Options.statistics: (nil)
|
||||
2026/04/02-21:13:52.989505 139629081356096 Options.use_fsync: 0
|
||||
2026/04/02-21:13:52.989506 139629081356096 Options.max_log_file_size: 1048576
|
||||
2026/04/02-21:13:52.989506 139629081356096 Options.log_file_time_to_roll: 0
|
||||
2026/04/02-21:13:52.989507 139629081356096 Options.keep_log_file_num: 1000
|
||||
2026/04/02-21:13:52.989508 139629081356096 Options.recycle_log_file_num: 10
|
||||
2026/04/02-21:13:52.989508 139629081356096 Options.allow_fallocate: 1
|
||||
2026/04/02-21:13:52.989509 139629081356096 Options.allow_mmap_reads: 0
|
||||
2026/04/02-21:13:52.989510 139629081356096 Options.allow_mmap_writes: 0
|
||||
2026/04/02-21:13:52.989510 139629081356096 Options.use_direct_reads: 0
|
||||
2026/04/02-21:13:52.989511 139629081356096 Options.use_direct_io_for_flush_and_compaction: 0
|
||||
2026/04/02-21:13:52.989512 139629081356096 Options.create_missing_column_families: 1
|
||||
2026/04/02-21:13:52.989512 139629081356096 Options.db_log_dir:
|
||||
2026/04/02-21:13:52.989513 139629081356096 Options.wal_dir:
|
||||
2026/04/02-21:13:52.989513 139629081356096 Options.table_cache_numshardbits: 6
|
||||
2026/04/02-21:13:52.989514 139629081356096 Options.WAL_ttl_seconds: 0
|
||||
2026/04/02-21:13:52.989515 139629081356096 Options.WAL_size_limit_MB: 0
|
||||
2026/04/02-21:13:52.989515 139629081356096 Options.max_write_batch_group_size_bytes: 1048576
|
||||
2026/04/02-21:13:52.989516 139629081356096 Options.is_fd_close_on_exec: 1
|
||||
2026/04/02-21:13:52.989517 139629081356096 Options.advise_random_on_open: 1
|
||||
2026/04/02-21:13:52.989517 139629081356096 Options.db_write_buffer_size: 0
|
||||
2026/04/02-21:13:52.989518 139629081356096 Options.write_buffer_manager: 0x3aa0d3c0
|
||||
2026/04/02-21:13:52.989518 139629081356096 Options.use_adaptive_mutex: 0
|
||||
2026/04/02-21:13:52.989519 139629081356096 Options.rate_limiter: (nil)
|
||||
2026/04/02-21:13:52.989520 139629081356096 Options.sst_file_manager.rate_bytes_per_sec: 0
|
||||
2026/04/02-21:13:52.989521 139629081356096 Options.wal_recovery_mode: 2
|
||||
2026/04/02-21:13:52.989521 139629081356096 Options.enable_thread_tracking: 0
|
||||
2026/04/02-21:13:52.989522 139629081356096 Options.enable_pipelined_write: 0
|
||||
2026/04/02-21:13:52.989523 139629081356096 Options.unordered_write: 0
|
||||
2026/04/02-21:13:52.989523 139629081356096 Options.allow_concurrent_memtable_write: 1
|
||||
2026/04/02-21:13:52.989524 139629081356096 Options.enable_write_thread_adaptive_yield: 1
|
||||
2026/04/02-21:13:52.989524 139629081356096 Options.write_thread_max_yield_usec: 100
|
||||
2026/04/02-21:13:52.989525 139629081356096 Options.write_thread_slow_yield_usec: 3
|
||||
2026/04/02-21:13:52.989526 139629081356096 Options.row_cache: None
|
||||
2026/04/02-21:13:52.989526 139629081356096 Options.wal_filter: None
|
||||
2026/04/02-21:13:52.989527 139629081356096 Options.avoid_flush_during_recovery: 0
|
||||
2026/04/02-21:13:52.989528 139629081356096 Options.allow_ingest_behind: 0
|
||||
2026/04/02-21:13:52.989528 139629081356096 Options.two_write_queues: 0
|
||||
2026/04/02-21:13:52.989529 139629081356096 Options.manual_wal_flush: 0
|
||||
2026/04/02-21:13:52.989529 139629081356096 Options.wal_compression: 0
|
||||
2026/04/02-21:13:52.989530 139629081356096 Options.background_close_inactive_wals: 0
|
||||
2026/04/02-21:13:52.989530 139629081356096 Options.atomic_flush: 0
|
||||
2026/04/02-21:13:52.989531 139629081356096 Options.avoid_unnecessary_blocking_io: 0
|
||||
2026/04/02-21:13:52.989532 139629081356096 Options.prefix_seek_opt_in_only: 0
|
||||
2026/04/02-21:13:52.989532 139629081356096 Options.persist_stats_to_disk: 0
|
||||
2026/04/02-21:13:52.989533 139629081356096 Options.write_dbid_to_manifest: 1
|
||||
2026/04/02-21:13:52.989533 139629081356096 Options.write_identity_file: 1
|
||||
2026/04/02-21:13:52.989534 139629081356096 Options.log_readahead_size: 0
|
||||
2026/04/02-21:13:52.989535 139629081356096 Options.file_checksum_gen_factory: Unknown
|
||||
2026/04/02-21:13:52.989535 139629081356096 Options.best_efforts_recovery: 0
|
||||
2026/04/02-21:13:52.989536 139629081356096 Options.max_bgerror_resume_count: 2147483647
|
||||
2026/04/02-21:13:52.989537 139629081356096 Options.bgerror_resume_retry_interval: 1000000
|
||||
2026/04/02-21:13:52.989537 139629081356096 Options.allow_data_in_errors: 0
|
||||
2026/04/02-21:13:52.989538 139629081356096 Options.db_host_id: __hostname__
|
||||
2026/04/02-21:13:52.989539 139629081356096 Options.enforce_single_del_contracts: true
|
||||
2026/04/02-21:13:52.989539 139629081356096 Options.metadata_write_temperature: kUnknown
|
||||
2026/04/02-21:13:52.989540 139629081356096 Options.wal_write_temperature: kUnknown
|
||||
2026/04/02-21:13:52.989541 139629081356096 Options.max_background_jobs: 24
|
||||
2026/04/02-21:13:52.989541 139629081356096 Options.max_background_compactions: -1
|
||||
2026/04/02-21:13:52.989542 139629081356096 Options.max_subcompactions: 1
|
||||
2026/04/02-21:13:52.989542 139629081356096 Options.avoid_flush_during_shutdown: 0
|
||||
2026/04/02-21:13:52.989543 139629081356096 Options.writable_file_max_buffer_size: 1048576
|
||||
2026/04/02-21:13:52.989544 139629081356096 Options.delayed_write_rate : 16777216
|
||||
2026/04/02-21:13:52.989544 139629081356096 Options.max_total_wal_size: 0
|
||||
2026/04/02-21:13:52.989545 139629081356096 Options.delete_obsolete_files_period_micros: 21600000000
|
||||
2026/04/02-21:13:52.989546 139629081356096 Options.stats_dump_period_sec: 600
|
||||
2026/04/02-21:13:52.989546 139629081356096 Options.stats_persist_period_sec: 600
|
||||
2026/04/02-21:13:52.989547 139629081356096 Options.stats_history_buffer_size: 1048576
|
||||
2026/04/02-21:13:52.989548 139629081356096 Options.max_open_files: 4048
|
||||
2026/04/02-21:13:52.989548 139629081356096 Options.bytes_per_sync: 0
|
||||
2026/04/02-21:13:52.989549 139629081356096 Options.wal_bytes_per_sync: 0
|
||||
2026/04/02-21:13:52.989550 139629081356096 Options.strict_bytes_per_sync: 0
|
||||
2026/04/02-21:13:52.989550 139629081356096 Options.compaction_readahead_size: 2097152
|
||||
2026/04/02-21:13:52.989551 139629081356096 Options.max_background_flushes: -1
|
||||
2026/04/02-21:13:52.989552 139629081356096 Options.max_manifest_file_size: 1073741824
|
||||
2026/04/02-21:13:52.989552 139629081356096 Options.max_manifest_space_amp_pct: 500
|
||||
2026/04/02-21:13:52.989553 139629081356096 Options.manifest_preallocation_size: 4194304
|
||||
2026/04/02-21:13:52.989554 139629081356096 Options.daily_offpeak_time_utc:
|
||||
2026/04/02-21:13:52.989554 139629081356096 Compression algorithms supported:
|
||||
2026/04/02-21:13:52.989555 139629081356096 kCustomCompressionFE supported: 0
|
||||
2026/04/02-21:13:52.989556 139629081356096 kCustomCompressionFC supported: 0
|
||||
2026/04/02-21:13:52.989556 139629081356096 kCustomCompressionF8 supported: 0
|
||||
2026/04/02-21:13:52.989557 139629081356096 kCustomCompressionF7 supported: 0
|
||||
2026/04/02-21:13:52.989558 139629081356096 kCustomCompressionB2 supported: 0
|
||||
2026/04/02-21:13:52.989558 139629081356096 kLZ4Compression supported: 1
|
||||
2026/04/02-21:13:52.989559 139629081356096 kCustomCompression88 supported: 0
|
||||
2026/04/02-21:13:52.989560 139629081356096 kCustomCompressionD8 supported: 0
|
||||
2026/04/02-21:13:52.989560 139629081356096 kCustomCompression9F supported: 0
|
||||
2026/04/02-21:13:52.989561 139629081356096 kCustomCompressionD6 supported: 0
|
||||
2026/04/02-21:13:52.989562 139629081356096 kCustomCompressionA9 supported: 0
|
||||
2026/04/02-21:13:52.989562 139629081356096 kCustomCompressionEC supported: 0
|
||||
2026/04/02-21:13:52.989563 139629081356096 kCustomCompressionA3 supported: 0
|
||||
2026/04/02-21:13:52.989564 139629081356096 kCustomCompressionCB supported: 0
|
||||
2026/04/02-21:13:52.989564 139629081356096 kCustomCompression90 supported: 0
|
||||
2026/04/02-21:13:52.989565 139629081356096 kCustomCompressionA0 supported: 0
|
||||
2026/04/02-21:13:52.989565 139629081356096 kCustomCompressionC6 supported: 0
|
||||
2026/04/02-21:13:52.989566 139629081356096 kCustomCompression9D supported: 0
|
||||
2026/04/02-21:13:52.989567 139629081356096 kCustomCompression8B supported: 0
|
||||
2026/04/02-21:13:52.989567 139629081356096 kCustomCompressionA8 supported: 0
|
||||
2026/04/02-21:13:52.989568 139629081356096 kCustomCompression8D supported: 0
|
||||
2026/04/02-21:13:52.989569 139629081356096 kCustomCompression97 supported: 0
|
||||
2026/04/02-21:13:52.989569 139629081356096 kCustomCompression98 supported: 0
|
||||
2026/04/02-21:13:52.989570 139629081356096 kCustomCompressionAC supported: 0
|
||||
2026/04/02-21:13:52.989570 139629081356096 kCustomCompressionE9 supported: 0
|
||||
2026/04/02-21:13:52.989571 139629081356096 kCustomCompression96 supported: 0
|
||||
2026/04/02-21:13:52.989572 139629081356096 kCustomCompressionB1 supported: 0
|
||||
2026/04/02-21:13:52.989572 139629081356096 kCustomCompression95 supported: 0
|
||||
2026/04/02-21:13:52.989573 139629081356096 kCustomCompression84 supported: 0
|
||||
2026/04/02-21:13:52.989574 139629081356096 kCustomCompression91 supported: 0
|
||||
2026/04/02-21:13:52.989574 139629081356096 kCustomCompressionAB supported: 0
|
||||
2026/04/02-21:13:52.989575 139629081356096 kCustomCompressionB3 supported: 0
|
||||
2026/04/02-21:13:52.989575 139629081356096 kCustomCompression81 supported: 0
|
||||
2026/04/02-21:13:52.989576 139629081356096 kCustomCompressionDC supported: 0
|
||||
2026/04/02-21:13:52.989577 139629081356096 kBZip2Compression supported: 0
|
||||
2026/04/02-21:13:52.989577 139629081356096 kCustomCompressionBB supported: 0
|
||||
2026/04/02-21:13:52.989578 139629081356096 kCustomCompression9C supported: 0
|
||||
2026/04/02-21:13:52.989579 139629081356096 kCustomCompressionC9 supported: 0
|
||||
2026/04/02-21:13:52.989579 139629081356096 kCustomCompressionCC supported: 0
|
||||
2026/04/02-21:13:52.989580 139629081356096 kCustomCompression92 supported: 0
|
||||
2026/04/02-21:13:52.989580 139629081356096 kCustomCompressionB9 supported: 0
|
||||
2026/04/02-21:13:52.989581 139629081356096 kCustomCompression8F supported: 0
|
||||
2026/04/02-21:13:52.989582 139629081356096 kCustomCompression8A supported: 0
|
||||
2026/04/02-21:13:52.989582 139629081356096 kCustomCompression9B supported: 0
|
||||
2026/04/02-21:13:52.989583 139629081356096 kZSTD supported: 0
|
||||
2026/04/02-21:13:52.989584 139629081356096 kCustomCompressionAA supported: 0
|
||||
2026/04/02-21:13:52.989584 139629081356096 kCustomCompressionA2 supported: 0
|
||||
2026/04/02-21:13:52.989585 139629081356096 kZlibCompression supported: 0
|
||||
2026/04/02-21:13:52.989585 139629081356096 kXpressCompression supported: 0
|
||||
2026/04/02-21:13:52.989586 139629081356096 kCustomCompressionFD supported: 0
|
||||
2026/04/02-21:13:52.989587 139629081356096 kCustomCompressionE2 supported: 0
|
||||
2026/04/02-21:13:52.989588 139629081356096 kLZ4HCCompression supported: 1
|
||||
2026/04/02-21:13:52.989588 139629081356096 kCustomCompressionA6 supported: 0
|
||||
2026/04/02-21:13:52.989589 139629081356096 kCustomCompression85 supported: 0
|
||||
2026/04/02-21:13:52.989589 139629081356096 kCustomCompressionA4 supported: 0
|
||||
2026/04/02-21:13:52.989590 139629081356096 kCustomCompression86 supported: 0
|
||||
2026/04/02-21:13:52.989591 139629081356096 kCustomCompression83 supported: 0
|
||||
2026/04/02-21:13:52.989591 139629081356096 kCustomCompression87 supported: 0
|
||||
2026/04/02-21:13:52.989592 139629081356096 kCustomCompression89 supported: 0
|
||||
2026/04/02-21:13:52.989592 139629081356096 kCustomCompression8C supported: 0
|
||||
2026/04/02-21:13:52.989593 139629081356096 kCustomCompressionDB supported: 0
|
||||
2026/04/02-21:13:52.989594 139629081356096 kCustomCompressionF3 supported: 0
|
||||
2026/04/02-21:13:52.989594 139629081356096 kCustomCompressionE6 supported: 0
|
||||
2026/04/02-21:13:52.989595 139629081356096 kCustomCompression8E supported: 0
|
||||
2026/04/02-21:13:52.989595 139629081356096 kCustomCompressionDA supported: 0
|
||||
2026/04/02-21:13:52.989596 139629081356096 kCustomCompression93 supported: 0
|
||||
2026/04/02-21:13:52.989597 139629081356096 kCustomCompression94 supported: 0
|
||||
2026/04/02-21:13:52.989597 139629081356096 kCustomCompression9E supported: 0
|
||||
2026/04/02-21:13:52.989598 139629081356096 kCustomCompressionB4 supported: 0
|
||||
2026/04/02-21:13:52.989599 139629081356096 kCustomCompressionFB supported: 0
|
||||
2026/04/02-21:13:52.989599 139629081356096 kCustomCompressionB5 supported: 0
|
||||
2026/04/02-21:13:52.989600 139629081356096 kCustomCompressionD5 supported: 0
|
||||
2026/04/02-21:13:52.989600 139629081356096 kCustomCompressionB8 supported: 0
|
||||
2026/04/02-21:13:52.989601 139629081356096 kCustomCompressionD1 supported: 0
|
||||
2026/04/02-21:13:52.989602 139629081356096 kCustomCompressionBA supported: 0
|
||||
2026/04/02-21:13:52.989602 139629081356096 kCustomCompressionBC supported: 0
|
||||
2026/04/02-21:13:52.989603 139629081356096 kCustomCompressionCE supported: 0
|
||||
2026/04/02-21:13:52.989603 139629081356096 kCustomCompressionBD supported: 0
|
||||
2026/04/02-21:13:52.989604 139629081356096 kCustomCompressionC4 supported: 0
|
||||
2026/04/02-21:13:52.989605 139629081356096 kCustomCompression9A supported: 0
|
||||
2026/04/02-21:13:52.989605 139629081356096 kCustomCompression99 supported: 0
|
||||
2026/04/02-21:13:52.989606 139629081356096 kCustomCompressionBE supported: 0
|
||||
2026/04/02-21:13:52.989607 139629081356096 kCustomCompressionE5 supported: 0
|
||||
2026/04/02-21:13:52.989607 139629081356096 kCustomCompressionD9 supported: 0
|
||||
2026/04/02-21:13:52.989608 139629081356096 kCustomCompressionC1 supported: 0
|
||||
2026/04/02-21:13:52.989608 139629081356096 kCustomCompressionC5 supported: 0
|
||||
2026/04/02-21:13:52.989609 139629081356096 kCustomCompressionC2 supported: 0
|
||||
2026/04/02-21:13:52.989610 139629081356096 kCustomCompressionA5 supported: 0
|
||||
2026/04/02-21:13:52.989610 139629081356096 kCustomCompressionC7 supported: 0
|
||||
2026/04/02-21:13:52.989611 139629081356096 kCustomCompressionBF supported: 0
|
||||
2026/04/02-21:13:52.989611 139629081356096 kCustomCompressionE8 supported: 0
|
||||
2026/04/02-21:13:52.989612 139629081356096 kCustomCompressionC8 supported: 0
|
||||
2026/04/02-21:13:52.989613 139629081356096 kCustomCompressionAF supported: 0
|
||||
2026/04/02-21:13:52.989613 139629081356096 kCustomCompressionCA supported: 0
|
||||
2026/04/02-21:13:52.989614 139629081356096 kCustomCompressionCD supported: 0
|
||||
2026/04/02-21:13:52.989615 139629081356096 kCustomCompressionC0 supported: 0
|
||||
2026/04/02-21:13:52.989615 139629081356096 kCustomCompressionCF supported: 0
|
||||
2026/04/02-21:13:52.989616 139629081356096 kCustomCompressionF9 supported: 0
|
||||
2026/04/02-21:13:52.989616 139629081356096 kCustomCompressionD0 supported: 0
|
||||
2026/04/02-21:13:52.989617 139629081356096 kCustomCompressionD2 supported: 0
|
||||
2026/04/02-21:13:52.989618 139629081356096 kCustomCompressionAD supported: 0
|
||||
2026/04/02-21:13:52.989618 139629081356096 kCustomCompressionD3 supported: 0
|
||||
2026/04/02-21:13:52.989619 139629081356096 kCustomCompressionD4 supported: 0
|
||||
2026/04/02-21:13:52.989620 139629081356096 kCustomCompressionD7 supported: 0
|
||||
2026/04/02-21:13:52.989620 139629081356096 kCustomCompression82 supported: 0
|
||||
2026/04/02-21:13:52.989621 139629081356096 kCustomCompressionDD supported: 0
|
||||
2026/04/02-21:13:52.989621 139629081356096 kCustomCompressionC3 supported: 0
|
||||
2026/04/02-21:13:52.989622 139629081356096 kCustomCompressionEE supported: 0
|
||||
2026/04/02-21:13:52.989623 139629081356096 kCustomCompressionDE supported: 0
|
||||
2026/04/02-21:13:52.989623 139629081356096 kCustomCompressionDF supported: 0
|
||||
2026/04/02-21:13:52.989624 139629081356096 kCustomCompressionA7 supported: 0
|
||||
2026/04/02-21:13:52.989624 139629081356096 kCustomCompressionE0 supported: 0
|
||||
2026/04/02-21:13:52.989625 139629081356096 kCustomCompressionF1 supported: 0
|
||||
2026/04/02-21:13:52.989626 139629081356096 kCustomCompressionE1 supported: 0
|
||||
2026/04/02-21:13:52.989626 139629081356096 kCustomCompressionF5 supported: 0
|
||||
2026/04/02-21:13:52.989627 139629081356096 kCustomCompression80 supported: 0
|
||||
2026/04/02-21:13:52.989627 139629081356096 kCustomCompressionE3 supported: 0
|
||||
2026/04/02-21:13:52.989628 139629081356096 kCustomCompressionE4 supported: 0
|
||||
2026/04/02-21:13:52.989629 139629081356096 kCustomCompressionB0 supported: 0
|
||||
2026/04/02-21:13:52.989629 139629081356096 kCustomCompressionEA supported: 0
|
||||
2026/04/02-21:13:52.989630 139629081356096 kCustomCompressionFA supported: 0
|
||||
2026/04/02-21:13:52.989630 139629081356096 kCustomCompressionE7 supported: 0
|
||||
2026/04/02-21:13:52.989631 139629081356096 kCustomCompressionAE supported: 0
|
||||
2026/04/02-21:13:52.989632 139629081356096 kCustomCompressionEB supported: 0
|
||||
2026/04/02-21:13:52.989632 139629081356096 kCustomCompressionED supported: 0
|
||||
2026/04/02-21:13:52.989633 139629081356096 kCustomCompressionB6 supported: 0
|
||||
2026/04/02-21:13:52.989634 139629081356096 kCustomCompressionEF supported: 0
|
||||
2026/04/02-21:13:52.989634 139629081356096 kCustomCompressionF0 supported: 0
|
||||
2026/04/02-21:13:52.989635 139629081356096 kCustomCompressionB7 supported: 0
|
||||
2026/04/02-21:13:52.989635 139629081356096 kCustomCompressionF2 supported: 0
|
||||
2026/04/02-21:13:52.989636 139629081356096 kCustomCompressionA1 supported: 0
|
||||
2026/04/02-21:13:52.989637 139629081356096 kCustomCompressionF4 supported: 0
|
||||
2026/04/02-21:13:52.989637 139629081356096 kSnappyCompression supported: 0
|
||||
2026/04/02-21:13:52.989638 139629081356096 kCustomCompressionF6 supported: 0
|
||||
2026/04/02-21:13:52.989639 139629081356096 Fast CRC32 supported: Not supported on x86
|
||||
2026/04/02-21:13:52.989639 139629081356096 DMutex implementation: pthread_mutex_t
|
||||
2026/04/02-21:13:52.989640 139629081356096 Jemalloc supported: 0
|
||||
2026/04/02-21:13:52.989657 139629081356096 [WARN] [db/db_impl/db_impl_open.cc:2687] DB::Open() failed: IO error: lock hold by current process, acquire time 1775157232 acquiring thread 139629081356096: data/osint/oxigraph/LOCK: No locks available
|
||||
@@ -0,0 +1,238 @@
|
||||
2026/04/02-21:13:52.991680 139629081356096 RocksDB version: 10.10.1
|
||||
2026/04/02-21:13:52.991700 139629081356096 DB SUMMARY
|
||||
2026/04/02-21:13:52.991701 139629081356096 Host name (Env): Lucas
|
||||
2026/04/02-21:13:52.991702 139629081356096 DB Session ID: 86F26ZGOLUEYUL8ZU31J
|
||||
2026/04/02-21:13:52.991720 139629081356096 CURRENT file: CURRENT
|
||||
2026/04/02-21:13:52.991721 139629081356096 IDENTITY file: IDENTITY
|
||||
2026/04/02-21:13:52.991724 139629081356096 MANIFEST file: MANIFEST-000034 size: 1785 Bytes
|
||||
2026/04/02-21:13:52.991725 139629081356096 SST files in data/osint/oxigraph dir, Total Num: 5, files: 000011.sst 000015.sst 000016.sst 000017.sst 000018.sst
|
||||
2026/04/02-21:13:52.991726 139629081356096 Write Ahead Log file in data/osint/oxigraph: 000033.log size: 0 ;
|
||||
2026/04/02-21:13:52.991727 139629081356096 Options.error_if_exists: 0
|
||||
2026/04/02-21:13:52.991728 139629081356096 Options.create_if_missing: 1
|
||||
2026/04/02-21:13:52.991729 139629081356096 Options.paranoid_checks: 1
|
||||
2026/04/02-21:13:52.991730 139629081356096 Options.flush_verify_memtable_count: 1
|
||||
2026/04/02-21:13:52.991730 139629081356096 Options.compaction_verify_record_count: 1
|
||||
2026/04/02-21:13:52.991731 139629081356096 Options.track_and_verify_wals_in_manifest: 0
|
||||
2026/04/02-21:13:52.991732 139629081356096 Options.track_and_verify_wals: 0
|
||||
2026/04/02-21:13:52.991732 139629081356096 Options.verify_sst_unique_id_in_manifest: 1
|
||||
2026/04/02-21:13:52.991733 139629081356096 Options.env: 0x3a912f30
|
||||
2026/04/02-21:13:52.991734 139629081356096 Options.fs: PosixFileSystem
|
||||
2026/04/02-21:13:52.991735 139629081356096 Options.info_log: 0x3aa53570
|
||||
2026/04/02-21:13:52.991735 139629081356096 Options.max_file_opening_threads: 16
|
||||
2026/04/02-21:13:52.991736 139629081356096 Options.statistics: (nil)
|
||||
2026/04/02-21:13:52.991737 139629081356096 Options.use_fsync: 0
|
||||
2026/04/02-21:13:52.991737 139629081356096 Options.max_log_file_size: 1048576
|
||||
2026/04/02-21:13:52.991738 139629081356096 Options.log_file_time_to_roll: 0
|
||||
2026/04/02-21:13:52.991739 139629081356096 Options.keep_log_file_num: 1000
|
||||
2026/04/02-21:13:52.991739 139629081356096 Options.recycle_log_file_num: 10
|
||||
2026/04/02-21:13:52.991740 139629081356096 Options.allow_fallocate: 1
|
||||
2026/04/02-21:13:52.991741 139629081356096 Options.allow_mmap_reads: 0
|
||||
2026/04/02-21:13:52.991741 139629081356096 Options.allow_mmap_writes: 0
|
||||
2026/04/02-21:13:52.991742 139629081356096 Options.use_direct_reads: 0
|
||||
2026/04/02-21:13:52.991742 139629081356096 Options.use_direct_io_for_flush_and_compaction: 0
|
||||
2026/04/02-21:13:52.991743 139629081356096 Options.create_missing_column_families: 1
|
||||
2026/04/02-21:13:52.991744 139629081356096 Options.db_log_dir:
|
||||
2026/04/02-21:13:52.991744 139629081356096 Options.wal_dir:
|
||||
2026/04/02-21:13:52.991745 139629081356096 Options.table_cache_numshardbits: 6
|
||||
2026/04/02-21:13:52.991746 139629081356096 Options.WAL_ttl_seconds: 0
|
||||
2026/04/02-21:13:52.991746 139629081356096 Options.WAL_size_limit_MB: 0
|
||||
2026/04/02-21:13:52.991747 139629081356096 Options.max_write_batch_group_size_bytes: 1048576
|
||||
2026/04/02-21:13:52.991748 139629081356096 Options.is_fd_close_on_exec: 1
|
||||
2026/04/02-21:13:52.991748 139629081356096 Options.advise_random_on_open: 1
|
||||
2026/04/02-21:13:52.991749 139629081356096 Options.db_write_buffer_size: 0
|
||||
2026/04/02-21:13:52.991750 139629081356096 Options.write_buffer_manager: 0x3aa0d3c0
|
||||
2026/04/02-21:13:52.991750 139629081356096 Options.use_adaptive_mutex: 0
|
||||
2026/04/02-21:13:52.991751 139629081356096 Options.rate_limiter: (nil)
|
||||
2026/04/02-21:13:52.991752 139629081356096 Options.sst_file_manager.rate_bytes_per_sec: 0
|
||||
2026/04/02-21:13:52.991752 139629081356096 Options.wal_recovery_mode: 2
|
||||
2026/04/02-21:13:52.991753 139629081356096 Options.enable_thread_tracking: 0
|
||||
2026/04/02-21:13:52.991753 139629081356096 Options.enable_pipelined_write: 0
|
||||
2026/04/02-21:13:52.991754 139629081356096 Options.unordered_write: 0
|
||||
2026/04/02-21:13:52.991755 139629081356096 Options.allow_concurrent_memtable_write: 1
|
||||
2026/04/02-21:13:52.991755 139629081356096 Options.enable_write_thread_adaptive_yield: 1
|
||||
2026/04/02-21:13:52.991756 139629081356096 Options.write_thread_max_yield_usec: 100
|
||||
2026/04/02-21:13:52.991756 139629081356096 Options.write_thread_slow_yield_usec: 3
|
||||
2026/04/02-21:13:52.991757 139629081356096 Options.row_cache: None
|
||||
2026/04/02-21:13:52.991758 139629081356096 Options.wal_filter: None
|
||||
2026/04/02-21:13:52.991758 139629081356096 Options.avoid_flush_during_recovery: 0
|
||||
2026/04/02-21:13:52.991759 139629081356096 Options.allow_ingest_behind: 0
|
||||
2026/04/02-21:13:52.991759 139629081356096 Options.two_write_queues: 0
|
||||
2026/04/02-21:13:52.991760 139629081356096 Options.manual_wal_flush: 0
|
||||
2026/04/02-21:13:52.991761 139629081356096 Options.wal_compression: 0
|
||||
2026/04/02-21:13:52.991761 139629081356096 Options.background_close_inactive_wals: 0
|
||||
2026/04/02-21:13:52.991762 139629081356096 Options.atomic_flush: 0
|
||||
2026/04/02-21:13:52.991762 139629081356096 Options.avoid_unnecessary_blocking_io: 0
|
||||
2026/04/02-21:13:52.991763 139629081356096 Options.prefix_seek_opt_in_only: 0
|
||||
2026/04/02-21:13:52.991764 139629081356096 Options.persist_stats_to_disk: 0
|
||||
2026/04/02-21:13:52.991764 139629081356096 Options.write_dbid_to_manifest: 1
|
||||
2026/04/02-21:13:52.991765 139629081356096 Options.write_identity_file: 1
|
||||
2026/04/02-21:13:52.991765 139629081356096 Options.log_readahead_size: 0
|
||||
2026/04/02-21:13:52.991766 139629081356096 Options.file_checksum_gen_factory: Unknown
|
||||
2026/04/02-21:13:52.991767 139629081356096 Options.best_efforts_recovery: 0
|
||||
2026/04/02-21:13:52.991767 139629081356096 Options.max_bgerror_resume_count: 2147483647
|
||||
2026/04/02-21:13:52.991768 139629081356096 Options.bgerror_resume_retry_interval: 1000000
|
||||
2026/04/02-21:13:52.991769 139629081356096 Options.allow_data_in_errors: 0
|
||||
2026/04/02-21:13:52.991769 139629081356096 Options.db_host_id: __hostname__
|
||||
2026/04/02-21:13:52.991770 139629081356096 Options.enforce_single_del_contracts: true
|
||||
2026/04/02-21:13:52.991771 139629081356096 Options.metadata_write_temperature: kUnknown
|
||||
2026/04/02-21:13:52.991771 139629081356096 Options.wal_write_temperature: kUnknown
|
||||
2026/04/02-21:13:52.991772 139629081356096 Options.max_background_jobs: 24
|
||||
2026/04/02-21:13:52.991773 139629081356096 Options.max_background_compactions: -1
|
||||
2026/04/02-21:13:52.991773 139629081356096 Options.max_subcompactions: 1
|
||||
2026/04/02-21:13:52.991774 139629081356096 Options.avoid_flush_during_shutdown: 0
|
||||
2026/04/02-21:13:52.991775 139629081356096 Options.writable_file_max_buffer_size: 1048576
|
||||
2026/04/02-21:13:52.991775 139629081356096 Options.delayed_write_rate : 16777216
|
||||
2026/04/02-21:13:52.991776 139629081356096 Options.max_total_wal_size: 0
|
||||
2026/04/02-21:13:52.991777 139629081356096 Options.delete_obsolete_files_period_micros: 21600000000
|
||||
2026/04/02-21:13:52.991777 139629081356096 Options.stats_dump_period_sec: 600
|
||||
2026/04/02-21:13:52.991778 139629081356096 Options.stats_persist_period_sec: 600
|
||||
2026/04/02-21:13:52.991779 139629081356096 Options.stats_history_buffer_size: 1048576
|
||||
2026/04/02-21:13:52.991779 139629081356096 Options.max_open_files: 4048
|
||||
2026/04/02-21:13:52.991780 139629081356096 Options.bytes_per_sync: 0
|
||||
2026/04/02-21:13:52.991781 139629081356096 Options.wal_bytes_per_sync: 0
|
||||
2026/04/02-21:13:52.991781 139629081356096 Options.strict_bytes_per_sync: 0
|
||||
2026/04/02-21:13:52.991782 139629081356096 Options.compaction_readahead_size: 2097152
|
||||
2026/04/02-21:13:52.991782 139629081356096 Options.max_background_flushes: -1
|
||||
2026/04/02-21:13:52.991783 139629081356096 Options.max_manifest_file_size: 1073741824
|
||||
2026/04/02-21:13:52.991784 139629081356096 Options.max_manifest_space_amp_pct: 500
|
||||
2026/04/02-21:13:52.991784 139629081356096 Options.manifest_preallocation_size: 4194304
|
||||
2026/04/02-21:13:52.991785 139629081356096 Options.daily_offpeak_time_utc:
|
||||
2026/04/02-21:13:52.991786 139629081356096 Compression algorithms supported:
|
||||
2026/04/02-21:13:52.991786 139629081356096 kCustomCompressionFE supported: 0
|
||||
2026/04/02-21:13:52.991787 139629081356096 kCustomCompressionFC supported: 0
|
||||
2026/04/02-21:13:52.991788 139629081356096 kCustomCompressionF8 supported: 0
|
||||
2026/04/02-21:13:52.991788 139629081356096 kCustomCompressionF7 supported: 0
|
||||
2026/04/02-21:13:52.991789 139629081356096 kCustomCompressionB2 supported: 0
|
||||
2026/04/02-21:13:52.991790 139629081356096 kLZ4Compression supported: 1
|
||||
2026/04/02-21:13:52.991790 139629081356096 kCustomCompression88 supported: 0
|
||||
2026/04/02-21:13:52.991791 139629081356096 kCustomCompressionD8 supported: 0
|
||||
2026/04/02-21:13:52.991792 139629081356096 kCustomCompression9F supported: 0
|
||||
2026/04/02-21:13:52.991792 139629081356096 kCustomCompressionD6 supported: 0
|
||||
2026/04/02-21:13:52.991793 139629081356096 kCustomCompressionA9 supported: 0
|
||||
2026/04/02-21:13:52.991794 139629081356096 kCustomCompressionEC supported: 0
|
||||
2026/04/02-21:13:52.991794 139629081356096 kCustomCompressionA3 supported: 0
|
||||
2026/04/02-21:13:52.991795 139629081356096 kCustomCompressionCB supported: 0
|
||||
2026/04/02-21:13:52.991795 139629081356096 kCustomCompression90 supported: 0
|
||||
2026/04/02-21:13:52.991796 139629081356096 kCustomCompressionA0 supported: 0
|
||||
2026/04/02-21:13:52.991797 139629081356096 kCustomCompressionC6 supported: 0
|
||||
2026/04/02-21:13:52.991797 139629081356096 kCustomCompression9D supported: 0
|
||||
2026/04/02-21:13:52.991798 139629081356096 kCustomCompression8B supported: 0
|
||||
2026/04/02-21:13:52.991799 139629081356096 kCustomCompressionA8 supported: 0
|
||||
2026/04/02-21:13:52.991799 139629081356096 kCustomCompression8D supported: 0
|
||||
2026/04/02-21:13:52.991800 139629081356096 kCustomCompression97 supported: 0
|
||||
2026/04/02-21:13:52.991800 139629081356096 kCustomCompression98 supported: 0
|
||||
2026/04/02-21:13:52.991801 139629081356096 kCustomCompressionAC supported: 0
|
||||
2026/04/02-21:13:52.991802 139629081356096 kCustomCompressionE9 supported: 0
|
||||
2026/04/02-21:13:52.991802 139629081356096 kCustomCompression96 supported: 0
|
||||
2026/04/02-21:13:52.991803 139629081356096 kCustomCompressionB1 supported: 0
|
||||
2026/04/02-21:13:52.991804 139629081356096 kCustomCompression95 supported: 0
|
||||
2026/04/02-21:13:52.991804 139629081356096 kCustomCompression84 supported: 0
|
||||
2026/04/02-21:13:52.991805 139629081356096 kCustomCompression91 supported: 0
|
||||
2026/04/02-21:13:52.991805 139629081356096 kCustomCompressionAB supported: 0
|
||||
2026/04/02-21:13:52.991806 139629081356096 kCustomCompressionB3 supported: 0
|
||||
2026/04/02-21:13:52.991807 139629081356096 kCustomCompression81 supported: 0
|
||||
2026/04/02-21:13:52.991807 139629081356096 kCustomCompressionDC supported: 0
|
||||
2026/04/02-21:13:52.991808 139629081356096 kBZip2Compression supported: 0
|
||||
2026/04/02-21:13:52.991809 139629081356096 kCustomCompressionBB supported: 0
|
||||
2026/04/02-21:13:52.991809 139629081356096 kCustomCompression9C supported: 0
|
||||
2026/04/02-21:13:52.991810 139629081356096 kCustomCompressionC9 supported: 0
|
||||
2026/04/02-21:13:52.991811 139629081356096 kCustomCompressionCC supported: 0
|
||||
2026/04/02-21:13:52.991811 139629081356096 kCustomCompression92 supported: 0
|
||||
2026/04/02-21:13:52.991812 139629081356096 kCustomCompressionB9 supported: 0
|
||||
2026/04/02-21:13:52.991812 139629081356096 kCustomCompression8F supported: 0
|
||||
2026/04/02-21:13:52.991813 139629081356096 kCustomCompression8A supported: 0
|
||||
2026/04/02-21:13:52.991814 139629081356096 kCustomCompression9B supported: 0
|
||||
2026/04/02-21:13:52.991814 139629081356096 kZSTD supported: 0
|
||||
2026/04/02-21:13:52.991815 139629081356096 kCustomCompressionAA supported: 0
|
||||
2026/04/02-21:13:52.991816 139629081356096 kCustomCompressionA2 supported: 0
|
||||
2026/04/02-21:13:52.991816 139629081356096 kZlibCompression supported: 0
|
||||
2026/04/02-21:13:52.991817 139629081356096 kXpressCompression supported: 0
|
||||
2026/04/02-21:13:52.991817 139629081356096 kCustomCompressionFD supported: 0
|
||||
2026/04/02-21:13:52.991818 139629081356096 kCustomCompressionE2 supported: 0
|
||||
2026/04/02-21:13:52.991819 139629081356096 kLZ4HCCompression supported: 1
|
||||
2026/04/02-21:13:52.991819 139629081356096 kCustomCompressionA6 supported: 0
|
||||
2026/04/02-21:13:52.991820 139629081356096 kCustomCompression85 supported: 0
|
||||
2026/04/02-21:13:52.991821 139629081356096 kCustomCompressionA4 supported: 0
|
||||
2026/04/02-21:13:52.991821 139629081356096 kCustomCompression86 supported: 0
|
||||
2026/04/02-21:13:52.991822 139629081356096 kCustomCompression83 supported: 0
|
||||
2026/04/02-21:13:52.991822 139629081356096 kCustomCompression87 supported: 0
|
||||
2026/04/02-21:13:52.991823 139629081356096 kCustomCompression89 supported: 0
|
||||
2026/04/02-21:13:52.991824 139629081356096 kCustomCompression8C supported: 0
|
||||
2026/04/02-21:13:52.991824 139629081356096 kCustomCompressionDB supported: 0
|
||||
2026/04/02-21:13:52.991825 139629081356096 kCustomCompressionF3 supported: 0
|
||||
2026/04/02-21:13:52.991825 139629081356096 kCustomCompressionE6 supported: 0
|
||||
2026/04/02-21:13:52.991826 139629081356096 kCustomCompression8E supported: 0
|
||||
2026/04/02-21:13:52.991827 139629081356096 kCustomCompressionDA supported: 0
|
||||
2026/04/02-21:13:52.991827 139629081356096 kCustomCompression93 supported: 0
|
||||
2026/04/02-21:13:52.991828 139629081356096 kCustomCompression94 supported: 0
|
||||
2026/04/02-21:13:52.991829 139629081356096 kCustomCompression9E supported: 0
|
||||
2026/04/02-21:13:52.991829 139629081356096 kCustomCompressionB4 supported: 0
|
||||
2026/04/02-21:13:52.991830 139629081356096 kCustomCompressionFB supported: 0
|
||||
2026/04/02-21:13:52.991830 139629081356096 kCustomCompressionB5 supported: 0
|
||||
2026/04/02-21:13:52.991831 139629081356096 kCustomCompressionD5 supported: 0
|
||||
2026/04/02-21:13:52.991832 139629081356096 kCustomCompressionB8 supported: 0
|
||||
2026/04/02-21:13:52.991832 139629081356096 kCustomCompressionD1 supported: 0
|
||||
2026/04/02-21:13:52.991833 139629081356096 kCustomCompressionBA supported: 0
|
||||
2026/04/02-21:13:52.991833 139629081356096 kCustomCompressionBC supported: 0
|
||||
2026/04/02-21:13:52.991834 139629081356096 kCustomCompressionCE supported: 0
|
||||
2026/04/02-21:13:52.991835 139629081356096 kCustomCompressionBD supported: 0
|
||||
2026/04/02-21:13:52.991835 139629081356096 kCustomCompressionC4 supported: 0
|
||||
2026/04/02-21:13:52.991836 139629081356096 kCustomCompression9A supported: 0
|
||||
2026/04/02-21:13:52.991837 139629081356096 kCustomCompression99 supported: 0
|
||||
2026/04/02-21:13:52.991837 139629081356096 kCustomCompressionBE supported: 0
|
||||
2026/04/02-21:13:52.991838 139629081356096 kCustomCompressionE5 supported: 0
|
||||
2026/04/02-21:13:52.991838 139629081356096 kCustomCompressionD9 supported: 0
|
||||
2026/04/02-21:13:52.991839 139629081356096 kCustomCompressionC1 supported: 0
|
||||
2026/04/02-21:13:52.991840 139629081356096 kCustomCompressionC5 supported: 0
|
||||
2026/04/02-21:13:52.991840 139629081356096 kCustomCompressionC2 supported: 0
|
||||
2026/04/02-21:13:52.991841 139629081356096 kCustomCompressionA5 supported: 0
|
||||
2026/04/02-21:13:52.991842 139629081356096 kCustomCompressionC7 supported: 0
|
||||
2026/04/02-21:13:52.991842 139629081356096 kCustomCompressionBF supported: 0
|
||||
2026/04/02-21:13:52.991843 139629081356096 kCustomCompressionE8 supported: 0
|
||||
2026/04/02-21:13:52.991843 139629081356096 kCustomCompressionC8 supported: 0
|
||||
2026/04/02-21:13:52.991844 139629081356096 kCustomCompressionAF supported: 0
|
||||
2026/04/02-21:13:52.991845 139629081356096 kCustomCompressionCA supported: 0
|
||||
2026/04/02-21:13:52.991845 139629081356096 kCustomCompressionCD supported: 0
|
||||
2026/04/02-21:13:52.991846 139629081356096 kCustomCompressionC0 supported: 0
|
||||
2026/04/02-21:13:52.991847 139629081356096 kCustomCompressionCF supported: 0
|
||||
2026/04/02-21:13:52.991847 139629081356096 kCustomCompressionF9 supported: 0
|
||||
2026/04/02-21:13:52.991848 139629081356096 kCustomCompressionD0 supported: 0
|
||||
2026/04/02-21:13:52.991848 139629081356096 kCustomCompressionD2 supported: 0
|
||||
2026/04/02-21:13:52.991849 139629081356096 kCustomCompressionAD supported: 0
|
||||
2026/04/02-21:13:52.991850 139629081356096 kCustomCompressionD3 supported: 0
|
||||
2026/04/02-21:13:52.991850 139629081356096 kCustomCompressionD4 supported: 0
|
||||
2026/04/02-21:13:52.991851 139629081356096 kCustomCompressionD7 supported: 0
|
||||
2026/04/02-21:13:52.991851 139629081356096 kCustomCompression82 supported: 0
|
||||
2026/04/02-21:13:52.991852 139629081356096 kCustomCompressionDD supported: 0
|
||||
2026/04/02-21:13:52.991853 139629081356096 kCustomCompressionC3 supported: 0
|
||||
2026/04/02-21:13:52.991853 139629081356096 kCustomCompressionEE supported: 0
|
||||
2026/04/02-21:13:52.991854 139629081356096 kCustomCompressionDE supported: 0
|
||||
2026/04/02-21:13:52.991855 139629081356096 kCustomCompressionDF supported: 0
|
||||
2026/04/02-21:13:52.991855 139629081356096 kCustomCompressionA7 supported: 0
|
||||
2026/04/02-21:13:52.991856 139629081356096 kCustomCompressionE0 supported: 0
|
||||
2026/04/02-21:13:52.991856 139629081356096 kCustomCompressionF1 supported: 0
|
||||
2026/04/02-21:13:52.991857 139629081356096 kCustomCompressionE1 supported: 0
|
||||
2026/04/02-21:13:52.991858 139629081356096 kCustomCompressionF5 supported: 0
|
||||
2026/04/02-21:13:52.991858 139629081356096 kCustomCompression80 supported: 0
|
||||
2026/04/02-21:13:52.991859 139629081356096 kCustomCompressionE3 supported: 0
|
||||
2026/04/02-21:13:52.991859 139629081356096 kCustomCompressionE4 supported: 0
|
||||
2026/04/02-21:13:52.991860 139629081356096 kCustomCompressionB0 supported: 0
|
||||
2026/04/02-21:13:52.991861 139629081356096 kCustomCompressionEA supported: 0
|
||||
2026/04/02-21:13:52.991861 139629081356096 kCustomCompressionFA supported: 0
|
||||
2026/04/02-21:13:52.991862 139629081356096 kCustomCompressionE7 supported: 0
|
||||
2026/04/02-21:13:52.991863 139629081356096 kCustomCompressionAE supported: 0
|
||||
2026/04/02-21:13:52.991863 139629081356096 kCustomCompressionEB supported: 0
|
||||
2026/04/02-21:13:52.991864 139629081356096 kCustomCompressionED supported: 0
|
||||
2026/04/02-21:13:52.991864 139629081356096 kCustomCompressionB6 supported: 0
|
||||
2026/04/02-21:13:52.991865 139629081356096 kCustomCompressionEF supported: 0
|
||||
2026/04/02-21:13:52.991866 139629081356096 kCustomCompressionF0 supported: 0
|
||||
2026/04/02-21:13:52.991866 139629081356096 kCustomCompressionB7 supported: 0
|
||||
2026/04/02-21:13:52.991867 139629081356096 kCustomCompressionF2 supported: 0
|
||||
2026/04/02-21:13:52.991868 139629081356096 kCustomCompressionA1 supported: 0
|
||||
2026/04/02-21:13:52.991868 139629081356096 kCustomCompressionF4 supported: 0
|
||||
2026/04/02-21:13:52.991869 139629081356096 kSnappyCompression supported: 0
|
||||
2026/04/02-21:13:52.991869 139629081356096 kCustomCompressionF6 supported: 0
|
||||
2026/04/02-21:13:52.991870 139629081356096 Fast CRC32 supported: Not supported on x86
|
||||
2026/04/02-21:13:52.991871 139629081356096 DMutex implementation: pthread_mutex_t
|
||||
2026/04/02-21:13:52.991872 139629081356096 Jemalloc supported: 0
|
||||
2026/04/02-21:13:52.991890 139629081356096 [WARN] [db/db_impl/db_impl_open.cc:2687] DB::Open() failed: IO error: lock hold by current process, acquire time 1775157232 acquiring thread 139629081356096: data/osint/oxigraph/LOCK: No locks available
|
||||
@@ -0,0 +1,238 @@
|
||||
2026/04/02-21:14:11.368799 139699433064256 RocksDB version: 10.10.1
|
||||
2026/04/02-21:14:11.368839 139699433064256 DB SUMMARY
|
||||
2026/04/02-21:14:11.368840 139699433064256 Host name (Env): Lucas
|
||||
2026/04/02-21:14:11.368841 139699433064256 DB Session ID: KRC5EXLUJ49Q5OOUEQMA
|
||||
2026/04/02-21:14:11.368878 139699433064256 CURRENT file: CURRENT
|
||||
2026/04/02-21:14:11.368879 139699433064256 IDENTITY file: IDENTITY
|
||||
2026/04/02-21:14:11.368883 139699433064256 MANIFEST file: MANIFEST-000034 size: 1785 Bytes
|
||||
2026/04/02-21:14:11.368884 139699433064256 SST files in /home/lucas/fn_registry/analysis/retrieving_graphs/notebooks/data/osint/oxigraph dir, Total Num: 5, files: 000011.sst 000015.sst 000016.sst 000017.sst 000018.sst
|
||||
2026/04/02-21:14:11.368885 139699433064256 Write Ahead Log file in /home/lucas/fn_registry/analysis/retrieving_graphs/notebooks/data/osint/oxigraph: 000033.log size: 0 ;
|
||||
2026/04/02-21:14:11.368886 139699433064256 Options.error_if_exists: 0
|
||||
2026/04/02-21:14:11.368887 139699433064256 Options.create_if_missing: 1
|
||||
2026/04/02-21:14:11.368888 139699433064256 Options.paranoid_checks: 1
|
||||
2026/04/02-21:14:11.368888 139699433064256 Options.flush_verify_memtable_count: 1
|
||||
2026/04/02-21:14:11.368889 139699433064256 Options.compaction_verify_record_count: 1
|
||||
2026/04/02-21:14:11.368889 139699433064256 Options.track_and_verify_wals_in_manifest: 0
|
||||
2026/04/02-21:14:11.368890 139699433064256 Options.track_and_verify_wals: 0
|
||||
2026/04/02-21:14:11.368891 139699433064256 Options.verify_sst_unique_id_in_manifest: 1
|
||||
2026/04/02-21:14:11.368891 139699433064256 Options.env: 0x1c345460
|
||||
2026/04/02-21:14:11.368892 139699433064256 Options.fs: PosixFileSystem
|
||||
2026/04/02-21:14:11.368893 139699433064256 Options.info_log: 0x1c398be0
|
||||
2026/04/02-21:14:11.368894 139699433064256 Options.max_file_opening_threads: 16
|
||||
2026/04/02-21:14:11.368894 139699433064256 Options.statistics: (nil)
|
||||
2026/04/02-21:14:11.368895 139699433064256 Options.use_fsync: 0
|
||||
2026/04/02-21:14:11.368895 139699433064256 Options.max_log_file_size: 1048576
|
||||
2026/04/02-21:14:11.368896 139699433064256 Options.log_file_time_to_roll: 0
|
||||
2026/04/02-21:14:11.368897 139699433064256 Options.keep_log_file_num: 1000
|
||||
2026/04/02-21:14:11.368898 139699433064256 Options.recycle_log_file_num: 10
|
||||
2026/04/02-21:14:11.368898 139699433064256 Options.allow_fallocate: 1
|
||||
2026/04/02-21:14:11.368899 139699433064256 Options.allow_mmap_reads: 0
|
||||
2026/04/02-21:14:11.368899 139699433064256 Options.allow_mmap_writes: 0
|
||||
2026/04/02-21:14:11.368900 139699433064256 Options.use_direct_reads: 0
|
||||
2026/04/02-21:14:11.368900 139699433064256 Options.use_direct_io_for_flush_and_compaction: 0
|
||||
2026/04/02-21:14:11.368901 139699433064256 Options.create_missing_column_families: 1
|
||||
2026/04/02-21:14:11.368901 139699433064256 Options.db_log_dir:
|
||||
2026/04/02-21:14:11.368902 139699433064256 Options.wal_dir:
|
||||
2026/04/02-21:14:11.368902 139699433064256 Options.table_cache_numshardbits: 6
|
||||
2026/04/02-21:14:11.368903 139699433064256 Options.WAL_ttl_seconds: 0
|
||||
2026/04/02-21:14:11.368903 139699433064256 Options.WAL_size_limit_MB: 0
|
||||
2026/04/02-21:14:11.368904 139699433064256 Options.max_write_batch_group_size_bytes: 1048576
|
||||
2026/04/02-21:14:11.368904 139699433064256 Options.is_fd_close_on_exec: 1
|
||||
2026/04/02-21:14:11.368905 139699433064256 Options.advise_random_on_open: 1
|
||||
2026/04/02-21:14:11.368905 139699433064256 Options.db_write_buffer_size: 0
|
||||
2026/04/02-21:14:11.368907 139699433064256 Options.write_buffer_manager: 0x1c3adbc0
|
||||
2026/04/02-21:14:11.368908 139699433064256 Options.use_adaptive_mutex: 0
|
||||
2026/04/02-21:14:11.368909 139699433064256 Options.rate_limiter: (nil)
|
||||
2026/04/02-21:14:11.368910 139699433064256 Options.sst_file_manager.rate_bytes_per_sec: 0
|
||||
2026/04/02-21:14:11.368911 139699433064256 Options.wal_recovery_mode: 2
|
||||
2026/04/02-21:14:11.368911 139699433064256 Options.enable_thread_tracking: 0
|
||||
2026/04/02-21:14:11.368912 139699433064256 Options.enable_pipelined_write: 0
|
||||
2026/04/02-21:14:11.368912 139699433064256 Options.unordered_write: 0
|
||||
2026/04/02-21:14:11.368913 139699433064256 Options.allow_concurrent_memtable_write: 1
|
||||
2026/04/02-21:14:11.368913 139699433064256 Options.enable_write_thread_adaptive_yield: 1
|
||||
2026/04/02-21:14:11.368914 139699433064256 Options.write_thread_max_yield_usec: 100
|
||||
2026/04/02-21:14:11.368914 139699433064256 Options.write_thread_slow_yield_usec: 3
|
||||
2026/04/02-21:14:11.368914 139699433064256 Options.row_cache: None
|
||||
2026/04/02-21:14:11.368915 139699433064256 Options.wal_filter: None
|
||||
2026/04/02-21:14:11.368916 139699433064256 Options.avoid_flush_during_recovery: 0
|
||||
2026/04/02-21:14:11.368916 139699433064256 Options.allow_ingest_behind: 0
|
||||
2026/04/02-21:14:11.368917 139699433064256 Options.two_write_queues: 0
|
||||
2026/04/02-21:14:11.368917 139699433064256 Options.manual_wal_flush: 0
|
||||
2026/04/02-21:14:11.368918 139699433064256 Options.wal_compression: 0
|
||||
2026/04/02-21:14:11.368918 139699433064256 Options.background_close_inactive_wals: 0
|
||||
2026/04/02-21:14:11.368918 139699433064256 Options.atomic_flush: 0
|
||||
2026/04/02-21:14:11.368919 139699433064256 Options.avoid_unnecessary_blocking_io: 0
|
||||
2026/04/02-21:14:11.368919 139699433064256 Options.prefix_seek_opt_in_only: 0
|
||||
2026/04/02-21:14:11.368920 139699433064256 Options.persist_stats_to_disk: 0
|
||||
2026/04/02-21:14:11.368920 139699433064256 Options.write_dbid_to_manifest: 1
|
||||
2026/04/02-21:14:11.368921 139699433064256 Options.write_identity_file: 1
|
||||
2026/04/02-21:14:11.368921 139699433064256 Options.log_readahead_size: 0
|
||||
2026/04/02-21:14:11.368922 139699433064256 Options.file_checksum_gen_factory: Unknown
|
||||
2026/04/02-21:14:11.368922 139699433064256 Options.best_efforts_recovery: 0
|
||||
2026/04/02-21:14:11.368923 139699433064256 Options.max_bgerror_resume_count: 2147483647
|
||||
2026/04/02-21:14:11.368923 139699433064256 Options.bgerror_resume_retry_interval: 1000000
|
||||
2026/04/02-21:14:11.368924 139699433064256 Options.allow_data_in_errors: 0
|
||||
2026/04/02-21:14:11.368924 139699433064256 Options.db_host_id: __hostname__
|
||||
2026/04/02-21:14:11.368926 139699433064256 Options.enforce_single_del_contracts: true
|
||||
2026/04/02-21:14:11.368927 139699433064256 Options.metadata_write_temperature: kUnknown
|
||||
2026/04/02-21:14:11.368928 139699433064256 Options.wal_write_temperature: kUnknown
|
||||
2026/04/02-21:14:11.368928 139699433064256 Options.max_background_jobs: 24
|
||||
2026/04/02-21:14:11.368929 139699433064256 Options.max_background_compactions: -1
|
||||
2026/04/02-21:14:11.368929 139699433064256 Options.max_subcompactions: 1
|
||||
2026/04/02-21:14:11.368930 139699433064256 Options.avoid_flush_during_shutdown: 0
|
||||
2026/04/02-21:14:11.368930 139699433064256 Options.writable_file_max_buffer_size: 1048576
|
||||
2026/04/02-21:14:11.368931 139699433064256 Options.delayed_write_rate : 16777216
|
||||
2026/04/02-21:14:11.368931 139699433064256 Options.max_total_wal_size: 0
|
||||
2026/04/02-21:14:11.368932 139699433064256 Options.delete_obsolete_files_period_micros: 21600000000
|
||||
2026/04/02-21:14:11.368932 139699433064256 Options.stats_dump_period_sec: 600
|
||||
2026/04/02-21:14:11.368934 139699433064256 Options.stats_persist_period_sec: 600
|
||||
2026/04/02-21:14:11.368934 139699433064256 Options.stats_history_buffer_size: 1048576
|
||||
2026/04/02-21:14:11.368935 139699433064256 Options.max_open_files: 4048
|
||||
2026/04/02-21:14:11.368935 139699433064256 Options.bytes_per_sync: 0
|
||||
2026/04/02-21:14:11.368936 139699433064256 Options.wal_bytes_per_sync: 0
|
||||
2026/04/02-21:14:11.368936 139699433064256 Options.strict_bytes_per_sync: 0
|
||||
2026/04/02-21:14:11.368937 139699433064256 Options.compaction_readahead_size: 2097152
|
||||
2026/04/02-21:14:11.368937 139699433064256 Options.max_background_flushes: -1
|
||||
2026/04/02-21:14:11.368938 139699433064256 Options.max_manifest_file_size: 1073741824
|
||||
2026/04/02-21:14:11.368938 139699433064256 Options.max_manifest_space_amp_pct: 500
|
||||
2026/04/02-21:14:11.368939 139699433064256 Options.manifest_preallocation_size: 4194304
|
||||
2026/04/02-21:14:11.368939 139699433064256 Options.daily_offpeak_time_utc:
|
||||
2026/04/02-21:14:11.368940 139699433064256 Compression algorithms supported:
|
||||
2026/04/02-21:14:11.368940 139699433064256 kCustomCompressionFE supported: 0
|
||||
2026/04/02-21:14:11.368941 139699433064256 kCustomCompressionFC supported: 0
|
||||
2026/04/02-21:14:11.368941 139699433064256 kCustomCompressionF8 supported: 0
|
||||
2026/04/02-21:14:11.368942 139699433064256 kCustomCompressionF7 supported: 0
|
||||
2026/04/02-21:14:11.368943 139699433064256 kCustomCompressionB2 supported: 0
|
||||
2026/04/02-21:14:11.368943 139699433064256 kLZ4Compression supported: 1
|
||||
2026/04/02-21:14:11.368944 139699433064256 kCustomCompression88 supported: 0
|
||||
2026/04/02-21:14:11.368945 139699433064256 kCustomCompressionD8 supported: 0
|
||||
2026/04/02-21:14:11.368945 139699433064256 kCustomCompression9F supported: 0
|
||||
2026/04/02-21:14:11.368946 139699433064256 kCustomCompressionD6 supported: 0
|
||||
2026/04/02-21:14:11.368946 139699433064256 kCustomCompressionA9 supported: 0
|
||||
2026/04/02-21:14:11.368949 139699433064256 kCustomCompressionEC supported: 0
|
||||
2026/04/02-21:14:11.368949 139699433064256 kCustomCompressionA3 supported: 0
|
||||
2026/04/02-21:14:11.368950 139699433064256 kCustomCompressionCB supported: 0
|
||||
2026/04/02-21:14:11.368950 139699433064256 kCustomCompression90 supported: 0
|
||||
2026/04/02-21:14:11.368951 139699433064256 kCustomCompressionA0 supported: 0
|
||||
2026/04/02-21:14:11.368952 139699433064256 kCustomCompressionC6 supported: 0
|
||||
2026/04/02-21:14:11.368952 139699433064256 kCustomCompression9D supported: 0
|
||||
2026/04/02-21:14:11.368953 139699433064256 kCustomCompression8B supported: 0
|
||||
2026/04/02-21:14:11.368953 139699433064256 kCustomCompressionA8 supported: 0
|
||||
2026/04/02-21:14:11.368954 139699433064256 kCustomCompression8D supported: 0
|
||||
2026/04/02-21:14:11.368954 139699433064256 kCustomCompression97 supported: 0
|
||||
2026/04/02-21:14:11.368955 139699433064256 kCustomCompression98 supported: 0
|
||||
2026/04/02-21:14:11.368955 139699433064256 kCustomCompressionAC supported: 0
|
||||
2026/04/02-21:14:11.368956 139699433064256 kCustomCompressionE9 supported: 0
|
||||
2026/04/02-21:14:11.368956 139699433064256 kCustomCompression96 supported: 0
|
||||
2026/04/02-21:14:11.368957 139699433064256 kCustomCompressionB1 supported: 0
|
||||
2026/04/02-21:14:11.368957 139699433064256 kCustomCompression95 supported: 0
|
||||
2026/04/02-21:14:11.368958 139699433064256 kCustomCompression84 supported: 0
|
||||
2026/04/02-21:14:11.368958 139699433064256 kCustomCompression91 supported: 0
|
||||
2026/04/02-21:14:11.368959 139699433064256 kCustomCompressionAB supported: 0
|
||||
2026/04/02-21:14:11.368959 139699433064256 kCustomCompressionB3 supported: 0
|
||||
2026/04/02-21:14:11.368960 139699433064256 kCustomCompression81 supported: 0
|
||||
2026/04/02-21:14:11.368960 139699433064256 kCustomCompressionDC supported: 0
|
||||
2026/04/02-21:14:11.368961 139699433064256 kBZip2Compression supported: 0
|
||||
2026/04/02-21:14:11.368961 139699433064256 kCustomCompressionBB supported: 0
|
||||
2026/04/02-21:14:11.368962 139699433064256 kCustomCompression9C supported: 0
|
||||
2026/04/02-21:14:11.368963 139699433064256 kCustomCompressionC9 supported: 0
|
||||
2026/04/02-21:14:11.368964 139699433064256 kCustomCompressionCC supported: 0
|
||||
2026/04/02-21:14:11.368964 139699433064256 kCustomCompression92 supported: 0
|
||||
2026/04/02-21:14:11.368964 139699433064256 kCustomCompressionB9 supported: 0
|
||||
2026/04/02-21:14:11.368965 139699433064256 kCustomCompression8F supported: 0
|
||||
2026/04/02-21:14:11.368965 139699433064256 kCustomCompression8A supported: 0
|
||||
2026/04/02-21:14:11.368966 139699433064256 kCustomCompression9B supported: 0
|
||||
2026/04/02-21:14:11.368966 139699433064256 kZSTD supported: 0
|
||||
2026/04/02-21:14:11.368967 139699433064256 kCustomCompressionAA supported: 0
|
||||
2026/04/02-21:14:11.368967 139699433064256 kCustomCompressionA2 supported: 0
|
||||
2026/04/02-21:14:11.368969 139699433064256 kZlibCompression supported: 0
|
||||
2026/04/02-21:14:11.368969 139699433064256 kXpressCompression supported: 0
|
||||
2026/04/02-21:14:11.368970 139699433064256 kCustomCompressionFD supported: 0
|
||||
2026/04/02-21:14:11.368970 139699433064256 kCustomCompressionE2 supported: 0
|
||||
2026/04/02-21:14:11.368971 139699433064256 kLZ4HCCompression supported: 1
|
||||
2026/04/02-21:14:11.368971 139699433064256 kCustomCompressionA6 supported: 0
|
||||
2026/04/02-21:14:11.368971 139699433064256 kCustomCompression85 supported: 0
|
||||
2026/04/02-21:14:11.368972 139699433064256 kCustomCompressionA4 supported: 0
|
||||
2026/04/02-21:14:11.368972 139699433064256 kCustomCompression86 supported: 0
|
||||
2026/04/02-21:14:11.368973 139699433064256 kCustomCompression83 supported: 0
|
||||
2026/04/02-21:14:11.368973 139699433064256 kCustomCompression87 supported: 0
|
||||
2026/04/02-21:14:11.368974 139699433064256 kCustomCompression89 supported: 0
|
||||
2026/04/02-21:14:11.368974 139699433064256 kCustomCompression8C supported: 0
|
||||
2026/04/02-21:14:11.368975 139699433064256 kCustomCompressionDB supported: 0
|
||||
2026/04/02-21:14:11.368975 139699433064256 kCustomCompressionF3 supported: 0
|
||||
2026/04/02-21:14:11.368976 139699433064256 kCustomCompressionE6 supported: 0
|
||||
2026/04/02-21:14:11.368976 139699433064256 kCustomCompression8E supported: 0
|
||||
2026/04/02-21:14:11.368976 139699433064256 kCustomCompressionDA supported: 0
|
||||
2026/04/02-21:14:11.368977 139699433064256 kCustomCompression93 supported: 0
|
||||
2026/04/02-21:14:11.368977 139699433064256 kCustomCompression94 supported: 0
|
||||
2026/04/02-21:14:11.368978 139699433064256 kCustomCompression9E supported: 0
|
||||
2026/04/02-21:14:11.368978 139699433064256 kCustomCompressionB4 supported: 0
|
||||
2026/04/02-21:14:11.368979 139699433064256 kCustomCompressionFB supported: 0
|
||||
2026/04/02-21:14:11.368979 139699433064256 kCustomCompressionB5 supported: 0
|
||||
2026/04/02-21:14:11.368980 139699433064256 kCustomCompressionD5 supported: 0
|
||||
2026/04/02-21:14:11.368980 139699433064256 kCustomCompressionB8 supported: 0
|
||||
2026/04/02-21:14:11.368981 139699433064256 kCustomCompressionD1 supported: 0
|
||||
2026/04/02-21:14:11.368981 139699433064256 kCustomCompressionBA supported: 0
|
||||
2026/04/02-21:14:11.368982 139699433064256 kCustomCompressionBC supported: 0
|
||||
2026/04/02-21:14:11.368982 139699433064256 kCustomCompressionCE supported: 0
|
||||
2026/04/02-21:14:11.368982 139699433064256 kCustomCompressionBD supported: 0
|
||||
2026/04/02-21:14:11.368983 139699433064256 kCustomCompressionC4 supported: 0
|
||||
2026/04/02-21:14:11.368983 139699433064256 kCustomCompression9A supported: 0
|
||||
2026/04/02-21:14:11.368984 139699433064256 kCustomCompression99 supported: 0
|
||||
2026/04/02-21:14:11.368984 139699433064256 kCustomCompressionBE supported: 0
|
||||
2026/04/02-21:14:11.368985 139699433064256 kCustomCompressionE5 supported: 0
|
||||
2026/04/02-21:14:11.368985 139699433064256 kCustomCompressionD9 supported: 0
|
||||
2026/04/02-21:14:11.368987 139699433064256 kCustomCompressionC1 supported: 0
|
||||
2026/04/02-21:14:11.368987 139699433064256 kCustomCompressionC5 supported: 0
|
||||
2026/04/02-21:14:11.368987 139699433064256 kCustomCompressionC2 supported: 0
|
||||
2026/04/02-21:14:11.368988 139699433064256 kCustomCompressionA5 supported: 0
|
||||
2026/04/02-21:14:11.368989 139699433064256 kCustomCompressionC7 supported: 0
|
||||
2026/04/02-21:14:11.368989 139699433064256 kCustomCompressionBF supported: 0
|
||||
2026/04/02-21:14:11.368991 139699433064256 kCustomCompressionE8 supported: 0
|
||||
2026/04/02-21:14:11.368991 139699433064256 kCustomCompressionC8 supported: 0
|
||||
2026/04/02-21:14:11.368991 139699433064256 kCustomCompressionAF supported: 0
|
||||
2026/04/02-21:14:11.368992 139699433064256 kCustomCompressionCA supported: 0
|
||||
2026/04/02-21:14:11.368992 139699433064256 kCustomCompressionCD supported: 0
|
||||
2026/04/02-21:14:11.368993 139699433064256 kCustomCompressionC0 supported: 0
|
||||
2026/04/02-21:14:11.368993 139699433064256 kCustomCompressionCF supported: 0
|
||||
2026/04/02-21:14:11.368994 139699433064256 kCustomCompressionF9 supported: 0
|
||||
2026/04/02-21:14:11.368994 139699433064256 kCustomCompressionD0 supported: 0
|
||||
2026/04/02-21:14:11.368995 139699433064256 kCustomCompressionD2 supported: 0
|
||||
2026/04/02-21:14:11.368995 139699433064256 kCustomCompressionAD supported: 0
|
||||
2026/04/02-21:14:11.368996 139699433064256 kCustomCompressionD3 supported: 0
|
||||
2026/04/02-21:14:11.368996 139699433064256 kCustomCompressionD4 supported: 0
|
||||
2026/04/02-21:14:11.368996 139699433064256 kCustomCompressionD7 supported: 0
|
||||
2026/04/02-21:14:11.368997 139699433064256 kCustomCompression82 supported: 0
|
||||
2026/04/02-21:14:11.368997 139699433064256 kCustomCompressionDD supported: 0
|
||||
2026/04/02-21:14:11.368998 139699433064256 kCustomCompressionC3 supported: 0
|
||||
2026/04/02-21:14:11.368998 139699433064256 kCustomCompressionEE supported: 0
|
||||
2026/04/02-21:14:11.368999 139699433064256 kCustomCompressionDE supported: 0
|
||||
2026/04/02-21:14:11.368999 139699433064256 kCustomCompressionDF supported: 0
|
||||
2026/04/02-21:14:11.369000 139699433064256 kCustomCompressionA7 supported: 0
|
||||
2026/04/02-21:14:11.369000 139699433064256 kCustomCompressionE0 supported: 0
|
||||
2026/04/02-21:14:11.369000 139699433064256 kCustomCompressionF1 supported: 0
|
||||
2026/04/02-21:14:11.369001 139699433064256 kCustomCompressionE1 supported: 0
|
||||
2026/04/02-21:14:11.369001 139699433064256 kCustomCompressionF5 supported: 0
|
||||
2026/04/02-21:14:11.369002 139699433064256 kCustomCompression80 supported: 0
|
||||
2026/04/02-21:14:11.369002 139699433064256 kCustomCompressionE3 supported: 0
|
||||
2026/04/02-21:14:11.369003 139699433064256 kCustomCompressionE4 supported: 0
|
||||
2026/04/02-21:14:11.369003 139699433064256 kCustomCompressionB0 supported: 0
|
||||
2026/04/02-21:14:11.369003 139699433064256 kCustomCompressionEA supported: 0
|
||||
2026/04/02-21:14:11.369005 139699433064256 kCustomCompressionFA supported: 0
|
||||
2026/04/02-21:14:11.369005 139699433064256 kCustomCompressionE7 supported: 0
|
||||
2026/04/02-21:14:11.369006 139699433064256 kCustomCompressionAE supported: 0
|
||||
2026/04/02-21:14:11.369006 139699433064256 kCustomCompressionEB supported: 0
|
||||
2026/04/02-21:14:11.369007 139699433064256 kCustomCompressionED supported: 0
|
||||
2026/04/02-21:14:11.369007 139699433064256 kCustomCompressionB6 supported: 0
|
||||
2026/04/02-21:14:11.369008 139699433064256 kCustomCompressionEF supported: 0
|
||||
2026/04/02-21:14:11.369008 139699433064256 kCustomCompressionF0 supported: 0
|
||||
2026/04/02-21:14:11.369009 139699433064256 kCustomCompressionB7 supported: 0
|
||||
2026/04/02-21:14:11.369009 139699433064256 kCustomCompressionF2 supported: 0
|
||||
2026/04/02-21:14:11.369009 139699433064256 kCustomCompressionA1 supported: 0
|
||||
2026/04/02-21:14:11.369010 139699433064256 kCustomCompressionF4 supported: 0
|
||||
2026/04/02-21:14:11.369010 139699433064256 kSnappyCompression supported: 0
|
||||
2026/04/02-21:14:11.369011 139699433064256 kCustomCompressionF6 supported: 0
|
||||
2026/04/02-21:14:11.369012 139699433064256 Fast CRC32 supported: Not supported on x86
|
||||
2026/04/02-21:14:11.369013 139699433064256 DMutex implementation: pthread_mutex_t
|
||||
2026/04/02-21:14:11.369013 139699433064256 Jemalloc supported: 0
|
||||
2026/04/02-21:14:11.369056 139699433064256 [WARN] [db/db_impl/db_impl_open.cc:2687] DB::Open() failed: IO error: While lock file: /home/lucas/fn_registry/analysis/retrieving_graphs/notebooks/data/osint/oxigraph/LOCK: Resource temporarily unavailable
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,238 @@
|
||||
2026/04/02-21:14:20.218119 139629081356096 RocksDB version: 10.10.1
|
||||
2026/04/02-21:14:20.218151 139629081356096 DB SUMMARY
|
||||
2026/04/02-21:14:20.218154 139629081356096 Host name (Env): Lucas
|
||||
2026/04/02-21:14:20.218155 139629081356096 DB Session ID: 86F26ZGOLUEYUL8ZU31D
|
||||
2026/04/02-21:14:20.218189 139629081356096 CURRENT file: CURRENT
|
||||
2026/04/02-21:14:20.218191 139629081356096 IDENTITY file: IDENTITY
|
||||
2026/04/02-21:14:20.218194 139629081356096 MANIFEST file: MANIFEST-000038 size: 1785 Bytes
|
||||
2026/04/02-21:14:20.218196 139629081356096 SST files in data/osint/oxigraph dir, Total Num: 5, files: 000011.sst 000015.sst 000016.sst 000017.sst 000018.sst
|
||||
2026/04/02-21:14:20.218197 139629081356096 Write Ahead Log file in data/osint/oxigraph: 000037.log size: 0 ;
|
||||
2026/04/02-21:14:20.218198 139629081356096 Options.error_if_exists: 0
|
||||
2026/04/02-21:14:20.218199 139629081356096 Options.create_if_missing: 1
|
||||
2026/04/02-21:14:20.218200 139629081356096 Options.paranoid_checks: 1
|
||||
2026/04/02-21:14:20.218201 139629081356096 Options.flush_verify_memtable_count: 1
|
||||
2026/04/02-21:14:20.218202 139629081356096 Options.compaction_verify_record_count: 1
|
||||
2026/04/02-21:14:20.218203 139629081356096 Options.track_and_verify_wals_in_manifest: 0
|
||||
2026/04/02-21:14:20.218203 139629081356096 Options.track_and_verify_wals: 0
|
||||
2026/04/02-21:14:20.218204 139629081356096 Options.verify_sst_unique_id_in_manifest: 1
|
||||
2026/04/02-21:14:20.218205 139629081356096 Options.env: 0x3a912f30
|
||||
2026/04/02-21:14:20.218206 139629081356096 Options.fs: PosixFileSystem
|
||||
2026/04/02-21:14:20.218207 139629081356096 Options.info_log: 0x3b113f60
|
||||
2026/04/02-21:14:20.218208 139629081356096 Options.max_file_opening_threads: 16
|
||||
2026/04/02-21:14:20.218209 139629081356096 Options.statistics: (nil)
|
||||
2026/04/02-21:14:20.218210 139629081356096 Options.use_fsync: 0
|
||||
2026/04/02-21:14:20.218211 139629081356096 Options.max_log_file_size: 1048576
|
||||
2026/04/02-21:14:20.218211 139629081356096 Options.log_file_time_to_roll: 0
|
||||
2026/04/02-21:14:20.218212 139629081356096 Options.keep_log_file_num: 1000
|
||||
2026/04/02-21:14:20.218213 139629081356096 Options.recycle_log_file_num: 10
|
||||
2026/04/02-21:14:20.218214 139629081356096 Options.allow_fallocate: 1
|
||||
2026/04/02-21:14:20.218215 139629081356096 Options.allow_mmap_reads: 0
|
||||
2026/04/02-21:14:20.218215 139629081356096 Options.allow_mmap_writes: 0
|
||||
2026/04/02-21:14:20.218216 139629081356096 Options.use_direct_reads: 0
|
||||
2026/04/02-21:14:20.218217 139629081356096 Options.use_direct_io_for_flush_and_compaction: 0
|
||||
2026/04/02-21:14:20.218217 139629081356096 Options.create_missing_column_families: 1
|
||||
2026/04/02-21:14:20.218218 139629081356096 Options.db_log_dir:
|
||||
2026/04/02-21:14:20.218219 139629081356096 Options.wal_dir:
|
||||
2026/04/02-21:14:20.218219 139629081356096 Options.table_cache_numshardbits: 6
|
||||
2026/04/02-21:14:20.218220 139629081356096 Options.WAL_ttl_seconds: 0
|
||||
2026/04/02-21:14:20.218220 139629081356096 Options.WAL_size_limit_MB: 0
|
||||
2026/04/02-21:14:20.218221 139629081356096 Options.max_write_batch_group_size_bytes: 1048576
|
||||
2026/04/02-21:14:20.218222 139629081356096 Options.is_fd_close_on_exec: 1
|
||||
2026/04/02-21:14:20.218223 139629081356096 Options.advise_random_on_open: 1
|
||||
2026/04/02-21:14:20.218223 139629081356096 Options.db_write_buffer_size: 0
|
||||
2026/04/02-21:14:20.218224 139629081356096 Options.write_buffer_manager: 0x3b10d920
|
||||
2026/04/02-21:14:20.218225 139629081356096 Options.use_adaptive_mutex: 0
|
||||
2026/04/02-21:14:20.218226 139629081356096 Options.rate_limiter: (nil)
|
||||
2026/04/02-21:14:20.218227 139629081356096 Options.sst_file_manager.rate_bytes_per_sec: 0
|
||||
2026/04/02-21:14:20.218228 139629081356096 Options.wal_recovery_mode: 2
|
||||
2026/04/02-21:14:20.218229 139629081356096 Options.enable_thread_tracking: 0
|
||||
2026/04/02-21:14:20.218229 139629081356096 Options.enable_pipelined_write: 0
|
||||
2026/04/02-21:14:20.218230 139629081356096 Options.unordered_write: 0
|
||||
2026/04/02-21:14:20.218231 139629081356096 Options.allow_concurrent_memtable_write: 1
|
||||
2026/04/02-21:14:20.218231 139629081356096 Options.enable_write_thread_adaptive_yield: 1
|
||||
2026/04/02-21:14:20.218232 139629081356096 Options.write_thread_max_yield_usec: 100
|
||||
2026/04/02-21:14:20.218232 139629081356096 Options.write_thread_slow_yield_usec: 3
|
||||
2026/04/02-21:14:20.218233 139629081356096 Options.row_cache: None
|
||||
2026/04/02-21:14:20.218234 139629081356096 Options.wal_filter: None
|
||||
2026/04/02-21:14:20.218235 139629081356096 Options.avoid_flush_during_recovery: 0
|
||||
2026/04/02-21:14:20.218235 139629081356096 Options.allow_ingest_behind: 0
|
||||
2026/04/02-21:14:20.218236 139629081356096 Options.two_write_queues: 0
|
||||
2026/04/02-21:14:20.218237 139629081356096 Options.manual_wal_flush: 0
|
||||
2026/04/02-21:14:20.218237 139629081356096 Options.wal_compression: 0
|
||||
2026/04/02-21:14:20.218238 139629081356096 Options.background_close_inactive_wals: 0
|
||||
2026/04/02-21:14:20.218239 139629081356096 Options.atomic_flush: 0
|
||||
2026/04/02-21:14:20.218239 139629081356096 Options.avoid_unnecessary_blocking_io: 0
|
||||
2026/04/02-21:14:20.218240 139629081356096 Options.prefix_seek_opt_in_only: 0
|
||||
2026/04/02-21:14:20.218240 139629081356096 Options.persist_stats_to_disk: 0
|
||||
2026/04/02-21:14:20.218241 139629081356096 Options.write_dbid_to_manifest: 1
|
||||
2026/04/02-21:14:20.218242 139629081356096 Options.write_identity_file: 1
|
||||
2026/04/02-21:14:20.218242 139629081356096 Options.log_readahead_size: 0
|
||||
2026/04/02-21:14:20.218243 139629081356096 Options.file_checksum_gen_factory: Unknown
|
||||
2026/04/02-21:14:20.218244 139629081356096 Options.best_efforts_recovery: 0
|
||||
2026/04/02-21:14:20.218244 139629081356096 Options.max_bgerror_resume_count: 2147483647
|
||||
2026/04/02-21:14:20.218245 139629081356096 Options.bgerror_resume_retry_interval: 1000000
|
||||
2026/04/02-21:14:20.218246 139629081356096 Options.allow_data_in_errors: 0
|
||||
2026/04/02-21:14:20.218246 139629081356096 Options.db_host_id: __hostname__
|
||||
2026/04/02-21:14:20.218247 139629081356096 Options.enforce_single_del_contracts: true
|
||||
2026/04/02-21:14:20.218248 139629081356096 Options.metadata_write_temperature: kUnknown
|
||||
2026/04/02-21:14:20.218249 139629081356096 Options.wal_write_temperature: kUnknown
|
||||
2026/04/02-21:14:20.218250 139629081356096 Options.max_background_jobs: 24
|
||||
2026/04/02-21:14:20.218250 139629081356096 Options.max_background_compactions: -1
|
||||
2026/04/02-21:14:20.218251 139629081356096 Options.max_subcompactions: 1
|
||||
2026/04/02-21:14:20.218252 139629081356096 Options.avoid_flush_during_shutdown: 0
|
||||
2026/04/02-21:14:20.218253 139629081356096 Options.writable_file_max_buffer_size: 1048576
|
||||
2026/04/02-21:14:20.218253 139629081356096 Options.delayed_write_rate : 16777216
|
||||
2026/04/02-21:14:20.218254 139629081356096 Options.max_total_wal_size: 0
|
||||
2026/04/02-21:14:20.218255 139629081356096 Options.delete_obsolete_files_period_micros: 21600000000
|
||||
2026/04/02-21:14:20.218255 139629081356096 Options.stats_dump_period_sec: 600
|
||||
2026/04/02-21:14:20.218256 139629081356096 Options.stats_persist_period_sec: 600
|
||||
2026/04/02-21:14:20.218257 139629081356096 Options.stats_history_buffer_size: 1048576
|
||||
2026/04/02-21:14:20.218257 139629081356096 Options.max_open_files: 4048
|
||||
2026/04/02-21:14:20.218258 139629081356096 Options.bytes_per_sync: 0
|
||||
2026/04/02-21:14:20.218259 139629081356096 Options.wal_bytes_per_sync: 0
|
||||
2026/04/02-21:14:20.218259 139629081356096 Options.strict_bytes_per_sync: 0
|
||||
2026/04/02-21:14:20.218260 139629081356096 Options.compaction_readahead_size: 2097152
|
||||
2026/04/02-21:14:20.218261 139629081356096 Options.max_background_flushes: -1
|
||||
2026/04/02-21:14:20.218261 139629081356096 Options.max_manifest_file_size: 1073741824
|
||||
2026/04/02-21:14:20.218262 139629081356096 Options.max_manifest_space_amp_pct: 500
|
||||
2026/04/02-21:14:20.218262 139629081356096 Options.manifest_preallocation_size: 4194304
|
||||
2026/04/02-21:14:20.218263 139629081356096 Options.daily_offpeak_time_utc:
|
||||
2026/04/02-21:14:20.218264 139629081356096 Compression algorithms supported:
|
||||
2026/04/02-21:14:20.218265 139629081356096 kCustomCompressionFE supported: 0
|
||||
2026/04/02-21:14:20.218266 139629081356096 kCustomCompressionFC supported: 0
|
||||
2026/04/02-21:14:20.218268 139629081356096 kCustomCompressionF8 supported: 0
|
||||
2026/04/02-21:14:20.218269 139629081356096 kCustomCompressionF7 supported: 0
|
||||
2026/04/02-21:14:20.218269 139629081356096 kCustomCompressionB2 supported: 0
|
||||
2026/04/02-21:14:20.218270 139629081356096 kLZ4Compression supported: 1
|
||||
2026/04/02-21:14:20.218271 139629081356096 kCustomCompression88 supported: 0
|
||||
2026/04/02-21:14:20.218272 139629081356096 kCustomCompressionD8 supported: 0
|
||||
2026/04/02-21:14:20.218273 139629081356096 kCustomCompression9F supported: 0
|
||||
2026/04/02-21:14:20.218273 139629081356096 kCustomCompressionD6 supported: 0
|
||||
2026/04/02-21:14:20.218274 139629081356096 kCustomCompressionA9 supported: 0
|
||||
2026/04/02-21:14:20.218275 139629081356096 kCustomCompressionEC supported: 0
|
||||
2026/04/02-21:14:20.218275 139629081356096 kCustomCompressionA3 supported: 0
|
||||
2026/04/02-21:14:20.218276 139629081356096 kCustomCompressionCB supported: 0
|
||||
2026/04/02-21:14:20.218277 139629081356096 kCustomCompression90 supported: 0
|
||||
2026/04/02-21:14:20.218277 139629081356096 kCustomCompressionA0 supported: 0
|
||||
2026/04/02-21:14:20.218278 139629081356096 kCustomCompressionC6 supported: 0
|
||||
2026/04/02-21:14:20.218279 139629081356096 kCustomCompression9D supported: 0
|
||||
2026/04/02-21:14:20.218280 139629081356096 kCustomCompression8B supported: 0
|
||||
2026/04/02-21:14:20.218280 139629081356096 kCustomCompressionA8 supported: 0
|
||||
2026/04/02-21:14:20.218281 139629081356096 kCustomCompression8D supported: 0
|
||||
2026/04/02-21:14:20.218281 139629081356096 kCustomCompression97 supported: 0
|
||||
2026/04/02-21:14:20.218282 139629081356096 kCustomCompression98 supported: 0
|
||||
2026/04/02-21:14:20.218283 139629081356096 kCustomCompressionAC supported: 0
|
||||
2026/04/02-21:14:20.218284 139629081356096 kCustomCompressionE9 supported: 0
|
||||
2026/04/02-21:14:20.218284 139629081356096 kCustomCompression96 supported: 0
|
||||
2026/04/02-21:14:20.218285 139629081356096 kCustomCompressionB1 supported: 0
|
||||
2026/04/02-21:14:20.218286 139629081356096 kCustomCompression95 supported: 0
|
||||
2026/04/02-21:14:20.218286 139629081356096 kCustomCompression84 supported: 0
|
||||
2026/04/02-21:14:20.218287 139629081356096 kCustomCompression91 supported: 0
|
||||
2026/04/02-21:14:20.218287 139629081356096 kCustomCompressionAB supported: 0
|
||||
2026/04/02-21:14:20.218288 139629081356096 kCustomCompressionB3 supported: 0
|
||||
2026/04/02-21:14:20.218289 139629081356096 kCustomCompression81 supported: 0
|
||||
2026/04/02-21:14:20.218289 139629081356096 kCustomCompressionDC supported: 0
|
||||
2026/04/02-21:14:20.218290 139629081356096 kBZip2Compression supported: 0
|
||||
2026/04/02-21:14:20.218291 139629081356096 kCustomCompressionBB supported: 0
|
||||
2026/04/02-21:14:20.218292 139629081356096 kCustomCompression9C supported: 0
|
||||
2026/04/02-21:14:20.218292 139629081356096 kCustomCompressionC9 supported: 0
|
||||
2026/04/02-21:14:20.218293 139629081356096 kCustomCompressionCC supported: 0
|
||||
2026/04/02-21:14:20.218293 139629081356096 kCustomCompression92 supported: 0
|
||||
2026/04/02-21:14:20.218294 139629081356096 kCustomCompressionB9 supported: 0
|
||||
2026/04/02-21:14:20.218295 139629081356096 kCustomCompression8F supported: 0
|
||||
2026/04/02-21:14:20.218295 139629081356096 kCustomCompression8A supported: 0
|
||||
2026/04/02-21:14:20.218296 139629081356096 kCustomCompression9B supported: 0
|
||||
2026/04/02-21:14:20.218297 139629081356096 kZSTD supported: 0
|
||||
2026/04/02-21:14:20.218297 139629081356096 kCustomCompressionAA supported: 0
|
||||
2026/04/02-21:14:20.218298 139629081356096 kCustomCompressionA2 supported: 0
|
||||
2026/04/02-21:14:20.218299 139629081356096 kZlibCompression supported: 0
|
||||
2026/04/02-21:14:20.218300 139629081356096 kXpressCompression supported: 0
|
||||
2026/04/02-21:14:20.218301 139629081356096 kCustomCompressionFD supported: 0
|
||||
2026/04/02-21:14:20.218301 139629081356096 kCustomCompressionE2 supported: 0
|
||||
2026/04/02-21:14:20.218302 139629081356096 kLZ4HCCompression supported: 1
|
||||
2026/04/02-21:14:20.218303 139629081356096 kCustomCompressionA6 supported: 0
|
||||
2026/04/02-21:14:20.218303 139629081356096 kCustomCompression85 supported: 0
|
||||
2026/04/02-21:14:20.218304 139629081356096 kCustomCompressionA4 supported: 0
|
||||
2026/04/02-21:14:20.218305 139629081356096 kCustomCompression86 supported: 0
|
||||
2026/04/02-21:14:20.218305 139629081356096 kCustomCompression83 supported: 0
|
||||
2026/04/02-21:14:20.218306 139629081356096 kCustomCompression87 supported: 0
|
||||
2026/04/02-21:14:20.218307 139629081356096 kCustomCompression89 supported: 0
|
||||
2026/04/02-21:14:20.218307 139629081356096 kCustomCompression8C supported: 0
|
||||
2026/04/02-21:14:20.218308 139629081356096 kCustomCompressionDB supported: 0
|
||||
2026/04/02-21:14:20.218308 139629081356096 kCustomCompressionF3 supported: 0
|
||||
2026/04/02-21:14:20.218309 139629081356096 kCustomCompressionE6 supported: 0
|
||||
2026/04/02-21:14:20.218310 139629081356096 kCustomCompression8E supported: 0
|
||||
2026/04/02-21:14:20.218310 139629081356096 kCustomCompressionDA supported: 0
|
||||
2026/04/02-21:14:20.218311 139629081356096 kCustomCompression93 supported: 0
|
||||
2026/04/02-21:14:20.218311 139629081356096 kCustomCompression94 supported: 0
|
||||
2026/04/02-21:14:20.218312 139629081356096 kCustomCompression9E supported: 0
|
||||
2026/04/02-21:14:20.218313 139629081356096 kCustomCompressionB4 supported: 0
|
||||
2026/04/02-21:14:20.218314 139629081356096 kCustomCompressionFB supported: 0
|
||||
2026/04/02-21:14:20.218314 139629081356096 kCustomCompressionB5 supported: 0
|
||||
2026/04/02-21:14:20.218315 139629081356096 kCustomCompressionD5 supported: 0
|
||||
2026/04/02-21:14:20.218315 139629081356096 kCustomCompressionB8 supported: 0
|
||||
2026/04/02-21:14:20.218316 139629081356096 kCustomCompressionD1 supported: 0
|
||||
2026/04/02-21:14:20.218317 139629081356096 kCustomCompressionBA supported: 0
|
||||
2026/04/02-21:14:20.218317 139629081356096 kCustomCompressionBC supported: 0
|
||||
2026/04/02-21:14:20.218318 139629081356096 kCustomCompressionCE supported: 0
|
||||
2026/04/02-21:14:20.218318 139629081356096 kCustomCompressionBD supported: 0
|
||||
2026/04/02-21:14:20.218319 139629081356096 kCustomCompressionC4 supported: 0
|
||||
2026/04/02-21:14:20.218320 139629081356096 kCustomCompression9A supported: 0
|
||||
2026/04/02-21:14:20.218320 139629081356096 kCustomCompression99 supported: 0
|
||||
2026/04/02-21:14:20.218321 139629081356096 kCustomCompressionBE supported: 0
|
||||
2026/04/02-21:14:20.218322 139629081356096 kCustomCompressionE5 supported: 0
|
||||
2026/04/02-21:14:20.218322 139629081356096 kCustomCompressionD9 supported: 0
|
||||
2026/04/02-21:14:20.218323 139629081356096 kCustomCompressionC1 supported: 0
|
||||
2026/04/02-21:14:20.218323 139629081356096 kCustomCompressionC5 supported: 0
|
||||
2026/04/02-21:14:20.218324 139629081356096 kCustomCompressionC2 supported: 0
|
||||
2026/04/02-21:14:20.218325 139629081356096 kCustomCompressionA5 supported: 0
|
||||
2026/04/02-21:14:20.218325 139629081356096 kCustomCompressionC7 supported: 0
|
||||
2026/04/02-21:14:20.218326 139629081356096 kCustomCompressionBF supported: 0
|
||||
2026/04/02-21:14:20.218326 139629081356096 kCustomCompressionE8 supported: 0
|
||||
2026/04/02-21:14:20.218328 139629081356096 kCustomCompressionC8 supported: 0
|
||||
2026/04/02-21:14:20.218328 139629081356096 kCustomCompressionAF supported: 0
|
||||
2026/04/02-21:14:20.218329 139629081356096 kCustomCompressionCA supported: 0
|
||||
2026/04/02-21:14:20.218329 139629081356096 kCustomCompressionCD supported: 0
|
||||
2026/04/02-21:14:20.218330 139629081356096 kCustomCompressionC0 supported: 0
|
||||
2026/04/02-21:14:20.218331 139629081356096 kCustomCompressionCF supported: 0
|
||||
2026/04/02-21:14:20.218332 139629081356096 kCustomCompressionF9 supported: 0
|
||||
2026/04/02-21:14:20.218332 139629081356096 kCustomCompressionD0 supported: 0
|
||||
2026/04/02-21:14:20.218333 139629081356096 kCustomCompressionD2 supported: 0
|
||||
2026/04/02-21:14:20.218334 139629081356096 kCustomCompressionAD supported: 0
|
||||
2026/04/02-21:14:20.218334 139629081356096 kCustomCompressionD3 supported: 0
|
||||
2026/04/02-21:14:20.218335 139629081356096 kCustomCompressionD4 supported: 0
|
||||
2026/04/02-21:14:20.218335 139629081356096 kCustomCompressionD7 supported: 0
|
||||
2026/04/02-21:14:20.218336 139629081356096 kCustomCompression82 supported: 0
|
||||
2026/04/02-21:14:20.218337 139629081356096 kCustomCompressionDD supported: 0
|
||||
2026/04/02-21:14:20.218337 139629081356096 kCustomCompressionC3 supported: 0
|
||||
2026/04/02-21:14:20.218338 139629081356096 kCustomCompressionEE supported: 0
|
||||
2026/04/02-21:14:20.218339 139629081356096 kCustomCompressionDE supported: 0
|
||||
2026/04/02-21:14:20.218339 139629081356096 kCustomCompressionDF supported: 0
|
||||
2026/04/02-21:14:20.218340 139629081356096 kCustomCompressionA7 supported: 0
|
||||
2026/04/02-21:14:20.218340 139629081356096 kCustomCompressionE0 supported: 0
|
||||
2026/04/02-21:14:20.218341 139629081356096 kCustomCompressionF1 supported: 0
|
||||
2026/04/02-21:14:20.218342 139629081356096 kCustomCompressionE1 supported: 0
|
||||
2026/04/02-21:14:20.218342 139629081356096 kCustomCompressionF5 supported: 0
|
||||
2026/04/02-21:14:20.218343 139629081356096 kCustomCompression80 supported: 0
|
||||
2026/04/02-21:14:20.218343 139629081356096 kCustomCompressionE3 supported: 0
|
||||
2026/04/02-21:14:20.218344 139629081356096 kCustomCompressionE4 supported: 0
|
||||
2026/04/02-21:14:20.218345 139629081356096 kCustomCompressionB0 supported: 0
|
||||
2026/04/02-21:14:20.218345 139629081356096 kCustomCompressionEA supported: 0
|
||||
2026/04/02-21:14:20.218346 139629081356096 kCustomCompressionFA supported: 0
|
||||
2026/04/02-21:14:20.218347 139629081356096 kCustomCompressionE7 supported: 0
|
||||
2026/04/02-21:14:20.218347 139629081356096 kCustomCompressionAE supported: 0
|
||||
2026/04/02-21:14:20.218348 139629081356096 kCustomCompressionEB supported: 0
|
||||
2026/04/02-21:14:20.218348 139629081356096 kCustomCompressionED supported: 0
|
||||
2026/04/02-21:14:20.218349 139629081356096 kCustomCompressionB6 supported: 0
|
||||
2026/04/02-21:14:20.218350 139629081356096 kCustomCompressionEF supported: 0
|
||||
2026/04/02-21:14:20.218350 139629081356096 kCustomCompressionF0 supported: 0
|
||||
2026/04/02-21:14:20.218351 139629081356096 kCustomCompressionB7 supported: 0
|
||||
2026/04/02-21:14:20.218351 139629081356096 kCustomCompressionF2 supported: 0
|
||||
2026/04/02-21:14:20.218352 139629081356096 kCustomCompressionA1 supported: 0
|
||||
2026/04/02-21:14:20.218353 139629081356096 kCustomCompressionF4 supported: 0
|
||||
2026/04/02-21:14:20.218353 139629081356096 kSnappyCompression supported: 0
|
||||
2026/04/02-21:14:20.218354 139629081356096 kCustomCompressionF6 supported: 0
|
||||
2026/04/02-21:14:20.218355 139629081356096 Fast CRC32 supported: Not supported on x86
|
||||
2026/04/02-21:14:20.218356 139629081356096 DMutex implementation: pthread_mutex_t
|
||||
2026/04/02-21:14:20.218356 139629081356096 Jemalloc supported: 0
|
||||
2026/04/02-21:14:20.218385 139629081356096 [WARN] [db/db_impl/db_impl_open.cc:2687] DB::Open() failed: IO error: lock hold by current process, acquire time 1775157232 acquiring thread 139629081356096: data/osint/oxigraph/LOCK: No locks available
|
||||
@@ -0,0 +1,238 @@
|
||||
2026/04/02-21:14:20.221089 139629081356096 RocksDB version: 10.10.1
|
||||
2026/04/02-21:14:20.221117 139629081356096 DB SUMMARY
|
||||
2026/04/02-21:14:20.221119 139629081356096 Host name (Env): Lucas
|
||||
2026/04/02-21:14:20.221120 139629081356096 DB Session ID: 86F26ZGOLUEYUL8ZU31E
|
||||
2026/04/02-21:14:20.221147 139629081356096 CURRENT file: CURRENT
|
||||
2026/04/02-21:14:20.221148 139629081356096 IDENTITY file: IDENTITY
|
||||
2026/04/02-21:14:20.221152 139629081356096 MANIFEST file: MANIFEST-000038 size: 1785 Bytes
|
||||
2026/04/02-21:14:20.221154 139629081356096 SST files in data/osint/oxigraph dir, Total Num: 5, files: 000011.sst 000015.sst 000016.sst 000017.sst 000018.sst
|
||||
2026/04/02-21:14:20.221155 139629081356096 Write Ahead Log file in data/osint/oxigraph: 000037.log size: 0 ;
|
||||
2026/04/02-21:14:20.221156 139629081356096 Options.error_if_exists: 0
|
||||
2026/04/02-21:14:20.221157 139629081356096 Options.create_if_missing: 1
|
||||
2026/04/02-21:14:20.221158 139629081356096 Options.paranoid_checks: 1
|
||||
2026/04/02-21:14:20.221159 139629081356096 Options.flush_verify_memtable_count: 1
|
||||
2026/04/02-21:14:20.221160 139629081356096 Options.compaction_verify_record_count: 1
|
||||
2026/04/02-21:14:20.221160 139629081356096 Options.track_and_verify_wals_in_manifest: 0
|
||||
2026/04/02-21:14:20.221161 139629081356096 Options.track_and_verify_wals: 0
|
||||
2026/04/02-21:14:20.221162 139629081356096 Options.verify_sst_unique_id_in_manifest: 1
|
||||
2026/04/02-21:14:20.221163 139629081356096 Options.env: 0x3a912f30
|
||||
2026/04/02-21:14:20.221164 139629081356096 Options.fs: PosixFileSystem
|
||||
2026/04/02-21:14:20.221164 139629081356096 Options.info_log: 0x3b113f60
|
||||
2026/04/02-21:14:20.221165 139629081356096 Options.max_file_opening_threads: 16
|
||||
2026/04/02-21:14:20.221166 139629081356096 Options.statistics: (nil)
|
||||
2026/04/02-21:14:20.221167 139629081356096 Options.use_fsync: 0
|
||||
2026/04/02-21:14:20.221168 139629081356096 Options.max_log_file_size: 1048576
|
||||
2026/04/02-21:14:20.221169 139629081356096 Options.log_file_time_to_roll: 0
|
||||
2026/04/02-21:14:20.221170 139629081356096 Options.keep_log_file_num: 1000
|
||||
2026/04/02-21:14:20.221171 139629081356096 Options.recycle_log_file_num: 10
|
||||
2026/04/02-21:14:20.221171 139629081356096 Options.allow_fallocate: 1
|
||||
2026/04/02-21:14:20.221172 139629081356096 Options.allow_mmap_reads: 0
|
||||
2026/04/02-21:14:20.221173 139629081356096 Options.allow_mmap_writes: 0
|
||||
2026/04/02-21:14:20.221173 139629081356096 Options.use_direct_reads: 0
|
||||
2026/04/02-21:14:20.221174 139629081356096 Options.use_direct_io_for_flush_and_compaction: 0
|
||||
2026/04/02-21:14:20.221175 139629081356096 Options.create_missing_column_families: 1
|
||||
2026/04/02-21:14:20.221175 139629081356096 Options.db_log_dir:
|
||||
2026/04/02-21:14:20.221176 139629081356096 Options.wal_dir:
|
||||
2026/04/02-21:14:20.221177 139629081356096 Options.table_cache_numshardbits: 6
|
||||
2026/04/02-21:14:20.221177 139629081356096 Options.WAL_ttl_seconds: 0
|
||||
2026/04/02-21:14:20.221178 139629081356096 Options.WAL_size_limit_MB: 0
|
||||
2026/04/02-21:14:20.221179 139629081356096 Options.max_write_batch_group_size_bytes: 1048576
|
||||
2026/04/02-21:14:20.221179 139629081356096 Options.is_fd_close_on_exec: 1
|
||||
2026/04/02-21:14:20.221180 139629081356096 Options.advise_random_on_open: 1
|
||||
2026/04/02-21:14:20.221181 139629081356096 Options.db_write_buffer_size: 0
|
||||
2026/04/02-21:14:20.221181 139629081356096 Options.write_buffer_manager: 0x3b0af400
|
||||
2026/04/02-21:14:20.221182 139629081356096 Options.use_adaptive_mutex: 0
|
||||
2026/04/02-21:14:20.221183 139629081356096 Options.rate_limiter: (nil)
|
||||
2026/04/02-21:14:20.221184 139629081356096 Options.sst_file_manager.rate_bytes_per_sec: 0
|
||||
2026/04/02-21:14:20.221185 139629081356096 Options.wal_recovery_mode: 2
|
||||
2026/04/02-21:14:20.221185 139629081356096 Options.enable_thread_tracking: 0
|
||||
2026/04/02-21:14:20.221186 139629081356096 Options.enable_pipelined_write: 0
|
||||
2026/04/02-21:14:20.221186 139629081356096 Options.unordered_write: 0
|
||||
2026/04/02-21:14:20.221187 139629081356096 Options.allow_concurrent_memtable_write: 1
|
||||
2026/04/02-21:14:20.221188 139629081356096 Options.enable_write_thread_adaptive_yield: 1
|
||||
2026/04/02-21:14:20.221188 139629081356096 Options.write_thread_max_yield_usec: 100
|
||||
2026/04/02-21:14:20.221189 139629081356096 Options.write_thread_slow_yield_usec: 3
|
||||
2026/04/02-21:14:20.221190 139629081356096 Options.row_cache: None
|
||||
2026/04/02-21:14:20.221191 139629081356096 Options.wal_filter: None
|
||||
2026/04/02-21:14:20.221191 139629081356096 Options.avoid_flush_during_recovery: 0
|
||||
2026/04/02-21:14:20.221192 139629081356096 Options.allow_ingest_behind: 0
|
||||
2026/04/02-21:14:20.221192 139629081356096 Options.two_write_queues: 0
|
||||
2026/04/02-21:14:20.221193 139629081356096 Options.manual_wal_flush: 0
|
||||
2026/04/02-21:14:20.221194 139629081356096 Options.wal_compression: 0
|
||||
2026/04/02-21:14:20.221194 139629081356096 Options.background_close_inactive_wals: 0
|
||||
2026/04/02-21:14:20.221195 139629081356096 Options.atomic_flush: 0
|
||||
2026/04/02-21:14:20.221195 139629081356096 Options.avoid_unnecessary_blocking_io: 0
|
||||
2026/04/02-21:14:20.221196 139629081356096 Options.prefix_seek_opt_in_only: 0
|
||||
2026/04/02-21:14:20.221197 139629081356096 Options.persist_stats_to_disk: 0
|
||||
2026/04/02-21:14:20.221197 139629081356096 Options.write_dbid_to_manifest: 1
|
||||
2026/04/02-21:14:20.221198 139629081356096 Options.write_identity_file: 1
|
||||
2026/04/02-21:14:20.221199 139629081356096 Options.log_readahead_size: 0
|
||||
2026/04/02-21:14:20.221200 139629081356096 Options.file_checksum_gen_factory: Unknown
|
||||
2026/04/02-21:14:20.221200 139629081356096 Options.best_efforts_recovery: 0
|
||||
2026/04/02-21:14:20.221201 139629081356096 Options.max_bgerror_resume_count: 2147483647
|
||||
2026/04/02-21:14:20.221202 139629081356096 Options.bgerror_resume_retry_interval: 1000000
|
||||
2026/04/02-21:14:20.221202 139629081356096 Options.allow_data_in_errors: 0
|
||||
2026/04/02-21:14:20.221203 139629081356096 Options.db_host_id: __hostname__
|
||||
2026/04/02-21:14:20.221204 139629081356096 Options.enforce_single_del_contracts: true
|
||||
2026/04/02-21:14:20.221205 139629081356096 Options.metadata_write_temperature: kUnknown
|
||||
2026/04/02-21:14:20.221206 139629081356096 Options.wal_write_temperature: kUnknown
|
||||
2026/04/02-21:14:20.221206 139629081356096 Options.max_background_jobs: 24
|
||||
2026/04/02-21:14:20.221207 139629081356096 Options.max_background_compactions: -1
|
||||
2026/04/02-21:14:20.221207 139629081356096 Options.max_subcompactions: 1
|
||||
2026/04/02-21:14:20.221208 139629081356096 Options.avoid_flush_during_shutdown: 0
|
||||
2026/04/02-21:14:20.221209 139629081356096 Options.writable_file_max_buffer_size: 1048576
|
||||
2026/04/02-21:14:20.221210 139629081356096 Options.delayed_write_rate : 16777216
|
||||
2026/04/02-21:14:20.221210 139629081356096 Options.max_total_wal_size: 0
|
||||
2026/04/02-21:14:20.221211 139629081356096 Options.delete_obsolete_files_period_micros: 21600000000
|
||||
2026/04/02-21:14:20.221212 139629081356096 Options.stats_dump_period_sec: 600
|
||||
2026/04/02-21:14:20.221212 139629081356096 Options.stats_persist_period_sec: 600
|
||||
2026/04/02-21:14:20.221213 139629081356096 Options.stats_history_buffer_size: 1048576
|
||||
2026/04/02-21:14:20.221214 139629081356096 Options.max_open_files: 4048
|
||||
2026/04/02-21:14:20.221214 139629081356096 Options.bytes_per_sync: 0
|
||||
2026/04/02-21:14:20.221215 139629081356096 Options.wal_bytes_per_sync: 0
|
||||
2026/04/02-21:14:20.221216 139629081356096 Options.strict_bytes_per_sync: 0
|
||||
2026/04/02-21:14:20.221216 139629081356096 Options.compaction_readahead_size: 2097152
|
||||
2026/04/02-21:14:20.221217 139629081356096 Options.max_background_flushes: -1
|
||||
2026/04/02-21:14:20.221217 139629081356096 Options.max_manifest_file_size: 1073741824
|
||||
2026/04/02-21:14:20.221218 139629081356096 Options.max_manifest_space_amp_pct: 500
|
||||
2026/04/02-21:14:20.221219 139629081356096 Options.manifest_preallocation_size: 4194304
|
||||
2026/04/02-21:14:20.221219 139629081356096 Options.daily_offpeak_time_utc:
|
||||
2026/04/02-21:14:20.221220 139629081356096 Compression algorithms supported:
|
||||
2026/04/02-21:14:20.221221 139629081356096 kCustomCompressionFE supported: 0
|
||||
2026/04/02-21:14:20.221222 139629081356096 kCustomCompressionFC supported: 0
|
||||
2026/04/02-21:14:20.221223 139629081356096 kCustomCompressionF8 supported: 0
|
||||
2026/04/02-21:14:20.221224 139629081356096 kCustomCompressionF7 supported: 0
|
||||
2026/04/02-21:14:20.221224 139629081356096 kCustomCompressionB2 supported: 0
|
||||
2026/04/02-21:14:20.221225 139629081356096 kLZ4Compression supported: 1
|
||||
2026/04/02-21:14:20.221226 139629081356096 kCustomCompression88 supported: 0
|
||||
2026/04/02-21:14:20.221227 139629081356096 kCustomCompressionD8 supported: 0
|
||||
2026/04/02-21:14:20.221228 139629081356096 kCustomCompression9F supported: 0
|
||||
2026/04/02-21:14:20.221229 139629081356096 kCustomCompressionD6 supported: 0
|
||||
2026/04/02-21:14:20.221229 139629081356096 kCustomCompressionA9 supported: 0
|
||||
2026/04/02-21:14:20.221230 139629081356096 kCustomCompressionEC supported: 0
|
||||
2026/04/02-21:14:20.221231 139629081356096 kCustomCompressionA3 supported: 0
|
||||
2026/04/02-21:14:20.221231 139629081356096 kCustomCompressionCB supported: 0
|
||||
2026/04/02-21:14:20.221232 139629081356096 kCustomCompression90 supported: 0
|
||||
2026/04/02-21:14:20.221233 139629081356096 kCustomCompressionA0 supported: 0
|
||||
2026/04/02-21:14:20.221234 139629081356096 kCustomCompressionC6 supported: 0
|
||||
2026/04/02-21:14:20.221234 139629081356096 kCustomCompression9D supported: 0
|
||||
2026/04/02-21:14:20.221235 139629081356096 kCustomCompression8B supported: 0
|
||||
2026/04/02-21:14:20.221236 139629081356096 kCustomCompressionA8 supported: 0
|
||||
2026/04/02-21:14:20.221236 139629081356096 kCustomCompression8D supported: 0
|
||||
2026/04/02-21:14:20.221237 139629081356096 kCustomCompression97 supported: 0
|
||||
2026/04/02-21:14:20.221238 139629081356096 kCustomCompression98 supported: 0
|
||||
2026/04/02-21:14:20.221238 139629081356096 kCustomCompressionAC supported: 0
|
||||
2026/04/02-21:14:20.221239 139629081356096 kCustomCompressionE9 supported: 0
|
||||
2026/04/02-21:14:20.221240 139629081356096 kCustomCompression96 supported: 0
|
||||
2026/04/02-21:14:20.221240 139629081356096 kCustomCompressionB1 supported: 0
|
||||
2026/04/02-21:14:20.221241 139629081356096 kCustomCompression95 supported: 0
|
||||
2026/04/02-21:14:20.221242 139629081356096 kCustomCompression84 supported: 0
|
||||
2026/04/02-21:14:20.221242 139629081356096 kCustomCompression91 supported: 0
|
||||
2026/04/02-21:14:20.221243 139629081356096 kCustomCompressionAB supported: 0
|
||||
2026/04/02-21:14:20.221244 139629081356096 kCustomCompressionB3 supported: 0
|
||||
2026/04/02-21:14:20.221244 139629081356096 kCustomCompression81 supported: 0
|
||||
2026/04/02-21:14:20.221245 139629081356096 kCustomCompressionDC supported: 0
|
||||
2026/04/02-21:14:20.221246 139629081356096 kBZip2Compression supported: 0
|
||||
2026/04/02-21:14:20.221246 139629081356096 kCustomCompressionBB supported: 0
|
||||
2026/04/02-21:14:20.221247 139629081356096 kCustomCompression9C supported: 0
|
||||
2026/04/02-21:14:20.221248 139629081356096 kCustomCompressionC9 supported: 0
|
||||
2026/04/02-21:14:20.221248 139629081356096 kCustomCompressionCC supported: 0
|
||||
2026/04/02-21:14:20.221249 139629081356096 kCustomCompression92 supported: 0
|
||||
2026/04/02-21:14:20.221250 139629081356096 kCustomCompressionB9 supported: 0
|
||||
2026/04/02-21:14:20.221250 139629081356096 kCustomCompression8F supported: 0
|
||||
2026/04/02-21:14:20.221251 139629081356096 kCustomCompression8A supported: 0
|
||||
2026/04/02-21:14:20.221251 139629081356096 kCustomCompression9B supported: 0
|
||||
2026/04/02-21:14:20.221252 139629081356096 kZSTD supported: 0
|
||||
2026/04/02-21:14:20.221253 139629081356096 kCustomCompressionAA supported: 0
|
||||
2026/04/02-21:14:20.221253 139629081356096 kCustomCompressionA2 supported: 0
|
||||
2026/04/02-21:14:20.221254 139629081356096 kZlibCompression supported: 0
|
||||
2026/04/02-21:14:20.221255 139629081356096 kXpressCompression supported: 0
|
||||
2026/04/02-21:14:20.221255 139629081356096 kCustomCompressionFD supported: 0
|
||||
2026/04/02-21:14:20.221256 139629081356096 kCustomCompressionE2 supported: 0
|
||||
2026/04/02-21:14:20.221257 139629081356096 kLZ4HCCompression supported: 1
|
||||
2026/04/02-21:14:20.221257 139629081356096 kCustomCompressionA6 supported: 0
|
||||
2026/04/02-21:14:20.221258 139629081356096 kCustomCompression85 supported: 0
|
||||
2026/04/02-21:14:20.221259 139629081356096 kCustomCompressionA4 supported: 0
|
||||
2026/04/02-21:14:20.221259 139629081356096 kCustomCompression86 supported: 0
|
||||
2026/04/02-21:14:20.221260 139629081356096 kCustomCompression83 supported: 0
|
||||
2026/04/02-21:14:20.221260 139629081356096 kCustomCompression87 supported: 0
|
||||
2026/04/02-21:14:20.221261 139629081356096 kCustomCompression89 supported: 0
|
||||
2026/04/02-21:14:20.221262 139629081356096 kCustomCompression8C supported: 0
|
||||
2026/04/02-21:14:20.221262 139629081356096 kCustomCompressionDB supported: 0
|
||||
2026/04/02-21:14:20.221263 139629081356096 kCustomCompressionF3 supported: 0
|
||||
2026/04/02-21:14:20.221264 139629081356096 kCustomCompressionE6 supported: 0
|
||||
2026/04/02-21:14:20.221264 139629081356096 kCustomCompression8E supported: 0
|
||||
2026/04/02-21:14:20.221265 139629081356096 kCustomCompressionDA supported: 0
|
||||
2026/04/02-21:14:20.221265 139629081356096 kCustomCompression93 supported: 0
|
||||
2026/04/02-21:14:20.221266 139629081356096 kCustomCompression94 supported: 0
|
||||
2026/04/02-21:14:20.221267 139629081356096 kCustomCompression9E supported: 0
|
||||
2026/04/02-21:14:20.221267 139629081356096 kCustomCompressionB4 supported: 0
|
||||
2026/04/02-21:14:20.221268 139629081356096 kCustomCompressionFB supported: 0
|
||||
2026/04/02-21:14:20.221269 139629081356096 kCustomCompressionB5 supported: 0
|
||||
2026/04/02-21:14:20.221269 139629081356096 kCustomCompressionD5 supported: 0
|
||||
2026/04/02-21:14:20.221270 139629081356096 kCustomCompressionB8 supported: 0
|
||||
2026/04/02-21:14:20.221271 139629081356096 kCustomCompressionD1 supported: 0
|
||||
2026/04/02-21:14:20.221271 139629081356096 kCustomCompressionBA supported: 0
|
||||
2026/04/02-21:14:20.221272 139629081356096 kCustomCompressionBC supported: 0
|
||||
2026/04/02-21:14:20.221272 139629081356096 kCustomCompressionCE supported: 0
|
||||
2026/04/02-21:14:20.221273 139629081356096 kCustomCompressionBD supported: 0
|
||||
2026/04/02-21:14:20.221274 139629081356096 kCustomCompressionC4 supported: 0
|
||||
2026/04/02-21:14:20.221274 139629081356096 kCustomCompression9A supported: 0
|
||||
2026/04/02-21:14:20.221275 139629081356096 kCustomCompression99 supported: 0
|
||||
2026/04/02-21:14:20.221276 139629081356096 kCustomCompressionBE supported: 0
|
||||
2026/04/02-21:14:20.221276 139629081356096 kCustomCompressionE5 supported: 0
|
||||
2026/04/02-21:14:20.221277 139629081356096 kCustomCompressionD9 supported: 0
|
||||
2026/04/02-21:14:20.221277 139629081356096 kCustomCompressionC1 supported: 0
|
||||
2026/04/02-21:14:20.221278 139629081356096 kCustomCompressionC5 supported: 0
|
||||
2026/04/02-21:14:20.221279 139629081356096 kCustomCompressionC2 supported: 0
|
||||
2026/04/02-21:14:20.221279 139629081356096 kCustomCompressionA5 supported: 0
|
||||
2026/04/02-21:14:20.221280 139629081356096 kCustomCompressionC7 supported: 0
|
||||
2026/04/02-21:14:20.221281 139629081356096 kCustomCompressionBF supported: 0
|
||||
2026/04/02-21:14:20.221281 139629081356096 kCustomCompressionE8 supported: 0
|
||||
2026/04/02-21:14:20.221282 139629081356096 kCustomCompressionC8 supported: 0
|
||||
2026/04/02-21:14:20.221282 139629081356096 kCustomCompressionAF supported: 0
|
||||
2026/04/02-21:14:20.221283 139629081356096 kCustomCompressionCA supported: 0
|
||||
2026/04/02-21:14:20.221284 139629081356096 kCustomCompressionCD supported: 0
|
||||
2026/04/02-21:14:20.221284 139629081356096 kCustomCompressionC0 supported: 0
|
||||
2026/04/02-21:14:20.221285 139629081356096 kCustomCompressionCF supported: 0
|
||||
2026/04/02-21:14:20.221286 139629081356096 kCustomCompressionF9 supported: 0
|
||||
2026/04/02-21:14:20.221286 139629081356096 kCustomCompressionD0 supported: 0
|
||||
2026/04/02-21:14:20.221287 139629081356096 kCustomCompressionD2 supported: 0
|
||||
2026/04/02-21:14:20.221288 139629081356096 kCustomCompressionAD supported: 0
|
||||
2026/04/02-21:14:20.221288 139629081356096 kCustomCompressionD3 supported: 0
|
||||
2026/04/02-21:14:20.221289 139629081356096 kCustomCompressionD4 supported: 0
|
||||
2026/04/02-21:14:20.221290 139629081356096 kCustomCompressionD7 supported: 0
|
||||
2026/04/02-21:14:20.221290 139629081356096 kCustomCompression82 supported: 0
|
||||
2026/04/02-21:14:20.221291 139629081356096 kCustomCompressionDD supported: 0
|
||||
2026/04/02-21:14:20.221291 139629081356096 kCustomCompressionC3 supported: 0
|
||||
2026/04/02-21:14:20.221292 139629081356096 kCustomCompressionEE supported: 0
|
||||
2026/04/02-21:14:20.221293 139629081356096 kCustomCompressionDE supported: 0
|
||||
2026/04/02-21:14:20.221293 139629081356096 kCustomCompressionDF supported: 0
|
||||
2026/04/02-21:14:20.221294 139629081356096 kCustomCompressionA7 supported: 0
|
||||
2026/04/02-21:14:20.221294 139629081356096 kCustomCompressionE0 supported: 0
|
||||
2026/04/02-21:14:20.221295 139629081356096 kCustomCompressionF1 supported: 0
|
||||
2026/04/02-21:14:20.221296 139629081356096 kCustomCompressionE1 supported: 0
|
||||
2026/04/02-21:14:20.221296 139629081356096 kCustomCompressionF5 supported: 0
|
||||
2026/04/02-21:14:20.221297 139629081356096 kCustomCompression80 supported: 0
|
||||
2026/04/02-21:14:20.221298 139629081356096 kCustomCompressionE3 supported: 0
|
||||
2026/04/02-21:14:20.221298 139629081356096 kCustomCompressionE4 supported: 0
|
||||
2026/04/02-21:14:20.221299 139629081356096 kCustomCompressionB0 supported: 0
|
||||
2026/04/02-21:14:20.221299 139629081356096 kCustomCompressionEA supported: 0
|
||||
2026/04/02-21:14:20.221300 139629081356096 kCustomCompressionFA supported: 0
|
||||
2026/04/02-21:14:20.221301 139629081356096 kCustomCompressionE7 supported: 0
|
||||
2026/04/02-21:14:20.221301 139629081356096 kCustomCompressionAE supported: 0
|
||||
2026/04/02-21:14:20.221302 139629081356096 kCustomCompressionEB supported: 0
|
||||
2026/04/02-21:14:20.221303 139629081356096 kCustomCompressionED supported: 0
|
||||
2026/04/02-21:14:20.221303 139629081356096 kCustomCompressionB6 supported: 0
|
||||
2026/04/02-21:14:20.221304 139629081356096 kCustomCompressionEF supported: 0
|
||||
2026/04/02-21:14:20.221304 139629081356096 kCustomCompressionF0 supported: 0
|
||||
2026/04/02-21:14:20.221305 139629081356096 kCustomCompressionB7 supported: 0
|
||||
2026/04/02-21:14:20.221306 139629081356096 kCustomCompressionF2 supported: 0
|
||||
2026/04/02-21:14:20.221306 139629081356096 kCustomCompressionA1 supported: 0
|
||||
2026/04/02-21:14:20.221307 139629081356096 kCustomCompressionF4 supported: 0
|
||||
2026/04/02-21:14:20.221308 139629081356096 kSnappyCompression supported: 0
|
||||
2026/04/02-21:14:20.221308 139629081356096 kCustomCompressionF6 supported: 0
|
||||
2026/04/02-21:14:20.221309 139629081356096 Fast CRC32 supported: Not supported on x86
|
||||
2026/04/02-21:14:20.221310 139629081356096 DMutex implementation: pthread_mutex_t
|
||||
2026/04/02-21:14:20.221311 139629081356096 Jemalloc supported: 0
|
||||
2026/04/02-21:14:20.221333 139629081356096 [WARN] [db/db_impl/db_impl_open.cc:2687] DB::Open() failed: IO error: lock hold by current process, acquire time 1775157232 acquiring thread 139629081356096: data/osint/oxigraph/LOCK: No locks available
|
||||
@@ -0,0 +1,238 @@
|
||||
2026/04/02-21:14:20.223766 139629081356096 RocksDB version: 10.10.1
|
||||
2026/04/02-21:14:20.223881 139629081356096 DB SUMMARY
|
||||
2026/04/02-21:14:20.223884 139629081356096 Host name (Env): Lucas
|
||||
2026/04/02-21:14:20.223885 139629081356096 DB Session ID: 86F26ZGOLUEYUL8ZU31F
|
||||
2026/04/02-21:14:20.223928 139629081356096 CURRENT file: CURRENT
|
||||
2026/04/02-21:14:20.223929 139629081356096 IDENTITY file: IDENTITY
|
||||
2026/04/02-21:14:20.223933 139629081356096 MANIFEST file: MANIFEST-000038 size: 1785 Bytes
|
||||
2026/04/02-21:14:20.223935 139629081356096 SST files in data/osint/oxigraph dir, Total Num: 5, files: 000011.sst 000015.sst 000016.sst 000017.sst 000018.sst
|
||||
2026/04/02-21:14:20.223936 139629081356096 Write Ahead Log file in data/osint/oxigraph: 000037.log size: 0 ;
|
||||
2026/04/02-21:14:20.223938 139629081356096 Options.error_if_exists: 0
|
||||
2026/04/02-21:14:20.223939 139629081356096 Options.create_if_missing: 1
|
||||
2026/04/02-21:14:20.223940 139629081356096 Options.paranoid_checks: 1
|
||||
2026/04/02-21:14:20.223940 139629081356096 Options.flush_verify_memtable_count: 1
|
||||
2026/04/02-21:14:20.223941 139629081356096 Options.compaction_verify_record_count: 1
|
||||
2026/04/02-21:14:20.223942 139629081356096 Options.track_and_verify_wals_in_manifest: 0
|
||||
2026/04/02-21:14:20.223943 139629081356096 Options.track_and_verify_wals: 0
|
||||
2026/04/02-21:14:20.223960 139629081356096 Options.verify_sst_unique_id_in_manifest: 1
|
||||
2026/04/02-21:14:20.223963 139629081356096 Options.env: 0x3a912f30
|
||||
2026/04/02-21:14:20.223964 139629081356096 Options.fs: PosixFileSystem
|
||||
2026/04/02-21:14:20.223965 139629081356096 Options.info_log: 0x3b113f60
|
||||
2026/04/02-21:14:20.223966 139629081356096 Options.max_file_opening_threads: 16
|
||||
2026/04/02-21:14:20.223967 139629081356096 Options.statistics: (nil)
|
||||
2026/04/02-21:14:20.223968 139629081356096 Options.use_fsync: 0
|
||||
2026/04/02-21:14:20.223969 139629081356096 Options.max_log_file_size: 1048576
|
||||
2026/04/02-21:14:20.223970 139629081356096 Options.log_file_time_to_roll: 0
|
||||
2026/04/02-21:14:20.223971 139629081356096 Options.keep_log_file_num: 1000
|
||||
2026/04/02-21:14:20.223982 139629081356096 Options.recycle_log_file_num: 10
|
||||
2026/04/02-21:14:20.224005 139629081356096 Options.allow_fallocate: 1
|
||||
2026/04/02-21:14:20.224007 139629081356096 Options.allow_mmap_reads: 0
|
||||
2026/04/02-21:14:20.224008 139629081356096 Options.allow_mmap_writes: 0
|
||||
2026/04/02-21:14:20.224009 139629081356096 Options.use_direct_reads: 0
|
||||
2026/04/02-21:14:20.224009 139629081356096 Options.use_direct_io_for_flush_and_compaction: 0
|
||||
2026/04/02-21:14:20.224010 139629081356096 Options.create_missing_column_families: 1
|
||||
2026/04/02-21:14:20.224011 139629081356096 Options.db_log_dir:
|
||||
2026/04/02-21:14:20.224012 139629081356096 Options.wal_dir:
|
||||
2026/04/02-21:14:20.224013 139629081356096 Options.table_cache_numshardbits: 6
|
||||
2026/04/02-21:14:20.224014 139629081356096 Options.WAL_ttl_seconds: 0
|
||||
2026/04/02-21:14:20.224014 139629081356096 Options.WAL_size_limit_MB: 0
|
||||
2026/04/02-21:14:20.224015 139629081356096 Options.max_write_batch_group_size_bytes: 1048576
|
||||
2026/04/02-21:14:20.224016 139629081356096 Options.is_fd_close_on_exec: 1
|
||||
2026/04/02-21:14:20.224017 139629081356096 Options.advise_random_on_open: 1
|
||||
2026/04/02-21:14:20.224048 139629081356096 Options.db_write_buffer_size: 0
|
||||
2026/04/02-21:14:20.224050 139629081356096 Options.write_buffer_manager: 0x3b111510
|
||||
2026/04/02-21:14:20.224051 139629081356096 Options.use_adaptive_mutex: 0
|
||||
2026/04/02-21:14:20.224052 139629081356096 Options.rate_limiter: (nil)
|
||||
2026/04/02-21:14:20.224053 139629081356096 Options.sst_file_manager.rate_bytes_per_sec: 0
|
||||
2026/04/02-21:14:20.224054 139629081356096 Options.wal_recovery_mode: 2
|
||||
2026/04/02-21:14:20.224054 139629081356096 Options.enable_thread_tracking: 0
|
||||
2026/04/02-21:14:20.224073 139629081356096 Options.enable_pipelined_write: 0
|
||||
2026/04/02-21:14:20.224075 139629081356096 Options.unordered_write: 0
|
||||
2026/04/02-21:14:20.224077 139629081356096 Options.allow_concurrent_memtable_write: 1
|
||||
2026/04/02-21:14:20.224078 139629081356096 Options.enable_write_thread_adaptive_yield: 1
|
||||
2026/04/02-21:14:20.224080 139629081356096 Options.write_thread_max_yield_usec: 100
|
||||
2026/04/02-21:14:20.224081 139629081356096 Options.write_thread_slow_yield_usec: 3
|
||||
2026/04/02-21:14:20.224082 139629081356096 Options.row_cache: None
|
||||
2026/04/02-21:14:20.224083 139629081356096 Options.wal_filter: None
|
||||
2026/04/02-21:14:20.224084 139629081356096 Options.avoid_flush_during_recovery: 0
|
||||
2026/04/02-21:14:20.224085 139629081356096 Options.allow_ingest_behind: 0
|
||||
2026/04/02-21:14:20.224086 139629081356096 Options.two_write_queues: 0
|
||||
2026/04/02-21:14:20.224122 139629081356096 Options.manual_wal_flush: 0
|
||||
2026/04/02-21:14:20.224169 139629081356096 Options.wal_compression: 0
|
||||
2026/04/02-21:14:20.224171 139629081356096 Options.background_close_inactive_wals: 0
|
||||
2026/04/02-21:14:20.224172 139629081356096 Options.atomic_flush: 0
|
||||
2026/04/02-21:14:20.224172 139629081356096 Options.avoid_unnecessary_blocking_io: 0
|
||||
2026/04/02-21:14:20.224173 139629081356096 Options.prefix_seek_opt_in_only: 0
|
||||
2026/04/02-21:14:20.224174 139629081356096 Options.persist_stats_to_disk: 0
|
||||
2026/04/02-21:14:20.224174 139629081356096 Options.write_dbid_to_manifest: 1
|
||||
2026/04/02-21:14:20.224175 139629081356096 Options.write_identity_file: 1
|
||||
2026/04/02-21:14:20.224176 139629081356096 Options.log_readahead_size: 0
|
||||
2026/04/02-21:14:20.224177 139629081356096 Options.file_checksum_gen_factory: Unknown
|
||||
2026/04/02-21:14:20.224177 139629081356096 Options.best_efforts_recovery: 0
|
||||
2026/04/02-21:14:20.224178 139629081356096 Options.max_bgerror_resume_count: 2147483647
|
||||
2026/04/02-21:14:20.224179 139629081356096 Options.bgerror_resume_retry_interval: 1000000
|
||||
2026/04/02-21:14:20.224180 139629081356096 Options.allow_data_in_errors: 0
|
||||
2026/04/02-21:14:20.224181 139629081356096 Options.db_host_id: __hostname__
|
||||
2026/04/02-21:14:20.224200 139629081356096 Options.enforce_single_del_contracts: true
|
||||
2026/04/02-21:14:20.224217 139629081356096 Options.metadata_write_temperature: kUnknown
|
||||
2026/04/02-21:14:20.224223 139629081356096 Options.wal_write_temperature: kUnknown
|
||||
2026/04/02-21:14:20.224225 139629081356096 Options.max_background_jobs: 24
|
||||
2026/04/02-21:14:20.224226 139629081356096 Options.max_background_compactions: -1
|
||||
2026/04/02-21:14:20.224226 139629081356096 Options.max_subcompactions: 1
|
||||
2026/04/02-21:14:20.224227 139629081356096 Options.avoid_flush_during_shutdown: 0
|
||||
2026/04/02-21:14:20.224228 139629081356096 Options.writable_file_max_buffer_size: 1048576
|
||||
2026/04/02-21:14:20.224228 139629081356096 Options.delayed_write_rate : 16777216
|
||||
2026/04/02-21:14:20.224229 139629081356096 Options.max_total_wal_size: 0
|
||||
2026/04/02-21:14:20.224230 139629081356096 Options.delete_obsolete_files_period_micros: 21600000000
|
||||
2026/04/02-21:14:20.224231 139629081356096 Options.stats_dump_period_sec: 600
|
||||
2026/04/02-21:14:20.224232 139629081356096 Options.stats_persist_period_sec: 600
|
||||
2026/04/02-21:14:20.224233 139629081356096 Options.stats_history_buffer_size: 1048576
|
||||
2026/04/02-21:14:20.224234 139629081356096 Options.max_open_files: 4048
|
||||
2026/04/02-21:14:20.224234 139629081356096 Options.bytes_per_sync: 0
|
||||
2026/04/02-21:14:20.224235 139629081356096 Options.wal_bytes_per_sync: 0
|
||||
2026/04/02-21:14:20.224236 139629081356096 Options.strict_bytes_per_sync: 0
|
||||
2026/04/02-21:14:20.224236 139629081356096 Options.compaction_readahead_size: 2097152
|
||||
2026/04/02-21:14:20.224237 139629081356096 Options.max_background_flushes: -1
|
||||
2026/04/02-21:14:20.224238 139629081356096 Options.max_manifest_file_size: 1073741824
|
||||
2026/04/02-21:14:20.224239 139629081356096 Options.max_manifest_space_amp_pct: 500
|
||||
2026/04/02-21:14:20.224239 139629081356096 Options.manifest_preallocation_size: 4194304
|
||||
2026/04/02-21:14:20.224240 139629081356096 Options.daily_offpeak_time_utc:
|
||||
2026/04/02-21:14:20.224241 139629081356096 Compression algorithms supported:
|
||||
2026/04/02-21:14:20.224243 139629081356096 kCustomCompressionFE supported: 0
|
||||
2026/04/02-21:14:20.224244 139629081356096 kCustomCompressionFC supported: 0
|
||||
2026/04/02-21:14:20.224245 139629081356096 kCustomCompressionF8 supported: 0
|
||||
2026/04/02-21:14:20.224246 139629081356096 kCustomCompressionF7 supported: 0
|
||||
2026/04/02-21:14:20.224247 139629081356096 kCustomCompressionB2 supported: 0
|
||||
2026/04/02-21:14:20.224248 139629081356096 kLZ4Compression supported: 1
|
||||
2026/04/02-21:14:20.224249 139629081356096 kCustomCompression88 supported: 0
|
||||
2026/04/02-21:14:20.224250 139629081356096 kCustomCompressionD8 supported: 0
|
||||
2026/04/02-21:14:20.224251 139629081356096 kCustomCompression9F supported: 0
|
||||
2026/04/02-21:14:20.224251 139629081356096 kCustomCompressionD6 supported: 0
|
||||
2026/04/02-21:14:20.224252 139629081356096 kCustomCompressionA9 supported: 0
|
||||
2026/04/02-21:14:20.224253 139629081356096 kCustomCompressionEC supported: 0
|
||||
2026/04/02-21:14:20.224254 139629081356096 kCustomCompressionA3 supported: 0
|
||||
2026/04/02-21:14:20.224255 139629081356096 kCustomCompressionCB supported: 0
|
||||
2026/04/02-21:14:20.224256 139629081356096 kCustomCompression90 supported: 0
|
||||
2026/04/02-21:14:20.224257 139629081356096 kCustomCompressionA0 supported: 0
|
||||
2026/04/02-21:14:20.224258 139629081356096 kCustomCompressionC6 supported: 0
|
||||
2026/04/02-21:14:20.224259 139629081356096 kCustomCompression9D supported: 0
|
||||
2026/04/02-21:14:20.224260 139629081356096 kCustomCompression8B supported: 0
|
||||
2026/04/02-21:14:20.224261 139629081356096 kCustomCompressionA8 supported: 0
|
||||
2026/04/02-21:14:20.224262 139629081356096 kCustomCompression8D supported: 0
|
||||
2026/04/02-21:14:20.224262 139629081356096 kCustomCompression97 supported: 0
|
||||
2026/04/02-21:14:20.224263 139629081356096 kCustomCompression98 supported: 0
|
||||
2026/04/02-21:14:20.224264 139629081356096 kCustomCompressionAC supported: 0
|
||||
2026/04/02-21:14:20.224264 139629081356096 kCustomCompressionE9 supported: 0
|
||||
2026/04/02-21:14:20.224265 139629081356096 kCustomCompression96 supported: 0
|
||||
2026/04/02-21:14:20.224266 139629081356096 kCustomCompressionB1 supported: 0
|
||||
2026/04/02-21:14:20.224267 139629081356096 kCustomCompression95 supported: 0
|
||||
2026/04/02-21:14:20.224268 139629081356096 kCustomCompression84 supported: 0
|
||||
2026/04/02-21:14:20.224269 139629081356096 kCustomCompression91 supported: 0
|
||||
2026/04/02-21:14:20.224269 139629081356096 kCustomCompressionAB supported: 0
|
||||
2026/04/02-21:14:20.224270 139629081356096 kCustomCompressionB3 supported: 0
|
||||
2026/04/02-21:14:20.224270 139629081356096 kCustomCompression81 supported: 0
|
||||
2026/04/02-21:14:20.224272 139629081356096 kCustomCompressionDC supported: 0
|
||||
2026/04/02-21:14:20.224273 139629081356096 kBZip2Compression supported: 0
|
||||
2026/04/02-21:14:20.224274 139629081356096 kCustomCompressionBB supported: 0
|
||||
2026/04/02-21:14:20.224275 139629081356096 kCustomCompression9C supported: 0
|
||||
2026/04/02-21:14:20.224275 139629081356096 kCustomCompressionC9 supported: 0
|
||||
2026/04/02-21:14:20.224276 139629081356096 kCustomCompressionCC supported: 0
|
||||
2026/04/02-21:14:20.224277 139629081356096 kCustomCompression92 supported: 0
|
||||
2026/04/02-21:14:20.224277 139629081356096 kCustomCompressionB9 supported: 0
|
||||
2026/04/02-21:14:20.224278 139629081356096 kCustomCompression8F supported: 0
|
||||
2026/04/02-21:14:20.224279 139629081356096 kCustomCompression8A supported: 0
|
||||
2026/04/02-21:14:20.224279 139629081356096 kCustomCompression9B supported: 0
|
||||
2026/04/02-21:14:20.224280 139629081356096 kZSTD supported: 0
|
||||
2026/04/02-21:14:20.224281 139629081356096 kCustomCompressionAA supported: 0
|
||||
2026/04/02-21:14:20.224281 139629081356096 kCustomCompressionA2 supported: 0
|
||||
2026/04/02-21:14:20.224282 139629081356096 kZlibCompression supported: 0
|
||||
2026/04/02-21:14:20.224283 139629081356096 kXpressCompression supported: 0
|
||||
2026/04/02-21:14:20.224284 139629081356096 kCustomCompressionFD supported: 0
|
||||
2026/04/02-21:14:20.224285 139629081356096 kCustomCompressionE2 supported: 0
|
||||
2026/04/02-21:14:20.224286 139629081356096 kLZ4HCCompression supported: 1
|
||||
2026/04/02-21:14:20.224362 139629081356096 kCustomCompressionA6 supported: 0
|
||||
2026/04/02-21:14:20.224368 139629081356096 kCustomCompression85 supported: 0
|
||||
2026/04/02-21:14:20.224391 139629081356096 kCustomCompressionA4 supported: 0
|
||||
2026/04/02-21:14:20.224393 139629081356096 kCustomCompression86 supported: 0
|
||||
2026/04/02-21:14:20.224394 139629081356096 kCustomCompression83 supported: 0
|
||||
2026/04/02-21:14:20.224395 139629081356096 kCustomCompression87 supported: 0
|
||||
2026/04/02-21:14:20.224395 139629081356096 kCustomCompression89 supported: 0
|
||||
2026/04/02-21:14:20.224396 139629081356096 kCustomCompression8C supported: 0
|
||||
2026/04/02-21:14:20.224397 139629081356096 kCustomCompressionDB supported: 0
|
||||
2026/04/02-21:14:20.224398 139629081356096 kCustomCompressionF3 supported: 0
|
||||
2026/04/02-21:14:20.224398 139629081356096 kCustomCompressionE6 supported: 0
|
||||
2026/04/02-21:14:20.224399 139629081356096 kCustomCompression8E supported: 0
|
||||
2026/04/02-21:14:20.224400 139629081356096 kCustomCompressionDA supported: 0
|
||||
2026/04/02-21:14:20.224400 139629081356096 kCustomCompression93 supported: 0
|
||||
2026/04/02-21:14:20.224401 139629081356096 kCustomCompression94 supported: 0
|
||||
2026/04/02-21:14:20.224401 139629081356096 kCustomCompression9E supported: 0
|
||||
2026/04/02-21:14:20.224402 139629081356096 kCustomCompressionB4 supported: 0
|
||||
2026/04/02-21:14:20.224403 139629081356096 kCustomCompressionFB supported: 0
|
||||
2026/04/02-21:14:20.224404 139629081356096 kCustomCompressionB5 supported: 0
|
||||
2026/04/02-21:14:20.224404 139629081356096 kCustomCompressionD5 supported: 0
|
||||
2026/04/02-21:14:20.224405 139629081356096 kCustomCompressionB8 supported: 0
|
||||
2026/04/02-21:14:20.224406 139629081356096 kCustomCompressionD1 supported: 0
|
||||
2026/04/02-21:14:20.224407 139629081356096 kCustomCompressionBA supported: 0
|
||||
2026/04/02-21:14:20.224407 139629081356096 kCustomCompressionBC supported: 0
|
||||
2026/04/02-21:14:20.224408 139629081356096 kCustomCompressionCE supported: 0
|
||||
2026/04/02-21:14:20.224410 139629081356096 kCustomCompressionBD supported: 0
|
||||
2026/04/02-21:14:20.224411 139629081356096 kCustomCompressionC4 supported: 0
|
||||
2026/04/02-21:14:20.224411 139629081356096 kCustomCompression9A supported: 0
|
||||
2026/04/02-21:14:20.224412 139629081356096 kCustomCompression99 supported: 0
|
||||
2026/04/02-21:14:20.224413 139629081356096 kCustomCompressionBE supported: 0
|
||||
2026/04/02-21:14:20.224413 139629081356096 kCustomCompressionE5 supported: 0
|
||||
2026/04/02-21:14:20.224414 139629081356096 kCustomCompressionD9 supported: 0
|
||||
2026/04/02-21:14:20.224414 139629081356096 kCustomCompressionC1 supported: 0
|
||||
2026/04/02-21:14:20.224415 139629081356096 kCustomCompressionC5 supported: 0
|
||||
2026/04/02-21:14:20.224416 139629081356096 kCustomCompressionC2 supported: 0
|
||||
2026/04/02-21:14:20.224416 139629081356096 kCustomCompressionA5 supported: 0
|
||||
2026/04/02-21:14:20.224417 139629081356096 kCustomCompressionC7 supported: 0
|
||||
2026/04/02-21:14:20.224418 139629081356096 kCustomCompressionBF supported: 0
|
||||
2026/04/02-21:14:20.224418 139629081356096 kCustomCompressionE8 supported: 0
|
||||
2026/04/02-21:14:20.224419 139629081356096 kCustomCompressionC8 supported: 0
|
||||
2026/04/02-21:14:20.224420 139629081356096 kCustomCompressionAF supported: 0
|
||||
2026/04/02-21:14:20.224420 139629081356096 kCustomCompressionCA supported: 0
|
||||
2026/04/02-21:14:20.224421 139629081356096 kCustomCompressionCD supported: 0
|
||||
2026/04/02-21:14:20.224421 139629081356096 kCustomCompressionC0 supported: 0
|
||||
2026/04/02-21:14:20.224422 139629081356096 kCustomCompressionCF supported: 0
|
||||
2026/04/02-21:14:20.224423 139629081356096 kCustomCompressionF9 supported: 0
|
||||
2026/04/02-21:14:20.224424 139629081356096 kCustomCompressionD0 supported: 0
|
||||
2026/04/02-21:14:20.224425 139629081356096 kCustomCompressionD2 supported: 0
|
||||
2026/04/02-21:14:20.224425 139629081356096 kCustomCompressionAD supported: 0
|
||||
2026/04/02-21:14:20.224426 139629081356096 kCustomCompressionD3 supported: 0
|
||||
2026/04/02-21:14:20.224427 139629081356096 kCustomCompressionD4 supported: 0
|
||||
2026/04/02-21:14:20.224427 139629081356096 kCustomCompressionD7 supported: 0
|
||||
2026/04/02-21:14:20.224428 139629081356096 kCustomCompression82 supported: 0
|
||||
2026/04/02-21:14:20.224428 139629081356096 kCustomCompressionDD supported: 0
|
||||
2026/04/02-21:14:20.224429 139629081356096 kCustomCompressionC3 supported: 0
|
||||
2026/04/02-21:14:20.224430 139629081356096 kCustomCompressionEE supported: 0
|
||||
2026/04/02-21:14:20.224430 139629081356096 kCustomCompressionDE supported: 0
|
||||
2026/04/02-21:14:20.224431 139629081356096 kCustomCompressionDF supported: 0
|
||||
2026/04/02-21:14:20.224432 139629081356096 kCustomCompressionA7 supported: 0
|
||||
2026/04/02-21:14:20.224432 139629081356096 kCustomCompressionE0 supported: 0
|
||||
2026/04/02-21:14:20.224433 139629081356096 kCustomCompressionF1 supported: 0
|
||||
2026/04/02-21:14:20.224434 139629081356096 kCustomCompressionE1 supported: 0
|
||||
2026/04/02-21:14:20.224435 139629081356096 kCustomCompressionF5 supported: 0
|
||||
2026/04/02-21:14:20.224435 139629081356096 kCustomCompression80 supported: 0
|
||||
2026/04/02-21:14:20.224436 139629081356096 kCustomCompressionE3 supported: 0
|
||||
2026/04/02-21:14:20.224436 139629081356096 kCustomCompressionE4 supported: 0
|
||||
2026/04/02-21:14:20.224437 139629081356096 kCustomCompressionB0 supported: 0
|
||||
2026/04/02-21:14:20.224438 139629081356096 kCustomCompressionEA supported: 0
|
||||
2026/04/02-21:14:20.224438 139629081356096 kCustomCompressionFA supported: 0
|
||||
2026/04/02-21:14:20.224439 139629081356096 kCustomCompressionE7 supported: 0
|
||||
2026/04/02-21:14:20.224440 139629081356096 kCustomCompressionAE supported: 0
|
||||
2026/04/02-21:14:20.224440 139629081356096 kCustomCompressionEB supported: 0
|
||||
2026/04/02-21:14:20.224441 139629081356096 kCustomCompressionED supported: 0
|
||||
2026/04/02-21:14:20.224441 139629081356096 kCustomCompressionB6 supported: 0
|
||||
2026/04/02-21:14:20.224442 139629081356096 kCustomCompressionEF supported: 0
|
||||
2026/04/02-21:14:20.224443 139629081356096 kCustomCompressionF0 supported: 0
|
||||
2026/04/02-21:14:20.224443 139629081356096 kCustomCompressionB7 supported: 0
|
||||
2026/04/02-21:14:20.224444 139629081356096 kCustomCompressionF2 supported: 0
|
||||
2026/04/02-21:14:20.224445 139629081356096 kCustomCompressionA1 supported: 0
|
||||
2026/04/02-21:14:20.224445 139629081356096 kCustomCompressionF4 supported: 0
|
||||
2026/04/02-21:14:20.224446 139629081356096 kSnappyCompression supported: 0
|
||||
2026/04/02-21:14:20.224447 139629081356096 kCustomCompressionF6 supported: 0
|
||||
2026/04/02-21:14:20.224448 139629081356096 Fast CRC32 supported: Not supported on x86
|
||||
2026/04/02-21:14:20.224450 139629081356096 DMutex implementation: pthread_mutex_t
|
||||
2026/04/02-21:14:20.224451 139629081356096 Jemalloc supported: 0
|
||||
2026/04/02-21:14:20.224514 139629081356096 [WARN] [db/db_impl/db_impl_open.cc:2687] DB::Open() failed: IO error: lock hold by current process, acquire time 1775157232 acquiring thread 139629081356096: data/osint/oxigraph/LOCK: No locks available
|
||||
@@ -0,0 +1,238 @@
|
||||
2026/04/02-21:14:20.227585 139629081356096 RocksDB version: 10.10.1
|
||||
2026/04/02-21:14:20.227613 139629081356096 DB SUMMARY
|
||||
2026/04/02-21:14:20.227615 139629081356096 Host name (Env): Lucas
|
||||
2026/04/02-21:14:20.227616 139629081356096 DB Session ID: 86F26ZGOLUEYUL8ZU31O
|
||||
2026/04/02-21:14:20.227647 139629081356096 CURRENT file: CURRENT
|
||||
2026/04/02-21:14:20.227648 139629081356096 IDENTITY file: IDENTITY
|
||||
2026/04/02-21:14:20.227652 139629081356096 MANIFEST file: MANIFEST-000038 size: 1785 Bytes
|
||||
2026/04/02-21:14:20.227654 139629081356096 SST files in data/osint/oxigraph dir, Total Num: 5, files: 000011.sst 000015.sst 000016.sst 000017.sst 000018.sst
|
||||
2026/04/02-21:14:20.227655 139629081356096 Write Ahead Log file in data/osint/oxigraph: 000037.log size: 0 ;
|
||||
2026/04/02-21:14:20.227657 139629081356096 Options.error_if_exists: 0
|
||||
2026/04/02-21:14:20.227658 139629081356096 Options.create_if_missing: 1
|
||||
2026/04/02-21:14:20.227659 139629081356096 Options.paranoid_checks: 1
|
||||
2026/04/02-21:14:20.227660 139629081356096 Options.flush_verify_memtable_count: 1
|
||||
2026/04/02-21:14:20.227660 139629081356096 Options.compaction_verify_record_count: 1
|
||||
2026/04/02-21:14:20.227661 139629081356096 Options.track_and_verify_wals_in_manifest: 0
|
||||
2026/04/02-21:14:20.227662 139629081356096 Options.track_and_verify_wals: 0
|
||||
2026/04/02-21:14:20.227663 139629081356096 Options.verify_sst_unique_id_in_manifest: 1
|
||||
2026/04/02-21:14:20.227664 139629081356096 Options.env: 0x3a912f30
|
||||
2026/04/02-21:14:20.227665 139629081356096 Options.fs: PosixFileSystem
|
||||
2026/04/02-21:14:20.227666 139629081356096 Options.info_log: 0x3b113f60
|
||||
2026/04/02-21:14:20.227667 139629081356096 Options.max_file_opening_threads: 16
|
||||
2026/04/02-21:14:20.227668 139629081356096 Options.statistics: (nil)
|
||||
2026/04/02-21:14:20.227668 139629081356096 Options.use_fsync: 0
|
||||
2026/04/02-21:14:20.227669 139629081356096 Options.max_log_file_size: 1048576
|
||||
2026/04/02-21:14:20.227670 139629081356096 Options.log_file_time_to_roll: 0
|
||||
2026/04/02-21:14:20.227671 139629081356096 Options.keep_log_file_num: 1000
|
||||
2026/04/02-21:14:20.227671 139629081356096 Options.recycle_log_file_num: 10
|
||||
2026/04/02-21:14:20.227672 139629081356096 Options.allow_fallocate: 1
|
||||
2026/04/02-21:14:20.227673 139629081356096 Options.allow_mmap_reads: 0
|
||||
2026/04/02-21:14:20.227673 139629081356096 Options.allow_mmap_writes: 0
|
||||
2026/04/02-21:14:20.227674 139629081356096 Options.use_direct_reads: 0
|
||||
2026/04/02-21:14:20.227675 139629081356096 Options.use_direct_io_for_flush_and_compaction: 0
|
||||
2026/04/02-21:14:20.227675 139629081356096 Options.create_missing_column_families: 1
|
||||
2026/04/02-21:14:20.227676 139629081356096 Options.db_log_dir:
|
||||
2026/04/02-21:14:20.227677 139629081356096 Options.wal_dir:
|
||||
2026/04/02-21:14:20.227677 139629081356096 Options.table_cache_numshardbits: 6
|
||||
2026/04/02-21:14:20.227678 139629081356096 Options.WAL_ttl_seconds: 0
|
||||
2026/04/02-21:14:20.227679 139629081356096 Options.WAL_size_limit_MB: 0
|
||||
2026/04/02-21:14:20.227679 139629081356096 Options.max_write_batch_group_size_bytes: 1048576
|
||||
2026/04/02-21:14:20.227680 139629081356096 Options.is_fd_close_on_exec: 1
|
||||
2026/04/02-21:14:20.227681 139629081356096 Options.advise_random_on_open: 1
|
||||
2026/04/02-21:14:20.227681 139629081356096 Options.db_write_buffer_size: 0
|
||||
2026/04/02-21:14:20.227682 139629081356096 Options.write_buffer_manager: 0x3b20a8b0
|
||||
2026/04/02-21:14:20.227683 139629081356096 Options.use_adaptive_mutex: 0
|
||||
2026/04/02-21:14:20.227684 139629081356096 Options.rate_limiter: (nil)
|
||||
2026/04/02-21:14:20.227685 139629081356096 Options.sst_file_manager.rate_bytes_per_sec: 0
|
||||
2026/04/02-21:14:20.227685 139629081356096 Options.wal_recovery_mode: 2
|
||||
2026/04/02-21:14:20.227686 139629081356096 Options.enable_thread_tracking: 0
|
||||
2026/04/02-21:14:20.227687 139629081356096 Options.enable_pipelined_write: 0
|
||||
2026/04/02-21:14:20.227687 139629081356096 Options.unordered_write: 0
|
||||
2026/04/02-21:14:20.227688 139629081356096 Options.allow_concurrent_memtable_write: 1
|
||||
2026/04/02-21:14:20.227688 139629081356096 Options.enable_write_thread_adaptive_yield: 1
|
||||
2026/04/02-21:14:20.227689 139629081356096 Options.write_thread_max_yield_usec: 100
|
||||
2026/04/02-21:14:20.227690 139629081356096 Options.write_thread_slow_yield_usec: 3
|
||||
2026/04/02-21:14:20.227690 139629081356096 Options.row_cache: None
|
||||
2026/04/02-21:14:20.227691 139629081356096 Options.wal_filter: None
|
||||
2026/04/02-21:14:20.227692 139629081356096 Options.avoid_flush_during_recovery: 0
|
||||
2026/04/02-21:14:20.227693 139629081356096 Options.allow_ingest_behind: 0
|
||||
2026/04/02-21:14:20.227693 139629081356096 Options.two_write_queues: 0
|
||||
2026/04/02-21:14:20.227694 139629081356096 Options.manual_wal_flush: 0
|
||||
2026/04/02-21:14:20.227695 139629081356096 Options.wal_compression: 0
|
||||
2026/04/02-21:14:20.227695 139629081356096 Options.background_close_inactive_wals: 0
|
||||
2026/04/02-21:14:20.227696 139629081356096 Options.atomic_flush: 0
|
||||
2026/04/02-21:14:20.227697 139629081356096 Options.avoid_unnecessary_blocking_io: 0
|
||||
2026/04/02-21:14:20.227697 139629081356096 Options.prefix_seek_opt_in_only: 0
|
||||
2026/04/02-21:14:20.227698 139629081356096 Options.persist_stats_to_disk: 0
|
||||
2026/04/02-21:14:20.227698 139629081356096 Options.write_dbid_to_manifest: 1
|
||||
2026/04/02-21:14:20.227699 139629081356096 Options.write_identity_file: 1
|
||||
2026/04/02-21:14:20.227700 139629081356096 Options.log_readahead_size: 0
|
||||
2026/04/02-21:14:20.227701 139629081356096 Options.file_checksum_gen_factory: Unknown
|
||||
2026/04/02-21:14:20.227701 139629081356096 Options.best_efforts_recovery: 0
|
||||
2026/04/02-21:14:20.227702 139629081356096 Options.max_bgerror_resume_count: 2147483647
|
||||
2026/04/02-21:14:20.227703 139629081356096 Options.bgerror_resume_retry_interval: 1000000
|
||||
2026/04/02-21:14:20.227703 139629081356096 Options.allow_data_in_errors: 0
|
||||
2026/04/02-21:14:20.227704 139629081356096 Options.db_host_id: __hostname__
|
||||
2026/04/02-21:14:20.227705 139629081356096 Options.enforce_single_del_contracts: true
|
||||
2026/04/02-21:14:20.227706 139629081356096 Options.metadata_write_temperature: kUnknown
|
||||
2026/04/02-21:14:20.227707 139629081356096 Options.wal_write_temperature: kUnknown
|
||||
2026/04/02-21:14:20.227707 139629081356096 Options.max_background_jobs: 24
|
||||
2026/04/02-21:14:20.227708 139629081356096 Options.max_background_compactions: -1
|
||||
2026/04/02-21:14:20.227709 139629081356096 Options.max_subcompactions: 1
|
||||
2026/04/02-21:14:20.227709 139629081356096 Options.avoid_flush_during_shutdown: 0
|
||||
2026/04/02-21:14:20.227710 139629081356096 Options.writable_file_max_buffer_size: 1048576
|
||||
2026/04/02-21:14:20.227711 139629081356096 Options.delayed_write_rate : 16777216
|
||||
2026/04/02-21:14:20.227711 139629081356096 Options.max_total_wal_size: 0
|
||||
2026/04/02-21:14:20.227712 139629081356096 Options.delete_obsolete_files_period_micros: 21600000000
|
||||
2026/04/02-21:14:20.227713 139629081356096 Options.stats_dump_period_sec: 600
|
||||
2026/04/02-21:14:20.227714 139629081356096 Options.stats_persist_period_sec: 600
|
||||
2026/04/02-21:14:20.227714 139629081356096 Options.stats_history_buffer_size: 1048576
|
||||
2026/04/02-21:14:20.227715 139629081356096 Options.max_open_files: 4048
|
||||
2026/04/02-21:14:20.227716 139629081356096 Options.bytes_per_sync: 0
|
||||
2026/04/02-21:14:20.227716 139629081356096 Options.wal_bytes_per_sync: 0
|
||||
2026/04/02-21:14:20.227717 139629081356096 Options.strict_bytes_per_sync: 0
|
||||
2026/04/02-21:14:20.227718 139629081356096 Options.compaction_readahead_size: 2097152
|
||||
2026/04/02-21:14:20.227718 139629081356096 Options.max_background_flushes: -1
|
||||
2026/04/02-21:14:20.227719 139629081356096 Options.max_manifest_file_size: 1073741824
|
||||
2026/04/02-21:14:20.227719 139629081356096 Options.max_manifest_space_amp_pct: 500
|
||||
2026/04/02-21:14:20.227720 139629081356096 Options.manifest_preallocation_size: 4194304
|
||||
2026/04/02-21:14:20.227721 139629081356096 Options.daily_offpeak_time_utc:
|
||||
2026/04/02-21:14:20.227721 139629081356096 Compression algorithms supported:
|
||||
2026/04/02-21:14:20.227723 139629081356096 kCustomCompressionFE supported: 0
|
||||
2026/04/02-21:14:20.227723 139629081356096 kCustomCompressionFC supported: 0
|
||||
2026/04/02-21:14:20.227724 139629081356096 kCustomCompressionF8 supported: 0
|
||||
2026/04/02-21:14:20.227725 139629081356096 kCustomCompressionF7 supported: 0
|
||||
2026/04/02-21:14:20.227726 139629081356096 kCustomCompressionB2 supported: 0
|
||||
2026/04/02-21:14:20.227733 139629081356096 kLZ4Compression supported: 1
|
||||
2026/04/02-21:14:20.227734 139629081356096 kCustomCompression88 supported: 0
|
||||
2026/04/02-21:14:20.227735 139629081356096 kCustomCompressionD8 supported: 0
|
||||
2026/04/02-21:14:20.227736 139629081356096 kCustomCompression9F supported: 0
|
||||
2026/04/02-21:14:20.227737 139629081356096 kCustomCompressionD6 supported: 0
|
||||
2026/04/02-21:14:20.227738 139629081356096 kCustomCompressionA9 supported: 0
|
||||
2026/04/02-21:14:20.227739 139629081356096 kCustomCompressionEC supported: 0
|
||||
2026/04/02-21:14:20.227739 139629081356096 kCustomCompressionA3 supported: 0
|
||||
2026/04/02-21:14:20.227740 139629081356096 kCustomCompressionCB supported: 0
|
||||
2026/04/02-21:14:20.227741 139629081356096 kCustomCompression90 supported: 0
|
||||
2026/04/02-21:14:20.227742 139629081356096 kCustomCompressionA0 supported: 0
|
||||
2026/04/02-21:14:20.227742 139629081356096 kCustomCompressionC6 supported: 0
|
||||
2026/04/02-21:14:20.227743 139629081356096 kCustomCompression9D supported: 0
|
||||
2026/04/02-21:14:20.227744 139629081356096 kCustomCompression8B supported: 0
|
||||
2026/04/02-21:14:20.227745 139629081356096 kCustomCompressionA8 supported: 0
|
||||
2026/04/02-21:14:20.227745 139629081356096 kCustomCompression8D supported: 0
|
||||
2026/04/02-21:14:20.227746 139629081356096 kCustomCompression97 supported: 0
|
||||
2026/04/02-21:14:20.227747 139629081356096 kCustomCompression98 supported: 0
|
||||
2026/04/02-21:14:20.227748 139629081356096 kCustomCompressionAC supported: 0
|
||||
2026/04/02-21:14:20.227749 139629081356096 kCustomCompressionE9 supported: 0
|
||||
2026/04/02-21:14:20.227749 139629081356096 kCustomCompression96 supported: 0
|
||||
2026/04/02-21:14:20.227750 139629081356096 kCustomCompressionB1 supported: 0
|
||||
2026/04/02-21:14:20.227751 139629081356096 kCustomCompression95 supported: 0
|
||||
2026/04/02-21:14:20.227751 139629081356096 kCustomCompression84 supported: 0
|
||||
2026/04/02-21:14:20.227752 139629081356096 kCustomCompression91 supported: 0
|
||||
2026/04/02-21:14:20.227753 139629081356096 kCustomCompressionAB supported: 0
|
||||
2026/04/02-21:14:20.227753 139629081356096 kCustomCompressionB3 supported: 0
|
||||
2026/04/02-21:14:20.227754 139629081356096 kCustomCompression81 supported: 0
|
||||
2026/04/02-21:14:20.227755 139629081356096 kCustomCompressionDC supported: 0
|
||||
2026/04/02-21:14:20.227756 139629081356096 kBZip2Compression supported: 0
|
||||
2026/04/02-21:14:20.227756 139629081356096 kCustomCompressionBB supported: 0
|
||||
2026/04/02-21:14:20.227757 139629081356096 kCustomCompression9C supported: 0
|
||||
2026/04/02-21:14:20.227758 139629081356096 kCustomCompressionC9 supported: 0
|
||||
2026/04/02-21:14:20.227758 139629081356096 kCustomCompressionCC supported: 0
|
||||
2026/04/02-21:14:20.227759 139629081356096 kCustomCompression92 supported: 0
|
||||
2026/04/02-21:14:20.227760 139629081356096 kCustomCompressionB9 supported: 0
|
||||
2026/04/02-21:14:20.227760 139629081356096 kCustomCompression8F supported: 0
|
||||
2026/04/02-21:14:20.227761 139629081356096 kCustomCompression8A supported: 0
|
||||
2026/04/02-21:14:20.227762 139629081356096 kCustomCompression9B supported: 0
|
||||
2026/04/02-21:14:20.227762 139629081356096 kZSTD supported: 0
|
||||
2026/04/02-21:14:20.227763 139629081356096 kCustomCompressionAA supported: 0
|
||||
2026/04/02-21:14:20.227763 139629081356096 kCustomCompressionA2 supported: 0
|
||||
2026/04/02-21:14:20.227764 139629081356096 kZlibCompression supported: 0
|
||||
2026/04/02-21:14:20.227765 139629081356096 kXpressCompression supported: 0
|
||||
2026/04/02-21:14:20.227766 139629081356096 kCustomCompressionFD supported: 0
|
||||
2026/04/02-21:14:20.227767 139629081356096 kCustomCompressionE2 supported: 0
|
||||
2026/04/02-21:14:20.227767 139629081356096 kLZ4HCCompression supported: 1
|
||||
2026/04/02-21:14:20.227768 139629081356096 kCustomCompressionA6 supported: 0
|
||||
2026/04/02-21:14:20.227768 139629081356096 kCustomCompression85 supported: 0
|
||||
2026/04/02-21:14:20.227769 139629081356096 kCustomCompressionA4 supported: 0
|
||||
2026/04/02-21:14:20.227770 139629081356096 kCustomCompression86 supported: 0
|
||||
2026/04/02-21:14:20.227771 139629081356096 kCustomCompression83 supported: 0
|
||||
2026/04/02-21:14:20.227771 139629081356096 kCustomCompression87 supported: 0
|
||||
2026/04/02-21:14:20.227772 139629081356096 kCustomCompression89 supported: 0
|
||||
2026/04/02-21:14:20.227772 139629081356096 kCustomCompression8C supported: 0
|
||||
2026/04/02-21:14:20.227773 139629081356096 kCustomCompressionDB supported: 0
|
||||
2026/04/02-21:14:20.227774 139629081356096 kCustomCompressionF3 supported: 0
|
||||
2026/04/02-21:14:20.227774 139629081356096 kCustomCompressionE6 supported: 0
|
||||
2026/04/02-21:14:20.227775 139629081356096 kCustomCompression8E supported: 0
|
||||
2026/04/02-21:14:20.227776 139629081356096 kCustomCompressionDA supported: 0
|
||||
2026/04/02-21:14:20.227776 139629081356096 kCustomCompression93 supported: 0
|
||||
2026/04/02-21:14:20.227777 139629081356096 kCustomCompression94 supported: 0
|
||||
2026/04/02-21:14:20.227777 139629081356096 kCustomCompression9E supported: 0
|
||||
2026/04/02-21:14:20.227778 139629081356096 kCustomCompressionB4 supported: 0
|
||||
2026/04/02-21:14:20.227779 139629081356096 kCustomCompressionFB supported: 0
|
||||
2026/04/02-21:14:20.227779 139629081356096 kCustomCompressionB5 supported: 0
|
||||
2026/04/02-21:14:20.227780 139629081356096 kCustomCompressionD5 supported: 0
|
||||
2026/04/02-21:14:20.227781 139629081356096 kCustomCompressionB8 supported: 0
|
||||
2026/04/02-21:14:20.227781 139629081356096 kCustomCompressionD1 supported: 0
|
||||
2026/04/02-21:14:20.227782 139629081356096 kCustomCompressionBA supported: 0
|
||||
2026/04/02-21:14:20.227783 139629081356096 kCustomCompressionBC supported: 0
|
||||
2026/04/02-21:14:20.227783 139629081356096 kCustomCompressionCE supported: 0
|
||||
2026/04/02-21:14:20.227784 139629081356096 kCustomCompressionBD supported: 0
|
||||
2026/04/02-21:14:20.227784 139629081356096 kCustomCompressionC4 supported: 0
|
||||
2026/04/02-21:14:20.227785 139629081356096 kCustomCompression9A supported: 0
|
||||
2026/04/02-21:14:20.227786 139629081356096 kCustomCompression99 supported: 0
|
||||
2026/04/02-21:14:20.227786 139629081356096 kCustomCompressionBE supported: 0
|
||||
2026/04/02-21:14:20.227787 139629081356096 kCustomCompressionE5 supported: 0
|
||||
2026/04/02-21:14:20.227787 139629081356096 kCustomCompressionD9 supported: 0
|
||||
2026/04/02-21:14:20.227788 139629081356096 kCustomCompressionC1 supported: 0
|
||||
2026/04/02-21:14:20.227789 139629081356096 kCustomCompressionC5 supported: 0
|
||||
2026/04/02-21:14:20.227789 139629081356096 kCustomCompressionC2 supported: 0
|
||||
2026/04/02-21:14:20.227790 139629081356096 kCustomCompressionA5 supported: 0
|
||||
2026/04/02-21:14:20.227791 139629081356096 kCustomCompressionC7 supported: 0
|
||||
2026/04/02-21:14:20.227791 139629081356096 kCustomCompressionBF supported: 0
|
||||
2026/04/02-21:14:20.227792 139629081356096 kCustomCompressionE8 supported: 0
|
||||
2026/04/02-21:14:20.227793 139629081356096 kCustomCompressionC8 supported: 0
|
||||
2026/04/02-21:14:20.227793 139629081356096 kCustomCompressionAF supported: 0
|
||||
2026/04/02-21:14:20.227794 139629081356096 kCustomCompressionCA supported: 0
|
||||
2026/04/02-21:14:20.227795 139629081356096 kCustomCompressionCD supported: 0
|
||||
2026/04/02-21:14:20.227795 139629081356096 kCustomCompressionC0 supported: 0
|
||||
2026/04/02-21:14:20.227796 139629081356096 kCustomCompressionCF supported: 0
|
||||
2026/04/02-21:14:20.227797 139629081356096 kCustomCompressionF9 supported: 0
|
||||
2026/04/02-21:14:20.227797 139629081356096 kCustomCompressionD0 supported: 0
|
||||
2026/04/02-21:14:20.227798 139629081356096 kCustomCompressionD2 supported: 0
|
||||
2026/04/02-21:14:20.227799 139629081356096 kCustomCompressionAD supported: 0
|
||||
2026/04/02-21:14:20.227799 139629081356096 kCustomCompressionD3 supported: 0
|
||||
2026/04/02-21:14:20.227800 139629081356096 kCustomCompressionD4 supported: 0
|
||||
2026/04/02-21:14:20.227800 139629081356096 kCustomCompressionD7 supported: 0
|
||||
2026/04/02-21:14:20.227801 139629081356096 kCustomCompression82 supported: 0
|
||||
2026/04/02-21:14:20.227802 139629081356096 kCustomCompressionDD supported: 0
|
||||
2026/04/02-21:14:20.227802 139629081356096 kCustomCompressionC3 supported: 0
|
||||
2026/04/02-21:14:20.227803 139629081356096 kCustomCompressionEE supported: 0
|
||||
2026/04/02-21:14:20.227804 139629081356096 kCustomCompressionDE supported: 0
|
||||
2026/04/02-21:14:20.227804 139629081356096 kCustomCompressionDF supported: 0
|
||||
2026/04/02-21:14:20.227805 139629081356096 kCustomCompressionA7 supported: 0
|
||||
2026/04/02-21:14:20.227805 139629081356096 kCustomCompressionE0 supported: 0
|
||||
2026/04/02-21:14:20.227806 139629081356096 kCustomCompressionF1 supported: 0
|
||||
2026/04/02-21:14:20.227807 139629081356096 kCustomCompressionE1 supported: 0
|
||||
2026/04/02-21:14:20.227807 139629081356096 kCustomCompressionF5 supported: 0
|
||||
2026/04/02-21:14:20.227808 139629081356096 kCustomCompression80 supported: 0
|
||||
2026/04/02-21:14:20.227809 139629081356096 kCustomCompressionE3 supported: 0
|
||||
2026/04/02-21:14:20.227809 139629081356096 kCustomCompressionE4 supported: 0
|
||||
2026/04/02-21:14:20.227810 139629081356096 kCustomCompressionB0 supported: 0
|
||||
2026/04/02-21:14:20.227810 139629081356096 kCustomCompressionEA supported: 0
|
||||
2026/04/02-21:14:20.227811 139629081356096 kCustomCompressionFA supported: 0
|
||||
2026/04/02-21:14:20.227812 139629081356096 kCustomCompressionE7 supported: 0
|
||||
2026/04/02-21:14:20.227812 139629081356096 kCustomCompressionAE supported: 0
|
||||
2026/04/02-21:14:20.227813 139629081356096 kCustomCompressionEB supported: 0
|
||||
2026/04/02-21:14:20.227813 139629081356096 kCustomCompressionED supported: 0
|
||||
2026/04/02-21:14:20.227814 139629081356096 kCustomCompressionB6 supported: 0
|
||||
2026/04/02-21:14:20.227815 139629081356096 kCustomCompressionEF supported: 0
|
||||
2026/04/02-21:14:20.227815 139629081356096 kCustomCompressionF0 supported: 0
|
||||
2026/04/02-21:14:20.227816 139629081356096 kCustomCompressionB7 supported: 0
|
||||
2026/04/02-21:14:20.227817 139629081356096 kCustomCompressionF2 supported: 0
|
||||
2026/04/02-21:14:20.227817 139629081356096 kCustomCompressionA1 supported: 0
|
||||
2026/04/02-21:14:20.227818 139629081356096 kCustomCompressionF4 supported: 0
|
||||
2026/04/02-21:14:20.227818 139629081356096 kSnappyCompression supported: 0
|
||||
2026/04/02-21:14:20.227819 139629081356096 kCustomCompressionF6 supported: 0
|
||||
2026/04/02-21:14:20.227821 139629081356096 Fast CRC32 supported: Not supported on x86
|
||||
2026/04/02-21:14:20.227822 139629081356096 DMutex implementation: pthread_mutex_t
|
||||
2026/04/02-21:14:20.227822 139629081356096 Jemalloc supported: 0
|
||||
2026/04/02-21:14:20.227848 139629081356096 [WARN] [db/db_impl/db_impl_open.cc:2687] DB::Open() failed: IO error: lock hold by current process, acquire time 1775157232 acquiring thread 139629081356096: data/osint/oxigraph/LOCK: No locks available
|
||||
@@ -0,0 +1,238 @@
|
||||
2026/04/02-21:14:20.230546 139629081356096 RocksDB version: 10.10.1
|
||||
2026/04/02-21:14:20.230575 139629081356096 DB SUMMARY
|
||||
2026/04/02-21:14:20.230577 139629081356096 Host name (Env): Lucas
|
||||
2026/04/02-21:14:20.230578 139629081356096 DB Session ID: 86F26ZGOLUEYUL8ZU31P
|
||||
2026/04/02-21:14:20.230608 139629081356096 CURRENT file: CURRENT
|
||||
2026/04/02-21:14:20.230609 139629081356096 IDENTITY file: IDENTITY
|
||||
2026/04/02-21:14:20.230612 139629081356096 MANIFEST file: MANIFEST-000038 size: 1785 Bytes
|
||||
2026/04/02-21:14:20.230614 139629081356096 SST files in data/osint/oxigraph dir, Total Num: 5, files: 000011.sst 000015.sst 000016.sst 000017.sst 000018.sst
|
||||
2026/04/02-21:14:20.230615 139629081356096 Write Ahead Log file in data/osint/oxigraph: 000037.log size: 0 ;
|
||||
2026/04/02-21:14:20.230617 139629081356096 Options.error_if_exists: 0
|
||||
2026/04/02-21:14:20.230618 139629081356096 Options.create_if_missing: 1
|
||||
2026/04/02-21:14:20.230619 139629081356096 Options.paranoid_checks: 1
|
||||
2026/04/02-21:14:20.230620 139629081356096 Options.flush_verify_memtable_count: 1
|
||||
2026/04/02-21:14:20.230621 139629081356096 Options.compaction_verify_record_count: 1
|
||||
2026/04/02-21:14:20.230621 139629081356096 Options.track_and_verify_wals_in_manifest: 0
|
||||
2026/04/02-21:14:20.230622 139629081356096 Options.track_and_verify_wals: 0
|
||||
2026/04/02-21:14:20.230623 139629081356096 Options.verify_sst_unique_id_in_manifest: 1
|
||||
2026/04/02-21:14:20.230624 139629081356096 Options.env: 0x3a912f30
|
||||
2026/04/02-21:14:20.230625 139629081356096 Options.fs: PosixFileSystem
|
||||
2026/04/02-21:14:20.230626 139629081356096 Options.info_log: 0x3b113f60
|
||||
2026/04/02-21:14:20.230627 139629081356096 Options.max_file_opening_threads: 16
|
||||
2026/04/02-21:14:20.230627 139629081356096 Options.statistics: (nil)
|
||||
2026/04/02-21:14:20.230628 139629081356096 Options.use_fsync: 0
|
||||
2026/04/02-21:14:20.230629 139629081356096 Options.max_log_file_size: 1048576
|
||||
2026/04/02-21:14:20.230630 139629081356096 Options.log_file_time_to_roll: 0
|
||||
2026/04/02-21:14:20.230630 139629081356096 Options.keep_log_file_num: 1000
|
||||
2026/04/02-21:14:20.230631 139629081356096 Options.recycle_log_file_num: 10
|
||||
2026/04/02-21:14:20.230632 139629081356096 Options.allow_fallocate: 1
|
||||
2026/04/02-21:14:20.230633 139629081356096 Options.allow_mmap_reads: 0
|
||||
2026/04/02-21:14:20.230633 139629081356096 Options.allow_mmap_writes: 0
|
||||
2026/04/02-21:14:20.230634 139629081356096 Options.use_direct_reads: 0
|
||||
2026/04/02-21:14:20.230635 139629081356096 Options.use_direct_io_for_flush_and_compaction: 0
|
||||
2026/04/02-21:14:20.230635 139629081356096 Options.create_missing_column_families: 1
|
||||
2026/04/02-21:14:20.230636 139629081356096 Options.db_log_dir:
|
||||
2026/04/02-21:14:20.230637 139629081356096 Options.wal_dir:
|
||||
2026/04/02-21:14:20.230637 139629081356096 Options.table_cache_numshardbits: 6
|
||||
2026/04/02-21:14:20.230638 139629081356096 Options.WAL_ttl_seconds: 0
|
||||
2026/04/02-21:14:20.230638 139629081356096 Options.WAL_size_limit_MB: 0
|
||||
2026/04/02-21:14:20.230639 139629081356096 Options.max_write_batch_group_size_bytes: 1048576
|
||||
2026/04/02-21:14:20.230640 139629081356096 Options.is_fd_close_on_exec: 1
|
||||
2026/04/02-21:14:20.230640 139629081356096 Options.advise_random_on_open: 1
|
||||
2026/04/02-21:14:20.230641 139629081356096 Options.db_write_buffer_size: 0
|
||||
2026/04/02-21:14:20.230642 139629081356096 Options.write_buffer_manager: 0x3b20efc0
|
||||
2026/04/02-21:14:20.230642 139629081356096 Options.use_adaptive_mutex: 0
|
||||
2026/04/02-21:14:20.230643 139629081356096 Options.rate_limiter: (nil)
|
||||
2026/04/02-21:14:20.230644 139629081356096 Options.sst_file_manager.rate_bytes_per_sec: 0
|
||||
2026/04/02-21:14:20.230645 139629081356096 Options.wal_recovery_mode: 2
|
||||
2026/04/02-21:14:20.230646 139629081356096 Options.enable_thread_tracking: 0
|
||||
2026/04/02-21:14:20.230646 139629081356096 Options.enable_pipelined_write: 0
|
||||
2026/04/02-21:14:20.230647 139629081356096 Options.unordered_write: 0
|
||||
2026/04/02-21:14:20.230647 139629081356096 Options.allow_concurrent_memtable_write: 1
|
||||
2026/04/02-21:14:20.230648 139629081356096 Options.enable_write_thread_adaptive_yield: 1
|
||||
2026/04/02-21:14:20.230649 139629081356096 Options.write_thread_max_yield_usec: 100
|
||||
2026/04/02-21:14:20.230649 139629081356096 Options.write_thread_slow_yield_usec: 3
|
||||
2026/04/02-21:14:20.230650 139629081356096 Options.row_cache: None
|
||||
2026/04/02-21:14:20.230651 139629081356096 Options.wal_filter: None
|
||||
2026/04/02-21:14:20.230652 139629081356096 Options.avoid_flush_during_recovery: 0
|
||||
2026/04/02-21:14:20.230652 139629081356096 Options.allow_ingest_behind: 0
|
||||
2026/04/02-21:14:20.230653 139629081356096 Options.two_write_queues: 0
|
||||
2026/04/02-21:14:20.230653 139629081356096 Options.manual_wal_flush: 0
|
||||
2026/04/02-21:14:20.230654 139629081356096 Options.wal_compression: 0
|
||||
2026/04/02-21:14:20.230655 139629081356096 Options.background_close_inactive_wals: 0
|
||||
2026/04/02-21:14:20.230655 139629081356096 Options.atomic_flush: 0
|
||||
2026/04/02-21:14:20.230656 139629081356096 Options.avoid_unnecessary_blocking_io: 0
|
||||
2026/04/02-21:14:20.230656 139629081356096 Options.prefix_seek_opt_in_only: 0
|
||||
2026/04/02-21:14:20.230657 139629081356096 Options.persist_stats_to_disk: 0
|
||||
2026/04/02-21:14:20.230657 139629081356096 Options.write_dbid_to_manifest: 1
|
||||
2026/04/02-21:14:20.230658 139629081356096 Options.write_identity_file: 1
|
||||
2026/04/02-21:14:20.230659 139629081356096 Options.log_readahead_size: 0
|
||||
2026/04/02-21:14:20.230659 139629081356096 Options.file_checksum_gen_factory: Unknown
|
||||
2026/04/02-21:14:20.230660 139629081356096 Options.best_efforts_recovery: 0
|
||||
2026/04/02-21:14:20.230661 139629081356096 Options.max_bgerror_resume_count: 2147483647
|
||||
2026/04/02-21:14:20.230661 139629081356096 Options.bgerror_resume_retry_interval: 1000000
|
||||
2026/04/02-21:14:20.230662 139629081356096 Options.allow_data_in_errors: 0
|
||||
2026/04/02-21:14:20.230663 139629081356096 Options.db_host_id: __hostname__
|
||||
2026/04/02-21:14:20.230664 139629081356096 Options.enforce_single_del_contracts: true
|
||||
2026/04/02-21:14:20.230665 139629081356096 Options.metadata_write_temperature: kUnknown
|
||||
2026/04/02-21:14:20.230665 139629081356096 Options.wal_write_temperature: kUnknown
|
||||
2026/04/02-21:14:20.230666 139629081356096 Options.max_background_jobs: 24
|
||||
2026/04/02-21:14:20.230666 139629081356096 Options.max_background_compactions: -1
|
||||
2026/04/02-21:14:20.230667 139629081356096 Options.max_subcompactions: 1
|
||||
2026/04/02-21:14:20.230668 139629081356096 Options.avoid_flush_during_shutdown: 0
|
||||
2026/04/02-21:14:20.230668 139629081356096 Options.writable_file_max_buffer_size: 1048576
|
||||
2026/04/02-21:14:20.230669 139629081356096 Options.delayed_write_rate : 16777216
|
||||
2026/04/02-21:14:20.230670 139629081356096 Options.max_total_wal_size: 0
|
||||
2026/04/02-21:14:20.230670 139629081356096 Options.delete_obsolete_files_period_micros: 21600000000
|
||||
2026/04/02-21:14:20.230671 139629081356096 Options.stats_dump_period_sec: 600
|
||||
2026/04/02-21:14:20.230672 139629081356096 Options.stats_persist_period_sec: 600
|
||||
2026/04/02-21:14:20.230673 139629081356096 Options.stats_history_buffer_size: 1048576
|
||||
2026/04/02-21:14:20.230673 139629081356096 Options.max_open_files: 4048
|
||||
2026/04/02-21:14:20.230674 139629081356096 Options.bytes_per_sync: 0
|
||||
2026/04/02-21:14:20.230674 139629081356096 Options.wal_bytes_per_sync: 0
|
||||
2026/04/02-21:14:20.230675 139629081356096 Options.strict_bytes_per_sync: 0
|
||||
2026/04/02-21:14:20.230676 139629081356096 Options.compaction_readahead_size: 2097152
|
||||
2026/04/02-21:14:20.230676 139629081356096 Options.max_background_flushes: -1
|
||||
2026/04/02-21:14:20.230677 139629081356096 Options.max_manifest_file_size: 1073741824
|
||||
2026/04/02-21:14:20.230678 139629081356096 Options.max_manifest_space_amp_pct: 500
|
||||
2026/04/02-21:14:20.230678 139629081356096 Options.manifest_preallocation_size: 4194304
|
||||
2026/04/02-21:14:20.230679 139629081356096 Options.daily_offpeak_time_utc:
|
||||
2026/04/02-21:14:20.230680 139629081356096 Compression algorithms supported:
|
||||
2026/04/02-21:14:20.230681 139629081356096 kCustomCompressionFE supported: 0
|
||||
2026/04/02-21:14:20.230682 139629081356096 kCustomCompressionFC supported: 0
|
||||
2026/04/02-21:14:20.230682 139629081356096 kCustomCompressionF8 supported: 0
|
||||
2026/04/02-21:14:20.230683 139629081356096 kCustomCompressionF7 supported: 0
|
||||
2026/04/02-21:14:20.230684 139629081356096 kCustomCompressionB2 supported: 0
|
||||
2026/04/02-21:14:20.230685 139629081356096 kLZ4Compression supported: 1
|
||||
2026/04/02-21:14:20.230686 139629081356096 kCustomCompression88 supported: 0
|
||||
2026/04/02-21:14:20.230687 139629081356096 kCustomCompressionD8 supported: 0
|
||||
2026/04/02-21:14:20.230687 139629081356096 kCustomCompression9F supported: 0
|
||||
2026/04/02-21:14:20.230688 139629081356096 kCustomCompressionD6 supported: 0
|
||||
2026/04/02-21:14:20.230689 139629081356096 kCustomCompressionA9 supported: 0
|
||||
2026/04/02-21:14:20.230690 139629081356096 kCustomCompressionEC supported: 0
|
||||
2026/04/02-21:14:20.230690 139629081356096 kCustomCompressionA3 supported: 0
|
||||
2026/04/02-21:14:20.230691 139629081356096 kCustomCompressionCB supported: 0
|
||||
2026/04/02-21:14:20.230692 139629081356096 kCustomCompression90 supported: 0
|
||||
2026/04/02-21:14:20.230692 139629081356096 kCustomCompressionA0 supported: 0
|
||||
2026/04/02-21:14:20.230693 139629081356096 kCustomCompressionC6 supported: 0
|
||||
2026/04/02-21:14:20.230694 139629081356096 kCustomCompression9D supported: 0
|
||||
2026/04/02-21:14:20.230694 139629081356096 kCustomCompression8B supported: 0
|
||||
2026/04/02-21:14:20.230695 139629081356096 kCustomCompressionA8 supported: 0
|
||||
2026/04/02-21:14:20.230696 139629081356096 kCustomCompression8D supported: 0
|
||||
2026/04/02-21:14:20.230696 139629081356096 kCustomCompression97 supported: 0
|
||||
2026/04/02-21:14:20.230697 139629081356096 kCustomCompression98 supported: 0
|
||||
2026/04/02-21:14:20.230698 139629081356096 kCustomCompressionAC supported: 0
|
||||
2026/04/02-21:14:20.230698 139629081356096 kCustomCompressionE9 supported: 0
|
||||
2026/04/02-21:14:20.230699 139629081356096 kCustomCompression96 supported: 0
|
||||
2026/04/02-21:14:20.230700 139629081356096 kCustomCompressionB1 supported: 0
|
||||
2026/04/02-21:14:20.230700 139629081356096 kCustomCompression95 supported: 0
|
||||
2026/04/02-21:14:20.230701 139629081356096 kCustomCompression84 supported: 0
|
||||
2026/04/02-21:14:20.230702 139629081356096 kCustomCompression91 supported: 0
|
||||
2026/04/02-21:14:20.230702 139629081356096 kCustomCompressionAB supported: 0
|
||||
2026/04/02-21:14:20.230703 139629081356096 kCustomCompressionB3 supported: 0
|
||||
2026/04/02-21:14:20.230703 139629081356096 kCustomCompression81 supported: 0
|
||||
2026/04/02-21:14:20.230704 139629081356096 kCustomCompressionDC supported: 0
|
||||
2026/04/02-21:14:20.230705 139629081356096 kBZip2Compression supported: 0
|
||||
2026/04/02-21:14:20.230706 139629081356096 kCustomCompressionBB supported: 0
|
||||
2026/04/02-21:14:20.230706 139629081356096 kCustomCompression9C supported: 0
|
||||
2026/04/02-21:14:20.230707 139629081356096 kCustomCompressionC9 supported: 0
|
||||
2026/04/02-21:14:20.230708 139629081356096 kCustomCompressionCC supported: 0
|
||||
2026/04/02-21:14:20.230708 139629081356096 kCustomCompression92 supported: 0
|
||||
2026/04/02-21:14:20.230709 139629081356096 kCustomCompressionB9 supported: 0
|
||||
2026/04/02-21:14:20.230710 139629081356096 kCustomCompression8F supported: 0
|
||||
2026/04/02-21:14:20.230710 139629081356096 kCustomCompression8A supported: 0
|
||||
2026/04/02-21:14:20.230711 139629081356096 kCustomCompression9B supported: 0
|
||||
2026/04/02-21:14:20.230711 139629081356096 kZSTD supported: 0
|
||||
2026/04/02-21:14:20.230712 139629081356096 kCustomCompressionAA supported: 0
|
||||
2026/04/02-21:14:20.230713 139629081356096 kCustomCompressionA2 supported: 0
|
||||
2026/04/02-21:14:20.230713 139629081356096 kZlibCompression supported: 0
|
||||
2026/04/02-21:14:20.230714 139629081356096 kXpressCompression supported: 0
|
||||
2026/04/02-21:14:20.230715 139629081356096 kCustomCompressionFD supported: 0
|
||||
2026/04/02-21:14:20.230715 139629081356096 kCustomCompressionE2 supported: 0
|
||||
2026/04/02-21:14:20.230716 139629081356096 kLZ4HCCompression supported: 1
|
||||
2026/04/02-21:14:20.230717 139629081356096 kCustomCompressionA6 supported: 0
|
||||
2026/04/02-21:14:20.230717 139629081356096 kCustomCompression85 supported: 0
|
||||
2026/04/02-21:14:20.230718 139629081356096 kCustomCompressionA4 supported: 0
|
||||
2026/04/02-21:14:20.230719 139629081356096 kCustomCompression86 supported: 0
|
||||
2026/04/02-21:14:20.230719 139629081356096 kCustomCompression83 supported: 0
|
||||
2026/04/02-21:14:20.230720 139629081356096 kCustomCompression87 supported: 0
|
||||
2026/04/02-21:14:20.230721 139629081356096 kCustomCompression89 supported: 0
|
||||
2026/04/02-21:14:20.230721 139629081356096 kCustomCompression8C supported: 0
|
||||
2026/04/02-21:14:20.230722 139629081356096 kCustomCompressionDB supported: 0
|
||||
2026/04/02-21:14:20.230722 139629081356096 kCustomCompressionF3 supported: 0
|
||||
2026/04/02-21:14:20.230723 139629081356096 kCustomCompressionE6 supported: 0
|
||||
2026/04/02-21:14:20.230724 139629081356096 kCustomCompression8E supported: 0
|
||||
2026/04/02-21:14:20.230724 139629081356096 kCustomCompressionDA supported: 0
|
||||
2026/04/02-21:14:20.230725 139629081356096 kCustomCompression93 supported: 0
|
||||
2026/04/02-21:14:20.230726 139629081356096 kCustomCompression94 supported: 0
|
||||
2026/04/02-21:14:20.230726 139629081356096 kCustomCompression9E supported: 0
|
||||
2026/04/02-21:14:20.230727 139629081356096 kCustomCompressionB4 supported: 0
|
||||
2026/04/02-21:14:20.230728 139629081356096 kCustomCompressionFB supported: 0
|
||||
2026/04/02-21:14:20.230728 139629081356096 kCustomCompressionB5 supported: 0
|
||||
2026/04/02-21:14:20.230729 139629081356096 kCustomCompressionD5 supported: 0
|
||||
2026/04/02-21:14:20.230729 139629081356096 kCustomCompressionB8 supported: 0
|
||||
2026/04/02-21:14:20.230730 139629081356096 kCustomCompressionD1 supported: 0
|
||||
2026/04/02-21:14:20.230731 139629081356096 kCustomCompressionBA supported: 0
|
||||
2026/04/02-21:14:20.230731 139629081356096 kCustomCompressionBC supported: 0
|
||||
2026/04/02-21:14:20.230732 139629081356096 kCustomCompressionCE supported: 0
|
||||
2026/04/02-21:14:20.230733 139629081356096 kCustomCompressionBD supported: 0
|
||||
2026/04/02-21:14:20.230733 139629081356096 kCustomCompressionC4 supported: 0
|
||||
2026/04/02-21:14:20.230734 139629081356096 kCustomCompression9A supported: 0
|
||||
2026/04/02-21:14:20.230734 139629081356096 kCustomCompression99 supported: 0
|
||||
2026/04/02-21:14:20.230735 139629081356096 kCustomCompressionBE supported: 0
|
||||
2026/04/02-21:14:20.230736 139629081356096 kCustomCompressionE5 supported: 0
|
||||
2026/04/02-21:14:20.230736 139629081356096 kCustomCompressionD9 supported: 0
|
||||
2026/04/02-21:14:20.230737 139629081356096 kCustomCompressionC1 supported: 0
|
||||
2026/04/02-21:14:20.230737 139629081356096 kCustomCompressionC5 supported: 0
|
||||
2026/04/02-21:14:20.230738 139629081356096 kCustomCompressionC2 supported: 0
|
||||
2026/04/02-21:14:20.230739 139629081356096 kCustomCompressionA5 supported: 0
|
||||
2026/04/02-21:14:20.230739 139629081356096 kCustomCompressionC7 supported: 0
|
||||
2026/04/02-21:14:20.230740 139629081356096 kCustomCompressionBF supported: 0
|
||||
2026/04/02-21:14:20.230740 139629081356096 kCustomCompressionE8 supported: 0
|
||||
2026/04/02-21:14:20.230741 139629081356096 kCustomCompressionC8 supported: 0
|
||||
2026/04/02-21:14:20.230742 139629081356096 kCustomCompressionAF supported: 0
|
||||
2026/04/02-21:14:20.230742 139629081356096 kCustomCompressionCA supported: 0
|
||||
2026/04/02-21:14:20.230743 139629081356096 kCustomCompressionCD supported: 0
|
||||
2026/04/02-21:14:20.230744 139629081356096 kCustomCompressionC0 supported: 0
|
||||
2026/04/02-21:14:20.230744 139629081356096 kCustomCompressionCF supported: 0
|
||||
2026/04/02-21:14:20.230745 139629081356096 kCustomCompressionF9 supported: 0
|
||||
2026/04/02-21:14:20.230746 139629081356096 kCustomCompressionD0 supported: 0
|
||||
2026/04/02-21:14:20.230747 139629081356096 kCustomCompressionD2 supported: 0
|
||||
2026/04/02-21:14:20.230747 139629081356096 kCustomCompressionAD supported: 0
|
||||
2026/04/02-21:14:20.230748 139629081356096 kCustomCompressionD3 supported: 0
|
||||
2026/04/02-21:14:20.230749 139629081356096 kCustomCompressionD4 supported: 0
|
||||
2026/04/02-21:14:20.230749 139629081356096 kCustomCompressionD7 supported: 0
|
||||
2026/04/02-21:14:20.230750 139629081356096 kCustomCompression82 supported: 0
|
||||
2026/04/02-21:14:20.230750 139629081356096 kCustomCompressionDD supported: 0
|
||||
2026/04/02-21:14:20.230751 139629081356096 kCustomCompressionC3 supported: 0
|
||||
2026/04/02-21:14:20.230752 139629081356096 kCustomCompressionEE supported: 0
|
||||
2026/04/02-21:14:20.230752 139629081356096 kCustomCompressionDE supported: 0
|
||||
2026/04/02-21:14:20.230753 139629081356096 kCustomCompressionDF supported: 0
|
||||
2026/04/02-21:14:20.230753 139629081356096 kCustomCompressionA7 supported: 0
|
||||
2026/04/02-21:14:20.230754 139629081356096 kCustomCompressionE0 supported: 0
|
||||
2026/04/02-21:14:20.230755 139629081356096 kCustomCompressionF1 supported: 0
|
||||
2026/04/02-21:14:20.230755 139629081356096 kCustomCompressionE1 supported: 0
|
||||
2026/04/02-21:14:20.230756 139629081356096 kCustomCompressionF5 supported: 0
|
||||
2026/04/02-21:14:20.230757 139629081356096 kCustomCompression80 supported: 0
|
||||
2026/04/02-21:14:20.230757 139629081356096 kCustomCompressionE3 supported: 0
|
||||
2026/04/02-21:14:20.230758 139629081356096 kCustomCompressionE4 supported: 0
|
||||
2026/04/02-21:14:20.230758 139629081356096 kCustomCompressionB0 supported: 0
|
||||
2026/04/02-21:14:20.230759 139629081356096 kCustomCompressionEA supported: 0
|
||||
2026/04/02-21:14:20.230760 139629081356096 kCustomCompressionFA supported: 0
|
||||
2026/04/02-21:14:20.230760 139629081356096 kCustomCompressionE7 supported: 0
|
||||
2026/04/02-21:14:20.230761 139629081356096 kCustomCompressionAE supported: 0
|
||||
2026/04/02-21:14:20.230762 139629081356096 kCustomCompressionEB supported: 0
|
||||
2026/04/02-21:14:20.230762 139629081356096 kCustomCompressionED supported: 0
|
||||
2026/04/02-21:14:20.230763 139629081356096 kCustomCompressionB6 supported: 0
|
||||
2026/04/02-21:14:20.230763 139629081356096 kCustomCompressionEF supported: 0
|
||||
2026/04/02-21:14:20.230764 139629081356096 kCustomCompressionF0 supported: 0
|
||||
2026/04/02-21:14:20.230765 139629081356096 kCustomCompressionB7 supported: 0
|
||||
2026/04/02-21:14:20.230765 139629081356096 kCustomCompressionF2 supported: 0
|
||||
2026/04/02-21:14:20.230766 139629081356096 kCustomCompressionA1 supported: 0
|
||||
2026/04/02-21:14:20.230766 139629081356096 kCustomCompressionF4 supported: 0
|
||||
2026/04/02-21:14:20.230767 139629081356096 kSnappyCompression supported: 0
|
||||
2026/04/02-21:14:20.230768 139629081356096 kCustomCompressionF6 supported: 0
|
||||
2026/04/02-21:14:20.230769 139629081356096 Fast CRC32 supported: Not supported on x86
|
||||
2026/04/02-21:14:20.230769 139629081356096 DMutex implementation: pthread_mutex_t
|
||||
2026/04/02-21:14:20.230770 139629081356096 Jemalloc supported: 0
|
||||
2026/04/02-21:14:20.230795 139629081356096 [WARN] [db/db_impl/db_impl_open.cc:2687] DB::Open() failed: IO error: lock hold by current process, acquire time 1775157232 acquiring thread 139629081356096: data/osint/oxigraph/LOCK: No locks available
|
||||
@@ -0,0 +1,238 @@
|
||||
2026/04/02-21:14:20.232826 139629081356096 RocksDB version: 10.10.1
|
||||
2026/04/02-21:14:20.232852 139629081356096 DB SUMMARY
|
||||
2026/04/02-21:14:20.232854 139629081356096 Host name (Env): Lucas
|
||||
2026/04/02-21:14:20.232855 139629081356096 DB Session ID: 86F26ZGOLUEYUL8ZU31Q
|
||||
2026/04/02-21:14:20.232879 139629081356096 CURRENT file: CURRENT
|
||||
2026/04/02-21:14:20.232880 139629081356096 IDENTITY file: IDENTITY
|
||||
2026/04/02-21:14:20.232883 139629081356096 MANIFEST file: MANIFEST-000038 size: 1785 Bytes
|
||||
2026/04/02-21:14:20.232884 139629081356096 SST files in data/osint/oxigraph dir, Total Num: 5, files: 000011.sst 000015.sst 000016.sst 000017.sst 000018.sst
|
||||
2026/04/02-21:14:20.232885 139629081356096 Write Ahead Log file in data/osint/oxigraph: 000037.log size: 0 ;
|
||||
2026/04/02-21:14:20.232887 139629081356096 Options.error_if_exists: 0
|
||||
2026/04/02-21:14:20.232888 139629081356096 Options.create_if_missing: 1
|
||||
2026/04/02-21:14:20.232889 139629081356096 Options.paranoid_checks: 1
|
||||
2026/04/02-21:14:20.232889 139629081356096 Options.flush_verify_memtable_count: 1
|
||||
2026/04/02-21:14:20.232890 139629081356096 Options.compaction_verify_record_count: 1
|
||||
2026/04/02-21:14:20.232891 139629081356096 Options.track_and_verify_wals_in_manifest: 0
|
||||
2026/04/02-21:14:20.232892 139629081356096 Options.track_and_verify_wals: 0
|
||||
2026/04/02-21:14:20.232893 139629081356096 Options.verify_sst_unique_id_in_manifest: 1
|
||||
2026/04/02-21:14:20.232893 139629081356096 Options.env: 0x3a912f30
|
||||
2026/04/02-21:14:20.232894 139629081356096 Options.fs: PosixFileSystem
|
||||
2026/04/02-21:14:20.232895 139629081356096 Options.info_log: 0x3b113f60
|
||||
2026/04/02-21:14:20.232896 139629081356096 Options.max_file_opening_threads: 16
|
||||
2026/04/02-21:14:20.232896 139629081356096 Options.statistics: (nil)
|
||||
2026/04/02-21:14:20.232897 139629081356096 Options.use_fsync: 0
|
||||
2026/04/02-21:14:20.232898 139629081356096 Options.max_log_file_size: 1048576
|
||||
2026/04/02-21:14:20.232899 139629081356096 Options.log_file_time_to_roll: 0
|
||||
2026/04/02-21:14:20.232899 139629081356096 Options.keep_log_file_num: 1000
|
||||
2026/04/02-21:14:20.232900 139629081356096 Options.recycle_log_file_num: 10
|
||||
2026/04/02-21:14:20.232901 139629081356096 Options.allow_fallocate: 1
|
||||
2026/04/02-21:14:20.232901 139629081356096 Options.allow_mmap_reads: 0
|
||||
2026/04/02-21:14:20.232902 139629081356096 Options.allow_mmap_writes: 0
|
||||
2026/04/02-21:14:20.232903 139629081356096 Options.use_direct_reads: 0
|
||||
2026/04/02-21:14:20.232903 139629081356096 Options.use_direct_io_for_flush_and_compaction: 0
|
||||
2026/04/02-21:14:20.232904 139629081356096 Options.create_missing_column_families: 1
|
||||
2026/04/02-21:14:20.232905 139629081356096 Options.db_log_dir:
|
||||
2026/04/02-21:14:20.232905 139629081356096 Options.wal_dir:
|
||||
2026/04/02-21:14:20.232906 139629081356096 Options.table_cache_numshardbits: 6
|
||||
2026/04/02-21:14:20.232907 139629081356096 Options.WAL_ttl_seconds: 0
|
||||
2026/04/02-21:14:20.232907 139629081356096 Options.WAL_size_limit_MB: 0
|
||||
2026/04/02-21:14:20.232908 139629081356096 Options.max_write_batch_group_size_bytes: 1048576
|
||||
2026/04/02-21:14:20.232909 139629081356096 Options.is_fd_close_on_exec: 1
|
||||
2026/04/02-21:14:20.232909 139629081356096 Options.advise_random_on_open: 1
|
||||
2026/04/02-21:14:20.232910 139629081356096 Options.db_write_buffer_size: 0
|
||||
2026/04/02-21:14:20.232911 139629081356096 Options.write_buffer_manager: 0x3b078d70
|
||||
2026/04/02-21:14:20.232911 139629081356096 Options.use_adaptive_mutex: 0
|
||||
2026/04/02-21:14:20.232912 139629081356096 Options.rate_limiter: (nil)
|
||||
2026/04/02-21:14:20.232914 139629081356096 Options.sst_file_manager.rate_bytes_per_sec: 0
|
||||
2026/04/02-21:14:20.232915 139629081356096 Options.wal_recovery_mode: 2
|
||||
2026/04/02-21:14:20.232915 139629081356096 Options.enable_thread_tracking: 0
|
||||
2026/04/02-21:14:20.232916 139629081356096 Options.enable_pipelined_write: 0
|
||||
2026/04/02-21:14:20.232916 139629081356096 Options.unordered_write: 0
|
||||
2026/04/02-21:14:20.232917 139629081356096 Options.allow_concurrent_memtable_write: 1
|
||||
2026/04/02-21:14:20.232918 139629081356096 Options.enable_write_thread_adaptive_yield: 1
|
||||
2026/04/02-21:14:20.232919 139629081356096 Options.write_thread_max_yield_usec: 100
|
||||
2026/04/02-21:14:20.232920 139629081356096 Options.write_thread_slow_yield_usec: 3
|
||||
2026/04/02-21:14:20.232920 139629081356096 Options.row_cache: None
|
||||
2026/04/02-21:14:20.232921 139629081356096 Options.wal_filter: None
|
||||
2026/04/02-21:14:20.232922 139629081356096 Options.avoid_flush_during_recovery: 0
|
||||
2026/04/02-21:14:20.232922 139629081356096 Options.allow_ingest_behind: 0
|
||||
2026/04/02-21:14:20.232923 139629081356096 Options.two_write_queues: 0
|
||||
2026/04/02-21:14:20.232924 139629081356096 Options.manual_wal_flush: 0
|
||||
2026/04/02-21:14:20.232924 139629081356096 Options.wal_compression: 0
|
||||
2026/04/02-21:14:20.232925 139629081356096 Options.background_close_inactive_wals: 0
|
||||
2026/04/02-21:14:20.232925 139629081356096 Options.atomic_flush: 0
|
||||
2026/04/02-21:14:20.232926 139629081356096 Options.avoid_unnecessary_blocking_io: 0
|
||||
2026/04/02-21:14:20.232927 139629081356096 Options.prefix_seek_opt_in_only: 0
|
||||
2026/04/02-21:14:20.232927 139629081356096 Options.persist_stats_to_disk: 0
|
||||
2026/04/02-21:14:20.232928 139629081356096 Options.write_dbid_to_manifest: 1
|
||||
2026/04/02-21:14:20.232928 139629081356096 Options.write_identity_file: 1
|
||||
2026/04/02-21:14:20.232929 139629081356096 Options.log_readahead_size: 0
|
||||
2026/04/02-21:14:20.232930 139629081356096 Options.file_checksum_gen_factory: Unknown
|
||||
2026/04/02-21:14:20.232930 139629081356096 Options.best_efforts_recovery: 0
|
||||
2026/04/02-21:14:20.232931 139629081356096 Options.max_bgerror_resume_count: 2147483647
|
||||
2026/04/02-21:14:20.232932 139629081356096 Options.bgerror_resume_retry_interval: 1000000
|
||||
2026/04/02-21:14:20.232932 139629081356096 Options.allow_data_in_errors: 0
|
||||
2026/04/02-21:14:20.232934 139629081356096 Options.db_host_id: __hostname__
|
||||
2026/04/02-21:14:20.232934 139629081356096 Options.enforce_single_del_contracts: true
|
||||
2026/04/02-21:14:20.232935 139629081356096 Options.metadata_write_temperature: kUnknown
|
||||
2026/04/02-21:14:20.232936 139629081356096 Options.wal_write_temperature: kUnknown
|
||||
2026/04/02-21:14:20.232937 139629081356096 Options.max_background_jobs: 24
|
||||
2026/04/02-21:14:20.232937 139629081356096 Options.max_background_compactions: -1
|
||||
2026/04/02-21:14:20.232938 139629081356096 Options.max_subcompactions: 1
|
||||
2026/04/02-21:14:20.232938 139629081356096 Options.avoid_flush_during_shutdown: 0
|
||||
2026/04/02-21:14:20.232939 139629081356096 Options.writable_file_max_buffer_size: 1048576
|
||||
2026/04/02-21:14:20.232940 139629081356096 Options.delayed_write_rate : 16777216
|
||||
2026/04/02-21:14:20.232941 139629081356096 Options.max_total_wal_size: 0
|
||||
2026/04/02-21:14:20.232941 139629081356096 Options.delete_obsolete_files_period_micros: 21600000000
|
||||
2026/04/02-21:14:20.232942 139629081356096 Options.stats_dump_period_sec: 600
|
||||
2026/04/02-21:14:20.232943 139629081356096 Options.stats_persist_period_sec: 600
|
||||
2026/04/02-21:14:20.232943 139629081356096 Options.stats_history_buffer_size: 1048576
|
||||
2026/04/02-21:14:20.232944 139629081356096 Options.max_open_files: 4048
|
||||
2026/04/02-21:14:20.232945 139629081356096 Options.bytes_per_sync: 0
|
||||
2026/04/02-21:14:20.232945 139629081356096 Options.wal_bytes_per_sync: 0
|
||||
2026/04/02-21:14:20.232946 139629081356096 Options.strict_bytes_per_sync: 0
|
||||
2026/04/02-21:14:20.232947 139629081356096 Options.compaction_readahead_size: 2097152
|
||||
2026/04/02-21:14:20.232947 139629081356096 Options.max_background_flushes: -1
|
||||
2026/04/02-21:14:20.232948 139629081356096 Options.max_manifest_file_size: 1073741824
|
||||
2026/04/02-21:14:20.232949 139629081356096 Options.max_manifest_space_amp_pct: 500
|
||||
2026/04/02-21:14:20.232949 139629081356096 Options.manifest_preallocation_size: 4194304
|
||||
2026/04/02-21:14:20.232950 139629081356096 Options.daily_offpeak_time_utc:
|
||||
2026/04/02-21:14:20.232950 139629081356096 Compression algorithms supported:
|
||||
2026/04/02-21:14:20.232952 139629081356096 kCustomCompressionFE supported: 0
|
||||
2026/04/02-21:14:20.232953 139629081356096 kCustomCompressionFC supported: 0
|
||||
2026/04/02-21:14:20.232954 139629081356096 kCustomCompressionF8 supported: 0
|
||||
2026/04/02-21:14:20.232954 139629081356096 kCustomCompressionF7 supported: 0
|
||||
2026/04/02-21:14:20.232955 139629081356096 kCustomCompressionB2 supported: 0
|
||||
2026/04/02-21:14:20.232956 139629081356096 kLZ4Compression supported: 1
|
||||
2026/04/02-21:14:20.232957 139629081356096 kCustomCompression88 supported: 0
|
||||
2026/04/02-21:14:20.232957 139629081356096 kCustomCompressionD8 supported: 0
|
||||
2026/04/02-21:14:20.232958 139629081356096 kCustomCompression9F supported: 0
|
||||
2026/04/02-21:14:20.232959 139629081356096 kCustomCompressionD6 supported: 0
|
||||
2026/04/02-21:14:20.232960 139629081356096 kCustomCompressionA9 supported: 0
|
||||
2026/04/02-21:14:20.232961 139629081356096 kCustomCompressionEC supported: 0
|
||||
2026/04/02-21:14:20.232961 139629081356096 kCustomCompressionA3 supported: 0
|
||||
2026/04/02-21:14:20.232962 139629081356096 kCustomCompressionCB supported: 0
|
||||
2026/04/02-21:14:20.232963 139629081356096 kCustomCompression90 supported: 0
|
||||
2026/04/02-21:14:20.232963 139629081356096 kCustomCompressionA0 supported: 0
|
||||
2026/04/02-21:14:20.232964 139629081356096 kCustomCompressionC6 supported: 0
|
||||
2026/04/02-21:14:20.232965 139629081356096 kCustomCompression9D supported: 0
|
||||
2026/04/02-21:14:20.232965 139629081356096 kCustomCompression8B supported: 0
|
||||
2026/04/02-21:14:20.232966 139629081356096 kCustomCompressionA8 supported: 0
|
||||
2026/04/02-21:14:20.232967 139629081356096 kCustomCompression8D supported: 0
|
||||
2026/04/02-21:14:20.232967 139629081356096 kCustomCompression97 supported: 0
|
||||
2026/04/02-21:14:20.232968 139629081356096 kCustomCompression98 supported: 0
|
||||
2026/04/02-21:14:20.232969 139629081356096 kCustomCompressionAC supported: 0
|
||||
2026/04/02-21:14:20.232969 139629081356096 kCustomCompressionE9 supported: 0
|
||||
2026/04/02-21:14:20.232970 139629081356096 kCustomCompression96 supported: 0
|
||||
2026/04/02-21:14:20.232971 139629081356096 kCustomCompressionB1 supported: 0
|
||||
2026/04/02-21:14:20.232971 139629081356096 kCustomCompression95 supported: 0
|
||||
2026/04/02-21:14:20.232972 139629081356096 kCustomCompression84 supported: 0
|
||||
2026/04/02-21:14:20.232973 139629081356096 kCustomCompression91 supported: 0
|
||||
2026/04/02-21:14:20.232973 139629081356096 kCustomCompressionAB supported: 0
|
||||
2026/04/02-21:14:20.232974 139629081356096 kCustomCompressionB3 supported: 0
|
||||
2026/04/02-21:14:20.232975 139629081356096 kCustomCompression81 supported: 0
|
||||
2026/04/02-21:14:20.232975 139629081356096 kCustomCompressionDC supported: 0
|
||||
2026/04/02-21:14:20.232976 139629081356096 kBZip2Compression supported: 0
|
||||
2026/04/02-21:14:20.232977 139629081356096 kCustomCompressionBB supported: 0
|
||||
2026/04/02-21:14:20.232978 139629081356096 kCustomCompression9C supported: 0
|
||||
2026/04/02-21:14:20.232978 139629081356096 kCustomCompressionC9 supported: 0
|
||||
2026/04/02-21:14:20.232979 139629081356096 kCustomCompressionCC supported: 0
|
||||
2026/04/02-21:14:20.232980 139629081356096 kCustomCompression92 supported: 0
|
||||
2026/04/02-21:14:20.232980 139629081356096 kCustomCompressionB9 supported: 0
|
||||
2026/04/02-21:14:20.232981 139629081356096 kCustomCompression8F supported: 0
|
||||
2026/04/02-21:14:20.232982 139629081356096 kCustomCompression8A supported: 0
|
||||
2026/04/02-21:14:20.232982 139629081356096 kCustomCompression9B supported: 0
|
||||
2026/04/02-21:14:20.232983 139629081356096 kZSTD supported: 0
|
||||
2026/04/02-21:14:20.232984 139629081356096 kCustomCompressionAA supported: 0
|
||||
2026/04/02-21:14:20.232984 139629081356096 kCustomCompressionA2 supported: 0
|
||||
2026/04/02-21:14:20.232985 139629081356096 kZlibCompression supported: 0
|
||||
2026/04/02-21:14:20.232986 139629081356096 kXpressCompression supported: 0
|
||||
2026/04/02-21:14:20.232986 139629081356096 kCustomCompressionFD supported: 0
|
||||
2026/04/02-21:14:20.232987 139629081356096 kCustomCompressionE2 supported: 0
|
||||
2026/04/02-21:14:20.232988 139629081356096 kLZ4HCCompression supported: 1
|
||||
2026/04/02-21:14:20.232988 139629081356096 kCustomCompressionA6 supported: 0
|
||||
2026/04/02-21:14:20.232989 139629081356096 kCustomCompression85 supported: 0
|
||||
2026/04/02-21:14:20.232989 139629081356096 kCustomCompressionA4 supported: 0
|
||||
2026/04/02-21:14:20.232990 139629081356096 kCustomCompression86 supported: 0
|
||||
2026/04/02-21:14:20.232991 139629081356096 kCustomCompression83 supported: 0
|
||||
2026/04/02-21:14:20.232991 139629081356096 kCustomCompression87 supported: 0
|
||||
2026/04/02-21:14:20.232992 139629081356096 kCustomCompression89 supported: 0
|
||||
2026/04/02-21:14:20.232993 139629081356096 kCustomCompression8C supported: 0
|
||||
2026/04/02-21:14:20.232993 139629081356096 kCustomCompressionDB supported: 0
|
||||
2026/04/02-21:14:20.232994 139629081356096 kCustomCompressionF3 supported: 0
|
||||
2026/04/02-21:14:20.232995 139629081356096 kCustomCompressionE6 supported: 0
|
||||
2026/04/02-21:14:20.232995 139629081356096 kCustomCompression8E supported: 0
|
||||
2026/04/02-21:14:20.232996 139629081356096 kCustomCompressionDA supported: 0
|
||||
2026/04/02-21:14:20.232996 139629081356096 kCustomCompression93 supported: 0
|
||||
2026/04/02-21:14:20.232997 139629081356096 kCustomCompression94 supported: 0
|
||||
2026/04/02-21:14:20.232998 139629081356096 kCustomCompression9E supported: 0
|
||||
2026/04/02-21:14:20.232998 139629081356096 kCustomCompressionB4 supported: 0
|
||||
2026/04/02-21:14:20.232999 139629081356096 kCustomCompressionFB supported: 0
|
||||
2026/04/02-21:14:20.233000 139629081356096 kCustomCompressionB5 supported: 0
|
||||
2026/04/02-21:14:20.233000 139629081356096 kCustomCompressionD5 supported: 0
|
||||
2026/04/02-21:14:20.233001 139629081356096 kCustomCompressionB8 supported: 0
|
||||
2026/04/02-21:14:20.233001 139629081356096 kCustomCompressionD1 supported: 0
|
||||
2026/04/02-21:14:20.233002 139629081356096 kCustomCompressionBA supported: 0
|
||||
2026/04/02-21:14:20.233003 139629081356096 kCustomCompressionBC supported: 0
|
||||
2026/04/02-21:14:20.233003 139629081356096 kCustomCompressionCE supported: 0
|
||||
2026/04/02-21:14:20.233004 139629081356096 kCustomCompressionBD supported: 0
|
||||
2026/04/02-21:14:20.233005 139629081356096 kCustomCompressionC4 supported: 0
|
||||
2026/04/02-21:14:20.233005 139629081356096 kCustomCompression9A supported: 0
|
||||
2026/04/02-21:14:20.233006 139629081356096 kCustomCompression99 supported: 0
|
||||
2026/04/02-21:14:20.233006 139629081356096 kCustomCompressionBE supported: 0
|
||||
2026/04/02-21:14:20.233007 139629081356096 kCustomCompressionE5 supported: 0
|
||||
2026/04/02-21:14:20.233008 139629081356096 kCustomCompressionD9 supported: 0
|
||||
2026/04/02-21:14:20.233008 139629081356096 kCustomCompressionC1 supported: 0
|
||||
2026/04/02-21:14:20.233009 139629081356096 kCustomCompressionC5 supported: 0
|
||||
2026/04/02-21:14:20.233009 139629081356096 kCustomCompressionC2 supported: 0
|
||||
2026/04/02-21:14:20.233010 139629081356096 kCustomCompressionA5 supported: 0
|
||||
2026/04/02-21:14:20.233011 139629081356096 kCustomCompressionC7 supported: 0
|
||||
2026/04/02-21:14:20.233011 139629081356096 kCustomCompressionBF supported: 0
|
||||
2026/04/02-21:14:20.233012 139629081356096 kCustomCompressionE8 supported: 0
|
||||
2026/04/02-21:14:20.233013 139629081356096 kCustomCompressionC8 supported: 0
|
||||
2026/04/02-21:14:20.233013 139629081356096 kCustomCompressionAF supported: 0
|
||||
2026/04/02-21:14:20.233014 139629081356096 kCustomCompressionCA supported: 0
|
||||
2026/04/02-21:14:20.233014 139629081356096 kCustomCompressionCD supported: 0
|
||||
2026/04/02-21:14:20.233015 139629081356096 kCustomCompressionC0 supported: 0
|
||||
2026/04/02-21:14:20.233016 139629081356096 kCustomCompressionCF supported: 0
|
||||
2026/04/02-21:14:20.233017 139629081356096 kCustomCompressionF9 supported: 0
|
||||
2026/04/02-21:14:20.233017 139629081356096 kCustomCompressionD0 supported: 0
|
||||
2026/04/02-21:14:20.233018 139629081356096 kCustomCompressionD2 supported: 0
|
||||
2026/04/02-21:14:20.233019 139629081356096 kCustomCompressionAD supported: 0
|
||||
2026/04/02-21:14:20.233019 139629081356096 kCustomCompressionD3 supported: 0
|
||||
2026/04/02-21:14:20.233020 139629081356096 kCustomCompressionD4 supported: 0
|
||||
2026/04/02-21:14:20.233020 139629081356096 kCustomCompressionD7 supported: 0
|
||||
2026/04/02-21:14:20.233021 139629081356096 kCustomCompression82 supported: 0
|
||||
2026/04/02-21:14:20.233022 139629081356096 kCustomCompressionDD supported: 0
|
||||
2026/04/02-21:14:20.233022 139629081356096 kCustomCompressionC3 supported: 0
|
||||
2026/04/02-21:14:20.233023 139629081356096 kCustomCompressionEE supported: 0
|
||||
2026/04/02-21:14:20.233023 139629081356096 kCustomCompressionDE supported: 0
|
||||
2026/04/02-21:14:20.233024 139629081356096 kCustomCompressionDF supported: 0
|
||||
2026/04/02-21:14:20.233025 139629081356096 kCustomCompressionA7 supported: 0
|
||||
2026/04/02-21:14:20.233025 139629081356096 kCustomCompressionE0 supported: 0
|
||||
2026/04/02-21:14:20.233026 139629081356096 kCustomCompressionF1 supported: 0
|
||||
2026/04/02-21:14:20.233027 139629081356096 kCustomCompressionE1 supported: 0
|
||||
2026/04/02-21:14:20.233027 139629081356096 kCustomCompressionF5 supported: 0
|
||||
2026/04/02-21:14:20.233028 139629081356096 kCustomCompression80 supported: 0
|
||||
2026/04/02-21:14:20.233028 139629081356096 kCustomCompressionE3 supported: 0
|
||||
2026/04/02-21:14:20.233029 139629081356096 kCustomCompressionE4 supported: 0
|
||||
2026/04/02-21:14:20.233030 139629081356096 kCustomCompressionB0 supported: 0
|
||||
2026/04/02-21:14:20.233030 139629081356096 kCustomCompressionEA supported: 0
|
||||
2026/04/02-21:14:20.233031 139629081356096 kCustomCompressionFA supported: 0
|
||||
2026/04/02-21:14:20.233032 139629081356096 kCustomCompressionE7 supported: 0
|
||||
2026/04/02-21:14:20.233032 139629081356096 kCustomCompressionAE supported: 0
|
||||
2026/04/02-21:14:20.233033 139629081356096 kCustomCompressionEB supported: 0
|
||||
2026/04/02-21:14:20.233033 139629081356096 kCustomCompressionED supported: 0
|
||||
2026/04/02-21:14:20.233034 139629081356096 kCustomCompressionB6 supported: 0
|
||||
2026/04/02-21:14:20.233035 139629081356096 kCustomCompressionEF supported: 0
|
||||
2026/04/02-21:14:20.233035 139629081356096 kCustomCompressionF0 supported: 0
|
||||
2026/04/02-21:14:20.233036 139629081356096 kCustomCompressionB7 supported: 0
|
||||
2026/04/02-21:14:20.233037 139629081356096 kCustomCompressionF2 supported: 0
|
||||
2026/04/02-21:14:20.233037 139629081356096 kCustomCompressionA1 supported: 0
|
||||
2026/04/02-21:14:20.233038 139629081356096 kCustomCompressionF4 supported: 0
|
||||
2026/04/02-21:14:20.233038 139629081356096 kSnappyCompression supported: 0
|
||||
2026/04/02-21:14:20.233039 139629081356096 kCustomCompressionF6 supported: 0
|
||||
2026/04/02-21:14:20.233040 139629081356096 Fast CRC32 supported: Not supported on x86
|
||||
2026/04/02-21:14:20.233041 139629081356096 DMutex implementation: pthread_mutex_t
|
||||
2026/04/02-21:14:20.233041 139629081356096 Jemalloc supported: 0
|
||||
2026/04/02-21:14:20.233065 139629081356096 [WARN] [db/db_impl/db_impl_open.cc:2687] DB::Open() failed: IO error: lock hold by current process, acquire time 1775157232 acquiring thread 139629081356096: data/osint/oxigraph/LOCK: No locks available
|
||||
@@ -0,0 +1,238 @@
|
||||
2026/04/02-21:14:20.235399 139629081356096 RocksDB version: 10.10.1
|
||||
2026/04/02-21:14:20.235425 139629081356096 DB SUMMARY
|
||||
2026/04/02-21:14:20.235428 139629081356096 Host name (Env): Lucas
|
||||
2026/04/02-21:14:20.235429 139629081356096 DB Session ID: 86F26ZGOLUEYUL8ZU31R
|
||||
2026/04/02-21:14:20.235456 139629081356096 CURRENT file: CURRENT
|
||||
2026/04/02-21:14:20.235457 139629081356096 IDENTITY file: IDENTITY
|
||||
2026/04/02-21:14:20.235460 139629081356096 MANIFEST file: MANIFEST-000038 size: 1785 Bytes
|
||||
2026/04/02-21:14:20.235462 139629081356096 SST files in data/osint/oxigraph dir, Total Num: 5, files: 000011.sst 000015.sst 000016.sst 000017.sst 000018.sst
|
||||
2026/04/02-21:14:20.235463 139629081356096 Write Ahead Log file in data/osint/oxigraph: 000037.log size: 0 ;
|
||||
2026/04/02-21:14:20.235464 139629081356096 Options.error_if_exists: 0
|
||||
2026/04/02-21:14:20.235465 139629081356096 Options.create_if_missing: 1
|
||||
2026/04/02-21:14:20.235466 139629081356096 Options.paranoid_checks: 1
|
||||
2026/04/02-21:14:20.235467 139629081356096 Options.flush_verify_memtable_count: 1
|
||||
2026/04/02-21:14:20.235468 139629081356096 Options.compaction_verify_record_count: 1
|
||||
2026/04/02-21:14:20.235468 139629081356096 Options.track_and_verify_wals_in_manifest: 0
|
||||
2026/04/02-21:14:20.235469 139629081356096 Options.track_and_verify_wals: 0
|
||||
2026/04/02-21:14:20.235470 139629081356096 Options.verify_sst_unique_id_in_manifest: 1
|
||||
2026/04/02-21:14:20.235471 139629081356096 Options.env: 0x3a912f30
|
||||
2026/04/02-21:14:20.235472 139629081356096 Options.fs: PosixFileSystem
|
||||
2026/04/02-21:14:20.235473 139629081356096 Options.info_log: 0x3b113f60
|
||||
2026/04/02-21:14:20.235474 139629081356096 Options.max_file_opening_threads: 16
|
||||
2026/04/02-21:14:20.235475 139629081356096 Options.statistics: (nil)
|
||||
2026/04/02-21:14:20.235475 139629081356096 Options.use_fsync: 0
|
||||
2026/04/02-21:14:20.235476 139629081356096 Options.max_log_file_size: 1048576
|
||||
2026/04/02-21:14:20.235477 139629081356096 Options.log_file_time_to_roll: 0
|
||||
2026/04/02-21:14:20.235478 139629081356096 Options.keep_log_file_num: 1000
|
||||
2026/04/02-21:14:20.235479 139629081356096 Options.recycle_log_file_num: 10
|
||||
2026/04/02-21:14:20.235480 139629081356096 Options.allow_fallocate: 1
|
||||
2026/04/02-21:14:20.235481 139629081356096 Options.allow_mmap_reads: 0
|
||||
2026/04/02-21:14:20.235481 139629081356096 Options.allow_mmap_writes: 0
|
||||
2026/04/02-21:14:20.235482 139629081356096 Options.use_direct_reads: 0
|
||||
2026/04/02-21:14:20.235483 139629081356096 Options.use_direct_io_for_flush_and_compaction: 0
|
||||
2026/04/02-21:14:20.235483 139629081356096 Options.create_missing_column_families: 1
|
||||
2026/04/02-21:14:20.235484 139629081356096 Options.db_log_dir:
|
||||
2026/04/02-21:14:20.235485 139629081356096 Options.wal_dir:
|
||||
2026/04/02-21:14:20.235485 139629081356096 Options.table_cache_numshardbits: 6
|
||||
2026/04/02-21:14:20.235486 139629081356096 Options.WAL_ttl_seconds: 0
|
||||
2026/04/02-21:14:20.235487 139629081356096 Options.WAL_size_limit_MB: 0
|
||||
2026/04/02-21:14:20.235487 139629081356096 Options.max_write_batch_group_size_bytes: 1048576
|
||||
2026/04/02-21:14:20.235488 139629081356096 Options.is_fd_close_on_exec: 1
|
||||
2026/04/02-21:14:20.235489 139629081356096 Options.advise_random_on_open: 1
|
||||
2026/04/02-21:14:20.235489 139629081356096 Options.db_write_buffer_size: 0
|
||||
2026/04/02-21:14:20.235490 139629081356096 Options.write_buffer_manager: 0x3a8984c0
|
||||
2026/04/02-21:14:20.235491 139629081356096 Options.use_adaptive_mutex: 0
|
||||
2026/04/02-21:14:20.235491 139629081356096 Options.rate_limiter: (nil)
|
||||
2026/04/02-21:14:20.235492 139629081356096 Options.sst_file_manager.rate_bytes_per_sec: 0
|
||||
2026/04/02-21:14:20.235493 139629081356096 Options.wal_recovery_mode: 2
|
||||
2026/04/02-21:14:20.235494 139629081356096 Options.enable_thread_tracking: 0
|
||||
2026/04/02-21:14:20.235494 139629081356096 Options.enable_pipelined_write: 0
|
||||
2026/04/02-21:14:20.235495 139629081356096 Options.unordered_write: 0
|
||||
2026/04/02-21:14:20.235495 139629081356096 Options.allow_concurrent_memtable_write: 1
|
||||
2026/04/02-21:14:20.235496 139629081356096 Options.enable_write_thread_adaptive_yield: 1
|
||||
2026/04/02-21:14:20.235497 139629081356096 Options.write_thread_max_yield_usec: 100
|
||||
2026/04/02-21:14:20.235497 139629081356096 Options.write_thread_slow_yield_usec: 3
|
||||
2026/04/02-21:14:20.235498 139629081356096 Options.row_cache: None
|
||||
2026/04/02-21:14:20.235499 139629081356096 Options.wal_filter: None
|
||||
2026/04/02-21:14:20.235500 139629081356096 Options.avoid_flush_during_recovery: 0
|
||||
2026/04/02-21:14:20.235501 139629081356096 Options.allow_ingest_behind: 0
|
||||
2026/04/02-21:14:20.235501 139629081356096 Options.two_write_queues: 0
|
||||
2026/04/02-21:14:20.235502 139629081356096 Options.manual_wal_flush: 0
|
||||
2026/04/02-21:14:20.235502 139629081356096 Options.wal_compression: 0
|
||||
2026/04/02-21:14:20.235503 139629081356096 Options.background_close_inactive_wals: 0
|
||||
2026/04/02-21:14:20.235504 139629081356096 Options.atomic_flush: 0
|
||||
2026/04/02-21:14:20.235504 139629081356096 Options.avoid_unnecessary_blocking_io: 0
|
||||
2026/04/02-21:14:20.235505 139629081356096 Options.prefix_seek_opt_in_only: 0
|
||||
2026/04/02-21:14:20.235505 139629081356096 Options.persist_stats_to_disk: 0
|
||||
2026/04/02-21:14:20.235506 139629081356096 Options.write_dbid_to_manifest: 1
|
||||
2026/04/02-21:14:20.235507 139629081356096 Options.write_identity_file: 1
|
||||
2026/04/02-21:14:20.235507 139629081356096 Options.log_readahead_size: 0
|
||||
2026/04/02-21:14:20.235508 139629081356096 Options.file_checksum_gen_factory: Unknown
|
||||
2026/04/02-21:14:20.235509 139629081356096 Options.best_efforts_recovery: 0
|
||||
2026/04/02-21:14:20.235509 139629081356096 Options.max_bgerror_resume_count: 2147483647
|
||||
2026/04/02-21:14:20.235510 139629081356096 Options.bgerror_resume_retry_interval: 1000000
|
||||
2026/04/02-21:14:20.235511 139629081356096 Options.allow_data_in_errors: 0
|
||||
2026/04/02-21:14:20.235511 139629081356096 Options.db_host_id: __hostname__
|
||||
2026/04/02-21:14:20.235512 139629081356096 Options.enforce_single_del_contracts: true
|
||||
2026/04/02-21:14:20.235513 139629081356096 Options.metadata_write_temperature: kUnknown
|
||||
2026/04/02-21:14:20.235514 139629081356096 Options.wal_write_temperature: kUnknown
|
||||
2026/04/02-21:14:20.235515 139629081356096 Options.max_background_jobs: 24
|
||||
2026/04/02-21:14:20.235515 139629081356096 Options.max_background_compactions: -1
|
||||
2026/04/02-21:14:20.235516 139629081356096 Options.max_subcompactions: 1
|
||||
2026/04/02-21:14:20.235517 139629081356096 Options.avoid_flush_during_shutdown: 0
|
||||
2026/04/02-21:14:20.235517 139629081356096 Options.writable_file_max_buffer_size: 1048576
|
||||
2026/04/02-21:14:20.235518 139629081356096 Options.delayed_write_rate : 16777216
|
||||
2026/04/02-21:14:20.235519 139629081356096 Options.max_total_wal_size: 0
|
||||
2026/04/02-21:14:20.235519 139629081356096 Options.delete_obsolete_files_period_micros: 21600000000
|
||||
2026/04/02-21:14:20.235520 139629081356096 Options.stats_dump_period_sec: 600
|
||||
2026/04/02-21:14:20.235521 139629081356096 Options.stats_persist_period_sec: 600
|
||||
2026/04/02-21:14:20.235522 139629081356096 Options.stats_history_buffer_size: 1048576
|
||||
2026/04/02-21:14:20.235522 139629081356096 Options.max_open_files: 4048
|
||||
2026/04/02-21:14:20.235523 139629081356096 Options.bytes_per_sync: 0
|
||||
2026/04/02-21:14:20.235524 139629081356096 Options.wal_bytes_per_sync: 0
|
||||
2026/04/02-21:14:20.235524 139629081356096 Options.strict_bytes_per_sync: 0
|
||||
2026/04/02-21:14:20.235525 139629081356096 Options.compaction_readahead_size: 2097152
|
||||
2026/04/02-21:14:20.235525 139629081356096 Options.max_background_flushes: -1
|
||||
2026/04/02-21:14:20.235526 139629081356096 Options.max_manifest_file_size: 1073741824
|
||||
2026/04/02-21:14:20.235527 139629081356096 Options.max_manifest_space_amp_pct: 500
|
||||
2026/04/02-21:14:20.235527 139629081356096 Options.manifest_preallocation_size: 4194304
|
||||
2026/04/02-21:14:20.235528 139629081356096 Options.daily_offpeak_time_utc:
|
||||
2026/04/02-21:14:20.235529 139629081356096 Compression algorithms supported:
|
||||
2026/04/02-21:14:20.235530 139629081356096 kCustomCompressionFE supported: 0
|
||||
2026/04/02-21:14:20.235531 139629081356096 kCustomCompressionFC supported: 0
|
||||
2026/04/02-21:14:20.235532 139629081356096 kCustomCompressionF8 supported: 0
|
||||
2026/04/02-21:14:20.235533 139629081356096 kCustomCompressionF7 supported: 0
|
||||
2026/04/02-21:14:20.235534 139629081356096 kCustomCompressionB2 supported: 0
|
||||
2026/04/02-21:14:20.235534 139629081356096 kLZ4Compression supported: 1
|
||||
2026/04/02-21:14:20.235535 139629081356096 kCustomCompression88 supported: 0
|
||||
2026/04/02-21:14:20.235536 139629081356096 kCustomCompressionD8 supported: 0
|
||||
2026/04/02-21:14:20.235537 139629081356096 kCustomCompression9F supported: 0
|
||||
2026/04/02-21:14:20.235537 139629081356096 kCustomCompressionD6 supported: 0
|
||||
2026/04/02-21:14:20.235538 139629081356096 kCustomCompressionA9 supported: 0
|
||||
2026/04/02-21:14:20.235539 139629081356096 kCustomCompressionEC supported: 0
|
||||
2026/04/02-21:14:20.235540 139629081356096 kCustomCompressionA3 supported: 0
|
||||
2026/04/02-21:14:20.235540 139629081356096 kCustomCompressionCB supported: 0
|
||||
2026/04/02-21:14:20.235541 139629081356096 kCustomCompression90 supported: 0
|
||||
2026/04/02-21:14:20.235542 139629081356096 kCustomCompressionA0 supported: 0
|
||||
2026/04/02-21:14:20.235542 139629081356096 kCustomCompressionC6 supported: 0
|
||||
2026/04/02-21:14:20.235543 139629081356096 kCustomCompression9D supported: 0
|
||||
2026/04/02-21:14:20.235544 139629081356096 kCustomCompression8B supported: 0
|
||||
2026/04/02-21:14:20.235544 139629081356096 kCustomCompressionA8 supported: 0
|
||||
2026/04/02-21:14:20.235545 139629081356096 kCustomCompression8D supported: 0
|
||||
2026/04/02-21:14:20.235546 139629081356096 kCustomCompression97 supported: 0
|
||||
2026/04/02-21:14:20.235546 139629081356096 kCustomCompression98 supported: 0
|
||||
2026/04/02-21:14:20.235548 139629081356096 kCustomCompressionAC supported: 0
|
||||
2026/04/02-21:14:20.235548 139629081356096 kCustomCompressionE9 supported: 0
|
||||
2026/04/02-21:14:20.235549 139629081356096 kCustomCompression96 supported: 0
|
||||
2026/04/02-21:14:20.235550 139629081356096 kCustomCompressionB1 supported: 0
|
||||
2026/04/02-21:14:20.235550 139629081356096 kCustomCompression95 supported: 0
|
||||
2026/04/02-21:14:20.235551 139629081356096 kCustomCompression84 supported: 0
|
||||
2026/04/02-21:14:20.235552 139629081356096 kCustomCompression91 supported: 0
|
||||
2026/04/02-21:14:20.235552 139629081356096 kCustomCompressionAB supported: 0
|
||||
2026/04/02-21:14:20.235553 139629081356096 kCustomCompressionB3 supported: 0
|
||||
2026/04/02-21:14:20.235554 139629081356096 kCustomCompression81 supported: 0
|
||||
2026/04/02-21:14:20.235554 139629081356096 kCustomCompressionDC supported: 0
|
||||
2026/04/02-21:14:20.235555 139629081356096 kBZip2Compression supported: 0
|
||||
2026/04/02-21:14:20.235556 139629081356096 kCustomCompressionBB supported: 0
|
||||
2026/04/02-21:14:20.235557 139629081356096 kCustomCompression9C supported: 0
|
||||
2026/04/02-21:14:20.235557 139629081356096 kCustomCompressionC9 supported: 0
|
||||
2026/04/02-21:14:20.235558 139629081356096 kCustomCompressionCC supported: 0
|
||||
2026/04/02-21:14:20.235559 139629081356096 kCustomCompression92 supported: 0
|
||||
2026/04/02-21:14:20.235559 139629081356096 kCustomCompressionB9 supported: 0
|
||||
2026/04/02-21:14:20.235560 139629081356096 kCustomCompression8F supported: 0
|
||||
2026/04/02-21:14:20.235561 139629081356096 kCustomCompression8A supported: 0
|
||||
2026/04/02-21:14:20.235562 139629081356096 kCustomCompression9B supported: 0
|
||||
2026/04/02-21:14:20.235562 139629081356096 kZSTD supported: 0
|
||||
2026/04/02-21:14:20.235563 139629081356096 kCustomCompressionAA supported: 0
|
||||
2026/04/02-21:14:20.235564 139629081356096 kCustomCompressionA2 supported: 0
|
||||
2026/04/02-21:14:20.235564 139629081356096 kZlibCompression supported: 0
|
||||
2026/04/02-21:14:20.235565 139629081356096 kXpressCompression supported: 0
|
||||
2026/04/02-21:14:20.235566 139629081356096 kCustomCompressionFD supported: 0
|
||||
2026/04/02-21:14:20.235566 139629081356096 kCustomCompressionE2 supported: 0
|
||||
2026/04/02-21:14:20.235567 139629081356096 kLZ4HCCompression supported: 1
|
||||
2026/04/02-21:14:20.235568 139629081356096 kCustomCompressionA6 supported: 0
|
||||
2026/04/02-21:14:20.235568 139629081356096 kCustomCompression85 supported: 0
|
||||
2026/04/02-21:14:20.235569 139629081356096 kCustomCompressionA4 supported: 0
|
||||
2026/04/02-21:14:20.235570 139629081356096 kCustomCompression86 supported: 0
|
||||
2026/04/02-21:14:20.235570 139629081356096 kCustomCompression83 supported: 0
|
||||
2026/04/02-21:14:20.235571 139629081356096 kCustomCompression87 supported: 0
|
||||
2026/04/02-21:14:20.235571 139629081356096 kCustomCompression89 supported: 0
|
||||
2026/04/02-21:14:20.235572 139629081356096 kCustomCompression8C supported: 0
|
||||
2026/04/02-21:14:20.235573 139629081356096 kCustomCompressionDB supported: 0
|
||||
2026/04/02-21:14:20.235573 139629081356096 kCustomCompressionF3 supported: 0
|
||||
2026/04/02-21:14:20.235574 139629081356096 kCustomCompressionE6 supported: 0
|
||||
2026/04/02-21:14:20.235575 139629081356096 kCustomCompression8E supported: 0
|
||||
2026/04/02-21:14:20.235575 139629081356096 kCustomCompressionDA supported: 0
|
||||
2026/04/02-21:14:20.235576 139629081356096 kCustomCompression93 supported: 0
|
||||
2026/04/02-21:14:20.235576 139629081356096 kCustomCompression94 supported: 0
|
||||
2026/04/02-21:14:20.235577 139629081356096 kCustomCompression9E supported: 0
|
||||
2026/04/02-21:14:20.235578 139629081356096 kCustomCompressionB4 supported: 0
|
||||
2026/04/02-21:14:20.235578 139629081356096 kCustomCompressionFB supported: 0
|
||||
2026/04/02-21:14:20.235579 139629081356096 kCustomCompressionB5 supported: 0
|
||||
2026/04/02-21:14:20.235580 139629081356096 kCustomCompressionD5 supported: 0
|
||||
2026/04/02-21:14:20.235580 139629081356096 kCustomCompressionB8 supported: 0
|
||||
2026/04/02-21:14:20.235581 139629081356096 kCustomCompressionD1 supported: 0
|
||||
2026/04/02-21:14:20.235581 139629081356096 kCustomCompressionBA supported: 0
|
||||
2026/04/02-21:14:20.235582 139629081356096 kCustomCompressionBC supported: 0
|
||||
2026/04/02-21:14:20.235583 139629081356096 kCustomCompressionCE supported: 0
|
||||
2026/04/02-21:14:20.235583 139629081356096 kCustomCompressionBD supported: 0
|
||||
2026/04/02-21:14:20.235584 139629081356096 kCustomCompressionC4 supported: 0
|
||||
2026/04/02-21:14:20.235585 139629081356096 kCustomCompression9A supported: 0
|
||||
2026/04/02-21:14:20.235585 139629081356096 kCustomCompression99 supported: 0
|
||||
2026/04/02-21:14:20.235586 139629081356096 kCustomCompressionBE supported: 0
|
||||
2026/04/02-21:14:20.235586 139629081356096 kCustomCompressionE5 supported: 0
|
||||
2026/04/02-21:14:20.235587 139629081356096 kCustomCompressionD9 supported: 0
|
||||
2026/04/02-21:14:20.235588 139629081356096 kCustomCompressionC1 supported: 0
|
||||
2026/04/02-21:14:20.235588 139629081356096 kCustomCompressionC5 supported: 0
|
||||
2026/04/02-21:14:20.235589 139629081356096 kCustomCompressionC2 supported: 0
|
||||
2026/04/02-21:14:20.235590 139629081356096 kCustomCompressionA5 supported: 0
|
||||
2026/04/02-21:14:20.235590 139629081356096 kCustomCompressionC7 supported: 0
|
||||
2026/04/02-21:14:20.235591 139629081356096 kCustomCompressionBF supported: 0
|
||||
2026/04/02-21:14:20.235591 139629081356096 kCustomCompressionE8 supported: 0
|
||||
2026/04/02-21:14:20.235592 139629081356096 kCustomCompressionC8 supported: 0
|
||||
2026/04/02-21:14:20.235593 139629081356096 kCustomCompressionAF supported: 0
|
||||
2026/04/02-21:14:20.235593 139629081356096 kCustomCompressionCA supported: 0
|
||||
2026/04/02-21:14:20.235594 139629081356096 kCustomCompressionCD supported: 0
|
||||
2026/04/02-21:14:20.235595 139629081356096 kCustomCompressionC0 supported: 0
|
||||
2026/04/02-21:14:20.235595 139629081356096 kCustomCompressionCF supported: 0
|
||||
2026/04/02-21:14:20.235596 139629081356096 kCustomCompressionF9 supported: 0
|
||||
2026/04/02-21:14:20.235597 139629081356096 kCustomCompressionD0 supported: 0
|
||||
2026/04/02-21:14:20.235597 139629081356096 kCustomCompressionD2 supported: 0
|
||||
2026/04/02-21:14:20.235598 139629081356096 kCustomCompressionAD supported: 0
|
||||
2026/04/02-21:14:20.235599 139629081356096 kCustomCompressionD3 supported: 0
|
||||
2026/04/02-21:14:20.235599 139629081356096 kCustomCompressionD4 supported: 0
|
||||
2026/04/02-21:14:20.235600 139629081356096 kCustomCompressionD7 supported: 0
|
||||
2026/04/02-21:14:20.235601 139629081356096 kCustomCompression82 supported: 0
|
||||
2026/04/02-21:14:20.235601 139629081356096 kCustomCompressionDD supported: 0
|
||||
2026/04/02-21:14:20.235602 139629081356096 kCustomCompressionC3 supported: 0
|
||||
2026/04/02-21:14:20.235602 139629081356096 kCustomCompressionEE supported: 0
|
||||
2026/04/02-21:14:20.235603 139629081356096 kCustomCompressionDE supported: 0
|
||||
2026/04/02-21:14:20.235604 139629081356096 kCustomCompressionDF supported: 0
|
||||
2026/04/02-21:14:20.235604 139629081356096 kCustomCompressionA7 supported: 0
|
||||
2026/04/02-21:14:20.235605 139629081356096 kCustomCompressionE0 supported: 0
|
||||
2026/04/02-21:14:20.235605 139629081356096 kCustomCompressionF1 supported: 0
|
||||
2026/04/02-21:14:20.235606 139629081356096 kCustomCompressionE1 supported: 0
|
||||
2026/04/02-21:14:20.235607 139629081356096 kCustomCompressionF5 supported: 0
|
||||
2026/04/02-21:14:20.235607 139629081356096 kCustomCompression80 supported: 0
|
||||
2026/04/02-21:14:20.235608 139629081356096 kCustomCompressionE3 supported: 0
|
||||
2026/04/02-21:14:20.235609 139629081356096 kCustomCompressionE4 supported: 0
|
||||
2026/04/02-21:14:20.235609 139629081356096 kCustomCompressionB0 supported: 0
|
||||
2026/04/02-21:14:20.235610 139629081356096 kCustomCompressionEA supported: 0
|
||||
2026/04/02-21:14:20.235611 139629081356096 kCustomCompressionFA supported: 0
|
||||
2026/04/02-21:14:20.235611 139629081356096 kCustomCompressionE7 supported: 0
|
||||
2026/04/02-21:14:20.235612 139629081356096 kCustomCompressionAE supported: 0
|
||||
2026/04/02-21:14:20.235612 139629081356096 kCustomCompressionEB supported: 0
|
||||
2026/04/02-21:14:20.235613 139629081356096 kCustomCompressionED supported: 0
|
||||
2026/04/02-21:14:20.235614 139629081356096 kCustomCompressionB6 supported: 0
|
||||
2026/04/02-21:14:20.235614 139629081356096 kCustomCompressionEF supported: 0
|
||||
2026/04/02-21:14:20.235615 139629081356096 kCustomCompressionF0 supported: 0
|
||||
2026/04/02-21:14:20.235615 139629081356096 kCustomCompressionB7 supported: 0
|
||||
2026/04/02-21:14:20.235616 139629081356096 kCustomCompressionF2 supported: 0
|
||||
2026/04/02-21:14:20.235617 139629081356096 kCustomCompressionA1 supported: 0
|
||||
2026/04/02-21:14:20.235617 139629081356096 kCustomCompressionF4 supported: 0
|
||||
2026/04/02-21:14:20.235618 139629081356096 kSnappyCompression supported: 0
|
||||
2026/04/02-21:14:20.235619 139629081356096 kCustomCompressionF6 supported: 0
|
||||
2026/04/02-21:14:20.235619 139629081356096 Fast CRC32 supported: Not supported on x86
|
||||
2026/04/02-21:14:20.235620 139629081356096 DMutex implementation: pthread_mutex_t
|
||||
2026/04/02-21:14:20.235621 139629081356096 Jemalloc supported: 0
|
||||
2026/04/02-21:14:20.235645 139629081356096 [WARN] [db/db_impl/db_impl_open.cc:2687] DB::Open() failed: IO error: lock hold by current process, acquire time 1775157232 acquiring thread 139629081356096: data/osint/oxigraph/LOCK: No locks available
|
||||
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
Reference in New Issue
Block a user