-
Notifications
You must be signed in to change notification settings - Fork 45
Migration Vermeer to hugegraph-computer #316
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
| logrus.Errorf("get uint start_key err:%v", err) | ||
| return err | ||
| } | ||
| hgl.startKey = uint32(startKey) |
Check failure
Code scanning / CodeQL
Incorrect conversion between integer types High
strconv.ParseUint
| logrus.Errorf("get uint end_key err:%v", err) | ||
| return err | ||
| } | ||
| hgl.endKey = uint32(endKey) |
Check failure
Code scanning / CodeQL
Incorrect conversion between integer types High
strconv.ParseUint
| return | ||
| } | ||
|
|
||
| task, err := taskBiz(ctx).GetTaskInfo(int32(taskID)) |
Check failure
Code scanning / CodeQL
Incorrect conversion between integer types High
strconv.Atoi
| } | ||
|
|
||
| //任务调度器取消任务 | ||
| err = taskBiz(ctx).CancelTask(int32(taskID)) |
Check failure
Code scanning / CodeQL
Incorrect conversion between integer types High
strconv.Atoi
| } | ||
|
|
||
| //执行分页查询 | ||
| resp.Vertices, resp.Cursor, err = taskBiz(ctx).QueryResults(int32(taskID), cursor, limit) |
Check failure
Code scanning / CodeQL
Incorrect conversion between integer types High
strconv.Atoi
| return strconv.ParseInt(value, 10, 64) | ||
| case reflect.Uint: | ||
| uintValue, err := strconv.ParseUint(value, 10, 64) | ||
| return uint(uintValue), err |
Check failure
Code scanning / CodeQL
Incorrect conversion between integer types High
strconv.ParseUint
| } | ||
| ps.Schema[index] = &PSchema{} | ||
| ps.Schema[index].PropKey = k | ||
| ps.Schema[index].VType = ValueType(vType) |
Check failure
Code scanning / CodeQL
Incorrect conversion between integer types High
strconv.Atoi
Incorrect conversion of an integer with architecture-dependent bit size from
strconv.Atoi
| } else { | ||
| useVertexPropFilter = true | ||
| } | ||
| vertexPropIDMap[int(iLabel)] = struct{}{} |
Check failure
Code scanning / CodeQL
Incorrect conversion between integer types High
strconv.ParseInt
| } else { | ||
| useEdgePropFilter = true | ||
| } | ||
| edgePropIDMap[int(iLabel)] = struct{}{} |
Check failure
Code scanning / CodeQL
Incorrect conversion between integer types High
strconv.ParseInt
| logrus.Errorf("Property LoadFromString Atoi err:%v", err) | ||
| continue | ||
| } | ||
| value := serialize.SInt32(n) |
Check failure
Code scanning / CodeQL
Incorrect conversion between integer types High
strconv.Atoi
|
@coderzc note we need handle the license problem first (dependency-review CI error) |
Vermeer to hugegraph-computer
Vermeer to hugegraph-computer

Purpose of the PR
Vermeerto hugegraph-computerMain Changes
Migration
Vermeerto hugegraph-computer: It's a high-performance computing framework. Supports fast calculation of 15+ OLAP graph algorithms.The framework includes two roles, master and worker, which are responsible for communication and computing functions respectively.Removing invalid reference repositories: Remove outdated repositories such as Baidu's code interface.
Updated the License section.
Verifying these changes
Does this PR potentially affect the following parts?
Documentation Status
Doc - TODODoc - DoneDoc - No Need