检测到您已登录华为云国际站账号,为了您更好的体验,建议您访问国际站服务网站 https://www.huaweicloud.com/intl/zh-cn
不再显示此消息
据管理等。 如何访问GES 华为云提供了Web化的服务管理平台,即管理控制台和基于HTTPS请求的API(Application programming interface)管理方式。 API方式 如果用户需要将华为云平台上的图引擎服务集成到第三方系统,用于二次开发,请使用API
配额说明 为防止资源滥用,平台限定了各服务资源的配额,对用户的资源数量和容量做了限制。 如果当前资源配额限制无法满足使用需要,您可以申请扩大配额。 GES服务应用的基础设施如下: 统一身份认证(IAM) 虚拟私有云(VPC) 对象存储服务(OBS) 关于如何查看配额,如何申请扩大配额,请参考《关于配额》。
{paths_number} # data_total_size: {data_total_size} # data_return_size: {data_return_size} # data_offset: {data_offset} # batch_paths: 每行为1对pair的多条路,格式:
09:24:33", "request": "profile match (n)-[r:rate*1..2]->(m) return r limit 5", "request_id": "1-346e5188-4b20-4175-b2ef-f7bcbff2d730"
match (n:movie) return n :查询label为movie的点。 match (n) return n limit 100 表示查询100个节点的详细数据。 match (n{Occupation:'artist'}) return id(n), n.Gender
ons。 使用feature函数可以看到当前支持的Gremlin特性,显示false表示GES服务不支持此特性,显示为true表示GES服务支持此特性,特性详情可参考Gremlin官网。 gremlin> graph.features() ==>FEATURES 目前暂时不支持以下step命令:
g1+=2; return g1; { "data": { "value": 10 } } 假设我们想得到某个match点集的诱导子图以便于后续任务执行(如在页面上绘图): Match<Vertex> v(['1','2']); return v.subgraph();
match(n:user) return n[' userid'] with [1, 2, 3, 4] as list return list[0] with [1, 2, 3, 4] as list return list[0..1] match p=(n)-->(m) return [x in
match(n:user) return n[' userid'] with [1, 2, 3, 4] as list return list[0] with [1, 2, 3, 4] as list return list[0..1] match p=(n)-->(m) return [x in
v(['Vivian','Eric']);return v; 表示查询id为Vivian和Eric的点。 N跳查询 Match<Vertex> v(['Vivian']);v.repeat(bothV()).times(2).emit();return v; 表示查询id为Vivian的both方向两跳内所有的邻居点。
S上。 URI POST /ges/v1.0/{project_id}/graphs/{graph_name}/schema/structure/build 表1 路径参数 参数 是否必选 类型 说明 project_id 是 String 项目ID。获取方法请参见获取项目ID。
删除Label BatchAddLabelSample 批量添加Label BuildSchemaStructureSample 生成Schema结构 QuerySchemaStructureSample 查询Schema结构 父主题: 内存版样例
删除Label BatchAddLabelSample 批量添加Label BuildSchemaStructureSample 生成Schema结构 QuerySchemaStructureSample 查询Schema结构 父主题: 内存版样例
点集全最短路(All Shortest Paths of Vertex Sets) 概述 点集全最短路算法(Shortest Path of Vertex Sets)用于发现两个点集之间的所有最短路径。 适用场景 点集最短路算法可应用于互联网社交、金融风控、路网交通、物流配送等场景下的区块之间关系的分析。
点集最短路(Shortest Path of Vertex Sets) 概述 点集最短路算法(Shortest Path of Vertex Sets)用于发现两个点集之间的最短路径。 适用场景 点集最短路算法(Shortest Path of Vertex Sets)适用于互联
userid>=5 return n 分组聚集 match(n:movie) return n.genres, count(*) 去重 match(n:movie) return distinct n.genres 排序 match(n:movie) return n order by
userid>=5 return n 分组聚集 match(n:movie) return n.genres, count(*) 去重 match(n:movie) return distinct n.genres 排序 match(n:movie) return n order by
match (n) return id(n) limit 10 match (n) return n.age, n.occupation match (n)-[r]->(m) return n.Rating limit 10 unwind [1,2,3] as p return p 下列语
查询生成的schema结构(从OBS上读取)。 URI GET /ges/v1.0/{project_id}/graphs/{graph_name}/schema/structure?detail={details} 表1 路径参数 参数 是否必选 类型 说明 project_id 是 String 项目ID。获取方法请参见获取项目ID。
执行Cypher命令,显示执行结果,例如,输入查询命令match (n) return n limit 100,查询结果为: 图2 执行Cypher命令结果 执行DSL命令,显示执行结果,例如,输入查询命令Match<Vertex> v(); v.pick(1); return v,查询结果为: 图3 执行DSL命令结果