Siyuan Zhang
Siyuan Zhang
> Those changes should happen in vineyard, right? Yes, would you like to transfer the issue to vineyard? I think that's ok.
Hi, @tushar5526 , Thanks for your attention to vineyard! As the description says, vineyard aims to align with Apache-arrow with its data types, and we have implemented some data structure...
And the vineyard-dev pip wheel.
```proto syntax = "proto3"; //////////////////////////////////////////////////////////////////////////////// // // Connecting coordinator request/response protos. // //////////////////////////////////////////////////////////////////////////////// message ConnectSessionRequest { string endpoint = 1; string version = 2; }; message ConnectSessionResponse { Code status_code...
> Can merge the main branch to see if this has been fixed. @siyuan0322 Merged the main and it's still failing.
I have some clarifications here: https://graphscope.io/docs/frequently_asked_questions.html
> __memcpy_ssse3_back It seems you're running out of memory. What environment are you using and how many memory do you have? If you're in a docker environment, you need to...
`limit` seems has been fixed by some recent commits; `count` may need to refactor the `GlobalGraphQuery` implementation in store.
Thanks for reporting! Could you paste the codes so I can get more clear about it. I think it should first drop e together with the src and dst, then...
> I know should drop edge first according to doc. yes, I accidentally drop vertex first. > > ``` > schema.drop(A) > schema.update() > schema.drop(E, A, A) > schema.update() >...