gpt4 book ai didi

php内存限制垃圾收集器

转载 作者:行者123 更新时间:2023-11-29 12:31:09 25 4
gpt4 key购买 nike

三天,我的头撞到了墙上。

我开发了一个 PHP 脚本,用于导入大文本文件并填充 mysql 数据库。在我获得 200 万条记录之前,它可以完美运行,但我需要导入分成不同文件的 1000 万行。

我的应用程序扫描文件夹中的文件,获取文件扩展名(我有 4 种程序导入 4 种不同的扩展名)并调用相对导入函数。

我有一个由这些类组成的结构:

CLASS SUBJECT1{ public function import_data_1(){
__DESTRUCT(){$this->childObject = null;}
IMPORT SUBJECT1(){
//fopen($file);
//ob_start();
//PDO::BeginTransaction();
//WHILE (FILE) {
//PREPARED STATEMENT
//FILE READING
//GET FILE LINE
//EXECUTE INSERT
//} END WHILE
//PDO::Commit();
//ob_clean(); or ob_flush();
//fclose($file);
//clearstatcache();
}
};}

CLASS SUBJECT2{ same as SUBJECT1;}

CLASS SUBJECT3{ same as SUBJECT1;}

CLASS SUBJECT4{ same as SUBJECT1;}

以及启动该过程的主类:

CLASS MAIN{
switch($ext)
case "ext1":
$SUBJECT1 = new SUBJECT1();
IMPORT_SUBJECT1();
unset $SUBJECT1;
$SUBJECT1 = null;
break;
case "ext2": //SAME AS CASE ext1 WITH IMPORT_SUBJECT2();
case "ext3": //SAME AS CASE ext1 WITH IMPORT_SUBJECT3();
case "ext4": //SAME AS CASE ext1 WITH IMPORT_SUBJECT4();

}

它与 mysql 文件缓冲区的一些调整完美配合(ib_logfile0 和 ib_logfile1 设置为 512Mb)。

问题是每次程序终止时 php 都不会释放内存。我确信析构函数被调用(我在 __destruct 方法中添加了 echo)并且该对象不可访问(var_dump 说是 NULL)。我尝试了很多方法来释放内存,但现在我陷入了困境。

我也验证了 gc_collect_cycles()在许多不同的代码点中,它总是显示 0 个周期,因此所有 abject 都不会相互引用。我什至尝试删除类结构并按顺序调用所有代码,但我总是收到此错误:

fatal error :C:\php\index.php 第 219 行内存不足(已分配 511180800)(尝试分配 576 字节)(第 219 行是第 13 个文件上的 PS 的执行)。

内存的使用方式是这样的:

  • PHP 脚本:52MB
  • 结束第一个文件导入:110MB
  • 析构函数和未设置调用:110MB
  • 新过程调用:110MB
  • 结束第二个文件导入 250MB
  • 析构函数和未设置调用:250MB
  • 新过程调用:250MB

因此,正如您所看到的,即使取消设置对象,它们也不会释放内存。

我尝试将 php ini 内存大小设置为 1024M,但它增长得非常快,并且在 20 个文件后崩溃。

有什么建议吗?

非常感谢!

编辑1:

发布代码:

class SUBJECT1{

public function __destruct()
{
echo 'destroying subject1 <br/>';
}

public function import_subject1($file,$par1,$par2){
global $pdo;

$aux = new AUX();
$log = new LOG();

// ---------------- FILES ----------------
$input_file = fopen($file, "r");

// ---------------- PREPARED STATEMENT ----------------

$PS_insert_data1= $pdo->prepare("INSERT INTO table (ID,PAR1,PAR2,PARN) VALUES (?,?,?,?) ON DUPLICATE KEY UPDATE ID = VALUES(ID), PAR1 = VALUES(PAR1), PAR2 = VALUES(PAR2), PAR3 = VALUES(PAR3), PARN = VALUES(PARN)");

$PS_insert_data2= $pdo->prepare("INSERT INTO table (ID,PAR1,PAR2,PARN) VALUES (?,?,?,?) ON DUPLICATE KEY UPDATE ID = VALUES(ID), PAR1 = VALUES(PAR1), PAR2 = VALUES(PAR2), PAR3 = VALUES(PAR3), PARN = VALUES(PARN)");

//IMPORT
if ($input_file) {
ob_start();
$pdo->beginTransaction();
while (($line = fgets($input_file)) !== false) {
$line = utf8_encode($line);
$array_line = explode("|", $line);
//set null values where i neeed
$array_line = $aux->null_value($array_line);

if(sizeof($array_line)>32){
if(!empty($array_line[25])){
$PS_insert_data1->execute($array_line[0],$array_line[1],$array_line[2],$array_line[5]);
}

$PS_insert_data2->execute($array_line[10],$array_line[11],$array_line[12],$array_line[15]);
}

$pdo->commit();
flush();
ob_clean();
fclose($f_titolarita);
clearstatcache();
}

我对文件夹中的所有文件进行此迭代,其他过程都是相同的概念。我的内存仍然增加,但现在它崩溃并出现白页响应:-\

最佳答案

就我个人而言,我的看法略有不同。这些是我要做的步骤:

  • 打开 PDO 连接,将 PDO 设置为异常模式
  • 获取我要读取的文件列表
  • 创建一个可以利用 PDO 和文件列表并执行插入的类
  • 准备一次语句,多次使用
  • block PDO 事务提交 50 个(可配置)插入 - 这意味着每 50 次调用 $stmt->execute(),我就会发出一次提交 - 这可以更好地利用 HDD,从而使其更快
  • 逐行读取每个文件
  • 解析该行并检查其是否有效
  • 如果是,则添加到 MySQL,如果不是 - 报告错误

现在,我已经创建了 2 个类和关于如何进行操作的示例。我只测试了阅读部分,因为我不知道你的数据库结构也不知道 AUX() 的作用。

class ImportFiles
{
protected $pdo;
protected $statements;
protected $transaction = false;
protected $trx_flush_count = 50; // Commit the transaction at every 50 iterations

public function __construct(PDO $pdo = null)
{
$this->pdo = $pdo;

$this->stmt = $this->pdo->prepare("INSERT INTO table
(ID,PAR1,PAR2,PARN)
VALUES
(?,?,?,?)
ON DUPLICATE KEY UPDATE ID = VALUES(ID), PAR1 = VALUES(PAR1), PAR2 = VALUES(PAR2), PAR3 = VALUES(PAR3), PARN = VALUES(PARN)");
}

public function import($file)
{
if($this->isReadable($file))
{
$file = new FileParser($file);

$this->insert($file);
}
else
{
printf("\nSpecified file is not readable: %s", $file);
}
}

protected function isReadable($file)
{
return (is_file($file) && is_readable($file));
}

protected function insert(FileParser $file)
{
while($file->read())
{
//printf("\nLine %d, value: %s", $file->getLineCount(), $file->getLine());

$this->insertRecord($file);

$this->flush($file);
}

$this->flush(null);
}

// Untested method, no idea whether it does its job or not - might fail
protected function flush(FileParser $file = null)
{
if(!($file->getLineCount() % 50) && !is_null($file))
{
if($this->pdo->inTransaction())
{
$this->pdo->commit();

$this->pdo->beginTransaction();
}
}
else
{
if($this->pdo->inTransaction())
{
$this->pdo->commit();
}
}
}

protected function insertRecord(FileParser $file)
{
$check_value = $file->getParsedLine(25);

if(!empty($check_value))
{
$values = [
$file->getParsedLine[0],
$file->getParsedLine[1],
$file->getParsedLine[2],
$file->getParsedLine[5]
];
}
else
{
$values = [
$file->getParsedLine[10],
$file->getParsedLine[11],
$file->getParsedLine[12],
$file->getParsedLine[15]
];
}

$this->stmt->execute($values);
}
}

class FileParser
{
protected $fh;
protected $lineCount = 0;
protected $line = null;
protected $aux;

public function __construct($file)
{
$this->fh = fopen($file, 'r');
}

public function read()
{
$this->line = fgets($this->fh);

if($this->line !== false) $this->lineCount++;

return $this->line;
}

public function getLineCount()
{
return $this->lineCount;
}

public function getLine()
{
return $this->line;
}

public function getParsedLine($index = null)
{
$line = $this->line;

if(!is_null($line))
{
$line = utf8_encode($line);
$array_line = explode("|", $line);

//set null values where i neeed
$aux = $this->getAUX();
$array_line = $aux->null_value($array_line);

if(sizeof($array_line) > 32)
{
return is_null($index) ? $array_line : isset($array_line[$index]) ? $array_line[$index] : null;
}
else
{
throw new \Exception(sprintf("Invalid array size, expected > 32 got: %s", sizeof($array_line)));
}
}
else
{
return [];
}
}

protected function getAUX()
{
if(is_null($this->aux))
{
$this->aux = new AUX();
}

return $this->aux;
}
}

用法:

$dsn = 'mysql:dbname=testdb;host=127.0.0.1';
$user = 'dbuser';
$password = 'dbpass';

try
{
$pdo = new PDO($dsn, $user, $password);

$pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);

$import = new ImportFiles($pdo);

$files = ['/usr/local/file1.txt', '/usr/local/file2.txt'];

foreach($files as $file)
{
$import->import($file);
}

} catch (Exception $e)
{
printf("\nError: %s", $e->getMessage());
printf("\nFile: %s", $e->getFile());
printf("\nLine: %s", $e->getLine());
}

关于php内存限制垃圾收集器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27487229/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com