com.hazelcast.simulator.tests.map.PutAsyncAndThenTest Maven / Gradle / Ivy
/*
* Copyright (c) 2008-2017, Hazelcast, Inc. All Rights Reserved.
*
* 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.hazelcast.simulator.tests.map;
import com.hazelcast.core.ExecutionCallback;
import com.hazelcast.core.ICompletableFuture;
import com.hazelcast.core.IMap;
import com.hazelcast.simulator.test.AbstractTest;
import com.hazelcast.simulator.test.BaseThreadState;
import com.hazelcast.simulator.test.TestException;
import com.hazelcast.simulator.test.annotations.Setup;
import com.hazelcast.simulator.test.annotations.Teardown;
import com.hazelcast.simulator.test.annotations.TimeStep;
import com.hazelcast.simulator.tests.helpers.KeyLocality;
import com.hazelcast.simulator.utils.ExceptionReporter;
import java.util.concurrent.Semaphore;
import static com.hazelcast.simulator.tests.helpers.KeyLocality.SHARED;
import static com.hazelcast.simulator.tests.helpers.KeyUtils.generateStringKeys;
import static java.util.concurrent.TimeUnit.MILLISECONDS;
public class PutAsyncAndThenTest extends AbstractTest {
// properties
public int keyCount = 1000;
public int maxConcurrentCallsPerWorker = 1000;
public long acquireTimeoutMs = 2 * 60 * 1000;
public KeyLocality keyLocality = SHARED;
private IMap map;
private String[] keys;
@Setup
public void setUp() {
map = targetInstance.getMap(name);
keys = generateStringKeys(name, keyCount, keyLocality, targetInstance);
}
@TimeStep
public void timeStep(ThreadState state) throws Exception {
if (!state.semaphore.tryAcquire(1, acquireTimeoutMs, MILLISECONDS)) {
throw new TestException("Failed to acquire a license from the semaphore within the given timeout");
}
String key = keys[state.randomInt(keyCount)];
ICompletableFuture f = (ICompletableFuture) map.putAsync(key, "");
f.andThen(state);
}
public class ThreadState extends BaseThreadState implements ExecutionCallback {
private final Semaphore semaphore = new Semaphore(maxConcurrentCallsPerWorker);
@Override
public void onResponse(String o) {
semaphore.release();
}
@Override
public void onFailure(Throwable throwable) {
ExceptionReporter.report(name, throwable);
}
}
@Teardown
public void tearDown() {
map.destroy();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy