Jermy Li

Results 45 issues of Jermy Li

### Describe the bug RPC服务的方法中,参数使用自定义类型数组时(且自定义类型是接口interface),客户端调用后报错: `argument type mismatch`。 ### Expected behavior 希望可以使用任何类型的数组作为参数。比如有`interface Id`,可使用`Id[]`作为方法参数。 ### Actual behavior 服务端调用业务方法时,Object[]无法转换为Id[]而报错: ![image](https://user-images.githubusercontent.com/9625821/107850316-7120cc00-6e3c-11eb-96f5-8a402f6ef367.png) 更多记录信息可参考:https://blog.csdn.net/javeme/article/details/113802090 ### Steps to reproduce ### Minimal yet complete reproducer code (or...

remind

### Describe the bug A clear and concise description of what the bug is. ### Expected behavior Expect to add port() method to `com.alipay.sofa.rpc.server.Server` interface, we can get the actual...

question
remind

### Feature Description (功能描述) how-to: 1. register graph-create rpc service&client (like AuthManager register), before this we need to define an interface `GraphServerRpc`. 2. register graph rpc service&client by `HugeGraph.registerRpcServices()` for...

feature

### Feature Description (功能描述) 1. Login apache gitbox: https://gitbox.apache.org/boxer/ 2. Accept the invitation to join the apache team on GitHub: https://github.com/apache/ 3. Linked successfully: NOTE: PPMC need to subscribe to...

apache
guide

### Feature Description (功能描述) Need to check dependency with [licenses](https://www.apache.org/legal/resolved.html#category-x) as follows (refer to the TODO in #1644): - GPL - LGPL - AGPL how-to: ```sh config `license-maven-plugin` in pom.xml...

apache
todo

### Feature Description (功能描述) - 信通院《开源生态白皮书》: http://m.caict.ac.cn/yjcg/202010/P020201021698937496716.pdf - 为什么要开源(知乎问答): https://www.zhihu.com/question/33573424 - 《大教堂和集市》笔记: http://www.ruanyifeng.com/blog/2008/02/notes_on_the_cathedral_and_the_bazaar.html - Apache软件基金会介绍 & 加入到ASF有什么好处: https://willemjiang.github.io/opensource/2018/10/21/asf-introduction.html - 加入Apache基金会流程指南: https://alc-beijing.github.io/alc-site/post/apache-way/incubator-cook-book/ - HugeGraph 的 Apache 提案地址: https://cwiki.apache.org/confluence/display/INCUBATOR/HugeGraphProposal - HugeGraph 加入...

apache
guide

### Bug Type (问题类型) _No response_ ### Before submit - [X] 我已经确认现有的 [Issues](https://github.com/hugegraph/hugegraph/issues) 与 [FAQ](https://hugegraph.github.io/hugegraph-doc/guides/faq.html) 中没有相同 / 重复问题 ### Environment (环境信息) - Server Version: v0.11.x - Backend: RocksDB x nodes,...

bug
good first issue

### Feature Description (功能描述) NOTE: not sure if this is necessary. Now there are 10 repositories: 1. hugegraph: https://github.com/hugegraph/hugegraph.git 2. hugegraph-computer: https://github.com/hugegraph/hugegraph-computer.git 3. hugegraph-common: https://github.com/hugegraph/hugegraph-common.git 4. hugegraph-client: https://github.com/hugegraph/hugegraph-client.git 5. hugegraph-doc:...

apache
todo

Error encountered evaluating script: g.V().both().limit(100).barrier().local(groupCount().by(id)).order().by(values, decr) ```java g.V().both().limit(100).barrier().groupCount().by(id).unfold() // 1 ok g.V().both().limit(100).barrier().groupCount().by(id).unfold().order().by(values, decr) // 2 ok g.V().both().limit(100).barrier().local(groupCount().by(id)) // 3 ok, same as the 1st g.V().both().limit(100).barrier().local(groupCount().by(id)).order().by(values, decr) // 4 error ```

bug
gremlin

write UUID like: long: ``` id: 12345 ``` string: ``` id: "12345" ``` UUID: ``` id: { @type: "uuid", @value: "835e1153-9281-4957-8691-cf79258e90eb" } ``` Related https://github.com/hugegraph/hugegraph/pull/694 Reference: https://tech.signavio.com/2017/json-type-information https://stackoverflow.com/questions/44122782/jackson-deserialize-based-on-type https://github.com/FasterXML/jackson-docs/wiki/JacksonPolymorphicDeserialization

feature