Search in sources :

Example 1 with GraknSystemKeyspaceSession

use of ai.grakn.engine.GraknSystemKeyspaceSession in project grakn by graknlabs.

the class EngineContext method startGraknEngineServer.

private GraknEngineServer startGraknEngineServer(RedisWrapper redisWrapper) throws IOException {
    EngineID id = EngineID.me();
    GraknEngineStatus status = new GraknEngineStatus();
    MetricRegistry metricRegistry = new MetricRegistry();
    // distributed locks
    LockProvider lockProvider = new JedisLockProvider(redisWrapper.getJedisPool());
    graknKeyspaceStore = GraknKeyspaceStoreImpl.create(new GraknSystemKeyspaceSession(config));
    // tx-factory
    engineGraknTxFactory = EngineGraknTxFactory.create(lockProvider, config, graknKeyspaceStore);
    // post-processing
    IndexStorage indexStorage = RedisIndexStorage.create(redisWrapper.getJedisPool(), metricRegistry);
    CountStorage countStorage = RedisCountStorage.create(redisWrapper.getJedisPool(), metricRegistry);
    IndexPostProcessor indexPostProcessor = IndexPostProcessor.create(lockProvider, indexStorage);
    CountPostProcessor countPostProcessor = CountPostProcessor.create(config, engineGraknTxFactory, lockProvider, metricRegistry, countStorage);
    PostProcessor postProcessor = PostProcessor.create(indexPostProcessor, countPostProcessor);
    GrpcOpenRequestExecutor requestExecutor = new GrpcOpenRequestExecutorImpl(engineGraknTxFactory);
    Server server = ServerBuilder.forPort(0).addService(new GrpcGraknService(requestExecutor, postProcessor)).build();
    GrpcServer grpcServer = GrpcServer.create(server);
    GraknTestUtil.allocateSparkPort(config);
    QueueSanityCheck queueSanityCheck = new RedisSanityCheck(redisWrapper);
    GraknEngineServer graknEngineServer = GraknEngineServerFactory.createGraknEngineServer(id, config, status, spark, Collections.emptyList(), grpcServer, engineGraknTxFactory, metricRegistry, queueSanityCheck, lockProvider, postProcessor, graknKeyspaceStore);
    graknEngineServer.start();
    // Read the automatically allocated ports and write them back into the config
    config.setConfigProperty(GraknConfigKey.GRPC_PORT, server.getPort());
    return graknEngineServer;
}
Also used : GraknSystemKeyspaceSession(ai.grakn.engine.GraknSystemKeyspaceSession) EngineID(ai.grakn.engine.util.EngineID) GraknEngineServer(ai.grakn.engine.GraknEngineServer) Server(io.grpc.Server) GrpcServer(ai.grakn.engine.rpc.GrpcServer) GrpcOpenRequestExecutorImpl(ai.grakn.engine.rpc.GrpcOpenRequestExecutorImpl) IndexPostProcessor(ai.grakn.engine.task.postprocessing.IndexPostProcessor) MetricRegistry(com.codahale.metrics.MetricRegistry) GrpcOpenRequestExecutor(ai.grakn.grpc.GrpcOpenRequestExecutor) GraknEngineServer(ai.grakn.engine.GraknEngineServer) GrpcServer(ai.grakn.engine.rpc.GrpcServer) GraknEngineStatus(ai.grakn.engine.GraknEngineStatus) CountPostProcessor(ai.grakn.engine.task.postprocessing.CountPostProcessor) JedisLockProvider(ai.grakn.engine.lock.JedisLockProvider) LockProvider(ai.grakn.engine.lock.LockProvider) JedisLockProvider(ai.grakn.engine.lock.JedisLockProvider) IndexStorage(ai.grakn.engine.task.postprocessing.IndexStorage) RedisIndexStorage(ai.grakn.engine.task.postprocessing.redisstorage.RedisIndexStorage) QueueSanityCheck(ai.grakn.engine.data.QueueSanityCheck) CountStorage(ai.grakn.engine.task.postprocessing.CountStorage) RedisCountStorage(ai.grakn.engine.task.postprocessing.redisstorage.RedisCountStorage) RedisSanityCheck(ai.grakn.engine.data.RedisSanityCheck) IndexPostProcessor(ai.grakn.engine.task.postprocessing.IndexPostProcessor) CountPostProcessor(ai.grakn.engine.task.postprocessing.CountPostProcessor) PostProcessor(ai.grakn.engine.task.postprocessing.PostProcessor) GrpcGraknService(ai.grakn.engine.rpc.GrpcGraknService)

Aggregations

GraknEngineServer (ai.grakn.engine.GraknEngineServer)1 GraknEngineStatus (ai.grakn.engine.GraknEngineStatus)1 GraknSystemKeyspaceSession (ai.grakn.engine.GraknSystemKeyspaceSession)1 QueueSanityCheck (ai.grakn.engine.data.QueueSanityCheck)1 RedisSanityCheck (ai.grakn.engine.data.RedisSanityCheck)1 JedisLockProvider (ai.grakn.engine.lock.JedisLockProvider)1 LockProvider (ai.grakn.engine.lock.LockProvider)1 GrpcGraknService (ai.grakn.engine.rpc.GrpcGraknService)1 GrpcOpenRequestExecutorImpl (ai.grakn.engine.rpc.GrpcOpenRequestExecutorImpl)1 GrpcServer (ai.grakn.engine.rpc.GrpcServer)1 CountPostProcessor (ai.grakn.engine.task.postprocessing.CountPostProcessor)1 CountStorage (ai.grakn.engine.task.postprocessing.CountStorage)1 IndexPostProcessor (ai.grakn.engine.task.postprocessing.IndexPostProcessor)1 IndexStorage (ai.grakn.engine.task.postprocessing.IndexStorage)1 PostProcessor (ai.grakn.engine.task.postprocessing.PostProcessor)1 RedisCountStorage (ai.grakn.engine.task.postprocessing.redisstorage.RedisCountStorage)1 RedisIndexStorage (ai.grakn.engine.task.postprocessing.redisstorage.RedisIndexStorage)1 EngineID (ai.grakn.engine.util.EngineID)1 GrpcOpenRequestExecutor (ai.grakn.grpc.GrpcOpenRequestExecutor)1 MetricRegistry (com.codahale.metrics.MetricRegistry)1