php - AJAX 调用的 Yii SQL 分析

标签 php database amazon-web-services yii profiling

Yii 提供了一个配置文件所有 SQL 调用的执行时间 (CProfileLogRoute)。除了它不适用于 ajax 调用。我如何访问这些数据?

我试图找到打开登录弹出窗口的 ajax 调用的瓶颈...

类似地,CProfileLogRoute 中显示的执行时间是否包括到 SQL 服务器的网络访问(如果有)?我的数据库托管在Amazon的RDS上,我想知道瓶颈是不是就在这个地方(本地好像没问题)。

最佳答案

你可以尝试扩展CFileLogRoute按照下面建议的方式并在应用程序的配置中启用它,如下所示:

'log'=>array(
    'class'=>'CLogRouter',
    'routes'=>array(
        array(
            'class'=>'ProfileLogRoute',
            'levels' => "profile"
        )
    )
)

在这种情况下,所有分析查询都将写入位于protected/runtime 目录中的日志文件(重写processLogs 方法同样实现了CProfileWebRoute 的摘要报告| ...不幸的是 CProfileWebRoute 派生自 CWebLogRoute ):

<?php  
class ProfileLogRoute extends CFileLogRoute
{
    protected function processLogs($logs)
    {
        $logFile=$this->getLogPath().DIRECTORY_SEPARATOR.$this->getLogFile();
        if(@filesize($logFile)>$this->getMaxFileSize()*1024)
            $this->rotateFiles();
        $fp=@fopen($logFile,'a');
        @flock($fp,LOCK_EX);

        $profileStack = array();
        $profileResults = array();
        foreach ($logs as $log)
        {
            if ($log[1] === CLogger::LEVEL_PROFILE)
            {
                $message = $log[0];
                if (!strncasecmp($message, 'begin:', 6))
                {
                    $log[0] = substr($message,6);
                    $profileStack[] = $log;
                }
                else if(!strncasecmp($message, 'end:', 4))
                {
                    $token = substr($message,4);
                    if(($last = array_pop($profileStack)) !== null && $last[0] === $token)
                    {
                        $info = array(
                            'delta' => $log[3] - $last[3],
                            'category' => $last[2],
                            'time' => $last[3]
                        );
                        $this->aggregateResult($token, $info, $profileResults);
                    }
                    else
                    {
                        throw new CException(Yii::t('yii','CProfileLogRoute found a mismatching code block "{token}". Make sure the calls to Yii::beginProfile() and Yii::endProfile() be properly nested.',
                            array('{token}'=>$token)));
                    }
                }
            }
            else
            {
                @fwrite($fp,$this->formatLogMessage($log[0],$log[1],$log[2],$log[3]));
            }
        }

        if (!empty($profileResults))
        {
            $now = microtime(true);
            while(($last = array_pop($profileStack)) !== null)
            {
                $info = array(
                    'delta' => $now - $last[3],
                    'category' => $last[2],
                    'time' => $last[3]
                );
                $token = $last[0];
                $this->aggregateResult($token, $info, $profileResults);
            }

            $entries = array_values($profileResults);
            $func = create_function('$a,$b','return $a["total"]<$b["total"]?1:0;');
            usort($entries, $func);
            foreach ($entries as $entry)
            {
                $message = sprintf("Min: % 11.8f    Max: % 11.8f    Total: % 11.8f    Calls: % 3d    %s", $entry['min'], $entry['max'], $entry['total'], $entry['calls'], $entry['token']);
                @fwrite($fp, $this->formatLogMessage($message, CLogger::LEVEL_PROFILE, $entry['category'], $entry['time']));
            }
        }

        @flock($fp,LOCK_UN);
        @fclose($fp);
    }

    protected function aggregateResult($token, $info, &$results)
    {
        if (isset($results[$token]))
        {
            if ($info['delta'] < $results[$token]['min'])
                $results[$token]['min'] = $info['delta'];
            else if($info['delta'] > $results[$token]['max'])
                $results[$token]['max'] = $info['delta'];
            $results[$token]['calls']++;
            $results[$token]['total'] += $info['delta'];
            return;
        }

        $results[$token] = array(
            'token' => $token,
            'calls' => 1,
            'min' => $info['delta'],
            'max' => $info['delta'],
            'total' => $info['delta'],
            'category' => $info['category'],
            'time' => $info['time']
        );
    }
}

如果你想知道 Yii 是如何测量 SQL 执行时间的,你可以查看 CDbCommand 的源代码。类 - queryInternal 方法,更准确地说。分析在 Yii::beginProfile('system.db.CDbCommand.query...')Yii::endProfile('system.db.CDbCommand.query...') 之间 调用。如您所见,这两个调用都在同一个方法中,因此分析时间不包括网络传输。问题可能是您的远程数据库服务器在巨大负载下运行。

关于php - AJAX 调用的 Yii SQL 分析,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13332143/

相关文章:

database - 在 SAS 中连接来自两个 Oracle 数据库的表

php - 我怎样才能从数据库中获取信息,就像我用存储的信息在上面插入数据以更新它一样

node.js - AWS lambda 函数错误 - 无法导入模块 'index' : Error

php - OAuth 2.0 PHP 客户端和服务器示例

php - 通过输入类型文本防止 SQL 注入(inject)

amazon-web-services - 如何更改 AWS CLI 中的默认输出格式?

Python:如何在 python 使用日志记录模块中创建和使用自定义记录器?

php - 使用 Facebook SDK 从 iOS 登录 Laravel webapp

php - 使用 PDO 将时间插入 MySQL 数据库

javascript - PHP 回显 JQuery 单击