incubator-hugegraph-computer icon indicating copy to clipboard operation
incubator-hugegraph-computer copied to clipboard

HugeGraph Computer - A distributed graph processing system for hugegraph (OLAP)

Results 33 incubator-hugegraph-computer issues
Sort by recently updated
recently updated
newest added
trafficstars

### Bug Type (问题类型) exception / error (运行异常) ### Before submit - [X] 我已经确认现有的 [Server-Issues](https://github.com/hugegraph/hugegraph/issues) 与 [Computer-Issues](https://github.com/hugegraph/hugegraph-computer/issues) 中没有相同 / 重复问题 ### Environment (环境信息) CI ### Expected & Actual behavior (期望与实际表现)...

bug
good first issue
help wanted

## Purpose of the PR - close #302 ## Main Changes 1. computation results output supports custom write. 2. `SingleSourceShortestPathOutput` implements `org.apache.hugegraph.computer.core.output.ComputerOutput#filter` ## Verifying these changes - [ ] Trivial...

feature
size:S

### Feature Description (功能描述) Currently, all vertices output computation results. But some scenarios do not require all vertices to output computation results. Such as `Single Source Shortest Path` algorithm, when...

feature

### Feature Description (功能描述) Source-Target Shortest Path. Calculate the shortest path from source vertex A to target vertex B Refer to _**Dijkstra's Shortest Path Algorithm**_.

feature

### Bug Type (问题类型) None ### Before submit - [X] 我已经确认现有的 [Server-Issues](https://github.com/apache/hugegraph-computer/issues) 与 [Computer-Issues](https://github.com/apache/hugegraph-computer/issues) 中没有相同 / 重复问题 ### Environment (环境信息) CI ### Expected & Actual behavior (期望与实际表现) HDFS cache miss...

bug

### Feature Description (功能描述) `ComputerOptions.INPUT_FILTER_CLASS` default value is `DefaultInputFilter`. `org.apache.hugegraph.computer.core.input.filter.DefaultInputFilter` ```java public class DefaultInputFilter implements InputFilter { @Override public Vertex filter(Vertex vertex) { vertex.properties().clear(); return vertex; } @Override public Edge...

feature

> always return the same Object is reduce memory pressure and avoid GC Yep~ But semantically, `messages.next()` returns a different address object more intuitive. Otherwise, someone who call this function...

feature

### Feature Description (功能描述) Now, we have `manager` container introduced by https://github.com/apache/incubator-hugegraph-computer/pull/259. Thus, we have to modify image building script. BTW, may I ask, currently, how to trigger new image...

feature

### Feature Description (功能描述) Expand on k8s-operator make it can query job status and metrics

help wanted
feature

### Feature Description (功能描述) Add test case for PageRank/DegreeCentrality/WccTest/Lpa/Kcore algorithms, please refer: https://github.com/apache/incubator-hugegraph-computer/blob/c8065288b2c1136cfcadb44ce18be6855cf4a81c/computer-test/src/main/java/org/apache/hugegraph/computer/algorithm/community/trianglecount/TriangleCountTest.java#L36

good first issue
help wanted
feature