Siyuan Zhang

Results 48 issues of Siyuan Zhang

Current authentication implementation is way too naive. Reference: - [Salted Challenge Response Authentication Mechanism](https://en.wikipedia.org/wiki/Salted_Challenge_Response_Authentication_Mechanism) - [challenge-response-authentication](https://openwall.info/wiki/people/solar/algorithms/challenge-response-authentication) - [adding-salt-to-hashing-a-better-way-to-store-passwords](https://auth0.com/blog/adding-salt-to-hashing-a-better-way-to-store-passwords/) Related PR: #1579 #1679 Links #1678

component:store

Standalone deployment provides a more modularize design, and better developing and testing experience. To achieve this, we may need to - [ ] Provide a way to deploy Vineyard, GAIA...

component:gie

**Describe the bug** Some gremlin queries are very slow, which are supposed to be very fast. - [x] g.V().limit(1) # Sometimes 1 min, sometimes < 1s. - [ ] g.V().count()...

bug

Setup a regression test framework with large data, and test that the new version doesn't break functionalities in the previous versions. - [ ] test on groot store interface -...

component:dev-infra

Currently a query may execute a quite long time and would block the incoming query afterward. We need to - [ ] Make sure the previous blocking query won't block...

rust

To deploy a lightweight GAE/libgrape-lite in Kubernetes, dedicated for graph analytics workload. Further, maybe we could use Kubernetes Job for on-demand scheduling.

component:gae

Currently, out `make graphscope` will trigger the `make install`, which is not conform to the common mindset. To be clear, the `make` should not involved any `install` phase, it can...

component:dev-infra

In order to mitigate the pressure of dealing with graphs with billions of vertices. Since the global vertex map implementation saves a copy of all vertices in each partition, scale...

component:gae
component:vineyard

Our code coverage could be low due to following reasons: - Coverage report is merged from multiple stages (jobs) - Jobs could be skipped. Maybe we could give `workflow_dispatch` a...

priority:low

We build graphscope image from the ubuntu:20.04 everytime, and we suffer from the network failure quite often when `apt install` or `wget hadoop`, and it takes quite some time. I...

enhancement