GraphScope
GraphScope copied to clipboard
🔨 🍇 💻 🚀 GraphScope: A One-Stop Large-Scale Graph Computing System from Alibaba | 一站式图计算系统
Currently, we only support `init` option. i.e. ```yaml graph: graph_algo loading_config: data_source: scheme: file # file, oss, s3, hdfs; only file is supported now location: /home/graphscope/graph_algo/ import_option: init ``` It...
**Describe the bug** Pull pre Image failed on K8S cluster **To Reproduce** Steps to reproduce the behavior: 1. install graphscope pre ``` pip3 install -U graphscope-client --pre -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host...
Currently, when creating a new graph, we actually only dump the schema onto the disk and do not actually create a truly empty graph(here empty means no vertices nor edges...
Troubleshooting and debugging has been a long pain for our system (e.g., #2311, #3190, #288, #725 ) Currently there are no unified and effective methods or mechanisms for logging and...
**Describe the bug** add label for k8s worker ``` kubectl label nodes node-worker graphscope=1 ``` create session ``` session = graphscope.session( k8s_coordinator_cpu=1, k8s_coordinator_mem="1Gi", k8s_vineyard_cpu=4, k8s_vineyard_mem="5Gi", vineyard_shared_mem="5Gi", k8s_engine_cpu=2, k8s_namespace='gs-new-orc-jacky100', k8s_engine_mem="5Gi", num_workers=3,...
When running Adhoc query on GraphScope Interactive, most time is spent on runtime code generation and compilation. Here is a rough test case on Movie graph: Simple Query: `MATCH(n) return...
Our codebase has gained to (CRAZY) 2.5G, with a single `git clone`. Need to reduce the size, urgently.
Currently we delay the loading and creation of procedures when it is need by a query. Since we will not support dynamic creation of procedures, maybe we should load the...
Interactive admin service currently use a subprocess invoke `bulk_loader` to import data to graph. But the graph loading subprocess will block the http request, until loading process succeed/failed. Refactor the...
Reduce the size of interactive-runtime, removing unused files.