当前位置:网站首页>基于 Nebula Graph 构建百亿关系知识图谱实践
基于 Nebula Graph 构建百亿关系知识图谱实践
2022-06-27 15:33:00 【InfoQ】

一、项目背景
二、为什么选择 Nebula Graph?
- 对于内存的占用较小
- 使用 multi-raft 一致性协议
- 存储端使用 RocksDB 作为存储引擎
- 写入速度快
三、使用 Nebula Graph 时我们遇到了哪些问题?
MATCH (v1:technology)-[e:technologyLeaf]->(v2:technology) WHERE id(v2) == "foobar" \
RETURN id(v1), v1.name, e.sort_value AS sort ORDER BY sort | LIMIT 0,20;

SELECT technology.name FROM technology INNER JOIN (SELECT technologydownstream.downstream_id FROM technologydownstream
WHERE technologydownstream.technology_id = 'foobar' ORDER BY technologydownstream.sort_value DESC LIMIT 0,20) AS t
WHERE t.downstream_id=technology.id;

四、使用 Nebula Graph 时我们如何调优?



边栏推荐
- logstash排除特定文件或文件夹不采集上报日志数据
- LeetCode每日一练(杨辉三角)
- Keep valid digits; Keep n digits after the decimal point;
- OpenSSF安全计划:SBOM将驱动软件供应链安全
- Piblup test report 1- pedigree based animal model
- Introduction to TTCAN brick moving
- Distributed session solution
- 洛谷_P1008 [NOIP1998 普及组] 三连击_枚举
- Centos8 PostgreSQL initialization error: initdb: error: invalid locale settings; check LANG and LC_* environment
- 利用Redis实现订单30分钟自动取消
猜你喜欢
随机推荐
Luogu_ P1007 single log bridge_ thinking
Design of direct spread spectrum communication system based on FPGA (with main code)
3.3 one of the fixed number of cycles
Gin general logging Middleware
[pyGame games] this "eat everything" game is really wonderful? Eat them all? (with source code for free)
Eolink 推出面向中小企业及初创企业支持计划,为企业赋能!
Introduce you to ldbc SNB, a powerful tool for database performance and scenario testing
MySQL中符号@的作用
【kotlin】第二天
2022-2-15 learning the imitated Niuke project - Section 5 shows comments
Go error collection | when a function uses a return value with a parameter name
16 -- 删除无效的括号
Cesium uses mediastreamrecorder or mediarecorder to record screen and download video, as well as turn on camera recording. [transfer]
Luogu_ P1008 [noip1998 popularization group] triple strike_ enumeration
I want to buy fixed income + products, but I don't know what its main investment is. Does anyone know?
Logstash excludes specific files or folders from collecting report log data
Distributed session solution
一场分销裂变活动,不止是发发朋友圈这么简单!
Basic configuration and usage of Jupiter notebook
分布式Session解决方案









