Skip to content

Introduce hash join operator as alternative to bound joins #13

@aschwarte10

Description

@aschwarte10

In certain use situations bound joins (or generally any nested loop evaluation) might not be the optimal evaluation algorithm.

Consider the following example:

?city a :City .
?city :inRegion :BW .

There might be a large number of cities in the database, which would cause a large intermediate result set as input to the nested loop join.

If there are factors like latency involved, it might make sense to fetch the result sets of both graph patterns individually, and perform a hash join locally.

This issue is about adding the appropriate operator.

It is yet to be decided how and in which cases to activate it.

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type

Projects

No projects

Relationships

None yet

Development

No branches or pull requests

Issue actions