@@ -143,12 +143,13 @@ export interface Request extends RequestBase {
143143 query_parameters : {
144144 /**
145145 * The total number of blobs to write to the repository during the test.
146- * For realistic experiments, you should set it to at least `2000`.
146+ * For realistic experiments, set this parameter to at least `2000`.
147147 * @server_default 100
148148 */
149149 blob_count ?: integer
150150 /**
151151 * The number of operations to run concurrently during the test.
152+ * For realistic experiments, leave this parameter unset.
152153 * @server_default 10
153154 */
154155 concurrency ?: integer
@@ -161,51 +162,57 @@ export interface Request extends RequestBase {
161162 /**
162163 * The number of nodes on which to perform an early read operation while writing each blob.
163164 * Early read operations are only rarely performed.
165+ * For realistic experiments, leave this parameter unset.
164166 * @server_default 2
165167 */
166168 early_read_node_count ?: integer
167169 /**
168170 * The maximum size of a blob to be written during the test.
169- * For realistic experiments, you should set it to at least `2gb`.
171+ * For realistic experiments, set this parameter to at least `2gb`.
170172 * @server_default 10mb
171173 */
172174 max_blob_size ?: ByteSize
173175 /**
174176 * An upper limit on the total size of all the blobs written during the test.
175- * For realistic experiments, you should set it to at least `1tb`.
177+ * For realistic experiments, set this parameter to at least `1tb`.
176178 * @server_default 1gb
177179 */
178180 max_total_data_size ?: ByteSize
179181 /**
180182 * The probability of performing a rare action such as an early read, an overwrite, or an aborted write on each blob.
183+ * For realistic experiments, leave this parameter unset.
181184 * @server_default 0.02
182185 */
183186 rare_action_probability ?: double
184187 /**
185188 * Indicates whether to rarely cancel writes before they complete.
189+ * For realistic experiments, leave this parameter unset.
186190 * @server_default true
187191 */
188192 rarely_abort_writes ?: boolean
189193 /**
190194 * The number of nodes on which to read a blob after writing.
195+ * For realistic experiments, leave this parameter unset.
191196 * @server_default 10
192197 */
193198 read_node_count ?: integer
194199 /**
195200 * The minimum number of linearizable register operations to perform in total.
196- * For realistic experiments, you should set it to at least `100`.
201+ * For realistic experiments, set this parameter to at least `100`.
197202 * @server_default 10
198203 */
199204 register_operation_count ?: integer
200205 /**
201206 * The seed for the pseudo-random number generator used to generate the list of operations performed during the test.
202207 * To repeat the same set of operations in multiple experiments, use the same seed in each experiment.
203208 * Note that the operations are performed concurrently so might not always happen in the same order on each run.
209+ * For realistic experiments, leave this parameter unset.
204210 */
205211 seed ?: integer
206212 /**
207213 * The period of time to wait for the test to complete.
208214 * If no response is received before the timeout expires, the test is cancelled and returns an error.
215+ * For realistic experiments, set this parameter sufficiently long to allow the test to complete.
209216 * @server_default 30s
210217 */
211218 timeout ?: Duration
0 commit comments