gpt4 book ai didi

php - 使用 System_Daemon 包的 Codeigniter 守护进程

转载 作者:可可西里 更新时间:2023-10-31 23:42:55 24 4
gpt4 key购买 nike

我正在尝试使用 System_Daemon 包和 CodeIgniter 的 CLI 创建一个守护进程。这对我来说是一个新领域,我正在努力。

这是我拥有的:将消息注入(inject) AWS SQS 队列的 CI Controller (感谢 [url= http://codeigniter.com/forums/member/196201/]coccodrillo[/url] 提供了有关如何将 AWS SDK 集成到 CI 中的出色说明。参见此处:Integrating AWS SDK as a library in Codeigniter)。

一个 CI Controller ,它接收队列中的消息并将其写出到日志文件,然后删除队列中的消息。

我想要一个 CI 守护进程,它会监听这个队列,当消息在那里时接收消息并对消息做一些有用的事情,然后删除消息。因此,我从 System_Daemon 文档中的示例开始,并从接收程序中添加了 CI 代码。看下面的代码

这是正确的做法吗?你能指导我以“正确的方式”做到这一点吗?我浏览了各种知识渊博的论坛,结果很短……请帮助我!

#!/usr/bin/php -q
<?php

// Make it possible to test in source directory
// This is for PEAR developers only
ini_set('include_path', ini_get('include_path').':..');

// Include Class
error_reporting(E_ALL);
require_once "System/Daemon.php";

// Bare minimum setup
System_Daemon::setOption("appName", "receiveaws");
System_Daemon::setOption("logLocation","/tmp/log/receiveaws.log");
System_Daemon::setOption("appPidLocation","/tmp/log/receiveaws/receiveaws.pid");
System_Daemon::log(System_Daemon::LOG_INFO, "Daemon not yet started so this will be written on-screen");

// Spawn Deamon!
System_Daemon::start();
System_Daemon::log(System_Daemon::LOG_INFO, "Daemon: '".
System_Daemon::getOption("appName").
"' spawned! This will be written to ".
System_Daemon::getOption("logLocation"));

System_Daemon::log(System_Daemon::LOG_WARNING, 'My php code starting');
class Receiveaws extends CI_Controller {

public function index(){
if ($this->input->is_cli_request()) {
//Load the aws library
$this->load->library('awslib');
$sqs = new AmazonSQS();

//Get the queue to look at
$res=$sqs->get_queue_url('example-queue');

//Get the queue's url
$qurl=($res->body->GetQueueUrlResult->QueueUrl);
System_Daemon::log(System_Daemon::LOG_INFO,$qurl);

//Get a message from the queue
$response = $sqs->receive_message($qurl);

//If there was a message received, then do something
if ($res->isOK()) {
System_Daemon::log(System_Daemon::LOG_INFO,"Receive message successful");
//Now delete message from queue
$res=$sqs->delete_message($qurl,$rcpt_hand);
if ($res->isOK()) {
System_Daemon::log(System_Daemon::LOG_INFO,"Delete message successful");
}
} else {
//go back to check for messages
//How do you do that?
}
} else {
//Access from URL - so bail out?
//how do you not bail out of the daemon from here?
}
}
}
System_Daemon::stop();
?>

最佳答案

守护进程是在后台“永远”运行的进程。在这里,您所做的只是检查队列中的一条新消息,然后退出。基本上你必须添加一个循环来获取所有需要执行的代码。您需要在循环中执行 sleep ,以避免您的守护进程占用所有可用资源。

无论如何,php 不擅长守护进程,因为一些内存在脚本结束之前永远不会被释放。如果你的脚本永远不会结束(就像一个守护进程),它会吃掉所有可用内存(根据 php 配置)然后死于错误。您必须非常小心地编写脚本代码以避免此类内存泄漏!

另外,请注意,每次您向 sqs 库询问某些内容时,它都会向 Amazon 服务器发送一个 http 请求。经常这样做可能会付出高昂的代价。

作为补偿,我建议您使用每分钟运行一次的 cronjob 来检查新任务。这样您就可以避免内存泄漏(php 进程在两次执行之间停止运行)和过多的网络使用(请求在一分钟内发出一次)。

最后一点,如果您不打算执行很多任务(也就是说,您的守护程序在 99% 的时间里什么都不做),请考虑改用推送队列。使用推送队列,轮询队列的不再是您的脚本,而是队列会在每次需要完成某些任务时通知您的脚本(即:使用标准的 http 请求调用您的脚本)。这样可以避免不必要地运行脚本。

我不知道亚马逊是否提供推送队列,但 ironmq(另一个“免费”队列服务)可以提供。更多信息:http://dev.iron.io/mq/reference/push_queues/

关于php - 使用 System_Daemon 包的 Codeigniter 守护进程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9610300/

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