Earlier quoted context omitted.
I'm using Neo4j to build a CMDB and it is awesome.
What is a "CMDB"?
How NASA Is Using Graph Technology and LLMs to Build a People Knowledge Graph
51–56 of 56 posts
Re: How NASA Is Using Graph Technology and LLMs to Build a People Knowledge Graph
#52Earlier quoted context omitted.
I'm using Neo4j to build a CMDB and it is awesome.
That's good to hear, how large is the graph you're building (nodes, edges) and how do queries perform?
Re: How NASA Is Using Graph Technology and LLMs to Build a People Knowledge Graph
#53Earlier quoted context omitted.
That's good to hear, how large is the graph you're building (nodes, edges) and how do queries perform?
The big issue we have had with Neo4J was with replication, when we do MASSIVE updates. For the rest, it handles the charge reasonably well.
Re: How NASA Is Using Graph Technology and LLMs to Build a People Knowledge Graph
#54Earlier quoted context omitted.
What is a "CMDB"?
A Configuration Management Database (CMDB) is a centralized repository that stores information about Configuration Items (CIs), including their attributes and relationships. It's a key component of IT service management (ITSM), providing visibility into the components that make up IT services, like hardware, software, and documentation
Re: How NASA Is Using Graph Technology and LLMs to Build a People Knowledge Graph
#55Earlier quoted context omitted.
A Configuration Management Database (CMDB) is a centralized repository that stores information about Configuration Items (CIs), including their attributes and relationships. It's a key component of IT service management (ITSM), providing visibility into the components that make up IT services, like hardware, software, and documentation
Interesting!
MATCH p = (host:VMHOST {name: 'your_host_name'})-[:RUNS]->(vm)-[:HAS_SERVICE]->(service)-[:EXPOSES_PORT]->(port:TCPPORT {port: 80}) RETURN p
This can save a absurd amount of time for analyzing the impacts of failures and security isolation compliance.
Re: How NASA Is Using Graph Technology and LLMs to Build a People Knowledge Graph
#56Earlier quoted context omitted.
I'm using Neo4j to build a CMDB and it is awesome.
That's good to hear, how large is the graph you're building (nodes, edges) and how do queries perform?