{"id":13508763,"url":"https://github.com/SJTU-IPADS/wukong","last_synced_at":"2025-03-30T11:32:47.647Z","repository":{"id":88967766,"uuid":"101623024","full_name":"SJTU-IPADS/wukong","owner":"SJTU-IPADS","description":"A graph-based distributed in-memory store that leverages efficient graph exploration to provide highly concurrent and low-latency queries over big linked data","archived":false,"fork":false,"pushed_at":"2022-07-28T09:06:02.000Z","size":114085,"stargazers_count":189,"open_issues_count":4,"forks_count":29,"subscribers_count":15,"default_branch":"master","last_synced_at":"2025-03-22T21:11:49.915Z","etag":null,"topics":["distributed-systems","graph-query-store","in-memory","low-latency-queries","rdma"],"latest_commit_sha":null,"homepage":"http://ipads.se.sjtu.edu.cn/projects/wukong","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SJTU-IPADS.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-08-28T08:45:06.000Z","updated_at":"2025-03-20T15:24:32.000Z","dependencies_parsed_at":"2023-06-13T09:00:15.279Z","dependency_job_id":null,"html_url":"https://github.com/SJTU-IPADS/wukong","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SJTU-IPADS%2Fwukong","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SJTU-IPADS%2Fwukong/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SJTU-IPADS%2Fwukong/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SJTU-IPADS%2Fwukong/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SJTU-IPADS","download_url":"https://codeload.github.com/SJTU-IPADS/wukong/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246314015,"owners_count":20757453,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["distributed-systems","graph-query-store","in-memory","low-latency-queries","rdma"],"created_at":"2024-08-01T02:00:58.086Z","updated_at":"2025-03-30T11:32:47.641Z","avatar_url":"https://github.com/SJTU-IPADS.png","language":"C++","funding_links":[],"categories":["C++","distributed-systems"],"sub_categories":[],"readme":"# Wukong for Linked Data\n\nWukong is a fast and distributed graph-structured store that leverages efficient graph exploration to proivde highly concurrent and low-latency query processing over big linked data.\n\n\n## Feature Highlights\n\n* High-performance and scalable in-memory graph store\n* Fast and concurrent SPARQL query processing by graph exloration\n* Fast communication by leveraging RDMA feature of InfiniBand network\n* A GPU extension of query engine for heterogenous (CPU/GPU) cluster\n* A type-centric SPARQL query plan optimizer\n\nFor more details see [Wukong Project](http://ipads.se.sjtu.edu.cn/projects/wukong), including new features, roadmap, instructions, etc.\n\n\n## Getting Started\n\n* [Installation](docs/INSTALL.md)\n* [Tutorials](docs/TUTORIALS.md)\n* [Manual](docs/COMMANDS.md)\n* [GPU extension](docs/gpu/TUTORIALS.md)\n* [Q\u0026A](docs/QA.md)\n\n\n## License\n\nWukong is released under the [Apache 2.0 license](http://www.apache.org/licenses/LICENSE-2.0.html).\n\nIf you use Wukong in your research, please cite our paper:\n   \n    @inproceedings{osdi2016wukong,\n     author = {Shi, Jiaxin and Yao, Youyang and Chen, Rong and Chen, Haibo and Li, Feifei},\n     title = {Fast and Concurrent RDF Queries with RDMA-based Distributed Graph Exploration},\n     booktitle = {12th USENIX Symposium on Operating Systems Design and Implementation},\n     series = {OSDI '16},\n     year = {2016},\n     month = Nov,\n     isbn = {978-1-931971-33-1},\n     address = {GA},\n     pages = {317--332},\n     url = {https://www.usenix.org/conference/osdi16/technical-sessions/presentation/shi},\n     publisher = {USENIX Association},\n    }\n\n\n## Academic and Reference Papers\n\n[**OSDI**] [Fast and Concurrent RDF Queries with RDMA-based Distributed Graph Exploration](docs/papers/wukong-osdi16.pdf). Jiaxin Shi, Youyang Yao, Rong Chen, Haibo Chen, and Feifei Li. Proceedings of 12th USENIX Symposium on Operating Systems Design and Implementation, Savannah, GA, US, Nov, 2016. \n\n[**SOSP**] [Sub-millisecond Stateful Stream Querying over Fast-evolving Linked Data](docs/papers/wukong+s-sosp17.pdf). Yunhao Zhang, Rong Chen, and Haibo Chen. Proceedings of the 26th ACM Symposium on Operating Systems Principles, Shanghai, China, October, 2017. \n\n[**USENIX ATC**] [Fast and Concurrent RDF Queries using RDMA-assisted GPU Graph Exploration](docs/papers/wukong+g-atc18.pdf). Siyuan Wang, Chang Lou, Rong Chen, and Haibo Chen. Proceedings of 2018 USENIX Annual Technical Conference, Boston, MA, US, July 2018.\n\n[**USENIX ATC**] [Pragh: Locality-preserving Graph Traversal with Split Live Migration](docs/papers/wukong+m-atc19.pdf). Xiating Xie, Xingda Wei, Rong Chen, and Haibo Chen. Proceedings of 2019 USENIX Annual Technical Conference, Renton, WA, US, July 2019.\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FSJTU-IPADS%2Fwukong","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FSJTU-IPADS%2Fwukong","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FSJTU-IPADS%2Fwukong/lists"}