janusgraph icon indicating copy to clipboard operation
janusgraph copied to clipboard

JanusGraph: an open-source, distributed graph database

Results 269 janusgraph issues
Sort by recently updated
recently updated
newest added

Backport #3122, #3130, #3093, #3121, #3089, #2874, #2881 ----- Thank you for contributing to JanusGraph! In order to streamline the review of the contribution we ask you to ensure the...

- Version: 0.6.2 - Storage Backend: inmemory - Mixed Index Backend: lucene - Link to discussed bug: https://lists.lfaidata.foundation/g/janusgraph-users/topic/92645197#6578 - Expected Behavior: I would expect the result to stay the same...

kind/bug/confirmed

If a mixed index consists of multiple properties, then an element can be indexed as long as it contains one of these properties. In this case, a query like `has(keyA,...

Fixes #555 Usage ``` mgmt = graph.openManagement() mgmt.set(, null) mgmt.commit() ``` I've confirmed locally that, once removed, configuration keys can't be retrieved using `ManagementSystem#get()` and don't appear anymore in `graph.getBackend().getGlobalSystemConfig()`....

cla: external

Bumps commons-configuration2 from 2.7 to 2.8.0. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.commons:commons-configuration2&package-manager=maven&previous-version=2.7&new-version=2.8.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...

dependencies
cla: external
java

As a follow-up of https://github.com/JanusGraph/janusgraph/pull/3149, we need to document how to use gremlin script engine, and how users can create their own engine for their custom use cases.

area/docs

we have create a schema and add some vertexes in Janusgraph. For example, ![捕获](https://user-images.githubusercontent.com/32957961/65753098-d3dad000-e140-11e9-8492-53e40e026ac8.PNG) However, when we want to adjust the schema structure and remove some PropertyKey like: mgmt.getPropertyKey('age').remove(). An...

kind/bug/possible

This commit refactors the codebase by changing all long-type ID into Object-type in all method signatures, return types, etc. No functionality is affected, except that IDs are now stored as...

cla: external

When LimitAdjustingIterator is disabled, limit is given, and there is more than one index query, we progressively execute index queries with proper limit rather than Query.NO_LIMIT. The optimization in average...

cla: external

When the slow query times out, gremlin-console will display Evaluation exceeded the configured 'evaluationTimeout' threshold of 30000 ms or evaluation was otherwise cancelled directly for request [g.V().count()]: null - try...