当前位置:网站首页>Practice of constructing ten billion relationship knowledge map based on Nebula graph
Practice of constructing ten billion relationship knowledge map based on Nebula graph
2022-06-27 15:57:00 【InfoQ】

One 、 Project background
Two 、 Why choose Nebula Graph?
- Small memory footprint
- Use multi-raft Agreement of conformity
- The storage side uses RocksDB As a storage engine
- Write fast
3、 ... and 、 Use Nebula Graph What problems have we encountered ?
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;

Four 、 Use Nebula Graph How do we tune ?



边栏推荐
- Basic configuration and usage of Jupiter notebook
- Use redis to automatically cancel orders within 30 minutes
- Li Chuang EDA learning notes 16: array copy and array distribution
- 3.1 simple condition judgment
- E modulenotfounderror: no module named 'psychopg2' (resolved)
- 设计原则和思想:设计原则
- R language error
- Julia constructs diagonal matrix
- Open source 23 things shardingsphere and database mesh have to say
- Problems encountered in vs compilation
猜你喜欢

Four characteristics of transactions
![Luogu_ P1002 [noip2002 popularization group] crossing the river_ dp](/img/80/4edf21e0ac316fe3dd727159621acb.png)
Luogu_ P1002 [noip2002 popularization group] crossing the river_ dp

Jialichuang EDA professional edition all offline client release

LeetCode每日一练(主要元素)

Distributed session solution

#28对象方法扩展

E ModuleNotFoundError: No module named ‘psycopg2‘(已解决)

VS编译遇到的问题

express

LeetCode每日一练(杨辉三角)
随机推荐
Jialichuang EDA professional edition all offline client release
About fast exponentiation
Typescript learning materials
Cesium 使用MediaStreamRecorder 或者MediaRecorder录屏并下载视频,以及开启摄像头录像。【转】
【Pygame小游戏】这款“吃掉一切”游戏简直奇葩了?通通都吃掉嘛?(附源码免费领)
Logstash excludes specific files or folders from collecting report log data
2022-2-15 learning the imitated Niuke project - Section 5 shows comments
Scrapy framework (I): basic use
Markdown syntax
CentOS8-postgresql初始化时报错:initdb: error: invalid locale settings; check LANG and LC_* environment
Derivation of Halcon camera calibration principle
#27ES6的数值扩展
机械硬盘和ssd固态硬盘的原理对比分析
[issue 18] share a Netease go classic
E modulenotfounderror: no module named 'psychopg2' (resolved)
避孕套巨头过去两年销量下降40% ,下降原因是什么?
Introduce you to ldbc SNB, a powerful tool for database performance and scenario testing
Centos8 PostgreSQL initialization error: initdb: error: invalid locale settings; check LANG and LC_* environment
Design of direct spread spectrum communication system based on FPGA (with main code)
Luogu_ P1007 single log bridge_ thinking