<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Domino @ Symetrik Design &#187; Optimization</title>
	<atom:link href="http://domino.symetrikdesign.com/category/optimization/feed/" rel="self" type="application/rss+xml" />
	<link>http://domino.symetrikdesign.com</link>
	<description>Domino admin with a design appeal</description>
	<lastBuildDate>Tue, 27 Jul 2010 07:16:30 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>compact -S works&#8230;sometimes.</title>
		<link>http://domino.symetrikdesign.com/2008/10/20/compact-s-workssometimes/</link>
		<comments>http://domino.symetrikdesign.com/2008/10/20/compact-s-workssometimes/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 04:45:20 +0000</pubDate>
		<dc:creator>david</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Optimization]]></category>
		<category><![CDATA[Program Docs]]></category>
		<category><![CDATA[Tricks]]></category>
		<category><![CDATA[maintenance]]></category>
		<category><![CDATA[ProgramDocs]]></category>

		<guid isPermaLink="false">http://domino.symetrikdesign.com/?p=62</guid>
		<description><![CDATA[I&#8217;ve recently stumbled upon using compact -S5 in our weekly Saturday compact program document.
Like most shops, we run Fixup on Fridays and then Compact on Saturdays on all databases.
We found that a couple of servers that have about 400GB worth of mailboxes were not finishing their compact jobs.  The compact was taking somewhere in [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve recently stumbled upon using compact -S5 in our weekly Saturday compact program document.</p>
<p>Like most shops, we run Fixup on Fridays and then Compact on Saturdays on all databases.</p>
<p>We found that a couple of servers that have about 400GB worth of mailboxes were not finishing their compact jobs.  The compact was taking somewhere in the range of 36 to 48 hours.  We weren&#8217;t sure how long it was taking because we had to shut it down on Monday morning when people got into the office and starting trying to access their databases.</p>
<p>I found the -S<nn> switch which will compact only database which will only compact databases with more white space than you specify in the <nn>.<span id="more-62"></span></p>
<p>Example: compact -S5 will only compact databases with more than 5% white space.</p>
<p>This dramatically cuts down on the time required to run compact because it will skip all of the databases that are already pretty much compacted, but which may be very large.</p>
<p>We went from 36+ hours to about 6 on two of the large servers.  This is a great improvement which really works for us.</p>
<p>One strange thing that I noticed though is that is doesn&#8217;t always calculate the white space correctly while initializing the compact job.  Sometimes databases that are 90% compacted are skipped when you use the -S5 switch.</p>
<p>We are using 6.5.6FP3 HF53 servers.</p>
<p>Does anybody else have experience with using the -S switch and seen the same anomalies?</p>
]]></content:encoded>
			<wfw:commentRss>http://domino.symetrikdesign.com/2008/10/20/compact-s-workssometimes/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Performance Improvement &#8211; What do these Notes.ini variables do?</title>
		<link>http://domino.symetrikdesign.com/2008/10/14/performance-improvement-what-do-these-notesini-variables-do/</link>
		<comments>http://domino.symetrikdesign.com/2008/10/14/performance-improvement-what-do-these-notesini-variables-do/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 09:35:34 +0000</pubDate>
		<dc:creator>david</dc:creator>
				<category><![CDATA[Optimization]]></category>
		<category><![CDATA[notes.ini]]></category>

		<guid isPermaLink="false">http://domino.symetrikdesign.com/?p=61</guid>
		<description><![CDATA[I was taking a look at this article at IBM.
I noticed that they added these variables to R6.5.x server:
NSF_DBCache_MaxEntries=4100
Server_pool_tasks=60
Server_max_concurrent_trans=60
Server_show_performance=1
Server_TransInfo_Range=9
and these notes.ini variables to 7.0x server:
NSF_DBCache_MaxEntries=4100
server_pool_tasks=60
server_max_concurrent_trans=60
server_show_performance=1
Server_TransInfo_Range=9
Cluster_replicators=3
FTUpdate_Idle_Time=25
Update_Idle_Time=25
EnableForcedFillOnFileExtend=1
NSF_DBCache_Max_Clean_Hold_Time=9999
Just wondering exactly what they do.  It would have been nice if they would have explained the benefits of the performance improvement instead of just comparing the two versions of [...]]]></description>
			<content:encoded><![CDATA[<p>I was taking a look at <a href="http://www.ibm.com/developerworks/lotus/library/domino7-enterprise-performance/">this article</a> at IBM.</p>
<p>I noticed that they added these variables to R6.5.x server:<br />
NSF_DBCache_MaxEntries=4100<br />
Server_pool_tasks=60<br />
Server_max_concurrent_trans=60<br />
Server_show_performance=1<br />
Server_TransInfo_Range=9</p>
<p>and these notes.ini variables to 7.0x server:<br />
NSF_DBCache_MaxEntries=4100<br />
server_pool_tasks=60<br />
server_max_concurrent_trans=60<br />
server_show_performance=1<br />
Server_TransInfo_Range=9<br />
Cluster_replicators=3<br />
FTUpdate_Idle_Time=25<br />
Update_Idle_Time=25<br />
EnableForcedFillOnFileExtend=1<br />
NSF_DBCache_Max_Clean_Hold_Time=9999</p>
<p>Just wondering exactly what they do.  It would have been nice if they would have explained the benefits of the performance improvement instead of just comparing the two versions of Domino.</p>
]]></content:encoded>
			<wfw:commentRss>http://domino.symetrikdesign.com/2008/10/14/performance-improvement-what-do-these-notesini-variables-do/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Why it is good to seperate the program and data directories</title>
		<link>http://domino.symetrikdesign.com/2008/08/15/why-it-is-good-to-seperate-the-program-and-data-directories/</link>
		<comments>http://domino.symetrikdesign.com/2008/08/15/why-it-is-good-to-seperate-the-program-and-data-directories/#comments</comments>
		<pubDate>Fri, 15 Aug 2008 06:41:14 +0000</pubDate>
		<dc:creator>david</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Optimization]]></category>
		<category><![CDATA[Tricks]]></category>

		<guid isPermaLink="false">http://domino.symetrikdesign.com/?p=50</guid>
		<description><![CDATA[In a recent disaster at our organization, we had to restore the program directory of a server.  Since someone built the server with the default d:\lotus\domino and d:\lotus\domino\data, the outsource host facility restored the whole d:\lotus directory and it took us 4 hours waiting while the server was down.
This highlights some points that I [...]]]></description>
			<content:encoded><![CDATA[<p>In a recent disaster at our organization, we had to restore the program directory of a server.  Since someone built the server with the default d:\lotus\domino and d:\lotus\domino\data, the outsource host facility restored the whole d:\lotus directory and it took us 4 hours waiting while the server was down.</p>
<p>This highlights some points that I always try to make about Domino disk installation:<span id="more-50"></span></p>
<p>If possible try to have different physical partitions for Domino.<br />
C: drive Mirrored Array (2 physical disks) for Operating System and Domino program files<br />
D: drive Raid 5 Array (3 or more physical disks) for Domino data files<br />
E: drive (single disk) potentially for SWAP file, Domino temp directory, full text index temp directory.<br />
F: drive Raid 5 Array (3 or more physical disks) potentially for transaction log, mail capturing, etc.</p>
<p>You&#8217;ll get better performance if the program files are on a disk that is not very fragmented.<br />
You will also have an easier process for backing up your program directory prior to a Domino server upgrade (and if necessary &#8211; fall back procedure).<br />
You will also have an easier and faster time restoring just the program directory if your Domino install becomes problematic and you need to do a restore.</p>
<p>Any comments?</p>
]]></content:encoded>
			<wfw:commentRss>http://domino.symetrikdesign.com/2008/08/15/why-it-is-good-to-seperate-the-program-and-data-directories/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
