GraphScope
GraphScope copied to clipboard
🔨 🍇 💻 🚀 GraphScope: A One-Stop Large-Scale Graph Computing System from Alibaba | 一站式图计算系统
## What do these changes do? ## Related issue number Fixes
Currently, graph loading is done concurrently at the granularity of files. However, there is a significant size difference between files. We should perform concurrency at the granularity of `RecordBatch`.
[BUG]
你好,我是大二的学生,最近在看这块开源代码。提一个问题,在version_manager.cpp里的release_insert_timestamp函数,里面的buf_这个变量起什么作用呢? 我看整个buf_没有进行使用,望解答,谢谢~!
Currently GraphScope Interactive only support one property on edge. In real world production scenarios, multiple properties for one edge is very common. For the first step, we can support storing...
For `interactive`, `VARCHAR` has already been supported by storage level, but yet not supported by compiler and compute engine.
Need one more configuration in schema, to define whether the edge will be added/updated/deleted. ```yaml vertex_type_pair_relations: source_vertex: person destination_vertex: person relation: MANY_TO_MANY x_csr_params: edge_storage_strategy: BOTH_OUT_IN mutability: true ``` Default value...
as titled. move the functionalities in `flexbuild` in `/flex` to `gsctl flexbuild`
Add a subcommand `gsctl flexbuild` to gsctl, to build Flex with the commands listed here: - https://github.com/alibaba/GraphScope/tree/main/flex previously, these functions are implemented in - https://github.com/alibaba/GraphScope/blob/main/flex/flexbuild which is auto-generated by bash.ly,...
Neo4j itself supports stored procedures with variably sized arrays as input, and we have also added support for this feature in this PR. However, currently, we only support C++ procedures...