collapse

Advertisement


Author Topic: Is it just me?  (Read 6106 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: 50753
  • 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.

"Hate speech does not exist legally in America. There's ugly speech. There's gross speech. There's evil speech. And ALL of it is protected by the First Amendment."

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: 25062
  • 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

Offline 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: 8159
  • 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: 50753
  • 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.
"Hate speech does not exist legally in America. There's ugly speech. There's gross speech. There's evil speech. And ALL of it is protected by the First Amendment."

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: (+23)
  • Explorer
  • ******
  • Join Date: Oct 2010
  • Posts: 19196
  • 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!

Offline trippledigitss

  • 1.21 Jigawatts!?!
  • Trade Count: (0)
  • Sourdough
  • *****
  • Join Date: Mar 2010
  • Posts: 1234
  • Location: Woodinville
Re: Is it just me?
« Reply #15 on: October 26, 2011, 03:49:24 PM »
Whoa - I didnt realize I had even less than before when I sent that last one. I was around 860, then down to 760 earlier today (where I thought I was when I sent this) now I am at 484 as I type this. I'm back to being a pee-on   :pee: again!  Wait...well, I guess I still was even at 860....  :ACRY:   :chuckle:
I aint superstitious - cuz its bad luck!
Global Warming: The #1 threat to Unicorns!

Offline jackelope

  • Administrator
  • Trade Count: (+29)
  • Legend
  • *****
  • Join Date: Mar 2007
  • Posts: 50753
  • Location: Duvall, WA
  • Groups: jackelope
Re: Is it just me?
« Reply #16 on: October 26, 2011, 03:56:14 PM »
I split a couple of the big threads like the Word Association Game and the Washington where am I threads. Deleted most of them and left the last few posts and started new threads out of them. Threads with over 1k posts have a negative influence on the performance of the forum. I'm having trouble deleting them completely but as far as you guys can see they're gone. There was 33,000 replies to the Word Association Game thread and I think Ray has done the same splitting of that thread once before.
"Hate speech does not exist legally in America. There's ugly speech. There's gross speech. There's evil speech. And ALL of it is protected by the First Amendment."

Offline Boss .300 winmag

  • FLY NAVAL AVIATION
  • Washington For Wildlife
  • Trade Count: (+23)
  • Explorer
  • ******
  • Join Date: Oct 2010
  • Posts: 19196
  • Location: Skagit Valley
  • How do you measure trying, you do, or you don’t.
Re: Is it just me?
« Reply #17 on: October 27, 2011, 07:18:35 PM »
I like being a scout, sounds more impressive. :IBCOOL:
"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 #18 on: October 28, 2011, 09:12:48 AM »
I like being a scout, sounds more impressive. :IBCOOL:

I dont - I was just finally building up some "street cred"  :chuckle:
I aint superstitious - cuz its bad luck!
Global Warming: The #1 threat to Unicorns!

 


* Advertisement

* Recent Topics

“Frosty” 3 Year Story of my 2025 General WA Mule Deer Hunt by Rigby416
[Today at 02:35:34 PM]


2025 deer, let's see em! by 2MANY
[Today at 02:27:57 PM]


Late season east side elk by gaolista
[Today at 02:25:14 PM]


As He Lay by RoostrCogburn
[Today at 01:49:55 PM]


Manastash snow level by stickflngr
[Today at 01:41:15 PM]


Roosevelt Elk. Please nudge me in the right direction. I feel hopeless. by Badsmerf
[Today at 12:55:29 PM]


Montana Bull Elk "Recovery" by Pathfinder101
[Today at 12:31:07 PM]


"Border Lands Conservation Act" courtesy of Mike Lee (R-UT) by High Climber
[Today at 12:20:31 PM]


Any MT deer updates? by Sakko300wsm
[Today at 12:17:21 PM]


Drew Pogue Quality by no.cen.wa
[Today at 11:15:24 AM]


Grouse hunting Near Yakima by Kingofthemountain83
[Today at 10:17:52 AM]


Bear Paw Outfitters Idaho Elk and Deer Hunt Units 77,78,79 by Mtnwalker
[Today at 10:15:36 AM]


More special privileges by Blacktail Sniper
[Today at 09:58:37 AM]


Multi season elk by GOcougsHunter
[Today at 09:54:28 AM]


Got my Roosevelt !!! Weird growth on the leg though? What is this? by pianoman9701
[Today at 09:39:23 AM]


2025 15th Annual Hunting-Washington Christmas Gift Exchange by Machias
[Today at 08:26:07 AM]


20Ga Load Testing - Need different shells by brokentrail
[Today at 08:13:26 AM]


How is late season whitetail hunting? Good, bad, decent? GMU 105/117? by Ghost Hunter
[Today at 06:18:51 AM]


Federal 210m lg rifle primers 79.99 by Crunchy
[Today at 04:53:58 AM]


Tag soup or bone broth.... by hunter399
[Today at 04:30:47 AM]

SimplePortal 2.3.7 © 2008-2025, SimplePortal