![]() |
Site performance, Server errors, outages and tunings - Printable Version +- Like Ra's Naughty Forum (https://www.likera.com/forum/mybb) +-- Forum: Technical section (https://www.likera.com/forum/mybb/Forum-Technical-section) +--- Forum: Site (https://www.likera.com/forum/mybb/Forum-Site) +--- Thread: Site performance, Server errors, outages and tunings (/Thread-Site-performance-Server-errors-outages-and-tunings) Pages:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
|
RE: Site performance, Server errors, outages and tunings - Like Ra - 25 Feb 2020 (25 Feb 2020, 00:53 )Tinker D Wrote: So it was a buggy routine ?A buggy "routine" in PHP-language library. Not in the Blog software or configuration. RE: Site performance, Server errors, outages and tunings - Like Ra - 25 Feb 2020 (24 Feb 2020, 23:43 )Like Ra Wrote: After the latest upgrade of PHP (7.4.2 -> 7.4.3) it began to work. Apparently the site was hit by this bug: https://bugs.php.net/bug.php?id=79174I think this issue is related: (31 Dec 2019, 00:49 )Like Ra Wrote: I noticed one interesting thing - the caching has become very effective, rather too effective. I have to refresh twice to get the pages updated. Though, I'm not sure if it's PHP 7.4 or firefox 73. or both. Has anybody else noticed a similar behaviour? Let me know if anybody still sees strange behaviour (or was I the only one? 😆) RE: Site performance, Server errors, outages and tunings - Tinker D - 25 Feb 2020 Every time I hit the refresh, it seems to load ok. But every once in a while, I have to refresh twice. At that time, I was thinking that it was just me and my big meaty claws. RE: Site performance, Server errors, outages and tunings - Like Ra - 09 Mar 2020 The reason why the site was down for an hour: Quote:The physical host your Linode resides on requires emergency maintenance and we feel the most prudent course of action is to migrate your Linode to new hardware. So, the site is running on AMD EPYC 7601 32-Core Processor 2.2GHz 64MB cache now. Before (https://www.likera.com/forum/mybb/Thread-Site-performance-Server-errors-outages-and-tunings?pid=18944#pid18944) it was Intel® Xeon® CPU E5-2680 v3 @ 2.50GHz 30MB cache. https://www.cpu-monkey.com/en/compare_cpu-amd_epyc_7601-744-vs-intel_xeon_e5_2680_v3-504 Free improvement again! 😉 RE: Site performance, Server errors, outages and tunings - Like Ra - 09 Mar 2020 OTOH, I think the operating system should be upgraded now, since we switched the CPU architecture. The current LTS kernel might not support not only the new features, but even the "old" ones. I planned to do the upgrade in April/May (to 20.04 LTS), but 19.10 might be a viable interim solution for the next 1-2 months. We'll see... RE: Site performance, Server errors, outages and tunings - Like Ra - 22 Mar 2020 Just for my reference: PHP has been upgraded to 7.4.4 RE: Site performance, Server errors, outages and tunings - Like Ra - 22 Apr 2020 For those who are interested what happened and why the site was not working correctly during the last couple of hours. Google reported that one page of the DeviantArt RSS stream is not loading. I checked - indeed. But it was loading after the n-th attempt There could be multiple reasons, but all other pages were loading OK. Is it memcached limitation? Upped memcached memory and allowed large pages Since lots of stuff are dependant from memcache, and there might be something else - rebooted the server The forum and the blog did not come up. Some errors (not all) were about memcached Restarted memcached and mysql - still down Reset all memcached parameters. Restarted - down memcached is not up Port is in use. HOW?????? Checked the prog which uses 11211 - MYSQL!!!!!!! Mysql is not supposed to listen to 11211!!!!! Checked the start sequence - first memcached then mysql Stopped mysql, started memcached - Large page error Checked the huge pages - huge pages are allowed Memcached still gives "large pages is not supported by your OS" WHAT???? Disabled large pages in memcached Rebooted - everything is up Cleared up all MyBB caches. So..... Questions: - Why does MySQL listens to tcp/udp 12211? - Why does memcached say, that large pages are not supported? - Does MySQL actually use memcached as InnoDB cache as written in the documentation (the RES size of memcached is way too small)? RE: Site performance, Server errors, outages and tunings - B1u3 - 22 Apr 2020 And wrong-going update involved? RE: Site performance, Server errors, outages and tunings - Pidstupne - 22 Apr 2020 Попробуй поверить на сервере, что занимает порт: netstat -natp | grep :12211 RE: Site performance, Server errors, outages and tunings - Like Ra - 22 Apr 2020 (22 Apr 2020, 07:20 )B1u3 Wrote: And wrong-going update involved?I think not this time. But how can I be sure? Bugs are omnipresent 😁 |