Closed (won't fix)
Project:
Drupal.org infrastructure
Component:
Servers
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
31 Aug 2009 at 15:07 UTC
Updated:
9 Jan 2020 at 08:51 UTC
Jump to comment: Most recent
Sorry, I cannot search... maybe a duplicate. Every time I access http://drupal.org/project/issues/user I get the below errors. Other urls seems to have the same issue.
Error 503 Service Unavailable
Service Unavailable
Guru Meditation:
XID: 1685907245
Varnish
Start within a Git clone of the project using the version control instructions.
Or, if you do not have SSH keys set up on git.drupalcode.org:
Comments
Comment #1
hass commentedIssue exists for ~5 hours...
Comment #2
neclimdulGetting this again this morning. some other pages are a bit slow to load.
Comment #3
killes@www.drop.org commentedSome naughty queries put stress on the DB server. We've implemented a new memcached bin to allow for better (and longer) caching.
Comment #4
hass commentedHappened again a few minutes ago
Comment #5
nnewton commentedCombination of load balancer "issue"/feature and varnish timeout. This should be fixed, but please report if it happens again.
Thanks.
Comment #6
hass commentedAgain
Comment #7
nnewton commentedHow long did it last, what page, did a force refresh help?
Comment #8
nnewton commentedAlso, next time anyone sees this can you give me fairly exact times and your IP. I am seeing actual 503 errors coming from apache, so this maybe totally unrelated to varnish.
Comment #9
hass commentedhttp://drupal.org/project/issues/user?text=&projects=&status=All&priorit...
I will try to post the other data if happens again…
Comment #10
nnewton commentedHass-
About how long did it take before the 503 came up?
Thanks for all this info btw, very helpful.
Comment #11
hass commentedIt took very long... could be 30-60 seconds or more... not taken a look to the clock.
Comment #12
hass commentedhttp://drupal.org/project/issues/user?text=&projects=&status=All&priorities=All&categories=AllGerman time:
- Start 16:06
- Start 16:09
- Start 16:11:07, GMT+2, End after timeout of 120 seconds, XID below
Comment #13
hass commentedAlso happened on
http://drupal.org/project/issues/user, no time, sorry.Comment #14
hass commentedhttp://drupal.org/project/issues/user?text=&projects=&status=All&priorities=All&categories=AllToday, ~16:49 German time (GMT+2)
Comment #15
nnewton commentedWe have edited the varnish config a bit to ensure that 503s are not at all cached and to up the timeout. Let me know if this continues to happen.
Comment #16
hass commentedhttp://drupal.org/node/586708
Error occurred at 11:52:28 GMT+2, German time
Comment #17
hass commentedToday I got (between ~18:50-19:20) and get (01:58 german time) many browser timeout errors - not the vanish errors like in past, but the page is loading and loading and never finishes and the browser complains - page cannot be loaded if I try to load "My issues" with status "- Any -". Seems to be overloaded d.o... so it could be the vanish issue, too.
Comment #18
nnewton commentedI believe I'm going to close this. I'm fairly convinced this has nothing to do with varnish, but is just a symptom of times when d.o is overloaded or a query hits a timeout. Thanks for all the reports. This should be considerably improved by the infrastructure improvements we are currently working on.
This started out as an issue with varnish config, but now these absolutely line up with apache 503s. Thanks again.
-N
Comment #19
khan2ims commentedI am still this error on all Drupal forms.
Comment #20
hass commentedJoin, #823940: WSOD on d.o if logged in
Comment #21
myxelf commentedSubscribing...
Comment #22
alan d. commentedI've been getting 503, WSOD, and partial pages (text only - no css or jscript) continuously for the last week. This has been especially bad over the last hour. (75% of pages) I've hit F5 about 20 times in 30min and the form that I am trying to submit still is not saving.
Comment #23
klonosIts been almost a week now I've been getting these:
Comment #24
myxelf commentedI use to get this error creating new comments on issues. But in the last 2 days ocurred 3 times doing a normal navigation.
(I guess this vague comment could be taken as a +1) :-D
Comment #25
hass commentedComment #26
alan d. commentedWhat was fixed? This seems to be a consistent error on poor connections. I experienced this on a regular basis when on the road in South America and often get it when the wireless (mobile) internet connection in Australia is poor. I have seen no change in this over the last year and a half.
Comment #27
hass commentedI have not seen this server side cache issues myself for a year or so. If you have issues with slow internat access it is not a problem of the vanish cache on server side and it does not make any difference where you are and how fast you access is. You should not mix local access issues with server issues...
Comment #28
alan d. commentedI can accept that the WSOD / 0 Byte responses could be, but a 503 != local access error.
On this 2 year old response, and minimal noise about this, (developers can hit F5 in their sleep), marking as a won't fix as I do not believe that this is fixed, but I haven't the time to investigate further atm and will be getting a real connection within weeks :)
Comment #30
Liquidwebdhultin commentedHello,
I have solved this issue. After watching the varnish log file you can see this issue when the Drupal cache is hit.
16 FetchError c Junk after gzip data
The issue was not .htaccess enabled gzip compress but he Drupal gzip compression.
To solve this issue I have done these steps.
Open settings.php and add these lines
$conf['css_gzip_compression'] = FALSE;
$conf['js_gzip_compression'] = FALSE;
$conf['page_compression'] = FALSE;
Then login to domain.com/admin and Flush all caches. After doing this and logging out the site is no longer having any issues and is working as expected.
Hopefully this works for you.
Comment #31
ressaIn my case the Cache-Tags header had gotten too big for Varnish. The default is 8K (or 8192 characters, I believe) and the actual header had 8491 characters in it, after only about 700 nodes. Adding the parameter
http_resp_hdr_len=16kto/etc/systemd/system/varnish.service.d/customexec.confand restarting Varnish fixed the problem.Comment #32
driftingcowboy commentedI solved this issue, I had the same problem on all /admin/* pages on a Drupal7 site.
In my custom theme, I had a folder called "node_modules" that I forgot to mention in my .gitignore file. On my local environment, this wasn't a problem, but on the production server, I got a 503 error.
After removing node_modules from the repo, everything was fine again.