Return-Path: Delivered-To: apmail-jakarta-jmeter-user-archive@www.apache.org Received: (qmail 34195 invoked from network); 31 Jul 2007 13:33:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 31 Jul 2007 13:33:36 -0000 Received: (qmail 9717 invoked by uid 500); 31 Jul 2007 13:33:34 -0000 Delivered-To: apmail-jakarta-jmeter-user-archive@jakarta.apache.org Received: (qmail 9690 invoked by uid 500); 31 Jul 2007 13:33:34 -0000 Mailing-List: contact jmeter-user-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Help: List-Post: List-Id: "JMeter Users List" Reply-To: "JMeter Users List" Delivered-To: mailing list jmeter-user@jakarta.apache.org Received: (qmail 9679 invoked by uid 99); 31 Jul 2007 13:33:34 -0000 Received: from Unknown (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 31 Jul 2007 06:33:34 -0700 X-ASF-Spam-Status: No, hits=0.2 required=10.0 tests=SPF_PASS,WHOIS_MYPRIVREG X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [194.151.203.114] (HELO front04.ibpmail.net) (194.151.203.114) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 31 Jul 2007 13:33:25 +0000 Received: from front03.ibpmail.net (194.151.203.112) by front04.ibpmail.net (7.2.072.4) id 46ADA25D0002DAD6 for jmeter-user@jakarta.apache.org; Tue, 31 Jul 2007 15:33:03 +0200 Received: from Uktcbbuilder4 (213.31.227.197) by front03.ibpmail.net (7.2.072.4) (authenticated as iblavins@temenos.com) id 4681295D00517DC6 for jmeter-user@jakarta.apache.org; Tue, 31 Jul 2007 15:33:03 +0200 Message-ID: <4681295D00517DC6@front03.ibpmail.net> (added by postmaster@ibpmail.com) From: "iblavins" To: "'JMeter Users List'" Subject: RE: CVS Dataset Config Usage? Date: Tue, 31 Jul 2007 14:31:41 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook, Build 11.0.5510 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3138 In-Reply-To: <68fea9390707310452m599b6137o881eaec091ae4987@mail.gmail.com> Thread-Index: AcfTaWhn/tzj5jTRRsSXhZIeEmKJRwADVu3Q X-CP-Disclaimer: X-Virus-Checked: Checked by ClamAV on apache.org G'day Not at this stage, I am not in a position to support it. (Plus I don't own the intellectual property and now is not the time to be asking the organisation I work for to release it.) That being said I am hoping at the end of this contract to make some kind of contribution to JMeter, probably on the supporting infrastructure side. Ian Blavins Contract Performance Engineer Temenos -----Original Message----- From: Matt [mailto:mattmoran76@gmail.com] Sent: 31 July 2007 12:53 To: JMeter Users List Subject: Re: CVS Dataset Config Usage? Sounds cool, you not open sourcing it? On 31/07/07, iblavins wrote: > > G'day > > I had to overcome this. > > I ended up: > > - writing a data server to serve unique values from the data files to > callers > - adding a sampler step to the test plan to retrieve the data from the > data > server on each iteration > - adding a regular expression step to the test plan to bring the data from > the above call into a test plan variable > - passing the variable above to the existing step that runs the sampler > against the system under test > > The central server guarantees uniqueness by serving the rows sequentially > to > callers. For each file at start up there is a flag indicating whether the > file can be rewound and served again at end of file. If not then > attempting > to read beyond the amount of data results in "" or similar > being returned to the data getter sampler. > > If you want to go this way you need to be sure that getting the data from > the data server does not become the bottleneck in your test. To this end > you > should have the data server load the whole data file(s) into memory on > start > up. > > For very large tests you also need to be conscious of the number of > concurrent threads that can be handled by the data server. I implemented a > two level structure where there is a set of concentrators in front of the > data server with thread pooling in both the data getter sampler and in the > concentrator. > > You also need to exclude the time to retrieve the data from the response > time reported by your test. > > > > > Ian Blavins > Contract Performance Engineer > Temenos > > -----Original Message----- > From: Avishek Daga [mailto:avishekdaga@gmail.com] > Sent: 31 July 2007 11:00 > To: jmeter-user@jakarta.apache.org > Subject: Re: CVS Dataset Config Usage? > > > Each thread has its own copy of the csv file and iterates through the file > from the start > > > > Knut Borchart wrote: > > > > Hi, > > > > i am experimenting with the csv dataset config but it seems like i do > > not quite understand its inner workings. What i am trying to achieve > > is the following: > > > > - keep a file of usernames, passwords and other config for users > > around which is always 100 lines long. > > - for testing a new jmeter script i would like use different settings > > for threads and repeat (eg. 2 threads, 10 repeats) > > > > I thought that jmeter reads the cvs file at the beginning of the > > testcase, assigns values to the different threads (=users) and thats > > it. But that does not work. With 1 thread and 10 repeats the second > > repeat of the test gets the config for user 2 (=line 2 of csv file). > > So it seems like the file is read in every iteration. > > > > How is the csv config thought to be used? Do i have to exactly match > > the lines in the file to the number of threads i want to use? What if > > one of the threads gets an error and is stopped? Will not the > > correlation between thread <> csv config will be mixed up? > > > > Kind regards, peter > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org > > For additional commands, e-mail: jmeter-user-help@jakarta.apache.org > > > > > > > > -- > View this message in context: > http://www.nabble.com/CVS-Dataset-Config-Usage--tf4116129.html#a11921316 > Sent from the JMeter - User mailing list archive at Nabble.com. > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org > For additional commands, e-mail: jmeter-user-help@jakarta.apache.org > > > > > This email (and any attachments) contains confidential information, and is > intended > only for the named recipient. Distribution or copying of this email by > anyone > other than the named recipient is prohibited. If you are not the named or > intended recipient, please notify TEMENOS or the sender immediately and > permanently destroy this email (and any attachments) and all copies of it. > No > member of TEMENOS Group AG or any of its associated or affiliated > companies is > liable for any errors or omissions in the content or transmission of this > email. Any opinions contained in this email are solely those of the author > and, > unless clearly indicated otherwise in writing, are not endorsed by any > member > of TEMENOS Group AG or any of its associated and affiliated companies. > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org > For additional commands, e-mail: jmeter-user-help@jakarta.apache.org > > This email (and any attachments) contains confidential information, and is intended only for the named recipient. Distribution or copying of this email by anyone other than the named recipient is prohibited. If you are not the named or intended recipient, please notify TEMENOS or the sender immediately and permanently destroy this email (and any attachments) and all copies of it. No member of TEMENOS Group AG or any of its associated or affiliated companies is liable for any errors or omissions in the content or transmission of this email. Any opinions contained in this email are solely those of the author and, unless clearly indicated otherwise in writing, are not endorsed by any member of TEMENOS Group AG or any of its associated and affiliated companies. --------------------------------------------------------------------- To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org For additional commands, e-mail: jmeter-user-help@jakarta.apache.org