
com.netflix.ndbench.plugin.dyno.DynoJedis Maven / Gradle / Ivy
/*
* Copyright 2016 Netflix, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package com.netflix.ndbench.plugin.dyno;
import com.google.inject.Singleton;
import com.netflix.dyno.connectionpool.Host;
import com.netflix.dyno.connectionpool.HostSupplier;
import com.netflix.dyno.jedis.DynoJedisClient;
import com.netflix.ndbench.api.plugin.DataGenerator;
import com.netflix.ndbench.api.plugin.NdBenchClient;
import com.netflix.ndbench.api.plugin.annotations.NdBenchClientPlugin;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.atomic.AtomicReference;
/**
* @author vchella
*/
@Singleton
@NdBenchClientPlugin("DynoJedis")
public class DynoJedis implements NdBenchClient {
private static final Logger logger = LoggerFactory.getLogger(DynoJedis.class);
private static final String ResultOK = "Ok";
private static final String CacheMiss = null;
private static final String ClusterName = "dynomite_redis";
private DataGenerator dataGenerator;
private final AtomicReference jedisClient = new AtomicReference<>(null);
@Override
public void init(DataGenerator dataGenerator) throws Exception {
this.dataGenerator = dataGenerator;
if (jedisClient.get() != null) {
return;
}
logger.info("Initing dyno jedis client");
logger.info("\nDynomite Cluster: " + ClusterName);
HostSupplier hSupplier = () -> {
List hosts = new ArrayList<>();
hosts.add(new Host("localhost", 8102, "local-dc", Host.Status.Up));
return hosts;
};
DynoJedisClient jClient = new DynoJedisClient.Builder().withApplicationName(ClusterName)
.withDynomiteClusterName(ClusterName).withHostSupplier(hSupplier).build();
jedisClient.set(jClient);
}
@Override
public String readSingle(String key) throws Exception {
String res = jedisClient.get().get(key);
if (res != null) {
if (res.isEmpty()) {
throw new Exception("Data retrieved is not ok ");
}
} else {
return CacheMiss;
}
return ResultOK;
}
@Override
public String writeSingle(String key) throws Exception {
String result = jedisClient.get().set(key, dataGenerator.getRandomValue());
if (!"OK".equals(result)) {
logger.error("SET_ERROR: GOT " + result + " for SET operation");
throw new RuntimeException(String.format("DynoJedis: value %s for SET operation is NOT VALID", key));
}
return result;
}
/**
* Perform a bulk read operation
* @return a list of response codes
* @throws Exception
*/
public List readBulk(final List keys) throws Exception {
throw new UnsupportedOperationException("bulk operation is not supported");
}
/**
* Perform a bulk write operation
* @return a list of response codes
* @throws Exception
*/
public List writeBulk(final List keys) throws Exception {
throw new UnsupportedOperationException("bulk operation is not supported");
}
/**
* Shutdown the client
*/
@Override
public void shutdown() throws Exception {
if (jedisClient.get() != null) {
jedisClient.get().stopClient();
jedisClient.set(null);
}
}
/**
* Get connection information
*/
@Override
public String getConnectionInfo() throws Exception {
return String.format("DynoJedis Plugin - ConnectionInfo ::Cluster Name - %s", ClusterName);
}
@Override
public String runWorkFlow() throws Exception {
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy