mirror of
https://github.com/HKUDS/LightRAG.git
synced 2025-07-25 09:50:20 +00:00

- Add label existence check and validation methods in Neo4j implementation - Improve error handling in get_node, get_edge, and upsert methods - Add default values and logging for missing edge properties - Ensure consistent label processing across graph storage methods
630 lines
25 KiB
Python
630 lines
25 KiB
Python
import asyncio
|
|
import inspect
|
|
import os
|
|
import re
|
|
from dataclasses import dataclass
|
|
from typing import Any, Union, Tuple, List, Dict
|
|
import pipmaster as pm
|
|
import configparser
|
|
|
|
if not pm.is_installed("neo4j"):
|
|
pm.install("neo4j")
|
|
|
|
from neo4j import (
|
|
AsyncGraphDatabase,
|
|
exceptions as neo4jExceptions,
|
|
AsyncDriver,
|
|
AsyncManagedTransaction,
|
|
GraphDatabase,
|
|
)
|
|
from tenacity import (
|
|
retry,
|
|
stop_after_attempt,
|
|
wait_exponential,
|
|
retry_if_exception_type,
|
|
)
|
|
|
|
from ..utils import logger
|
|
from ..base import BaseGraphStorage
|
|
from ..types import KnowledgeGraph, KnowledgeGraphNode, KnowledgeGraphEdge
|
|
|
|
|
|
config = configparser.ConfigParser()
|
|
config.read("config.ini", "utf-8")
|
|
|
|
|
|
@dataclass
|
|
class Neo4JStorage(BaseGraphStorage):
|
|
@staticmethod
|
|
def load_nx_graph(file_name):
|
|
print("no preloading of graph with neo4j in production")
|
|
|
|
def __init__(self, namespace, global_config, embedding_func):
|
|
super().__init__(
|
|
namespace=namespace,
|
|
global_config=global_config,
|
|
embedding_func=embedding_func,
|
|
)
|
|
self._driver = None
|
|
self._driver_lock = asyncio.Lock()
|
|
|
|
URI = os.environ.get("NEO4J_URI", config.get("neo4j", "uri", fallback=None))
|
|
USERNAME = os.environ.get(
|
|
"NEO4J_USERNAME", config.get("neo4j", "username", fallback=None)
|
|
)
|
|
PASSWORD = os.environ.get(
|
|
"NEO4J_PASSWORD", config.get("neo4j", "password", fallback=None)
|
|
)
|
|
MAX_CONNECTION_POOL_SIZE = int(
|
|
os.environ.get(
|
|
"NEO4J_MAX_CONNECTION_POOL_SIZE",
|
|
config.get("neo4j", "connection_pool_size", fallback=800),
|
|
)
|
|
)
|
|
DATABASE = os.environ.get(
|
|
"NEO4J_DATABASE", re.sub(r"[^a-zA-Z0-9-]", "-", namespace)
|
|
)
|
|
|
|
self._driver: AsyncDriver = AsyncGraphDatabase.driver(
|
|
URI, auth=(USERNAME, PASSWORD)
|
|
)
|
|
|
|
# Try to connect to the database
|
|
with GraphDatabase.driver(
|
|
URI,
|
|
auth=(USERNAME, PASSWORD),
|
|
max_connection_pool_size=MAX_CONNECTION_POOL_SIZE,
|
|
) as _sync_driver:
|
|
for database in (DATABASE, None):
|
|
self._DATABASE = database
|
|
connected = False
|
|
|
|
try:
|
|
with _sync_driver.session(database=database) as session:
|
|
try:
|
|
session.run("MATCH (n) RETURN n LIMIT 0")
|
|
logger.info(f"Connected to {database} at {URI}")
|
|
connected = True
|
|
except neo4jExceptions.ServiceUnavailable as e:
|
|
logger.error(
|
|
f"{database} at {URI} is not available".capitalize()
|
|
)
|
|
raise e
|
|
except neo4jExceptions.AuthError as e:
|
|
logger.error(f"Authentication failed for {database} at {URI}")
|
|
raise e
|
|
except neo4jExceptions.ClientError as e:
|
|
if e.code == "Neo.ClientError.Database.DatabaseNotFound":
|
|
logger.info(
|
|
f"{database} at {URI} not found. Try to create specified database.".capitalize()
|
|
)
|
|
try:
|
|
with _sync_driver.session() as session:
|
|
session.run(
|
|
f"CREATE DATABASE `{database}` IF NOT EXISTS"
|
|
)
|
|
logger.info(f"{database} at {URI} created".capitalize())
|
|
connected = True
|
|
except (
|
|
neo4jExceptions.ClientError,
|
|
neo4jExceptions.DatabaseError,
|
|
) as e:
|
|
if (
|
|
e.code
|
|
== "Neo.ClientError.Statement.UnsupportedAdministrationCommand"
|
|
) or (
|
|
e.code == "Neo.DatabaseError.Statement.ExecutionFailed"
|
|
):
|
|
if database is not None:
|
|
logger.warning(
|
|
"This Neo4j instance does not support creating databases. Try to use Neo4j Desktop/Enterprise version or DozerDB instead. Fallback to use the default database."
|
|
)
|
|
if database is None:
|
|
logger.error(f"Failed to create {database} at {URI}")
|
|
raise e
|
|
|
|
if connected:
|
|
break
|
|
|
|
def __post_init__(self):
|
|
self._node_embed_algorithms = {
|
|
"node2vec": self._node2vec_embed,
|
|
}
|
|
|
|
async def close(self):
|
|
if self._driver:
|
|
await self._driver.close()
|
|
self._driver = None
|
|
|
|
async def __aexit__(self, exc_type, exc, tb):
|
|
if self._driver:
|
|
await self._driver.close()
|
|
|
|
async def index_done_callback(self):
|
|
print("KG successfully indexed.")
|
|
|
|
async def _label_exists(self, label: str) -> bool:
|
|
"""Check if a label exists in the Neo4j database."""
|
|
query = "CALL db.labels() YIELD label RETURN label"
|
|
try:
|
|
async with self._driver.session(database=self._DATABASE) as session:
|
|
result = await session.run(query)
|
|
labels = [record["label"] for record in await result.data()]
|
|
return label in labels
|
|
except Exception as e:
|
|
logger.error(f"Error checking label existence: {e}")
|
|
return False
|
|
|
|
async def _ensure_label(self, label: str) -> str:
|
|
"""Ensure a label exists by validating it."""
|
|
clean_label = label.strip('"')
|
|
if not await self._label_exists(clean_label):
|
|
logger.warning(f"Label '{clean_label}' does not exist in Neo4j")
|
|
return clean_label
|
|
|
|
async def has_node(self, node_id: str) -> bool:
|
|
entity_name_label = await self._ensure_label(node_id)
|
|
async with self._driver.session(database=self._DATABASE) as session:
|
|
query = (
|
|
f"MATCH (n:`{entity_name_label}`) RETURN count(n) > 0 AS node_exists"
|
|
)
|
|
result = await session.run(query)
|
|
single_result = await result.single()
|
|
logger.debug(
|
|
f"{inspect.currentframe().f_code.co_name}:query:{query}:result:{single_result['node_exists']}"
|
|
)
|
|
return single_result["node_exists"]
|
|
|
|
async def has_edge(self, source_node_id: str, target_node_id: str) -> bool:
|
|
entity_name_label_source = source_node_id.strip('"')
|
|
entity_name_label_target = target_node_id.strip('"')
|
|
|
|
async with self._driver.session(database=self._DATABASE) as session:
|
|
query = (
|
|
f"MATCH (a:`{entity_name_label_source}`)-[r]-(b:`{entity_name_label_target}`) "
|
|
"RETURN COUNT(r) > 0 AS edgeExists"
|
|
)
|
|
result = await session.run(query)
|
|
single_result = await result.single()
|
|
logger.debug(
|
|
f"{inspect.currentframe().f_code.co_name}:query:{query}:result:{single_result['edgeExists']}"
|
|
)
|
|
return single_result["edgeExists"]
|
|
|
|
async def get_node(self, node_id: str) -> Union[dict, None]:
|
|
"""Get node by its label identifier.
|
|
|
|
Args:
|
|
node_id: The node label to look up
|
|
|
|
Returns:
|
|
dict: Node properties if found
|
|
None: If node not found
|
|
"""
|
|
async with self._driver.session(database=self._DATABASE) as session:
|
|
entity_name_label = await self._ensure_label(node_id)
|
|
query = f"MATCH (n:`{entity_name_label}`) RETURN n"
|
|
result = await session.run(query)
|
|
record = await result.single()
|
|
if record:
|
|
node = record["n"]
|
|
node_dict = dict(node)
|
|
logger.debug(
|
|
f"{inspect.currentframe().f_code.co_name}: query: {query}, result: {node_dict}"
|
|
)
|
|
return node_dict
|
|
return None
|
|
|
|
async def node_degree(self, node_id: str) -> int:
|
|
entity_name_label = node_id.strip('"')
|
|
|
|
async with self._driver.session(database=self._DATABASE) as session:
|
|
query = f"""
|
|
MATCH (n:`{entity_name_label}`)
|
|
RETURN COUNT{{ (n)--() }} AS totalEdgeCount
|
|
"""
|
|
result = await session.run(query)
|
|
record = await result.single()
|
|
if record:
|
|
edge_count = record["totalEdgeCount"]
|
|
logger.debug(
|
|
f"{inspect.currentframe().f_code.co_name}:query:{query}:result:{edge_count}"
|
|
)
|
|
return edge_count
|
|
else:
|
|
return None
|
|
|
|
async def edge_degree(self, src_id: str, tgt_id: str) -> int:
|
|
entity_name_label_source = src_id.strip('"')
|
|
entity_name_label_target = tgt_id.strip('"')
|
|
src_degree = await self.node_degree(entity_name_label_source)
|
|
trg_degree = await self.node_degree(entity_name_label_target)
|
|
|
|
# Convert None to 0 for addition
|
|
src_degree = 0 if src_degree is None else src_degree
|
|
trg_degree = 0 if trg_degree is None else trg_degree
|
|
|
|
degrees = int(src_degree) + int(trg_degree)
|
|
logger.debug(
|
|
f"{inspect.currentframe().f_code.co_name}:query:src_Degree+trg_degree:result:{degrees}"
|
|
)
|
|
return degrees
|
|
|
|
async def get_edge(
|
|
self, source_node_id: str, target_node_id: str
|
|
) -> Union[dict, None]:
|
|
"""Find edge between two nodes identified by their labels.
|
|
|
|
Args:
|
|
source_node_id (str): Label of the source node
|
|
target_node_id (str): Label of the target node
|
|
|
|
Returns:
|
|
dict: Edge properties if found, with at least {"weight": 0.0}
|
|
None: If error occurs
|
|
"""
|
|
try:
|
|
entity_name_label_source = source_node_id.strip('"')
|
|
entity_name_label_target = target_node_id.strip('"')
|
|
|
|
async with self._driver.session(database=self._DATABASE) as session:
|
|
query = f"""
|
|
MATCH (start:`{entity_name_label_source}`)-[r]->(end:`{entity_name_label_target}`)
|
|
RETURN properties(r) as edge_properties
|
|
LIMIT 1
|
|
""".format(
|
|
entity_name_label_source=entity_name_label_source,
|
|
entity_name_label_target=entity_name_label_target,
|
|
)
|
|
|
|
result = await session.run(query)
|
|
record = await result.single()
|
|
if record and "edge_properties" in record:
|
|
try:
|
|
result = dict(record["edge_properties"])
|
|
# Ensure required keys exist with defaults
|
|
required_keys = {
|
|
"weight": 0.0,
|
|
"source_id": None,
|
|
"target_id": None,
|
|
}
|
|
for key, default_value in required_keys.items():
|
|
if key not in result:
|
|
result[key] = default_value
|
|
logger.warning(
|
|
f"Edge between {entity_name_label_source} and {entity_name_label_target} "
|
|
f"missing {key}, using default: {default_value}"
|
|
)
|
|
|
|
logger.debug(
|
|
f"{inspect.currentframe().f_code.co_name}:query:{query}:result:{result}"
|
|
)
|
|
return result
|
|
except (KeyError, TypeError, ValueError) as e:
|
|
logger.error(
|
|
f"Error processing edge properties between {entity_name_label_source} "
|
|
f"and {entity_name_label_target}: {str(e)}"
|
|
)
|
|
# Return default edge properties on error
|
|
return {"weight": 0.0, "source_id": None, "target_id": None}
|
|
|
|
logger.debug(
|
|
f"{inspect.currentframe().f_code.co_name}: No edge found between {entity_name_label_source} and {entity_name_label_target}"
|
|
)
|
|
# Return default edge properties when no edge found
|
|
return {"weight": 0.0, "source_id": None, "target_id": None}
|
|
|
|
except Exception as e:
|
|
logger.error(
|
|
f"Error in get_edge between {source_node_id} and {target_node_id}: {str(e)}"
|
|
)
|
|
# Return default edge properties on error
|
|
return {"weight": 0.0, "source_id": None, "target_id": None}
|
|
|
|
async def get_node_edges(self, source_node_id: str) -> List[Tuple[str, str]]:
|
|
node_label = source_node_id.strip('"')
|
|
|
|
"""
|
|
Retrieves all edges (relationships) for a particular node identified by its label.
|
|
:return: List of dictionaries containing edge information
|
|
"""
|
|
query = f"""MATCH (n:`{node_label}`)
|
|
OPTIONAL MATCH (n)-[r]-(connected)
|
|
RETURN n, r, connected"""
|
|
async with self._driver.session(database=self._DATABASE) as session:
|
|
results = await session.run(query)
|
|
edges = []
|
|
async for record in results:
|
|
source_node = record["n"]
|
|
connected_node = record["connected"]
|
|
|
|
source_label = (
|
|
list(source_node.labels)[0] if source_node.labels else None
|
|
)
|
|
target_label = (
|
|
list(connected_node.labels)[0]
|
|
if connected_node and connected_node.labels
|
|
else None
|
|
)
|
|
|
|
if source_label and target_label:
|
|
edges.append((source_label, target_label))
|
|
|
|
return edges
|
|
|
|
@retry(
|
|
stop=stop_after_attempt(3),
|
|
wait=wait_exponential(multiplier=1, min=4, max=10),
|
|
retry=retry_if_exception_type(
|
|
(
|
|
neo4jExceptions.ServiceUnavailable,
|
|
neo4jExceptions.TransientError,
|
|
neo4jExceptions.WriteServiceUnavailable,
|
|
neo4jExceptions.ClientError,
|
|
)
|
|
),
|
|
)
|
|
async def upsert_node(self, node_id: str, node_data: Dict[str, Any]):
|
|
"""
|
|
Upsert a node in the Neo4j database.
|
|
|
|
Args:
|
|
node_id: The unique identifier for the node (used as label)
|
|
node_data: Dictionary of node properties
|
|
"""
|
|
label = await self._ensure_label(node_id)
|
|
properties = node_data
|
|
|
|
async def _do_upsert(tx: AsyncManagedTransaction):
|
|
query = f"""
|
|
MERGE (n:`{label}`)
|
|
SET n += $properties
|
|
"""
|
|
await tx.run(query, properties=properties)
|
|
logger.debug(
|
|
f"Upserted node with label '{label}' and properties: {properties}"
|
|
)
|
|
|
|
try:
|
|
async with self._driver.session(database=self._DATABASE) as session:
|
|
await session.execute_write(_do_upsert)
|
|
except Exception as e:
|
|
logger.error(f"Error during upsert: {str(e)}")
|
|
raise
|
|
|
|
@retry(
|
|
stop=stop_after_attempt(3),
|
|
wait=wait_exponential(multiplier=1, min=4, max=10),
|
|
retry=retry_if_exception_type(
|
|
(
|
|
neo4jExceptions.ServiceUnavailable,
|
|
neo4jExceptions.TransientError,
|
|
neo4jExceptions.WriteServiceUnavailable,
|
|
neo4jExceptions.ClientError,
|
|
)
|
|
),
|
|
)
|
|
async def upsert_edge(
|
|
self, source_node_id: str, target_node_id: str, edge_data: Dict[str, Any]
|
|
):
|
|
"""
|
|
Upsert an edge and its properties between two nodes identified by their labels.
|
|
|
|
Args:
|
|
source_node_id (str): Label of the source node (used as identifier)
|
|
target_node_id (str): Label of the target node (used as identifier)
|
|
edge_data (dict): Dictionary of properties to set on the edge
|
|
"""
|
|
source_label = await self._ensure_label(source_node_id)
|
|
target_label = await self._ensure_label(target_node_id)
|
|
edge_properties = edge_data
|
|
|
|
async def _do_upsert_edge(tx: AsyncManagedTransaction):
|
|
query = f"""
|
|
MATCH (source:`{source_label}`)
|
|
WITH source
|
|
MATCH (target:`{target_label}`)
|
|
MERGE (source)-[r:DIRECTED]->(target)
|
|
SET r += $properties
|
|
RETURN r
|
|
"""
|
|
result = await tx.run(query, properties=edge_properties)
|
|
record = await result.single()
|
|
logger.debug(
|
|
f"Upserted edge from '{source_label}' to '{target_label}' with properties: {edge_properties}, result: {record['r'] if record else None}"
|
|
)
|
|
|
|
try:
|
|
async with self._driver.session(database=self._DATABASE) as session:
|
|
await session.execute_write(_do_upsert_edge)
|
|
except Exception as e:
|
|
logger.error(f"Error during edge upsert: {str(e)}")
|
|
raise
|
|
|
|
async def _node2vec_embed(self):
|
|
print("Implemented but never called.")
|
|
|
|
async def get_knowledge_graph(
|
|
self, node_label: str, max_depth: int = 5
|
|
) -> KnowledgeGraph:
|
|
"""
|
|
Get complete connected subgraph for specified node (including the starting node itself)
|
|
|
|
Key fixes:
|
|
1. Include the starting node itself
|
|
2. Handle multi-label nodes
|
|
3. Clarify relationship directions
|
|
4. Add depth control
|
|
"""
|
|
label = node_label.strip('"')
|
|
result = KnowledgeGraph()
|
|
seen_nodes = set()
|
|
seen_edges = set()
|
|
|
|
async with self._driver.session(database=self._DATABASE) as session:
|
|
try:
|
|
main_query = ""
|
|
if label == "*":
|
|
main_query = """
|
|
MATCH (n)
|
|
WITH collect(DISTINCT n) AS nodes
|
|
MATCH ()-[r]-()
|
|
RETURN nodes, collect(DISTINCT r) AS relationships;
|
|
"""
|
|
else:
|
|
# Critical debug step: first verify if starting node exists
|
|
validate_query = f"MATCH (n:`{label}`) RETURN n LIMIT 1"
|
|
validate_result = await session.run(validate_query)
|
|
if not await validate_result.single():
|
|
logger.warning(f"Starting node {label} does not exist!")
|
|
return result
|
|
|
|
# Optimized query (including direction handling and self-loops)
|
|
main_query = f"""
|
|
MATCH (start:`{label}`)
|
|
WITH start
|
|
CALL apoc.path.subgraphAll(start, {{
|
|
relationshipFilter: '>',
|
|
minLevel: 0,
|
|
maxLevel: {max_depth},
|
|
bfs: true
|
|
}})
|
|
YIELD nodes, relationships
|
|
RETURN nodes, relationships
|
|
"""
|
|
result_set = await session.run(main_query)
|
|
record = await result_set.single()
|
|
|
|
if record:
|
|
# Handle nodes (compatible with multi-label cases)
|
|
for node in record["nodes"]:
|
|
# Use node ID + label combination as unique identifier
|
|
node_id = node.id
|
|
if node_id not in seen_nodes:
|
|
result.nodes.append(
|
|
KnowledgeGraphNode(
|
|
id=f"{node_id}",
|
|
labels=list(node.labels),
|
|
properties=dict(node),
|
|
)
|
|
)
|
|
seen_nodes.add(node_id)
|
|
|
|
# Handle relationships (including direction information)
|
|
for rel in record["relationships"]:
|
|
edge_id = rel.id
|
|
if edge_id not in seen_edges:
|
|
start = rel.start_node
|
|
end = rel.end_node
|
|
result.edges.append(
|
|
KnowledgeGraphEdge(
|
|
id=f"{edge_id}",
|
|
type=rel.type,
|
|
source=f"{start.id}",
|
|
target=f"{end.id}",
|
|
properties=dict(rel),
|
|
)
|
|
)
|
|
seen_edges.add(edge_id)
|
|
|
|
logger.info(
|
|
f"Subgraph query successful | Node count: {len(result.nodes)} | Edge count: {len(result.edges)}"
|
|
)
|
|
|
|
except neo4jExceptions.ClientError as e:
|
|
logger.error(f"APOC query failed: {str(e)}")
|
|
return await self._robust_fallback(label, max_depth)
|
|
|
|
return result
|
|
|
|
async def _robust_fallback(
|
|
self, label: str, max_depth: int
|
|
) -> Dict[str, List[Dict]]:
|
|
"""Enhanced fallback query solution"""
|
|
result = {"nodes": [], "edges": []}
|
|
visited_nodes = set()
|
|
visited_edges = set()
|
|
|
|
async def traverse(current_label: str, current_depth: int):
|
|
if current_depth > max_depth:
|
|
return
|
|
|
|
# Get current node details
|
|
node = await self.get_node(current_label)
|
|
if not node:
|
|
return
|
|
|
|
node_id = f"{current_label}"
|
|
if node_id in visited_nodes:
|
|
return
|
|
visited_nodes.add(node_id)
|
|
|
|
# Add node data (with complete labels)
|
|
node_data = {k: v for k, v in node.items()}
|
|
node_data["labels"] = [
|
|
current_label
|
|
] # Assume get_node method returns label information
|
|
result["nodes"].append(node_data)
|
|
|
|
# Get all outgoing and incoming edges
|
|
query = f"""
|
|
MATCH (a)-[r]-(b)
|
|
WHERE a:`{current_label}` OR b:`{current_label}`
|
|
RETURN a, r, b,
|
|
CASE WHEN startNode(r) = a THEN 'OUTGOING' ELSE 'INCOMING' END AS direction
|
|
"""
|
|
async with self._driver.session(database=self._DATABASE) as session:
|
|
results = await session.run(query)
|
|
async for record in results:
|
|
# Handle edges
|
|
rel = record["r"]
|
|
edge_id = f"{rel.id}_{rel.type}"
|
|
if edge_id not in visited_edges:
|
|
edge_data = dict(rel)
|
|
edge_data.update(
|
|
{
|
|
"source": list(record["a"].labels)[0],
|
|
"target": list(record["b"].labels)[0],
|
|
"type": rel.type,
|
|
"direction": record["direction"],
|
|
}
|
|
)
|
|
result["edges"].append(edge_data)
|
|
visited_edges.add(edge_id)
|
|
|
|
# Recursively traverse adjacent nodes
|
|
next_label = (
|
|
list(record["b"].labels)[0]
|
|
if record["direction"] == "OUTGOING"
|
|
else list(record["a"].labels)[0]
|
|
)
|
|
await traverse(next_label, current_depth + 1)
|
|
|
|
await traverse(label, 0)
|
|
return result
|
|
|
|
async def get_all_labels(self) -> List[str]:
|
|
"""
|
|
Get all existing node labels in the database
|
|
Returns:
|
|
["Person", "Company", ...] # Alphabetically sorted label list
|
|
"""
|
|
async with self._driver.session(database=self._DATABASE) as session:
|
|
# Method 1: Direct metadata query (Available for Neo4j 4.3+)
|
|
# query = "CALL db.labels() YIELD label RETURN label"
|
|
|
|
# Method 2: Query compatible with older versions
|
|
query = """
|
|
MATCH (n)
|
|
WITH DISTINCT labels(n) AS node_labels
|
|
UNWIND node_labels AS label
|
|
RETURN DISTINCT label
|
|
ORDER BY label
|
|
"""
|
|
|
|
result = await session.run(query)
|
|
labels = []
|
|
async for record in result:
|
|
labels.append(record["label"])
|
|
return labels
|