3

JMeterでweb-srviceをテストする必要があります。 私はスレッドグループ500でテストプランを作成しました。 パラメータごとに新しい値をスレッドごとに渡す必要があります。 「CSVデータセットの設定」について聞いたことがありますが、「共有モード」=「すべてのスレッド」を設定すると、各スレッドは各行からファイルを読み込もうとします。最初のスレッドのファイルの最初の値、2番目のスレッドの2番目の値などを渡します。もちろん、私は1行で500ファイルを作成することができますが、このアプローチは愚かで遅いです。 どうすればいいですか?ありがとう。各スレッドのパラメータが異なるJMeterテストプラン

答えて

6

私が正しく理解していれば、thread1はrow1を読み込み、thread2はrow2を読み込み、各スレッドにCSVファイルから一意の値を渡します。これはまさに "すべてのスレッド"がすることです。デバッグコントローラを使用してこれを確認することができます。

http://jmeter.apache.org/usermanual/component_reference.html#CSV_Data_Set_Config

* All threads - (the default) the file is shared between all the threads. 
* Current thread group - each file is opened once for each thread group in which the element appears 
* Current thread - each file is opened separately for each thread 
* Identifier - all threads sharing the same identifier share the same file. So for example if you have 4 thread groups, you could use a common id for two or more of the groups to share the file between them. Or you could use the thread number to share the file between the same thread numbers in different thread groups. 
+0

私は、各スレッドがファイルから次の行を取り、その後、すべてのスレッドを選択するときは、正しかったです。ありがとう。 – Roman

関連する問題