collapse

Advertisement


Author Topic: Is it just me?  (Read 5760 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: 50279
  • 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

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: 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: 50279
  • 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: 18843
  • 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: 50279
  • 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.
: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 Boss .300 winmag

  • FLY NAVAL AVIATION
  • Washington For Wildlife
  • Trade Count: (+22)
  • Explorer
  • ******
  • Join Date: Oct 2010
  • Posts: 18843
  • 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

Sportsman Alliance files petition to Gov Ferguson for removal of corrupt WA Wildlife Commissioners by RC
[Today at 03:11:57 PM]


GMU 247 Entiat bear hunting by Dinkbears49
[Today at 02:50:23 PM]


North Peninsula Salmon Fishing by Stein
[Today at 02:23:22 PM]


Looking for people to hunt with. by Boss .300 winmag
[Today at 01:21:22 PM]


Primer 157 vs 209 by EnglishSetter
[Today at 11:30:27 AM]


Evergreen youth livestock show and sale by nwwanderer
[Today at 11:06:58 AM]


Selkirk bull moose. by ThunderRolls
[Today at 10:14:52 AM]


2025 Quality Chewuch Tag by elkaholic123
[Today at 08:39:45 AM]


Rotator Cuff repair X 2 advice needed by Wood2Sawdust
[Today at 07:49:52 AM]


Upland Side by Side by OutHouse
[Today at 07:37:28 AM]


Tooth age on Quinault bull by nwwanderer
[Today at 06:54:44 AM]


Public Land Sale Senate Budget Reconciliation by JDArms1240
[Yesterday at 08:45:13 PM]


3 days for Kings by Stein
[Yesterday at 06:45:11 PM]


Kinda fun LH rimfire rifle project by JDHasty
[Yesterday at 06:44:33 PM]


Can’t fish for pinks area 8-2? by WAcoueshunter
[Yesterday at 05:22:46 PM]


2025 NWTF Jakes Day by wadu1
[Yesterday at 02:19:48 PM]


Dandy Bull by Buckhunter24
[Yesterday at 01:29:37 PM]


Tricer AD tripod by gee_unit360
[Yesterday at 12:40:45 PM]


How a Product That Changed Hunting FOREVER was invented in the 1980's by jrebel
[Yesterday at 11:28:44 AM]


Ten Years, and still plugging along by JWBINX
[Yesterday at 10:22:55 AM]

SimplePortal 2.3.7 © 2008-2025, SimplePortal