It means the entire stack exceeded the time limit. The time when the backtrace was taken, minus the time when php started to handle the request, is equal to the defined time limit. 2013年12月12日 下午1:12于 "Mark van der Velden" <markvdv@gmail.com>写道: > Hi, > > I'm trying to make sense of the stack trace of PHP-FPM's slow log feature.. > But I'm not sure hby replay - Php-fpm Mailing List - English
Thanks for the reply agentzh, Ok, I'll probably implement this either on lua in the Nginx or on the client side inside the javascript then. Will have to do some tests of both solutions to decide. Regards, Mauro On Tue, Feb 26, 2013 at 4:03 AM, agentzh <agentzh@gmail.com> wrote: > Hello! > > On Mon, Feb 25, 2013 at 12:56 AM, Mauro Stettler wrote: > > Thanks, that would prby replay - Nginx Mailing List - English
Thanks, that would probably be possible. It's just that this URL is called very frequently, so I'm trying to do everything as resource efficient as possible. I am worried that parsing the json in lua in Nginx and reformatting it would be too heavy on the server load. So I would have preferred if there is some way how I can tell the rds-json module to format it the way I want. Seems there is no wby replay - Nginx Mailing List - English
I just realized that I messed up the formatting. Actually what I'm looking for should be like this: { 1971:{"nickname":"Robby1","age":28,"age_p":42,"city":"Dresden","plz":"","wio_plz":"2,4,5","gender":"m"}, 1972:{"nickname":"Robby2","age":29,&quby replay - Nginx Mailing List - English
Hello Nginx list I'm using OpenResty with libdrizzle to provide a faster API to query certain things from my db. My current config is like this: location ~* ^/resty/usersTable/userId/([0-9\,]+)$ { set_unescape_uri $uid $1; drizzle_query 'select id, nickname, age, age_p, city, plz, wio_plz, gender from users where id in ($uid)'; drizzle_pass projectdby replay - Nginx Mailing List - English
In the meantime I found that there is a log entry when this problem happens: 2012/06/20 13:14:33 4340#0: *23199 http request count is zero while sending to client, client: <ip>, server: <server>, request: "POST /userProfile/updateVisitCountAndVisitHistory/user_id/<id>/gender/w/nickname/geilpopperrin/membership/normal/hash/bb7e2305b293458dc8e9043486a6a455 HTTP/1.1", upby replay - Nginx Mailing List - English
its set to a high value: rsid-a-57:/etc/nginx # ulimit -n 524288 i think if the problem would be the fs ulimit, i should see some error related to that no more files can be opened. but there is no such error. On Wed, Jun 20, 2012 at 12:54 PM, Payam Chychi <pchychi@gmail.com> wrote: > whats ur fs ulimit set to? > > > Sent from my iPhone > > On 2012-06-19, at 9:52 PM, Maby replay - Nginx Mailing List - English
Hi list I have a problem with dropped connections on an Nginx cluster that has up to 100k requests per minute per Nginx instance. It seems that in around 1 of 10`000 requests that are sent to our Nginx, the TCP connection just gets reset by the server. At first I was guessing that some values in the /etc/sysctl.conf are maybe causing this problem, because we have modified multiple TCP related valby replay - Nginx Mailing List - English
you can use the eval module to do this On Mon, Jan 16, 2012 at 01:03, ZHOU Xiaobo <xb.zhou@qq.com> wrote: > hi everyone: > > I am new to nginx module developing. > I want to implement a module to deal with this demand: > > 1, nginx receives a request from client > 2, nginx sends two internal requests(http or protobuf etc.) to 2 backend servers > 3, after the responseby replay - Nginx Mailing List - English
if you are using php-fpm over fastcgi i would guess its due to fpm's request_terminate_timeout because the upload took too long On Wed, Oct 12, 2011 at 19:28, Maxim Dounin <mdounin@mdounin.ru> wrote: > Hello! > > On Tue, Oct 11, 2011 at 06:01:46PM -0700, Michael Shadle wrote: > >> Trying to upload a small .png to Drupal. PHP 5.3.8, CentOS 5.6 x64, nginx 1.1.3 >> >by replay - Nginx Mailing List - English
you probably still have an nginx running and listening on localhost port 80. what do you mean with install/uninstall, how did you do that? after uninstalling did you make sure the running process is also dead? try to "sudo killall nginx" and then try to run it again. On Fri, Sep 9, 2011 at 23:18, ynasser <nginx-forum@nginx.us> wrote: > This is the error message I get when I trby replay - Nginx Mailing List - English
thanks a lot for the helpful answer maxim, i will try that. mauro On Thu, Aug 4, 2011 at 14:29, Maxim Dounin <mdounin@mdounin.ru> wrote: > Hello! > > On Thu, Aug 04, 2011 at 11:47:08AM +0800, Mauro Stettler wrote: > >> hi >> >> i'm having a strange case where nginx is trying to allocate some >> really huge amount of memory. we created a new vhost on nby replay - Nginx Mailing List - English
hi i'm having a strange case where nginx is trying to allocate some really huge amount of memory. we created a new vhost on nginx to provide an internal interface to flush the apc cache of php. in most of the cases i can request this and get what i expected, only in around 20% of the request nginx is trying to allocate a huge number of memory and fails, so it returns 500 internal server error. 2by replay - Nginx Mailing List - English
maybe it might help to do strace on the nginx process to see the exact system call which causes the permission denied. also you have to make sure that the user under which nginx runs is allowed to access the device file. for example you could test this by doing sudo -u nginxuser cat /dev/xxx On Mon, Jun 27, 2011 at 20:19, pavan.anjaneyulu@gmail.com <nginx-forum@nginx.us> wrote: > HI >by replay - Nginx Mailing List - English
perfect, i will do that. thanks for the reply On Tue, Jun 21, 2011 at 18:13, Maxim Dounin <mdounin@mdounin.ru> wrote: > Hello! > > On Tue, Jun 21, 2011 at 05:25:12PM +0800, Mauro Stettler wrote: > >> hi >> >> i've implemented a simple nginx module to uppercase/lowercase a >> variable. but i'm not sure if i did it the right way. the code can be >>by replay - Nginx Development
hi i've implemented a simple nginx module to uppercase/lowercase a variable. but i'm not sure if i did it the right way. the code can be found here: https://github.com/replay/ngx_http_lower_upper_case/blob/master/ngx_http_lower_upper_case.c the thing that i'm very uncertain about is that i want to set a get_handler for the destination variable like the following: 168 v->get_handler = ngby replay - Nginx Development
if you want to be sure, recompile the nginx without google_perftools, then you do ldd on the nginx binary and see if it still links to libunwind. once you are sure its coming from this module, you can start trying to find bugreports of this problem or try other versions of either the library or the nginx module. On Thu, Jun 16, 2011 at 14:17, lys0212 <nginx-forum@nginx.us> wrote: > Iby replay - Nginx Mailing List - English
i think you should probably first find out which of all your additional modules is linking to libunwind.so. then i would guess there must be a bug either in that module or in the libunwind. if you compile nginx without any add-module i think it should not link to libunwind, so this must come from one of your via --add-module added modules. On Thu, Jun 16, 2011 at 10:45, lys0212 <nginx-forumby replay - Nginx Mailing List - English
this is not a bug in the kernel, but the nginx is trying to access some memory that it is not allowed to access. did you add any modules? what is libunwind used for? can you send the output of nginx -V On Thu, Jun 16, 2011 at 09:54, lys0212 <nginx-forum@nginx.us> wrote: > OS is redhat5.5 ,nginx 1.0.0 ,libunwind-0.99... > The /var/log/message frequently appear the follow messages: &by replay - Nginx Mailing List - English
you need to build the nginx together with your module: http://wiki.nginx.org/3rdPartyModules#Compiling_third_party_modules On Tue, Jun 14, 2011 at 19:36, asdasd77 <nginx-forum@nginx.us> wrote: > we barely install nginx. but now we cant use module. especially > httpaccesskeymodule. we inserted codes to conf file. but its not > working. is there any property for activate it? > &by replay - Nginx Mailing List - English
i just found that with an = it works, but i need the comparison to be case insensitive... i was thinking if there is any way to lowercase or uppercase both strings before the comparison, then i could do an =. is there any way to lowercase or uppercase a string? otherwise i could also write a very small module for that. i would prefer to don't have to use luaby replay - Nginx Mailing List - English
hi i wrote a module which is extracting certain values out of a session that is stored in memcache and stores it into a variable in my nginx config. so this seems to work fine so far. now i'm trying to compare $uri with one of these variables and do a rewrite accordingly. but it seems that the if that comes from nginx' rewrite module cannot only compare a variable with a static string or a statiby replay - Nginx Mailing List - English
great work! thanks On Tue, Apr 12, 2011 at 18:18, Space Lee <fjctlzy@gmail.com> wrote: > Congratulations! > > On Apr 12, 2011, at 6:16 PM, 姚伟斌 wrote: > > Hi Igor, > Congratulations! Thanks for your hard work for so many years. > > 2011/4/12 Igor Sysoev <igor@sysoev.ru> >> >> Changes with nginx 1.0.0by replay - Nginx Mailing List - English
hi we are a company looking for linux experts with experience on nginx and other services used on high traffic websites. the job ad with a more detailed description is here: http://bit.ly/eYMBR6 mauro _______________________________________________ nginx mailing list nginx@nginx.org http://nginx.org/mailman/listinfo/nginxby replay - Nginx Mailing List - English
great, that works, thanks! On Tue, Dec 14, 2010 at 15:12, Igor Sysoev <igor@sysoev.ru> wrote: > On Tue, Dec 14, 2010 at 03:07:08PM +0800, Mauro Stettler wrote: > >> hi >> >> i have a situtation where i would need something similar to this: >> >> location / { >> error_page 404 = /fallback_all; >> // do a request to get content from memcacby replay - Nginx Mailing List - English
hi i have a situtation where i would need something similar to this: location / { error_page 404 = /fallback_all; // do a request to get content from memcache, if not found go to /fallback_all } location = /fallback_all { internal; error_page 404 = @404; // do a request to get content from fastcgi, if not found go to @404 } location @404 { internal; // real 404 page } but this dby replay - Nginx Mailing List - English
i guess the .in file is somwhere in the source of the library that you downloaded, not in the directory where the headers got installed to, right? you first should know where the headers are installed to and then make sure that gcc is getting a -I with this directory. On Thu, Aug 26, 2010 at 00:43, Fernando Perez <lists@ruby-forum.com> wrote: > In my mhash folder I have mhash_config.hby replay - Nginx Mailing List - English
yes, seems that for some reason the configure which is run by passenger doesn't take your environment variables. i have never used passenger before, but if there is some way for you to stop after the configure and then later continue with the make you could maybe try to hack the objs/Makefile inbetween. mauro On Wed, Aug 25, 2010 at 17:47, Fernando Perez <lists@ruby-forum.com> wrote: >by replay - Nginx Mailing List - English
these are not supposed to be parameters to the configure script. they are parameters to gcc. so if you want that your make passes those to gcc you need to set those two env variables before you execute the configure like f.e.: export CFLAGS="-I/usr/local/mhash-0.9.9.9/include" export LDFLAGS="-L/usr/local/mhash-0.9.9.9/lib" or you could also try to manually edit objs/Makefileby replay - Nginx Mailing List - English
hi there are many ways to do this, in the end the gcc which is called by make just has to find mhash's header files and the shared library. if you install the mhash and mhash-dev packages and your distribution doesn't set it up automatically so that gcc can find it, you can still set CFLAGS to something like -I/path/to/headers and LDFLAGS to -L/path/to/shared/library before you do the configure.by replay - Nginx Mailing List - English