Dongze Li
Dongze Li
`sess.gremlin` failed with `string` oid ``` WARNING: Logging before InitGoogleLogging() is written to STDERR I0519 01:01:55.693738 61686 htap_ds_impl.cc:35] Initialize vineyard client I0519 01:01:55.784637 61686 htap_ds_impl.cc:39] Get vineyard object ok: 0x565099020260...
**C++ Template** https://github.com/GraphScope/cplusplus-template
[Prometheus](https://github.com/prometheus) is an open-source systems monitoring and alerting toolkit in the Kubernetes ecosystem. In this task, You will be asked to provide a unified monitoring UI for GraphScope, and at...
@VincentFF **1. [GraphScope Coordinator 指标] 载图时间:** 由于 Coordinator 看到的是由一个个 [OP](https://github.com/alibaba/GraphScope/blob/main/python/graphscope/proto/op_def.proto#L25 ) 组成的 [DAG](https://github.com/alibaba/GraphScope/blob/main/python/graphscope/proto/op_def.proto#L77),因此从 Coordinator 的角度很难确定"一张图"的概念,例如 `CREATE_GRAPH`、`ADD_LABELS`、`SUBGRAPH ` 等 [OP 类型](https://github.com/alibaba/GraphScope/blob/main/python/graphscope/proto/types.proto#L82) 返回的都是一个图,因此我们不单独统计载图时间,而是记录每个 [OP 类型](https://github.com/alibaba/GraphScope/blob/main/python/graphscope/proto/types.proto#L82) 的执行时间(这样其实也涵盖了指标中的载图、交互式引擎的查询时间等),最终用一张类似于下面的时序图展示 coordinator 执行的每个 op 的时间(不同 op的颜色不同) **2....
**7月19日 Coordinator监控指标** **1. 载图时间** **2. 交互型任务 的查询时间** 可通过统计 OP 的执行时间来展示,最终放在一张时序图中,不同 OP 的颜色不同 ---------------------------- 3. GraphScope Session 状态 1) 比如如果有client链接,状态为连接 (Connected) https://github.com/alibaba/GraphScope/blob/main/coordinator/gscoordinator/coordinator.py#L259 2) 如果client 断开链接,状态为未连接 (Closed) https://github.com/alibaba/GraphScope/blob/main/coordinator/gscoordinator/coordinator.py#L803 3) 如果有client连接,但是一段时间没有收到心跳, 状态为失联 DisConnected...
@VincentFF 1. session id 可以不作为标签 2. 针对Op时间metric的选择,最好不同的op都画在一条线上(即他们的纵坐标相同,以颜色不同区分),因为op是串型执行的,效果如下
**GraphScope GIE 服务指标** 服务 QPS (每秒查询率) 服务 成功/失败 数量 服务失败率 @VincentFF 针对每个 gremlin query,存储端可以打印一条日志数据,为了可视化上述指标,你定一下数据格式?
> **GraphScope GIE 服务指标** > > 服务 QPS (每秒查询率) 服务 成功/失败 数量 服务失败率 > > @VincentFF 针对每个 gremlin query,存储端可以打印一条日志数据,为了可视化上述指标,你定一下数据格式? 日志格式: Query Report: JSON_STRING ```json # JSON_STRING 定义如下 { "query": "g.V().count()",...
查看存储日志流程: 1. 下载镜像: registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-vineyard:v0.6.0 2. 启动容器命令: 需要 ${HOME}/GraphScope 有你的代码库 docker run --shm-size 102400m --name summercode -it -v ${HOME}/GraphScope:/work registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-vineyard:v0.6.0 /bin/bash 3. 编译 在容器中 cd /work && make install 4. 运行...
@littleDrew 这些数据集中特有的额外的字段,是如何参与计算的呢?