<div dir="ltr">nginx-0.8.55 exhibits this problem for me too.<br><div><br></div><div>i tried  nginx-0.7.69 which seems to fix.</div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Tue, Jun 18, 2013 at 2:00 PM, Charles <span dir="ltr"><<a href="mailto:cprenzberg@googlemail.com" target="_blank">cprenzberg@googlemail.com</a>></span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">well....that's really really too bad. it's such a great module.</div><div class="HOEnZb"><div class="h5">

<div class="gmail_extra"><br><br><div class="gmail_quote">On Mon, Jun 17, 2013 at 9:40 PM, Akzhan Abdulin <span dir="ltr"><<a href="mailto:akzhan.abdulin@gmail.com" target="_blank">akzhan.abdulin@gmail.com</a>></span> wrote:<br>


<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">nginx-mogilefs-module is not maintained by author now. It works ok with nginx 0.7.1 up to 0.8. It has some issues on nginx 1.0 and higher due to updates of nginx APIs.</div>


<div class="gmail_extra"><br><br><div class="gmail_quote">
2013/6/17 Charles <span dir="ltr"><<a href="mailto:cprenzberg@googlemail.com" target="_blank">cprenzberg@googlemail.com</a>></span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">


<div><div>
<div dir="ltr"><div>Hi,</div><div><br></div><div>I am having issues executing the http PUT to upload a file to MogileFS via nginx-mogilefs-module v1.0.4.</div><div><br></div><div>I am running nginx 1.4.1 compiled with --with-debug option on CentOS 6.3.</div>




<div><br></div><div>The nginx-mogilefs-module was forked from <a href="https://github.com/gnosek/nginx-mogilefs-module" target="_blank">https://github.com/gnosek/nginx-mogilefs-module</a> where a fix for -Werror=unused-but-set-variable warnings (with newer gcc)</div>




<div>was fixed. Then I manually merged changes from <a href="https://github.com/pyh/nginx-mogilefs-module" target="_blank">https://github.com/pyh/nginx-mogilefs-module</a> which implements variables for "mogilefs_domain" (and makes the directive mandatory).</div>




<div><br></div><div>I guess there is a sleeker way to merge changes like that but I am still relatively new at using git. Anyway, I compiled nginx with the resulting module and the compile was ok.</div><div><br></div><div>




My nginx configuration is as follows:</div><div><br></div><div>server {</div><div><br></div><div><span style="white-space:pre-wrap">        </span>listen          <a href="http://192.168.0.109:80" target="_blank">192.168.0.109:80</a>;</div>




<div><br></div><div><span style="white-space:pre-wrap"> </span>error_log logs/node1.storage.dfs.log debug;</div><div><br></div><div><span style="white-space:pre-wrap">     </span>location ~ ^/download/(?<domain>\w.+)/(?<class>\w.+)/(?<key>.+)$ {</div>




<div><br></div><div><span style="white-space:pre-wrap">                 </span>allow <a href="http://192.168.0.0/24" target="_blank">192.168.0.0/24</a>;</div><div><span style="white-space:pre-wrap">                        </span>deny all;</div><div><br></div>



<div>
<span style="white-space:pre-wrap">                     </span></div><div><span style="white-space:pre-wrap">                 </span>mogilefs_tracker mogilefs_tracker_nodes;</div><div><span style="white-space:pre-wrap">                 </span>mogilefs_domain $domain;</div>




<div><span style="white-space:pre-wrap">                  </span>mogilefs_class $class;</div><div><span style="white-space:pre-wrap">                   </span>mogilefs_methods GET;</div><div><br></div><div><span style="white-space:pre-wrap">                   </span>mogilefs_pass $key {</div>




<div><span style="white-space:pre-wrap">                                  </span>proxy_pass $mogilefs_path;</div><div><span style="white-space:pre-wrap">                                       </span>proxy_hide_header Content-Type;</div><div><span style="white-space:pre-wrap">                                  </span>proxy_buffering off;</div>




<div><span style="white-space:pre-wrap">                  </span>}</div><div><span style="white-space:pre-wrap">        </span>}</div><div><br></div><div><span style="white-space:pre-wrap">       </span></div><div><span style="white-space:pre-wrap"> </span>location ~ ^/upload/(?<domain>\w.+)/(?<class>\w.+)/(?<key>.+)$ {</div>




<div><span style="white-space:pre-wrap">                  </span>allow <a href="http://192.168.0.0/24" target="_blank">192.168.0.0/24</a>;</div><div><span style="white-space:pre-wrap">                        </span>deny all;</div><div><br></div><div><span style="white-space:pre-wrap">                       </span>mogilefs_tracker mogilefs_tracker_nodes;</div>




<div><span style="white-space:pre-wrap">                  </span>mogilefs_domain $domain;</div><div><span style="white-space:pre-wrap">                 </span>mogilefs_class $class;</div><div><span style="white-space:pre-wrap">                   </span>mogilefs_methods PUT DELETE;</div>




<div><br></div><div><span style="white-space:pre-wrap">                 </span>mogilefs_pass $key {</div><div><span style="white-space:pre-wrap">                                     </span>proxy_pass $mogilefs_path;</div><div><span style="white-space:pre-wrap">                                       </span>proxy_hide_header Content-Type;</div>




<div><span style="white-space:pre-wrap">                                  </span>proxy_buffering off;</div><div><span style="white-space:pre-wrap">                     </span>}</div><div><span style="white-space:pre-wrap">        </span>}</div><div><br></div><div>
}</div><div><br></div><div>On start of the server I have the following in node1.storage.dfs.log:</div><div><br></div><div>2013/06/17 17:02:47 [debug] 12417#0: epoll add event: fd:7 op:1 ev:00000001</div><div><br></div><div>




<br></div><div>GET and DELETE work fine but not PUT. When I try to PUT a file via curl, I get the following on the console:</div><div><br></div><div>root@node1.storage.dfs:~# curl -v --upload-file ./castle.jpg <a href="http://192.168.0.109/upload/defaultdomain/defaultclass/schwarzwald.jpg" target="_blank">http://192.168.0.109/upload/defaultdomain/defaultclass/schwarzwald.jpg</a></div>




<div>* About to connect() to 192.168.0.109 port 80 (#0)</div><div>*   Trying 192.168.0.109... connected</div><div>* Connected to 192.168.0.109 (192.168.0.109) port 80 (#0)</div><div>> PUT /upload/defaultdomain/defaultclass/schwarzwald.jpg HTTP/1.1</div>




<div>> User-Agent: curl/7.19.7 (x86_64-redhat-linux-gnu) libcurl/7.19.7 NSS/<a href="http://3.13.1.0" target="_blank">3.13.1.0</a> zlib/1.2.3 libidn/1.18 libssh2/1.2.2</div><div>> Host: 192.168.0.109</div><div>> Accept: */*</div>




<div>> Content-Length: 301027</div><div>> Expect: 100-continue</div><div>></div><div>< HTTP/1.1 100 Continue</div><div><br></div><div>and it just hangs there</div><div><br></div><div><br></div><div>And these are the debug logs for the PUT request:</div>




<div><br></div><div>2013/06/17 17:06:08 [debug] 12417#0: accept on <a href="http://192.168.0.109:80" target="_blank">192.168.0.109:80</a>, ready: 0</div><div>2013/06/17 17:06:08 [debug] 12417#0: posix_memalign: 0000000002639F80:256 @16</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 accept: 192.168.0.109 fd:3</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 event timer add: 3: 60000:1371481628599</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 reusable connection: 1</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 epoll add event: fd:3 op:1 ev:80000001</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http wait request handler</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 posix_memalign: 000000000263A0E0:256 @16</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 malloc: 000000000266B1D0:1024</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 recv: fd:3 263 of 1024</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 reusable connection: 0</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 posix_memalign: 0000000002646430:4096 @16</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http process request line</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http request line: "PUT /upload/defaultdomain/defaultclass/schwarzwald.jpg HTTP/1.1"</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http uri: "/upload/defaultdomain/defaultclass/schwarzwald.jpg"</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http args: ""</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http exten: "jpg"</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http process request header line</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http header: "User-Agent: curl/7.19.7 (x86_64-redhat-linux-gnu) libcurl/7.19.7 NSS/<a href="http://3.13.1.0" target="_blank">3.13.1.0</a> zlib/1.2.3 libidn/1.18 libssh2/1.2.2"</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http header: "Host: 192.168.0.109"</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http header: "Accept: */*"</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http header: "Content-Length: 301027"</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http header: "Expect: 100-continue"</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http header done</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 event timer del: 3: 1371481628599</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 rewrite phase: 0</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 test location: "/"</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 test location: "mogstored_spare_40237552/"</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 test location: "mogstored_spare_40262152/"</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 test location: "robots.txt"</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 test location: ~ "^/download/(?<domain>\w.+)/(?<class>\w.+)/(?<key>.+)$"</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 test location: ~ "^/upload/(?<domain>\w.+)/(?<class>\w.+)/(?<key>.+)$"</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http regex set $class to "defaultclass"</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http regex set $domain to "defaultdomain"</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http regex set $key to "schwarzwald.jpg"</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 using configuration "^/upload/(?<domain>\w.+)/(?<class>\w.+)/(?<key>.+)$"</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http cl:301027 max:10485760</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 rewrite phase: 2</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 post rewrite phase: 3</div><div>




2013/06/17 17:06:08 [debug] 12417#0: *1 generic phase: 4</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 generic phase: 5</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 access phase: 6</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 access: 6D00A8C0 00FFFFFF 0000A8C0</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 access phase: 7</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 post access phase: 8</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http finalize request: -5, "/upload/defaultdomain/defaultclass/schwarzwald.jpg?" a:1, c:1</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 content phase: 9</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 mogilefs put handler</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 posix_memalign: 000000000263E530:4096 @16</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http script var: "schwarzwald.jpg"</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 send 100 Continue</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 send: fd:3 25 of 25</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http request body content length filter</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 malloc: 000000000263F540:8192</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http read client request body</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 recv: fd:3 -1 of 8192</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 recv() not ready (11: Resource temporarily unavailable)</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http client request body recv -2</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http client request body rest 301027</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 event timer add: 3: 60000:1371481628603</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http finalize request: -4, "/upload/defaultdomain/defaultclass/schwarzwald.jpg?" a:1, c:2</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http request count:2 blk:0</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http run request: "/upload/defaultdomain/defaultclass/schwarzwald.jpg?"</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http read client request body</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 recv: fd:3 8192 of 8192</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http client request body recv 8192</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http body new buf t:1 f:0 000000000263F540, pos 000000000263F540, size: 8192 file: 0, size: 0</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http write client request body, bufs 000000000263E698</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 add cleanup: 000000000263E7D0</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 hashed path: /usr/local/nginx/client_body_temp/0000000001</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 temp fd:10</div><div>2013/06/17 17:06:08 [warn] 12417#0: *1 a client request body is buffered to a temporary file /usr/local/nginx/client_body_temp/0000000001, client: 192.168.0.109, server: , request: "PUT /upload/defaultdomain/defaultclass/schwarzwald.jpg HTTP/1.1", host: "192.168.0.109"</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 write: 10, 000000000263F540, 8192, 0</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 recv: fd:3 8192 of 8192</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http client request body recv 8192</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http body new buf t:1 f:0 000000000263F540, pos 000000000263F540, size: 8192 file: 0, size: 0</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http write client request body, bufs 000000000263E800</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 write: 10, 000000000263F540, 8192, 8192</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 recv: fd:3 8192 of 8192</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http client request body recv 8192</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http body new buf t:1 f:0 000000000263F540, pos 000000000263F540, size: 8192 file: 0, size: 0</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http write client request body, bufs 000000000263E810</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 write: 10, 000000000263F540, 8192, 16384</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 recv: fd:3 8192 of 8192</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http client request body recv 8192</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http body new buf t:1 f:0 000000000263F540, pos 000000000263F540, size: 8192 file: 0, size: 0</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http write client request body, bufs 000000000263E820</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 write: 10, 000000000263F540, 8192, 24576</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 recv: fd:3 8192 of 8192</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http client request body recv 8192</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http body new buf t:1 f:0 000000000263F540, pos 000000000263F540, size: 8192 file: 0, size: 0</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http write client request body, bufs 000000000263E830</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 write: 10, 000000000263F540, 8192, 32768</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 recv: fd:3 8192 of 8192</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http client request body recv 8192</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http body new buf t:1 f:0 000000000263F540, pos 000000000263F540, size: 8192 file: 0, size: 0</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http write client request body, bufs 000000000263E840</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 write: 10, 000000000263F540, 8192, 40960</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 recv: fd:3 8192 of 8192</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http client request body recv 8192</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http body new buf t:1 f:0 000000000263F540, pos 000000000263F540, size: 8192 file: 0, size: 0</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http body new buf t:1 f:0 000000000263F540, pos 000000000263F540, size: 8192 file: 0, size: 0</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http write client request body, bufs 000000000263E850</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 write: 10, 000000000263F540, 8192, 49152</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 recv: fd:3 8192 of 8192</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http client request body recv 8192</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http body new buf t:1 f:0 000000000263F540, pos 000000000263F540, size: 8192 file: 0, size: 0</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http write client request body, bufs 000000000263E860</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 write: 10, 000000000263F540, 8192, 57344</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 recv: fd:3 8192 of 8192</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http client request body recv 8192</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http body new buf t:1 f:0 000000000263F540, pos 000000000263F540, size: 8192 file: 0, size: 0</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http write client request body, bufs 000000000263E870</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 write: 10, 000000000263F540, 8192, 65536</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 recv: fd:3 8192 of 8192</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http client request body recv 8192</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http body new buf t:1 f:0 000000000263F540, pos 000000000263F540, size: 8192 file: 0, size: 0</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http write client request body, bufs 000000000263E880</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 write: 10, 000000000263F540, 8192, 73728</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 recv: fd:3 8192 of 8192</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http client request body recv 8192</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http body new buf t:1 f:0 000000000263F540, pos 000000000263F540, size: 8192 file: 0, size: 0</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http write client request body, bufs 000000000263E890</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 write: 10, 000000000263F540, 8192, 81920</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 recv: fd:3 8192 of 8192</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http client request body recv 8192</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http body new buf t:1 f:0 000000000263F540, pos 000000000263F540, size: 8192 file: 0, size: 0</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http write client request body, bufs 000000000263E8A0</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 write: 10, 000000000263F540, 8192, 90112</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 recv: fd:3 8192 of 8192</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http client request body recv 8192</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http body new buf t:1 f:0 000000000263F540, pos 000000000263F540, size: 8192 file: 0, size: 0</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http write client request body, bufs 000000000263E8B0</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 write: 10, 000000000263F540, 8192, 98304</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 recv: fd:3 8192 of 8192</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http client request body recv 8192</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http body new buf t:1 f:0 000000000263F540, pos 000000000263F540, size: 8192 file: 0, size: 0</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http write client request body, bufs 000000000263E8C0</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 write: 10, 000000000263F540, 8192, 106496</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 recv: fd:3 8192 of 8192</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http client request body recv 8192</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http body new buf t:1 f:0 000000000263F540, pos 000000000263F540, size: 8192 file: 0, size: 0</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http write client request body, bufs 000000000263E8D0</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 write: 10, 000000000263F540, 8192, 114688</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 recv: fd:3 8192 of 8192</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http client request body recv 8192</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http body new buf t:1 f:0 000000000263F540, pos 000000000263F540, size: 8192 file: 0, size: 0</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http write client request body, bufs 000000000263E8E0</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 write: 10, 000000000263F540, 8192, 122880</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 recv: fd:3 8192 of 8192</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http client request body recv 8192</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http body new buf t:1 f:0 000000000263F540, pos 000000000263F540, size: 8192 file: 0, size: 0</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http write client request body, bufs 000000000263E8F0</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 write: 10, 000000000263F540, 8192, 131072</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 recv: fd:3 8192 of 8192</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http client request body recv 8192</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http body new buf t:1 f:0 000000000263F540, pos 000000000263F540, size: 8192 file: 0, size: 0</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http write client request body, bufs 000000000263E900</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 write: 10, 000000000263F540, 8192, 139264</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 recv: fd:3 -1 of 8192</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 recv() not ready (11: Resource temporarily unavailable)</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http client request body recv -2</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http client request body rest 153571</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 event timer: 3, old: 1371481628603, new: 1371481628627</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http run request: "/upload/defaultdomain/defaultclass/schwarzwald.jpg?"</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http read client request body</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 recv: fd:3 8192 of 8192</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http client request body recv 8192</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http body new buf t:1 f:0 000000000263F540, pos 000000000263F540, size: 8192 file: 0, size: 0</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http write client request body, bufs 000000000263E910</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 write: 10, 000000000263F540, 8192, 147456</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 recv: fd:3 8192 of 8192</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http client request body recv 8192</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http body new buf t:1 f:0 000000000263F540, pos 000000000263F540, size: 8192 file: 0, size: 0</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http write client request body, bufs 000000000263E920</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 write: 10, 000000000263F540, 8192, 155648</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 recv: fd:3 8192 of 8192</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http client request body recv 8192</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http body new buf t:1 f:0 000000000263F540, pos 000000000263F540, size: 8192 file: 0, size: 0</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http write client request body, bufs 000000000263E930</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 write: 10, 000000000263F540, 8192, 163840</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 recv: fd:3 8192 of 8192</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http client request body recv 8192</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http body new buf t:1 f:0 000000000263F540, pos 000000000263F540, size: 8192 file: 0, size: 0</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http write client request body, bufs 000000000263E940</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 write: 10, 000000000263F540, 8192, 172032</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 recv: fd:3 8192 of 8192</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http client request body recv 8192</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http body new buf t:1 f:0 000000000263F540, pos 000000000263F540, size: 8192 file: 0, size: 0</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http write client request body, bufs 000000000263E950</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 write: 10, 000000000263F540, 8192, 180224</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 recv: fd:3 8192 of 8192</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http client request body recv 8192</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http body new buf t:1 f:0 000000000263F540, pos 000000000263F540, size: 8192 file: 0, size: 0</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http write client request body, bufs 000000000263E960</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 write: 10, 000000000263F540, 8192, 188416</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 recv: fd:3 8192 of 8192</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http client request body recv 8192</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http body new buf t:1 f:0 000000000263F540, pos 000000000263F540, size: 8192 file: 0, size: 0</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http write client request body, bufs 000000000263E970</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 write: 10, 000000000263F540, 8192, 196608</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 recv: fd:3 8192 of 8192</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http client request body recv 8192</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http body new buf t:1 f:0 000000000263F540, pos 000000000263F540, size: 8192 file: 0, size: 0</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http write client request body, bufs 000000000263E980</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 write: 10, 000000000263F540, 8192, 204800</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 recv: fd:3 8192 of 8192</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http client request body recv 8192</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http body new buf t:1 f:0 000000000263F540, pos 000000000263F540, size: 8192 file: 0, size: 0</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http write client request body, bufs 000000000263E990</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 write: 10, 000000000263F540, 8192, 212992</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 recv: fd:3 8192 of 8192</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http client request body recv 8192</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http body new buf t:1 f:0 000000000263F540, pos 000000000263F540, size: 8192 file: 0, size: 0</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http write client request body, bufs 000000000263E9A0</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 write: 10, 000000000263F540, 8192, 221184</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 recv: fd:3 -1 of 8192</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 recv() not ready (11: Resource temporarily unavailable)</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http client request body recv -2</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http client request body rest 71651</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 event timer: 3, old: 1371481628603, new: 1371481628646</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http run request: "/upload/defaultdomain/defaultclass/schwarzwald.jpg?"</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http read client request body</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 recv: fd:3 8192 of 8192</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http client request body recv 8192</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http body new buf t:1 f:0 000000000263F540, pos 000000000263F540, size: 8192 file: 0, size: 0</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http write client request body, bufs 000000000263E9B0</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 write: 10, 000000000263F540, 8192, 229376</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 recv: fd:3 8192 of 8192</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http client request body recv 8192</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http body new buf t:1 f:0 000000000263F540, pos 000000000263F540, size: 8192 file: 0, size: 0</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http write client request body, bufs 000000000263E9C0</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 write: 10, 000000000263F540, 8192, 237568</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 recv: fd:3 8192 of 8192</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http client request body recv 8192</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http body new buf t:1 f:0 000000000263F540, pos 000000000263F540, size: 8192 file: 0, size: 0</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http write client request body, bufs 000000000263E9D0</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 write: 10, 000000000263F540, 8192, 245760</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 recv: fd:3 8192 of 8192</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http client request body recv 8192</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http body new buf t:1 f:0 000000000263F540, pos 000000000263F540, size: 8192 file: 0, size: 0</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http write client request body, bufs 000000000263E9E0</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 write: 10, 000000000263F540, 8192, 253952</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 recv: fd:3 8192 of 8192</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http client request body recv 8192</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http body new buf t:1 f:0 000000000263F540, pos 000000000263F540, size: 8192 file: 0, size: 0</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http write client request body, bufs 000000000263E9F0</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 write: 10, 000000000263F540, 8192, 262144</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 recv: fd:3 8192 of 8192</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http client request body recv 8192</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http body new buf t:1 f:0 000000000263F540, pos 000000000263F540, size: 8192 file: 0, size: 0</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http write client request body, bufs 000000000263EA00</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 write: 10, 000000000263F540, 8192, 270336</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 recv: fd:3 8192 of 8192</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http client request body recv 8192</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http body new buf t:1 f:0 000000000263F540, pos 000000000263F540, size: 8192 file: 0, size: 0</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http write client request body, bufs 000000000263EA10</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 write: 10, 000000000263F540, 8192, 278528</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 recv: fd:3 8192 of 8192</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http client request body recv 8192</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http body new buf t:1 f:0 000000000263F540, pos 000000000263F540, size: 8192 file: 0, size: 0</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http write client request body, bufs 000000000263EA20</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 write: 10, 000000000263F540, 8192, 286720</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 recv: fd:3 6115 of 6115</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http client request body recv 6115</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http body new buf t:1 f:0 000000000263F540, pos 000000000263F540, size: 6115 file: 0, size: 0</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http client request body rest 0</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 event timer del: 3: 1371481628603</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http write client request body, bufs 000000000263EA30</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 write: 10, 000000000263F540, 6115, 294912</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 mogilefs body handler</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 mogilefs put handler</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 mogilefs put handler state: 0, status: 0</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http subrequest "/mogstored_spare_40251304/schwarzwald.jpg?"</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http posted request: "/mogstored_spare_40251304/schwarzwald.jpg?"</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 rewrite phase: 0</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 test location: "/"</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 test location: "mogstored_spare_40237552/"</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 test location: "mogstored_spare_40262152/"</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 test location: "mogstored_spare_40256728/"</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 test location: "mogstored_spare_40251304/"</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 using configuration "/mogstored_spare_40251304/"</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http cl:301027 max:10485760</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 rewrite phase: 2</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 post rewrite phase: 3</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 generic phase: 4</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 generic phase: 5</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 posix_memalign: 0000000002641550:4096 @16</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http init upstream, client timer: 0</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 epoll add event: fd:3 op:3 ev:80000005</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http script var: "defaultdomain"</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http script var: "defaultclass"</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 mogilefs request: "create_open key=schwarzwald.jpg&domain=defaultdomain&class=defaultclass"</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http cleanup add: 0000000002641B40</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 get rr peer, try: 1</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 socket 11</div><div>



2013/06/17 17:06:08 [debug] 12417#0: *1 epoll add connection: fd:11 ev:80000005</div>
<div>2013/06/17 17:06:08 [debug] 12417#0: *1 connect to <a href="http://192.168.0.109:6001" target="_blank">192.168.0.109:6001</a>, fd:11 #2</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http upstream connect: -2</div>



<div>2013/06/17 17:06:08 [debug] 12417#0: *1 posix_memalign: 000000000263A1F0:128 @16</div>
<div>2013/06/17 17:06:08 [debug] 12417#0: *1 event timer add: 11: 60000:1371481628674</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http finalize request: -4, "/mogstored_spare_40251304/schwarzwald.jpg?" a:1, c:3</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http request count:3 blk:0</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http run request: "/mogstored_spare_40251304/schwarzwald.jpg?"</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http upstream check client, write event:1, "/mogstored_spare_40251304/schwarzwald.jpg"</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 epoll add connection: fd:11 ev:80000005</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 connect to <a href="http://192.168.0.109:6001" target="_blank">192.168.0.109:6001</a>, fd:11 #2</div>



<div>
2013/06/17 17:06:08 [debug] 12417#0: *1 http upstream connect: -2</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 posix_memalign: 000000000263A1F0:128 @16</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 event timer add: 11: 60000:1371481628674</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http finalize request: -4, "/mogstored_spare_40251304/schwarzwald.jpg?" a:1, c:3</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http request count:3 blk:0</div><div>




2013/06/17 17:06:08 [debug] 12417#0: *1 http run request: "/mogstored_spare_40251304/schwarzwald.jpg?"</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http upstream check client, write event:1, "/mogstored_spare_40251304/schwarzwald.jpg"</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http upstream recv(): -1 (11: Resource temporarily unavailable)</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http upstream request: "/mogstored_spare_40251304/schwarzwald.jpg?"</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http upstream send request handler</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http upstream send request</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 chain writer buf fl:0 s:73</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 chain writer in: 0000000002641B78</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 writev: 73</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 chain writer out: 0000000000000000</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 event timer del: 11: 1371481628674</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 event timer add: 11: 60000:1371481628676</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http upstream request: "/mogstored_spare_40251304/schwarzwald.jpg?"</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http upstream process header</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 malloc: 00000000026A59F0:4096</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 recv: fd:11 80 of 4096</div>




<div>"013/06/17 17:06:08 [debug] 12417#0: *1 mogilefs: "OK devid=2&fid=50&path=<a href="http://192.168.0.108:7500/dev2/0/000/000/0000000050.fid" target="_blank">http://192.168.0.108:7500/dev2/0/000/000/0000000050.fid</a></div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 mogilefs param: "devid"="2"</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 mogilefs param: "fid"="50"</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 mogilefs param: "path"="<a href="http://192.168.0.108:7500/dev2/0/000/000/0000000050.fid" target="_blank">http://192.168.0.108:7500/dev2/0/000/000/0000000050.fid</a>"</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 tcp_nodelay</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http upstream process non buffered downstream</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 finalize http upstream request: 0</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 finalize mogilefs request</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 free rr peer 1 0</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 close http upstream connection: 11</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 free: 000000000263A1F0, unused: 48</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 event timer del: 11: 1371481628676</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 reusable connection: 0</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http output filter "/mogstored_spare_40251304/schwarzwald.jpg?"</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http copy filter: "/mogstored_spare_40251304/schwarzwald.jpg?"</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http postpone filter "/mogstored_spare_40251304/schwarzwald.jpg?" 00007FFFC19595A0</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 write new buf t:0 f:0 0000000000000000, pos 0000000000000000, size: 0 file: 0, size: 0</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http write filter: l:0 f:0 s:0</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http copy filter: 0 "/mogstored_spare_40251304/schwarzwald.jpg?"</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http finalize request: 0, "/mogstored_spare_40251304/schwarzwald.jpg?" a:1, c:2</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 mogilefs finish phase handler: state=1, status=0</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http wake parent request: "/upload/defaultdomain/defaultclass/schwarzwald.jpg?"</div>




<div>2013/06/17 17:06:08 [debug] 12417#0: *1 http posted request: "/upload/defaultdomain/defaultclass/schwarzwald.jpg?"</div><div>2013/06/17 17:06:08 [debug] 12417#0: *1 http request empty handler</div><div>2013/06/17 17:06:28 [debug] 12417#0: *1 http run request: "/upload/defaultdomain/defaultclass/schwarzwald.jpg?"</div>




<div>2013/06/17 17:06:28 [debug] 12417#0: *1 http reading blocked</div><div>2013/06/17 17:06:28 [debug] 12417#0: *1 http run request: "/upload/defaultdomain/defaultclass/schwarzwald.jpg?"</div><div>2013/06/17 17:06:28 [debug] 12417#0: *1 http request empty handler</div>



<span><font color="#888888">
</font></span></div></div></div><span><font color="#888888"><span><font color="#888888">

<p></p>

-- <br>
 <br>
--- <br>
You received this message because you are subscribed to the Google Groups "mogile" group.<br>
To unsubscribe from this group and stop receiving emails from it, send an email to <a href="mailto:mogile%2Bunsubscribe@googlegroups.com" target="_blank">mogile+unsubscribe@googlegroups.com</a>.<br>
For more options, visit <a href="https://groups.google.com/groups/opt_out" target="_blank">https://groups.google.com/groups/opt_out</a>.<br>
 <br>
 <br>
</font></span></font></span></blockquote></div><span><font color="#888888"><br></font></span></div><span><font color="#888888">

<p></p>

-- <br>
 <br>
--- <br>
You received this message because you are subscribed to the Google Groups "mogile" group.<br>
To unsubscribe from this group and stop receiving emails from it, send an email to <a href="mailto:mogile%2Bunsubscribe@googlegroups.com" target="_blank">mogile+unsubscribe@googlegroups.com</a>.<br>
For more options, visit <a href="https://groups.google.com/groups/opt_out" target="_blank">https://groups.google.com/groups/opt_out</a>.<br>
 <br>
 <br>
</font></span></blockquote></div><br></div>

<p></p>

-- <br>
 <br>
--- <br>
You received this message because you are subscribed to the Google Groups "mogile" group.<br>
To unsubscribe from this group and stop receiving emails from it, send an email to <a href="mailto:mogile%2Bunsubscribe@googlegroups.com" target="_blank">mogile+unsubscribe@googlegroups.com</a>.<br>
For more options, visit <a href="https://groups.google.com/groups/opt_out" target="_blank">https://groups.google.com/groups/opt_out</a>.<br>
 <br>
 <br>
</div></div></blockquote></div><br></div>