Welcome Guest Search | Active Topics | Log In | Register

12 Pages «<9101112>
YAF v1.9.3.3 ALPHA (UPDATED: 2/6/2008) Options · View
Kaan1983
#151 Posted : Saturday, March 29, 2008 10:06:10 AM
Rank: Advanced Member


Joined: 7/26/2007
Posts: 69
Location: Türkiye
this friend of mine got some permision problems: YAF.Classes.Base.ForumPage
(Forum.cs Line 81)
hoping to get some ideas guys, so that I can work around.
Jaben
#152 Posted : Saturday, March 29, 2008 11:41:50 AM

Rank: YAF Head Dude



Joined: 10/10/2004
Posts: 2,950
Location: Honolulu, HI
Please post in the Bugs & Problems v1.9.3.3. This is not the place to discuss this problem.
"When you are grateful, fear disappears and abundance appears”."

Kaan1983
#153 Posted : Saturday, March 29, 2008 12:37:02 PM
Rank: Advanced Member


Joined: 7/26/2007
Posts: 69
Location: Türkiye
Sorry, I moved my post, please feel free to delete these ones
ash360
#154 Posted : Monday, March 31, 2008 1:56:38 PM

Rank: YAF Commander




Joined: 3/28/2008
Posts: 121
Location: New York
what is the latest stable version of yaf, i am currently using 1.9.1.6
is 1.9.3.3 ready to use, or still being tested , i realy would love to upgrade
thanks for the efforts

Visit my Forums: FORUMZ360.com
Ederon
#155 Posted : Monday, March 31, 2008 2:03:42 PM

Rank: YAF Developer



Joined: 1/8/2007
Posts: 1,083
Location: Heart of Europe
ash360 wrote:
what is the latest stable version of yaf, i am currently using 1.9.1.6
is 1.9.3.3 ready to use, or still being tested , i realy would love to upgrade
thanks for the efforts


1.9.1.7 is latest stable, 1.9.3.x is alpha
When I post FP:Ederon in a topic, I'm leaving my footprint there so I can track it once I get into coding/supporting.
herman_herman
#156 Posted : Saturday, April 12, 2008 8:46:21 AM

Rank: YAF All-the-Time



Joined: 5/19/2007
Posts: 186
Location: Persia (Iran) the land of Greater Darius
Hi
Just to ask if there is going to be any update to 1.9.3.probably 1.9.3.4 or the beta version.
To me it is stable enough to enter Beta!

Thanks
"Our greatest glory is not in never falling but in rising every time we fall - Confucius"
Ederon
#157 Posted : Sunday, April 13, 2008 1:13:11 PM

Rank: YAF Developer



Joined: 1/8/2007
Posts: 1,083
Location: Heart of Europe
Yes, there will be at least beta followed by RC or FINAL. Depending on how stable/ready it is. Now we struggle with lack of time for this project, which might hopefully get better in some time.
When I post FP:Ederon in a topic, I'm leaving my footprint there so I can track it once I get into coding/supporting.
jdadojr
#158 Posted : Monday, April 14, 2008 12:59:22 PM

Rank: YAF Forumling


Joined: 4/2/2008
Posts: 9
Hi there yavdevs, currently I am stress testing your yaf. Putting in around 40K users and 3Million posts.
As I have noticed, slowdowns and bottlenecks causing sql timeouts are in the sql aggregation queries.
You may need to have tables for computed colums and sql jobs to update those tables.

Keep up the good work anyway..
sastry.kodavanti
#159 Posted : Monday, April 14, 2008 6:37:33 PM

Rank: YAF Forumling




Joined: 3/25/2008
Posts: 4
Location: India
Updated
Jaben
#160 Posted : Tuesday, April 15, 2008 10:32:57 AM

Rank: YAF Head Dude



Joined: 10/10/2004
Posts: 2,950
Location: Honolulu, HI
jdadojr wrote:
Hi there yavdevs, currently I am stress testing your yaf. Putting in around 40K users and 3Million posts.
As I have noticed, slowdowns and bottlenecks causing sql timeouts are in the sql aggregation queries.
You may need to have tables for computed colums and sql jobs to update those tables.

Keep up the good work anyway..

Which version of YAF? It would be of great assistance if you could provide some specifics on which database functions are exponentially slower.
"When you are grateful, fear disappears and abundance appears”."

jdadojr
#161 Posted : Tuesday, April 15, 2008 12:25:23 PM

Rank: YAF Forumling


Joined: 4/2/2008
Posts: 9
i noticed that most of the sql's on 1.9.1.8 and 1.9.3.3 are the same
anyway here are some stored procedures that slows down on me

alter procedure [dbo].[yaf_board_stats]
..
...
-- On this else routine 'passing an int parameter to boardid
-- always resulted in sql timeout, that is less than a million posts.
-- I have to alternative but remove this and just use the first select.
-- The error in the forum is when you click the admin link
else begin
select
NumPosts = (select count(1)
from [dbo].[yaf_Message] a
join [dbo].[yaf_Topic] b ON a.TopicID=b.TopicID
join [dbo].[yaf_Forum] c ON b.ForumID=c.ForumID
join [dbo].[yaf_Category] d ON
...
...


alter procedure [dbo].[yaf_forum_listread]
..
..
x.ReadAccess
from
[dbo].[yaf_Category] a
join [dbo].[yaf_Forum] b on b.CategoryID=a.CategoryID
join [dbo].[yaf_vaccess] x on x.ForumID=b.ForumID
left outer join [dbo].[yaf_Topic] t ON t.TopicID = [dbo].[yaf_forum_lasttopic](b.ForumID,@UserID,b.LastTopicID,b.LastPosted)
-- the above line of yaf_forum_lasttopic will definitely slow down the
-- main page, sometime an error, most of the the time too slow.
-- what I do is just to replace it with just this
-- ON t.TopicID = b.LastTopicID





Jaben
#162 Posted : Wednesday, April 16, 2008 12:24:12 AM

Rank: YAF Head Dude



Joined: 10/10/2004
Posts: 2,950
Location: Honolulu, HI
Where is this "million post" forum?
"When you are grateful, fear disappears and abundance appears”."

jdadojr
#163 Posted : Wednesday, April 16, 2008 3:10:41 AM

Rank: YAF Forumling


Joined: 4/2/2008
Posts: 9
this is my experimental yaf forum
now on 2Million post

http://216.128.24.132/



also on the
ALTER procedure [dbo].[yaf_forum_moderators]
...
...
from
[dbo].[yaf_vaccessfull]
...
-- i have to replace it with
-- [dbo].[yaf_vaccessfull_mods]
-- that is specifically targeted to moderators
-- else sql timeout will occur..

Jaben
#164 Posted : Wednesday, April 16, 2008 7:25:09 AM

Rank: YAF Head Dude



Joined: 10/10/2004
Posts: 2,950
Location: Honolulu, HI
Yes, that is a large forum. I wish I had such a large forum to mess with so I could do performance testing with it.

I can see it needs performance tuning -- page generation times are in the 25+ second arena.

You running the SQL DB on a dedicated box? What kind of IO? RAID 5 array of 15K SCSI drives? How much ram? 8GBs?

This DB has to have massive IO and RAM requirements.

What forum were you running before -- on what DB?
"When you are grateful, fear disappears and abundance appears”."

jdadojr
#165 Posted : Wednesday, April 16, 2008 8:12:09 AM

Rank: YAF Forumling


Joined: 4/2/2008
Posts: 9
I again made some modification and make it a litte faster now.

I can see that the yaf_topic_latest will return all the
topics that a user has rights to(all 13K of topics that is).

I modify the yaf_topic_latest to return nothing at all
and looks like there is no effect on the forum itself but much faster response.

Our last forum was a hosted IPB but since we are being hacked time and
again we transfer to CS forum. However it looks like that CS
also suffer from some sort of slowdown to death.

Now I am trying your Yaf, hoping this will make a difference.

Users browsing this topic
Guest
12 Pages «<9101112>
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.

YAFPro Theme Created by Jaben Cargman (Tiny Gecko)
Powered by YAF 1.9.3 RC2 | YAF © 2003-2008, Yet Another Forum.NET
This page was generated in 0.202 seconds.

SourceForge.net Logo Powered by ASP.NET v2.0 411ASP.NET