On 03/11/2008, Srinivasulu <[EMAIL PROTECTED]> wrote: > > If the duplictes are allowed then how to access them...??
Generate a random number and read the file until that record is reached. Of course this will need to be synchronzed, unless you use different file connections per thread - which could cause resource exhaustion with more than a few threads. If all records are the same length you should be able to skip to the appropriate record, which would obviously be quicker and would reduce the synchronize time. Randomising the file before use is a much better approach. > Thanks > Srinivasulu N > > > sebb-2-2 wrote: > > > > JMeter does not support random access to data files. > > > > This would not be trivial to implement, and would be slow unless all > > the lines in the file were the same length. > > > > Also, what do you mean by random order? Are duplicates allowed, or can > > each entry only be used once? If the latter, then JMeter would need to > > keep track of which entries had been used. > > > > Of course it would be possible, but I think this it would be out of > > scope for JMeter. > > > > == > > > > In the past I've used the Perl Math module to generate the random > > numbers, and then processed them as necessary to generate the actual > > data. > > > > Or generate a randomly ordered list of numbers and use that to process > > the existing data into a random order. > > > > On 31/10/2008, Srinivasulu <[EMAIL PROTECTED]> wrote: > >> > >> Suppose if we have 10,000 data , could you tell me how to randomise > >> this? > >> > >> > >> > >> Fitzpatrick, Adrian wrote: > >> > > >> > > >> > Could you just randomise the order of the CSV file before the test? > >> > > >> > -----Original Message----- > >> > From: Srinivasulu [mailto:[EMAIL PROTECTED] > >> > Sent: 30 October 2008 15:40 > >> > To: [email protected] > >> > Subject: How to send random values from a file? > >> > > >> > > >> > ************************************* > >> > > >> > This e-mail has been received by the Revenue Internet e-mail service. > >> (IP) > >> > > >> > ************************************* > >> > > >> > > >> > Hi, > >> > > >> > Can anyone tell us how to select random values from a file for > >> > parametrization? > >> > When we use the CSV data set config file the values are taking > >> > sequentially. > >> > So can anyone tell how to proceed in this aspect. > >> > > >> > Thanks, > >> > Srinivasulu N > >> > -- > >> > View this message in context: > >> > > >> > http://www.nabble.com/How-to-send-random-values-from-a-file--tp20249461p20249 > >> > 461.html > >> > Sent from the JMeter - User mailing list archive at Nabble.com. > >> > > >> > > >> > --------------------------------------------------------------------- > >> > To unsubscribe, e-mail: [EMAIL PROTECTED] > >> > For additional commands, e-mail: [EMAIL PROTECTED] > >> > > >> > > >> > > >> > ************************ > >> > > >> > This message has been delivered to the Internet by the Revenue > >> Internet > >> > e-mail service (OP) > >> > > >> > ************************* > >> > > >> > --------------------------------------------------------------------- > >> > To unsubscribe, e-mail: [EMAIL PROTECTED] > >> > For additional commands, e-mail: [EMAIL PROTECTED] > >> > > >> > > >> > > >> > >> -- > >> > >> View this message in context: > >> > http://www.nabble.com/How-to-send-random-values-from-a-file--tp20249461p20261232.html > >> > >> Sent from the JMeter - User mailing list archive at Nabble.com. > >> > >> > >> --------------------------------------------------------------------- > >> To unsubscribe, e-mail: [EMAIL PROTECTED] > >> For additional commands, e-mail: [EMAIL PROTECTED] > >> > >> > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > For additional commands, e-mail: [EMAIL PROTECTED] > > > > > > > > -- > > View this message in context: > http://www.nabble.com/How-to-send-random-values-from-a-file--tp20249461p20299478.html > > Sent from the JMeter - User mailing list archive at Nabble.com. > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

