JanusGraph/janusgraph

Create JanusGraphIndex::describe method to include more information

Open

#3,126 opened on 2022年6月30日

GitHub で見る
 (0 comments) (0 reactions) (0 assignees)Java (1,137 forks)batch import
area/indexgood first issue

Repository metrics

Stars
 (4,985 stars)
PR merge metrics
 (平均マージ 3d 18h) (30d で 12 merged PRs)

説明

Currently, JanusGraphIndexWrapper::toString simply returns the index name. We could create a new describe method (or any other name) so that user could more easily retrieve information about that index. For example, we could include the status of each field key. Currently, it is a bit cumbersome to retrieve such information (see below):

gremlin> mgmt.getGraphIndex("mixed_demo")
==>mixed_demo
gremlin> mgmt.getGraphIndex("mixed_demo").getFieldKeys()
==>name
==>update_time
gremlin> mgmt.getGraphIndex("mixed_demo").getParametersFor(mgmt.getPropertyKey("name"))
==>mapping->STRING
==>mapped-name->name
==>status->ENABLED

コントリビューターガイド