Click here to Skip to main content
15,881,588 members
Articles / Programming Languages / PHP
Tip/Trick

PHP and 504 server error

Rate me:
Please Sign up or sign in to vote.
4.80/5 (2 votes)
19 Dec 2013CPOL3 min read 15K   1   2
This pattern will allow you to forget 504 server error on huge operations.

Introduction  

If your web app or service must perform a posibly huge process at server side on demand, then this article is for you.

Background 

When our page makes a call to a server action and the underlying php script takes more time than specified on timeout server parameter (apache, nginx, etc...), it's sure that response will come with a 504 (timeout) server error. If you have an alternative to get same approach changing app structure or UI experience (without damaging it), I recommend you to implement it. If there isn't another way but that huge petition, this article will put you on the way to get it working without multithreading, shell calls or third party classes.

I propose using a paging and multipetition technique that has this advantages:

  • It's relatively simple to implement. You may migrate your monolithic script with not much code changes.
  • It's easy to adjust general performing. With this technique global time execution is inversely proportional to page size, but it's easy to adjust that to get a good user experience.
  • You may use a progress bar to show process state with all the detail that you want, although at more detail, less performance.

 Using this pattern is not free on disadvantages: 

  • Not compatible with atomic processes. If your script must be executed all at a time (in a global transaction) or makes a call to another script on wich you have not control at all, you may not use this technique. In that cases you may consider to migrating your server side app from PHP to frameworks that allows multithreading like .NET or JSP or use shell commands and Java or nodeJS as background processes.
  • You will need Javascript client side programming to handle multiple petitions and detect final petition, errors, etc... 
As you can see not all scenaries are covered by this technique, but it's obvious that many problems will find here a perfect solution.

Using the code  

First of all is thinking of how to divide our task in smallest logical fragments as possible. These will be called Elements. We will need to get all of this elements in every petition, but only the elements that are in the page that is requested, are processed.

For this example, we will import a csv file into database. This is the function script that processes a page (import.php):

PHP
<?php
$path = '/userFiles/import.csv';     /* Local path to file */
$page = $_POST["page"];              /* Page to process (from JavaScript) */
$pageSize = 1000;                    /* Number of lines to process by page */
$first = $pageSize * $page;          /* First line to process. */
$line = 0;                           /* Current line. */
$processed = 0;                      /* Number of lines currently processed. */

/* Begins to read the CSV */
$file = fopen($path, "r");          
while ($lineStr = stream_get_line($file, 65536, "\n")) {
    if ($line >= $first) {    /* Only if current line is within the requested page */

                /* Process this line */
        insertLineInDatabaseOrDoAnyHeavyThingWithIt($line, $lineStr);  

        $processed ++;
        if ($processed = $pageSize) break;     /* Page end */        
    }        
    $line ++;    
}    
fclose($file);     

/* Returns number of processed lines */
echo $processed;

This is the server side, and now comes the client side in JavaScript:

JavaScript
function import() {
    pageImport(0);     // Launch first page 
}

function pageImport(page) {
    $.post("/import.php", {   // Calls our php script asynchronously using jQuery
    page: page
    }, function(data) {   // Callback
    if (data > 0)
        pageImport(page + 1);    // Lines were processed so go on with next page
    else
        alert("Work finished");  // No more lines processed, so we have finished.
    });
}

Two methods are required: first one to launch first page. Second to process a page and recursively calling itself to process next page until no more records are processed. It is not difficult to imagine how to implement a progress bar using JSON to return processed lines and total pages in same response.

Points of Interest

Think that at smaller $pageSize less probability of 504 error, but takes more time to complete entire process because on each petition we read all CSV lines previous to current page. Optimal value of $pageSize is as large as possible to taking less time to complete a page than timeout configured at server. For example, if we have 60 seconds of timeout configured, processing a page should not take more than 45/50 seconds or even less. It's easy to guess this by using F12 developer tools on the browser.

History  

No changes.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) TokApp OnLine, S.L.
Spain Spain
Software architect expert in #cloudcomputing #server #mobile #web #dotnet #php #sql #HTML5

Comments and Discussions

 
QuestionI won't vote but Pin
HaBiX19-Dec-13 20:47
HaBiX19-Dec-13 20:47 
AnswerRe: I won't vote but Pin
Santiago Santos Cortizo21-Dec-13 22:03
professionalSantiago Santos Cortizo21-Dec-13 22:03 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.