Thanks for response.
When i run the code, getting error :
Invalid value for shared scalar at /opt/perl-5.8.6_1/lib/5.8.6/Thread/Queue.pm line 90, <> line 10. Posting my code here.
use strict;
use threads;
use Data::Dumper;
use Thread::Queue;
my $THREADS = 5;
my %dataEntity;
while(<>){
chomp;
next if !length($_);
my ($dsName,$passwd) = split /\|/, $_;
$dataEntity{$dsName} = $passwd;
}
my $request = Thread::Queue->new;
my $response = Thread::Queue->new;
# Submit all requests
for my $dbname (keys %dataEntity) {
$request->enqueue([$dbname,$dataEntity{$dbname}]);
};
# Tell each thread that we're done
for (1..$THREADS) {
$request->enqueue(undef);
};
# Launch our threads
for (1..$THREADS) {
async(\&getData);
};
sub getData {
while (my $job = $request->dequeue()) {
my ($dbname, $credentials) = @$job;
#connect to DB, retrieve information
my $dbh = getConn($dbname,$credentials);
my %results;
my $resArrRef = $dbh->selectall_arrayref("select srvname,dbnam
+e from syslogins",{ Slice => {} });
foreach my $row ( @$resArrRef ) {
$results{$row->{srvname}} = $row->{dbname};
}
$response->enqueue(\%results);
};
# tell our main thread we're done
$response->enqueue( undef );
};
while (my $payload = $response->dequeue or $THREADS--) {
print Dumper $payload;
}
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|