<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body text="#000000" bgcolor="#FFFFFF">
    <div class="moz-cite-prefix">On 06/10/2013 06:17 PM, Xiang, Aster
      wrote:<br>
    </div>
    <blockquote
cite="mid:D684D33864CDC1418261DEBE297A977E01420AE3@CITEMB1B.cits.wustl.edu"
      type="cite">
      <meta http-equiv="Content-Type" content="text/html;
        charset=ISO-8859-1">
      <meta name="Generator" content="Microsoft Word 14 (filtered
        medium)">
      <style><!--
/* Font Definitions */
@font-face
        {font-family:SimSun;
        panose-1:2 1 6 0 3 1 1 1 1 1;}
@font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
        {font-family:"\@SimSun";
        panose-1:2 1 6 0 3 1 1 1 1 1;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        margin-bottom:.0001pt;
        font-size:11.0pt;
        font-family:"Calibri","sans-serif";}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
span.EmailStyle17
        {mso-style-type:personal-compose;
        font-family:"Calibri","sans-serif";
        color:windowtext;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-family:"Calibri","sans-serif";}
@page WordSection1
        {size:8.5in 11.0in;
        margin:1.0in 1.0in 1.0in 1.0in;}
div.WordSection1
        {page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]-->
      <div class="WordSection1">
        <p class="MsoNormal">Hi All,<o:p></o:p></p>
        <p class="MsoNormal"><o:p> </o:p></p>
        <p class="MsoNormal">I installed a local Nominatim instance on
          Ubuntu 12.04. I am trying to do bulk geocoding about 30,000
          addresses. I split the data into 10,000 per batch, and I found
          out the script stopped after the first 4300 records geocoded,
          without reporting any errors. So then I thought maybe it was
          because of some limit, I split the first 10,000 batch into
          5,000 addresses per batch, and then I see the script stopped
          after the first 3200 records, no errors.<o:p></o:p></p>
        <p class="MsoNormal"><o:p> </o:p></p>
        <p class="MsoNormal">I am wondering if there is any settings on
          the limit of my local Nominatim server? I appreciate any help
          on this!<o:p></o:p></p>
        <p class="MsoNormal"><o:p> </o:p></p>
        <p class="MsoNormal">Thanks,<o:p></o:p></p>
        <p class="MsoNormal"><o:p> </o:p><br>
        </p>
      </div>
    </blockquote>
    Could you perhaps at least mention the sort of script?  Are we
    talking PHP or perl ?  How are you accessing your data source? 
    Directly in the DB or are you calling the api itself using CURL or
    the like?  If I were to make this in php, a few things I would
    definitely set are these:<br>
    <br>
    ob_implicit_flush();<br>
    declare(ticks = 5); //<br>
    <br>
    /* make it or break it */<br>
    error_reporting(E_ALL);<br>
    ini_set("memory_limit","500M");<br>
    <br>
    /* Keep it running */<br>
    error_reporting(E_ALL);<br>
    ini_set("max_input_time", "0");<br>
    //set_time_limit(0);<br>
    ini_set('max_execution_time', 0);<br>
    <br>
    The information is too scarce to be able to help effectively.<br>
    <br>
    Glenn<br>
    <br>
  </body>
</html>