Skip to content
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

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Conversation

Skittles258
Copy link

Purpose of the PR

  • Add vermeer functionality to hugegraph systems
  • Update README file

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

  • [●] Trivial rework / code cleanup without any test coverage. (No Need)
  • Already covered by existing tests, such as (please modify tests here).
  • Need tests and can be verified as follows.

Does this PR potentially affect the following parts?

  • Nope
  • [●] Dependencies (add/update license info)
  • Modify configurations
  • The public API
  • Other affects (typed here)

Documentation Status

  • [●] Doc - TODO
  • Doc - Done
  • Doc - No Need

@dosubot dosubot bot added size:XXL This PR changes 1000+ lines, ignoring generated files. documentation Improvements or additions to documentation feature New feature labels Oct 21, 2024
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

Incorrect conversion of an unsigned 64-bit integer from
strconv.ParseUint
to a lower bit size type uint32 without an upper bound check.
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

Incorrect conversion of an unsigned 64-bit integer from
strconv.ParseUint
to a lower bit size type uint32 without an upper bound check.
return
}

task, err := taskBiz(ctx).GetTaskInfo(int32(taskID))

Check failure

Code scanning / CodeQL

Incorrect conversion between integer types High

Incorrect conversion of an integer with architecture-dependent bit size from
strconv.Atoi
to a lower bit size type int32 without an upper bound check.
}

//任务调度器取消任务
err = taskBiz(ctx).CancelTask(int32(taskID))

Check failure

Code scanning / CodeQL

Incorrect conversion between integer types High

Incorrect conversion of an integer with architecture-dependent bit size from
strconv.Atoi
to a lower bit size type int32 without an upper bound check.
}

//执行分页查询
resp.Vertices, resp.Cursor, err = taskBiz(ctx).QueryResults(int32(taskID), cursor, limit)

Check failure

Code scanning / CodeQL

Incorrect conversion between integer types High

Incorrect conversion of an integer with architecture-dependent bit size from
strconv.Atoi
to a lower bit size type int32 without an upper bound check.
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

Incorrect conversion of an unsigned 64-bit integer from
strconv.ParseUint
to a lower bit size type uint without an upper bound check.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation feature New feature size:XXL This PR changes 1000+ lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant