-
Notifications
You must be signed in to change notification settings - Fork 41
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
Adding support for Vermeer functionality and removing invalid repositories #316
base: master
Are you sure you want to change the base?
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
Purpose of the PR
Main Changes
Adding support for Vermeer functionality: 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 - TODO
Doc - Done
Doc - No Need