<div dir="ltr"><div>Our organization has a Radiator server handling a large volume of requests and we're trying to squeeze ops and optimize as much as possible.</div><div><br></div><div>On one of our recent audits we ran to the production server, we found out that for each accounting request we need to get data from the underlying database from the related authentication packet before processing the accounting itself.</div><div><br></div><div>There's a PreAuthHook running for each Handler which basically clones the Radiator database connection properties to establish a connection and fetch data from the authentication table.</div><div><br></div><div>#!/usr/bin/perl<br><br>sub<br>{<br>  use DBI;<br>      my $p = ${$_[0]};<br>     my $username = $p->get_attr('User-Name');<br>  my $anumber = $p->get_attr('Calling-Station-Id');<br><br>        my $dbconn = &main::getVariable('dbconn');<br>        my $dbuser = &main::getVariable('dbuser');<br>        my $dbpass = &main::getVariable('dbpass');<br><br>      my $dbh = DBI->connect($dbconn, $dbuser, $dbpass);<br><br>       ($country_code, $imei, $rat) = &get_location_info($username, $anumber, $dbh);<br><br>   $p->add_attr('3GPP-SGSN-MCC-MNC', $country_code);<br>  $p->add_attr('3GPP-IMEISV', $imei);<br>        $p->add_attr('3GPP-RAT-TYPE', $rat);<br><br>     &main::log($main::LOG_INFO,"Got extra RADIUS parameters from database for user: $username");<br>}<br><br>       sub get_location_info {<br>               my $query = 'SELECT * FROM (SELECT country_code, imei, rat, row_number() over(order by timestamp desc) rn FROM authentication WHERE username = \''.$_[0].'\' and anumber = \''.$_[1].'\' order by TIMESTAMP desc) tbl WHERE tbl.rn <= 1';<br>          my $sth = $_[2]->prepare($query);<br>          $sth->execute();<br>           my @result=$sth->fetchrow_array();<br>         $sth->finish();<br>            return @result;<br>       }<br>}<br></div><div><br></div><div>According to our DBAs, however, this is hurting the database because it requires establishing a connection to the database, logging in and fetching data. Logging in, for auditing purposes, is taking a huge toll on the response times.</div><div><br></div><div>Is there any efficient way to reuse an existing handle bound to the instance or persistently get a DBI->connect handle on a Startup Hook for each instance and then reuse it inside the PreAuthHook (eventually reconnecting if necessary)?</div><div><br></div><div><div dir="ltr" class="m_-4704192924415184734gmail_signature" data-smartmail="gmail_signature"><br></div><div dir="ltr" class="m_-4704192924415184734gmail_signature" data-smartmail="gmail_signature"><br></div><div dir="ltr" class="m_-4704192924415184734gmail_signature" data-smartmail="gmail_signature">Bruno Tiago Rodrigues</div></div></div>