collapse

Advertisement


Author Topic: Is it just me?  (Read 5783 times)

Offline quadrafire

  • Past Sponsor
  • Trade Count: (+5)
  • Old Salt
  • *****
  • Join Date: Sep 2009
  • Posts: 7121
  • Location: Spokane
Is it just me?
« on: October 25, 2011, 09:18:59 AM »
The last 2 days I have been having some inconsistent connection problems with the HuntWa site. Sometimes it searches previous posts VERY slowy, and sometimes says lost connection. I haven't noted any issues with other web sites. Hummmm???

Offline high country

  • Trade Count: (0)
  • Old Salt
  • ******
  • Join Date: May 2007
  • Posts: 5133
Re: Is it just me?
« Reply #1 on: October 25, 2011, 09:23:12 AM »
me 2
 

Offline jackelope

  • Administrator
  • Trade Count: (+29)
  • Legend
  • *****
  • Join Date: Mar 2007
  • Posts: 50320
  • Location: Duvall, WA
  • Groups: jackelope
Re: Is it just me?
« Reply #2 on: October 25, 2011, 09:23:23 AM »
No it's not you. There's a thread on here about it already. The server needs to be upgraded again and it is in the works soon.

:fire.:

" In today's instant gratification society, more and more pressure revolves around success and the measurement of one's prowess as a hunter by inches on a score chart or field photos produced on social media. Don't fall into the trap. Hunting is-and always will be- about the hunt, the adventure, the views, and time spent with close friends and family. " Ryan Hatfield

My posts, opinions and statements do not represent those of this forum

Offline quadrafire

  • Past Sponsor
  • Trade Count: (+5)
  • Old Salt
  • *****
  • Join Date: Sep 2009
  • Posts: 7121
  • Location: Spokane
Re: Is it just me?
« Reply #3 on: October 25, 2011, 09:27:21 AM »
No it's not you. There's a thread on here about it already. The server needs to be upgraded again and it is in the works soon.
:tup: Thanks

Offline trippledigitss

  • 1.21 Jigawatts!?!
  • Trade Count: (0)
  • Sourdough
  • *****
  • Join Date: Mar 2010
  • Posts: 1234
  • Location: Woodinville
Re: Is it just me?
« Reply #4 on: October 25, 2011, 01:51:21 PM »
Yeah I am having the same problem. It seems like its getting worse everyday - I can barely get on or stay on today. Will be really glad when it is fixed!!
I aint superstitious - cuz its bad luck!
Global Warming: The #1 threat to Unicorns!

Offline Ray

  • Washington For Wildlife
  • Trade Count: (0)
  • Old Salt
  • ******
  • Join Date: Feb 2007
  • Posts: 6817
  • Location: Kirkland,WA
    • http://www.facebook.com/profile.php?id=1475043431
    • Hunting-Washington
Re: Is it just me?
« Reply #5 on: October 25, 2011, 04:57:16 PM »
The server is getting hammered. It simply cannot keep up with the httpd processes being spawned and the mysql usage often spikes to 90% of CPU. If I was going to rent a new server I would ask if you can get NGINX. It will run better than Apache and this technology will allow you to rent a lower end server and get more out of it. The MySQL database seems tuned well so there is not much else to do there. I would consider removing the "Random Photo" on the right as running the code wich renders that image is consuming more resources than you might want by writing to temp tables (read memory swap is being used). Additionally I would take a closer look at the mysql slow queries log at least once a month. Some tables may need to move to INNODB.

Bad  juju:

Copying to tmp table

70s


SELECT   t.id_topic, t.num_replies, t.locked, t.num_views, t.is_sticky, t.id_poll, t.id_previous_board,   0 AS new_from,   t.id_last_msg, t.approved, t.unapproved_posts, ml.poster_time AS last_poster_time,   ml.id_msg_modified, ml.subject AS last_subject, ml.icon AS last_icon,   ml.poster_name AS last_member_name, ml.id_member AS last_id_member,   IFNULL(meml.real_name, ml.poster_name) AS last_display_name, t.id_first_msg,   mf.poster_time AS first_poster_time, mf.subject AS first_subject, mf.icon AS first_icon,   mf.poster_name AS first_member_name, mf.id_member AS first_id_member,   IFNULL(memf.real_name, mf.poster_name) AS first_display_name, SUBSTRING(ml.body, 1, 385) AS last_body,   SUBSTRING(mf.body, 1, 385) AS first_body, ml.smileys_enabled AS last_smileys, mf.smileys_enabled AS first_smileysFROM smf_topics AS t   INNER JOIN smf_messages AS ml ON (ml.id_msg = t.id_last_msg)   INNER JOIN smf_messages AS mf ON (mf.id_msg = t.id_first_msg)


State

Time

Query



Copying to tmp table

13s


SELECT t.id_topicFROM smf_topics AS t   INNER JOIN smf_messages AS mf ON (mf.id_msg = t.id_first_msg)WHERE t.id_board = 2ORDER BY is_sticky DESC, mf.subjectLIMIT 120, 20
« Last Edit: October 25, 2011, 05:08:13 PM by Ray »

Offline quadrafire

  • Past Sponsor
  • Trade Count: (+5)
  • Old Salt
  • *****
  • Join Date: Sep 2009
  • Posts: 7121
  • Location: Spokane
Re: Is it just me?
« Reply #6 on: October 25, 2011, 05:55:09 PM »
The server is getting hammered. It simply cannot keep up with the httpd processes being spawned and the mysql usage often spikes to 90% of CPU. If I was going to rent a new server I would ask if you can get NGINX. It will run better than Apache and this technology will allow you to rent a lower end server and get more out of it. The MySQL database seems tuned well so there is not much else to do there. I would consider removing the "Random Photo" on the right as running the code wich renders that image is consuming more resources than you might want by writing to temp tables (read memory swap is being used). Additionally I would take a closer look at the mysql slow queries log at least once a month. Some tables may need to move to INNODB.

Bad  juju:

Copying to tmp table

70s


SELECT   t.id_topic, t.num_replies, t.locked, t.num_views, t.is_sticky, t.id_poll, t.id_previous_board,   0 AS new_from,   t.id_last_msg, t.approved, t.unapproved_posts, ml.poster_time AS last_poster_time,   ml.id_msg_modified, ml.subject AS last_subject, ml.icon AS last_icon,   ml.poster_name AS last_member_name, ml.id_member AS last_id_member,   IFNULL(meml.real_name, ml.poster_name) AS last_display_name, t.id_first_msg,   mf.poster_time AS first_poster_time, mf.subject AS first_subject, mf.icon AS first_icon,   mf.poster_name AS first_member_name, mf.id_member AS first_id_member,   IFNULL(memf.real_name, mf.poster_name) AS first_display_name, SUBSTRING(ml.body, 1, 385) AS last_body,   SUBSTRING(mf.body, 1, 385) AS first_body, ml.smileys_enabled AS last_smileys, mf.smileys_enabled AS first_smileysFROM smf_topics AS t   INNER JOIN smf_messages AS ml ON (ml.id_msg = t.id_last_msg)   INNER JOIN smf_messages AS mf ON (mf.id_msg = t.id_first_msg)


State

Time

Query



Copying to tmp table

13s


SELECT t.id_topicFROM smf_topics AS t   INNER JOIN smf_messages AS mf ON (mf.id_msg = t.id_first_msg)WHERE t.id_board = 2ORDER BY is_sticky DESC, mf.subjectLIMIT 120, 20

Uhhhh? I understood one sentence of that, but glad that some of you do. I for one have never even looked at the random photo thread. For me if that could go It wouldn't bother me. May save you from an upgrade?? By the way-----I would be willing to contribute a few bucks to help as would many others i'm sure if sponsorship does not cover it all to help keep this site functional

Offline ICEMAN

  • Site Sponsor
  • Trade Count: (0)
  • Explorer
  • ******
  • Join Date: May 2007
  • Posts: 15575
  • Location: Olympia
  • The opinionated one... Y.A.R. Exec. Staff
Re: Is it just me?
« Reply #7 on: October 25, 2011, 06:21:03 PM »
Ray! Long time no see! We need your expert tech!!! Good to hear ya!
molṑn labé

A Knuckle Draggin Neanderthal Meat Head

Kill your television....do it now.....

Don't make me hurt you.

“I don't feel we did wrong in taking this great country away from them. There were great numbers of people who needed new land, and the Indians were selfishly trying to keep it for themselves.”  John Wayne

Offline trippledigitss

  • 1.21 Jigawatts!?!
  • Trade Count: (0)
  • Sourdough
  • *****
  • Join Date: Mar 2010
  • Posts: 1234
  • Location: Woodinville
Re: Is it just me?
« Reply #8 on: October 25, 2011, 07:12:37 PM »
Whoa - that hurt my brain even trying to read let alone understand it!  :dunno: It may as well been typed in Arabic, I would have understood just as much!  :chuckle:
I aint superstitious - cuz its bad luck!
Global Warming: The #1 threat to Unicorns!

Offline Special T

  • Truth the new Hate Speech.
  • Business Sponsor
  • Trade Count: (+13)
  • Legend
  • *****
  • Join Date: Aug 2009
  • Posts: 25038
  • Location: Skagit Valley
  • Make it Rain!
    • Silver Arrow Bowmen
    • Silver Arrow Bowmen
Re: Is it just me?
« Reply #9 on: October 26, 2011, 10:12:02 AM »
Ray, Is this because we have had such a huge increase in users? Or are we adding too may pics that are constantly being pulled up? or some combo of the 2? I'm glad you are on it thankyou!
In archery we have something like the way of the superior man. When the archer misses the center of the target, he turns round and seeks for the cause of his failure in himself. 

Confucius

Online HUNTINCOUPLE

  • Lost Somewhere on the Praire of Klickitat Co. Chasing The Elusive BENCHLEG DEERS.
  • Non-Hunting Topics
  • Trade Count: (+1)
  • Old Salt
  • ******
  • Join Date: Jan 2009
  • Posts: 8146
  • Location: Lyle WA, 98635
  • Yep, my avatar is from my front porch. #2835
Re: Is it just me?
« Reply #10 on: October 26, 2011, 10:17:37 AM »
Thank god for the IT guys. I run low on brain power operating my dumbphone!!! :chuckle:
Slap some bacon on a biscut and lets go, were burrnin daylight!

Most peoples health is a decision not a condition?

Kill your television!  ICEMAN SAID TO!

Life Member of Hunting  Washington  Forum.

Time in the woods is more important than timing the moon.

Offline jackelope

  • Administrator
  • Trade Count: (+29)
  • Legend
  • *****
  • Join Date: Mar 2007
  • Posts: 50320
  • Location: Duvall, WA
  • Groups: jackelope
Re: Is it just me?
« Reply #11 on: October 26, 2011, 12:11:13 PM »
Ray, Is this because we have had such a huge increase in users? Or are we adding too may pics that are constantly being pulled up? or some combo of the 2? I'm glad you are on it thankyou!

I'm in the "learning as I go" mode and I think it's safe to say it's a combination of a bunch of things.
A lot of boards, a lot of members, a lot of stuff. It's more of the growing pains thing. I think it's safe to say there's also more maintenance that needs to be done from time to time on here that maybe we're not doing?
We're working on it as we speak.
:fire.:

" In today's instant gratification society, more and more pressure revolves around success and the measurement of one's prowess as a hunter by inches on a score chart or field photos produced on social media. Don't fall into the trap. Hunting is-and always will be- about the hunt, the adventure, the views, and time spent with close friends and family. " Ryan Hatfield

My posts, opinions and statements do not represent those of this forum

Offline jackmaster

  • Non-Hunting Topics
  • Trade Count: (+1)
  • Old Salt
  • ******
  • Join Date: Nov 2010
  • Posts: 7011
  • Location: graham
Re: Is it just me?
« Reply #12 on: October 26, 2011, 12:17:12 PM »
thats some serious computer lingo ya got goin there, you do know your talkn to a bunch of redneck hunters that can barely find there way to this site every day  :chuckle:  :chuckle:
my grandpa always said "if it aint broke dont fix it"

Offline Boss .300 winmag

  • FLY NAVAL AVIATION
  • Washington For Wildlife
  • Trade Count: (+22)
  • Explorer
  • ******
  • Join Date: Oct 2010
  • Posts: 18866
  • Location: Skagit Valley
  • How do you measure trying, you do, or you don’t.
Re: Is it just me?
« Reply #13 on: October 26, 2011, 02:08:08 PM »
Hell I went from a sourdough with over a thousand post to below 500 and I am a scout again?????? WT HELL
"Just because I like granola, and I have stretched my arms around a few trees, doesn't mean I'm a tree hugger!
Hi I'm 8156, our leader is Bearpaw.
YOU CANNOT REASON WITH A TIGER WHEN YOUR HEAD IS IN ITS MOUTH! Winston Churchill

Keep Calm And Duc/Ski Doo On!

Offline trippledigitss

  • 1.21 Jigawatts!?!
  • Trade Count: (0)
  • Sourdough
  • *****
  • Join Date: Mar 2010
  • Posts: 1234
  • Location: Woodinville
Re: Is it just me?
« Reply #14 on: October 26, 2011, 03:45:58 PM »
Hell I went from a sourdough with over a thousand post to below 500 and I am a scout again? ??? ?? WT HELL

I lost a bunch of posts too. I think some were taken when the You Tube thread was deleted and so I'm guessing a few others I posted in were deleted and I lost more.  :dunno:  But only like 100, not a 1000!
I aint superstitious - cuz its bad luck!
Global Warming: The #1 threat to Unicorns!

 


* Advertisement

* Recent Topics

AUCTION: SE Idaho DIY Deer or Deer/Elk Hunt by Dan-o
[Today at 10:13:56 PM]


Archery elk gear, 2025. by WapitiTalk1
[Today at 09:41:28 PM]


Unknown Suppressors - Whisper Pickle by pickardjw
[Today at 09:11:06 PM]


Utah cow elk hunt by bearpaw
[Today at 07:18:51 PM]


Oregon spring bear by kodiak06
[Today at 04:40:38 PM]


Tree stand for Western Washingtn by kodiak06
[Today at 04:37:01 PM]


Pocket Carry by BKMFR
[Today at 03:34:12 PM]


A lonely Job... by Loup Loup
[Today at 01:15:11 PM]


Range finders & Angle Compensation by Fidelk
[Today at 11:58:48 AM]


Willapa Hills 1 Bear by hunter399
[Today at 10:55:29 AM]


Bearpaw Outfitters Annual July 4th Hunt Sale by bearpaw
[Today at 08:40:03 AM]


KODIAK06 2025 trail cam and personal pics thread by Boss .300 winmag
[Today at 07:53:52 AM]


Yard bucks by Boss .300 winmag
[Yesterday at 11:20:39 PM]


Yard babies by Feathernfurr
[Yesterday at 10:04:54 PM]


Seeking recommendations on a new scope by coachg
[Yesterday at 08:10:21 PM]


Sauk Unit Youth Elk Tips by high_hunter
[Yesterday at 08:06:05 PM]


Jupiter Mountain Rayonier Permit- 621 Bull Tag by HntnFsh
[Yesterday at 07:58:22 PM]

SimplePortal 2.3.7 © 2008-2025, SimplePortal