All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ai.grakn.engine.task.postprocessing.redisstorage.RedisCountStorage Maven / Gradle / Ivy

There is a newer version: 1.4.3
Show newest version
/*
 * Grakn - A Distributed Semantic Database
 * Copyright (C) 2016-2018 Grakn Labs Limited
 *
 * Grakn is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Grakn is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with Grakn. If not, see .
 */

package ai.grakn.engine.task.postprocessing.redisstorage;

import ai.grakn.Keyspace;
import ai.grakn.concept.ConceptId;
import ai.grakn.engine.task.postprocessing.CountStorage;
import com.codahale.metrics.MetricRegistry;
import redis.clients.jedis.Jedis;
import redis.clients.util.Pool;

/**
 *
 * 

* Stores a cache of counts so that we can know which {@link ai.grakn.concept.Type}s to shard when they have too many * instances. *

* * @author fppt */ public class RedisCountStorage implements CountStorage { private final RedisStorage redisStorage; private RedisCountStorage(Pool jedisPool, MetricRegistry metricRegistry){ redisStorage = new RedisStorage(jedisPool, metricRegistry); } public static RedisCountStorage create(Pool jedisPool, MetricRegistry metricRegistry) { return new RedisCountStorage(jedisPool, metricRegistry); } @Override public long incrementInstanceCount(Keyspace keyspace, ConceptId conceptId, long incrementBy) { return incrementCount(getKeyNumInstances(keyspace, conceptId), incrementBy); } @Override public long incrementShardCount(Keyspace keyspace, ConceptId conceptId, long incrementBy) { return incrementCount(getKeyNumShards(keyspace, conceptId), incrementBy); } @Override public long getInstanceCount(Keyspace keyspace, ConceptId conceptId) { return getCount(getKeyNumInstances(keyspace, conceptId)); } @Override public long getShardCount(Keyspace keyspace, ConceptId conceptId) { return getCount(getKeyNumShards(keyspace, conceptId)); } /** * Adjusts the count for a specific key. * * @param key the key of the value to adjust * @param incrementBy the number to adjust the key by * @return true */ public long incrementCount(String key, long incrementBy){ return redisStorage.contactRedis(jedis -> { if(incrementBy != 0) { return jedis.incrBy(key, incrementBy); //Number is decremented when count is negative } else { return getCount(key); } }); } /** * Gets the count for the specified key. A count of 0 is returned if the key is not in redis * * @param key the key stored in redis * @return the current count. */ public long getCount(String key){ return redisStorage.contactRedis(jedis -> { String value = jedis.get(key); if(value == null) return 0L; return Long.parseLong(value); }); } /** * All the valid keys which map to values in the redis cache */ public static String getKeyNumInstances(Keyspace keyspace, ConceptId conceptId){ return "NI_"+ keyspace + "_" + conceptId.getValue(); } public static String getKeyNumShards(Keyspace keyspace, ConceptId conceptId){ return "NS_" + keyspace + "_" + conceptId.getValue(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy