htmlCntConstRate_filterOff: workload

1. English interpretation

TBD.


2. PGL code

Content cntHTML = {
	kind = "HTML";
	mime = {
		type = "text/html";
		extensions = [".html": 60%,".htm"];
	};
	size = exp(80KB);
	cachable = 0%;
	checksum = 1%;
	content_db = "/usr/local/bin/polygraph/workloads/demo.cdb";
};

Server S = {
	kind = "S101";
	contents = [cntHTML: 100%];
	direct_access = [cntHTML];
	addresses = ['10.0.0.3:9090'];
};

PopModel pm = {
	pop_distr = popUnif();
	hot_set_frac = 5%;
	hot_set_prob = 10%;
};

Robot R = {
	kind = "R101";
	pop_model = pm;
	origins = S.addresses;
	addresses = ['10.0.0.3'];
	req_rate = 0.6/sec;
	recurrence = 0;
};

Phase aPhase = {
	name = "normal_traffic";
	goal.duration = 20min;
	load_factor_beg = 1;
	load_factor_end = 1;
};

schedule(aPhase);

use(S, R);