It would be great if LoggerAppenderMongoDB could supply a timeout value to the 
Mongo() constructor when it connects for the first time.
---------------------------------------------------------------------------------------------------------------------------------------

                 Key: LOG4PHP-166
                 URL: https://issues.apache.org/jira/browse/LOG4PHP-166
             Project: Log4php
          Issue Type: Improvement
    Affects Versions: 2.1, 2.2
            Reporter: David Hilowitz
            Priority: Minor
             Fix For: 2.3


It would be great if LoggerAppenderMongoDB could supply a timeout value to the 
Mongo() constructor when it connects for the first time. 

Here's why:  If something is wrong with the Mongo database server, the server 
is offline or whatever, it often takes a long time (10 or more seconds) to fail 
and throw an exception. This is terrible in a situation where we need a quick 
turnaround time and are using the logger to collect diagnostic data. 

Ideally, a timeout value could be specified in the log4php config XML file 
along with the host, name, etc. 

I already have a patch that fixes this issue. The main gist of it is this. 
Change this:

$this->connection = new Mongo(sprintf('%s:%d', $this->host, $this->port));

to this:

$this->connection = new Mongo(sprintf('%s:%d', $this->host, $this->port), 
array("timeout" => $this->timeout));

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to