forked from thinkaurelius/titan
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added GraphProvider.Descriptor (as required for computer test GraphProviders). Still seeing some failing tests on the groovy side so this branch isn't building yet.
- Loading branch information
1 parent
8a77f02
commit 79c9f9b
Showing
5 changed files
with
13 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,13 +5,16 @@ | |
import com.thinkaurelius.titan.diskstorage.berkeleyje.BerkeleyJETx; | ||
import com.thinkaurelius.titan.diskstorage.configuration.ModifiableConfiguration; | ||
import com.thinkaurelius.titan.graphdb.configuration.GraphDatabaseConfiguration; | ||
import com.thinkaurelius.titan.graphdb.olap.computer.FulgoraGraphComputer; | ||
import org.apache.tinkerpop.gremlin.GraphProvider; | ||
|
||
import java.time.Duration; | ||
import java.util.Set; | ||
|
||
/** | ||
* @author Matthias Broecheler ([email protected]) | ||
*/ | ||
@GraphProvider.Descriptor(computer = FulgoraGraphComputer.class) | ||
public class BerkeleyGraphComputerProvider extends AbstractTitanGraphComputerProvider { | ||
|
||
@Override | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,10 +4,13 @@ | |
import com.thinkaurelius.titan.blueprints.AbstractTitanGraphComputerProvider; | ||
import com.thinkaurelius.titan.blueprints.AbstractTitanGraphProvider; | ||
import com.thinkaurelius.titan.diskstorage.configuration.ModifiableConfiguration; | ||
import com.thinkaurelius.titan.graphdb.olap.computer.FulgoraGraphComputer; | ||
import org.apache.tinkerpop.gremlin.GraphProvider; | ||
|
||
/** | ||
* @author Matthias Broecheler ([email protected]) | ||
*/ | ||
@GraphProvider.Descriptor(computer = FulgoraGraphComputer.class) | ||
public class ThriftGraphComputerProvider extends AbstractTitanGraphComputerProvider { | ||
|
||
@Override | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,14 +2,17 @@ | |
|
||
import com.thinkaurelius.titan.HBaseStorageSetup; | ||
import com.thinkaurelius.titan.diskstorage.configuration.ModifiableConfiguration; | ||
import com.thinkaurelius.titan.graphdb.olap.computer.FulgoraGraphComputer; | ||
import org.apache.commons.configuration.Configuration; | ||
import org.apache.tinkerpop.gremlin.GraphProvider; | ||
import org.apache.tinkerpop.gremlin.structure.Graph; | ||
|
||
import java.io.IOException; | ||
|
||
/** | ||
* @author Matthias Broecheler ([email protected]) | ||
*/ | ||
@GraphProvider.Descriptor(computer = FulgoraGraphComputer.class) | ||
public class HBaseGraphComputerProvider extends AbstractTitanGraphComputerProvider { | ||
|
||
@Override | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters