foundationdb/fdbserver/workloads/WriteBandwidth.actor.cpp

142 lines
5.8 KiB
C++
Raw Normal View History

2017-05-26 04:48:44 +08:00
/*
* WriteBandwidth.actor.cpp
*
* This source file is part of the FoundationDB open source project
*
* Copyright 2013-2018 Apple Inc. and the FoundationDB project authors
*
2017-05-26 04:48:44 +08:00
* 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
*
2017-05-26 04:48:44 +08:00
* http://www.apache.org/licenses/LICENSE-2.0
*
2017-05-26 04:48:44 +08:00
* 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.
*/
#include <boost/lexical_cast.hpp>
2017-05-26 04:48:44 +08:00
#include "fdbrpc/ContinuousSample.h"
#include "fdbclient/NativeAPI.actor.h"
#include "fdbserver/TesterInterface.actor.h"
#include "fdbserver/WorkerInterface.actor.h"
#include "fdbserver/workloads/workloads.actor.h"
#include "fdbserver/workloads/BulkSetup.actor.h"
#include "flow/actorcompiler.h" // This must be the last #include.
2017-05-26 04:48:44 +08:00
struct WriteBandwidthWorkload : KVWorkload {
int keysPerTransaction;
double testDuration, warmingDelay, loadTime, maxInsertRate;
std::string valueString;
vector<Future<Void>> clients;
PerfIntCounter transactions, retries;
ContinuousSample<double> commitLatencies, GRVLatencies;
WriteBandwidthWorkload(WorkloadContext const& wcx)
: KVWorkload(wcx),
commitLatencies( 2000 ), GRVLatencies( 2000 ),
loadTime( 0.0 ), transactions("Transactions"), retries("Retries")
{
testDuration = getOption( options, LiteralStringRef("testDuration"), 10.0 );
keysPerTransaction = getOption( options, LiteralStringRef("keysPerTransaction"), 100 );
valueString = std::string( maxValueBytes, '.' );
warmingDelay = getOption( options, LiteralStringRef("warmingDelay"), 0.0 );
maxInsertRate = getOption( options, LiteralStringRef("maxInsertRate"), 1e12 );
}
virtual std::string description() { return "WriteBandwidth"; }
virtual Future<Void> setup( Database const& cx ) { return _setup( cx, this ); }
virtual Future<Void> start( Database const& cx ) { return _start( cx, this ); }
virtual Future<bool> check( Database const& cx ) { return true; }
virtual void getMetrics( vector<PerfMetric>& m ) {
double duration = testDuration;
int writes = transactions.getValue() * keysPerTransaction;
m.push_back( PerfMetric( "Measured Duration", duration, true ) );
m.push_back( PerfMetric( "Transactions/sec", transactions.getValue() / duration, false ) );
m.push_back( PerfMetric( "Operations/sec", writes / duration, false ) );
m.push_back( transactions.getMetric() );
m.push_back( retries.getMetric() );
m.push_back( PerfMetric( "Mean load time (seconds)", loadTime, true ) );
m.push_back( PerfMetric( "Write rows", writes, false ) );
m.push_back( PerfMetric( "Mean GRV Latency (ms)", 1000 * GRVLatencies.mean(), true ) );
m.push_back( PerfMetric( "Median GRV Latency (ms, averaged)", 1000 * GRVLatencies.median(), true ) );
m.push_back( PerfMetric( "90% GRV Latency (ms, averaged)", 1000 * GRVLatencies.percentile( 0.90 ), true ) );
m.push_back( PerfMetric( "98% GRV Latency (ms, averaged)", 1000 * GRVLatencies.percentile( 0.98 ), true ) );
m.push_back( PerfMetric( "Mean Commit Latency (ms)", 1000 * commitLatencies.mean(), true ) );
m.push_back( PerfMetric( "Median Commit Latency (ms, averaged)", 1000 * commitLatencies.median(), true ) );
m.push_back( PerfMetric( "90% Commit Latency (ms, averaged)", 1000 * commitLatencies.percentile( 0.90 ), true ) );
m.push_back( PerfMetric( "98% Commit Latency (ms, averaged)", 1000 * commitLatencies.percentile( 0.98 ), true ) );
m.push_back( PerfMetric( "Write rows/sec", writes / duration, false ) );
m.push_back( PerfMetric( "Bytes written/sec", (writes * (keyBytes + (minValueBytes+maxValueBytes)*0.5)) / duration, false ) );
}
Value randomValue() { return StringRef( (uint8_t*)valueString.c_str(), g_random->randomInt(minValueBytes, maxValueBytes+1) ); }
Standalone<KeyValueRef> operator()( uint64_t n ) {
return KeyValueRef( keyForIndex( n, false ), randomValue() );
}
ACTOR Future<Void> _setup( Database cx, WriteBandwidthWorkload *self ) {
state Promise<double> loadTime;
state Promise<vector<pair<uint64_t, double> > > ratesAtKeyCounts;
wait( bulkSetup( cx, self, self->nodeCount, loadTime, true, self->warmingDelay, self->maxInsertRate ) );
2017-05-26 04:48:44 +08:00
self->loadTime = loadTime.getFuture().get();
return Void();
}
ACTOR Future<Void> _start( Database cx, WriteBandwidthWorkload *self ) {
for( int i = 0; i < self->actorCount; i++ ) {
self->clients.push_back( self->writeClient( cx, self ) );
}
wait( timeout( waitForAll( self->clients ), self->testDuration, Void() ) );
2017-05-26 04:48:44 +08:00
self->clients.clear();
return Void();
}
ACTOR Future<Void> writeClient( Database cx, WriteBandwidthWorkload *self ) {
loop {
state Transaction tr( cx );
state uint64_t startIdx = g_random->random01() * (self->nodeCount - self->keysPerTransaction);
loop {
try {
state double start = now();
2019-04-18 07:04:10 +08:00
wait(success(tr.getReadVersion()));
2017-05-26 04:48:44 +08:00
self->GRVLatencies.addSample( now() - start );
// Predefine a single large write conflict range over the whole key space
tr.addWriteConflictRange( KeyRangeRef(
self->keyForIndex( startIdx, false ),
keyAfter( self->keyForIndex( startIdx + self->keysPerTransaction - 1, false ) ) ) );
for( int i = 0; i < self->keysPerTransaction; i++ )
tr.set( self->keyForIndex( startIdx + i, false ), self->randomValue(), false );
start = now();
wait( tr.commit() );
2017-05-26 04:48:44 +08:00
self->commitLatencies.addSample( now() - start );
break;
} catch( Error& e ) {
wait( tr.onError( e ) );
2017-05-26 04:48:44 +08:00
++self->retries;
}
}
++self->transactions;
}
}
};
WorkloadFactory<WriteBandwidthWorkload> WriteBandwidthWorkloadFactory("WriteBandwidth");