movee8
movee8
### Feature Description (功能描述) 在有存量数据的情况下创建索引,当前有可能会失败,索引状态为invalid,是否可以提供一个索引修复工具,在线修复索引类相关问题?
## Feature Description: 当前GraphManager提供了两个方法分别删除vertex和edge ``` void removeVertex(Object vertexId) void removeEdge(String edgeId) ``` 请问可以提供相应的批量删除接口吗?类似于这样的接口: ``` void removeVertices(Collection vertexIds) void removeEdges(Collection edgeIds) ``` ,这样批量删除时效率应该高点 另外,是否可以提供一个根据两端的vertex id,edge label,sort key为条件的删除接口。我们的场景是知道两端的节点和链路信息,但是不知道edge的id(除非查一次数据库或用gremlin语句)
## Feature Description: 当前java client创建Edge时需要传入源和目的vertex的实例,但是创建edge时应该只要vertex的id信息。是否支持直接指定vertex的id值,这样可以减少两个vertex实例的创建 当前创建一个edge需要类似这样操作: ``` Vertex marko = new Vertex("person"); marko.id("marko"); Vertex lop = new Vertex("software"); lop.id("lop"); Edge markoCreateLop = new Edge("created").source(marko).target(lop) .property("date", "2017-12-10").property("weight", 0.8); ``` 是否可以支持以下的方式直接创建: ```...
## Feature Description: 当前查询Vertex或Edge时,要求查询条件中涉及到的所有属性都建立索引,否则报告异常。以下的查询是否也可以支持正常查询: 查询条件中存在一个或多个索引,但是个别属性没有建立索引 比如: 我有一个label为person的vertex,它有两个属性name和age,其中name建立和索引,但是age没有建立索引 当前一下查询: ``` g.V().hasLabel('person').has('name','liming').has('age',28) ``` 会报异常: ``` Don't accept query based on properties [name] that are not indexed in label 'Software', may not match...
## Feature Description: 使用java client与hugegraph交互时,如果vertex的id由应用方指定,需要为创建的Vertex实例添加id值 但是当前添加id值的方法为: ``` public void id(Object id) { this.id = id; } ``` 导致创建一个vertex对象得如下所示: ``` Vertex marko = new Vertex("person").property("name", "marko") .property("age", 29).property("city", "beijing"); marko.id("marko"); ```...
## Feature Description: 在我们的应用场景中,hugegraph的存储后端为cassandra,数据库中的vertex和edge的属性经常修改,所以期望hugegraph的table的compact strategy为Leveled Compaction Strategy,但是当前在hugegraph.properties配置文件中不支持配置cassandra table的Compaction Strategy,cassandra table的compact strategy固定为SizeTiered Compaction Strategy 请问可以支持在hugegraph.properties中支持配置cassandra table的Compaction Strategy吗?
hi,i run into a problem while put/get files to/from ftp server using ftpserverlib as core enviroment: linux kernel version: 2.6.32_1-18-0-0 linux distribution version: CentOS release 6.3 (Final) fclairamb/ftpserver version: 0.11.0...
我有一个代码片段: ``` String jsonStr = """ { "a": { "b": [ { "x": 3 }, { "x": 4 } ] } } """; JSONObject jsonObj = new JSONObject(jsonStr); Object value...