Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows Server > Server Setup > Best practice for system partition size

Reply
Thread Tools Display Modes

Best practice for system partition size

 
 
PeterW
Guest
Posts: n/a

 
      04-28-2009
Hi
Can someone please give me a recommended size for a system partition of
Server 2008 64 bit.

I have found this site:
http://www.microsoft.com/windowsserv...uirements.aspx
But would like a bit of "real world" advice.

Is there anything like the Vista %systemroot%\winsxs folder bloat that I
need to allow for?

Was thinking of 80 or 100 gig

Many thanks

PeterW

 
Reply With Quote
 
 
 
 
kj [SBS MVP]
Guest
Posts: n/a

 
      04-28-2009
PeterW wrote:
> Hi
> Can someone please give me a recommended size for a system partition
> of Server 2008 64 bit.
>
> I have found this site:
> http://www.microsoft.com/windowsserv...uirements.aspx
> But would like a bit of "real world" advice.
>
> Is there anything like the Vista %systemroot%\winsxs folder bloat
> that I need to allow for?
>
> Was thinking of 80 or 100 gig
>
> Many thanks
>
> PeterW


That's going to vary greatly from server core with only a role or two or a
"Full" installtion with many roles, features, sharepoint, exchange, SQL, etc
not to mention the amount of RAM you plan to have.




--
/kj


 
Reply With Quote
 
PeterW
Guest
Posts: n/a

 
      04-28-2009
Hi Thanks for the reply

Have 584Gig of HDD space to play with. 8gig of RAM and it will be run SQL on
a full installation of server 2008 x64 as a member server.

PeterW


"kj [SBS MVP]" <> wrote in message
news:%...
> PeterW wrote:
>> Hi
>> Can someone please give me a recommended size for a system partition
>> of Server 2008 64 bit.
>>
>> I have found this site:
>> http://www.microsoft.com/windowsserv...uirements.aspx
>> But would like a bit of "real world" advice.
>>
>> Is there anything like the Vista %systemroot%\winsxs folder bloat
>> that I need to allow for?
>>
>> Was thinking of 80 or 100 gig
>>
>> Many thanks
>>
>> PeterW

>
> That's going to vary greatly from server core with only a role or two or a
> "Full" installtion with many roles, features, sharepoint, exchange, SQL,
> etc not to mention the amount of RAM you plan to have.
>
>
>
>
> --
> /kj
>


 
Reply With Quote
 
kj [SBS MVP]
Guest
Posts: n/a

 
      04-28-2009
I'd entertain the 100-140GB for the OS if I expected to be a long term
server. Initially you'll have lots of extra space you might use for
something else less critical until patches and such begin to fill it up.

PeterW wrote:
> Hi Thanks for the reply
>
> Have 584Gig of HDD space to play with. 8gig of RAM and it will be run
> SQL on a full installation of server 2008 x64 as a member server.
>
> PeterW
>
>
> "kj [SBS MVP]" <> wrote in message
> news:%...
>> PeterW wrote:
>>> Hi
>>> Can someone please give me a recommended size for a system partition
>>> of Server 2008 64 bit.
>>>
>>> I have found this site:
>>> http://www.microsoft.com/windowsserv...uirements.aspx
>>> But would like a bit of "real world" advice.
>>>
>>> Is there anything like the Vista %systemroot%\winsxs folder bloat
>>> that I need to allow for?
>>>
>>> Was thinking of 80 or 100 gig
>>>
>>> Many thanks
>>>
>>> PeterW

>>
>> That's going to vary greatly from server core with only a role or
>> two or a "Full" installtion with many roles, features, sharepoint,
>> exchange, SQL, etc not to mention the amount of RAM you plan to have.
>>
>>
>>
>>
>> --
>> /kj


--
/kj


 
Reply With Quote
 
Ace Fekay [Microsoft Certified Trainer]
Guest
Posts: n/a

 
      04-28-2009
"PeterW" <> wrote in message
news:...
> Hi Thanks for the reply
>
> Have 584Gig of HDD space to play with. 8gig of RAM and it will be run SQL
> on a full installation of server 2008 x64 as a member server.
>
> PeterW


Actually I usually prefer to not break up a physical drive into partitions.
I would rather opt to use the whole drive, or a 'spindle' (logical array) as
a partition and design the hardware for a system drive (array) and data
drive (array). The reason is performance and definitive separation of system
IO calls and app calls to separate spindles. If the same drive, there is no
performance enhancement, rather a hinderance because apps, services and
system IO calls are all on the same spindle. Iwould rather design it to
separate it.

My preference is a system drive using RAID1 (mirrored) with a pair of 72GB
SCSI being sufficient for C: drive, and a RAID5 (stripe with parity) for D:
drive.

The size of D: would be dicated by what type of apps or data it will store.
Of course this can be broken down further with additional arrays depending
on the service or app running, such as Exchange, which in a larger
environment you would want to give it additional arrays for the trans logs,
and an array for each store (databases).

I guess the point is it depends on your requirements. In your scenario, if
you have a single 584GB drive (no array), and will be running a critical
service such as a database, I would rethink my strategy opting first that
the machine will not be used as a domain controller, and second, have a pair
of 72GB for C:, and a RAID5 array for the database. So for example, I would
have ordered the hardware to reflect the following config (using a Dell 2950
for example):

PERC 6i Controller
Pair of 72GB 15k for a RAID1 C: drive giving 72GB of usable space for the
system.
Four 146GB 15k for a RAID5 D: drive providing approx 440 GB of usable space
for the SQL database.

I hope that helps.


--
Ace

This posting is provided "AS-IS" with no warranties or guarantees and
confers no rights.

Ace Fekay, MCSE 2003 & 2000, MCSA 2003 & 2000, MCSA Messaging, MCT
Microsoft Certified Trainer


For urgent issues, you may want to contact Microsoft PSS directly. Please
check http://support.microsoft.com for regional support phone numbers.

"Efficiency is doing things right; effectiveness is doing the right
things." - Peter F. Drucker


 
Reply With Quote
 
kj [SBS MVP]
Guest
Posts: n/a

 
      04-28-2009
I'd agree with you completely on the separation and spindles part Ace. Not
only for OS optimization, but also in this case for SQL. Advice from the SQL
gurus I work with, RAID5 though wouldn't be the preference there though. Of
course that's another religion all together.

Ace Fekay [Microsoft Certified Trainer] wrote:
> "PeterW" <> wrote in message
> news:...
>> Hi Thanks for the reply
>>
>> Have 584Gig of HDD space to play with. 8gig of RAM and it will be
>> run SQL on a full installation of server 2008 x64 as a member server.
>>
>> PeterW

>
> Actually I usually prefer to not break up a physical drive into
> partitions. I would rather opt to use the whole drive, or a 'spindle'
> (logical array) as a partition and design the hardware for a system
> drive (array) and data drive (array). The reason is performance and
> definitive separation of system IO calls and app calls to separate
> spindles. If the same drive, there is no performance enhancement,
> rather a hinderance because apps, services and system IO calls are
> all on the same spindle. Iwould rather design it to separate it.
>
> My preference is a system drive using RAID1 (mirrored) with a pair of
> 72GB SCSI being sufficient for C: drive, and a RAID5 (stripe with
> parity) for D: drive.
>
> The size of D: would be dicated by what type of apps or data it will
> store. Of course this can be broken down further with additional
> arrays depending on the service or app running, such as Exchange,
> which in a larger environment you would want to give it additional
> arrays for the trans logs, and an array for each store (databases).
>
> I guess the point is it depends on your requirements. In your
> scenario, if you have a single 584GB drive (no array), and will be
> running a critical service such as a database, I would rethink my
> strategy opting first that the machine will not be used as a domain
> controller, and second, have a pair of 72GB for C:, and a RAID5 array
> for the database. So for example, I would have ordered the hardware
> to reflect the following config (using a Dell 2950 for example):
>
> PERC 6i Controller
> Pair of 72GB 15k for a RAID1 C: drive giving 72GB of usable space for
> the system.
> Four 146GB 15k for a RAID5 D: drive providing approx 440 GB of usable
> space for the SQL database.
>
> I hope that helps.


--
/kj


 
Reply With Quote
 
Ace Fekay [Microsoft Certified Trainer]
Guest
Posts: n/a

 
      04-28-2009
"kj [SBS MVP]" <> wrote in message
news:%23xEa%...
> I'd agree with you completely on the separation and spindles part Ace. Not
> only for OS optimization, but also in this case for SQL. Advice from the
> SQL gurus I work with, RAID5 though wouldn't be the preference there
> though. Of course that's another religion all together.


I'm not an SQL guru, and if they say RAID5 is not good for SQL, then I would
believe them! :-) If that is the case, the best thing for D: drive in my
design would be a simple RAID1. Would you agree? It would be less expensive
anyway!!

Ace


 
Reply With Quote
 
kj [SBS MVP]
Guest
Posts: n/a

 
      04-28-2009
Ace Fekay [Microsoft Certified Trainer] wrote:
> "kj [SBS MVP]" <> wrote in message
> news:%23xEa%...
>> I'd agree with you completely on the separation and spindles part
>> Ace. Not only for OS optimization, but also in this case for SQL.
>> Advice from the SQL gurus I work with, RAID5 though wouldn't be the
>> preference there though. Of course that's another religion all
>> together.

>
> I'm not an SQL guru, and if they say RAID5 is not good for SQL, then
> I would believe them! :-) If that is the case, the best thing for D:
> drive in my design would be a simple RAID1. Would you agree? It would
> be less expensive anyway!!
>
> Ace


Sometimes it seems they get a bit overzealous trying to squeeze out
everything they can. But then I find their positions sound for serious SQL
work. Separate spindles for logs, tempdb's, main db and of course RAID and
allocation sizes 'tweaked' to their purpose. I'm glad I have some quality
SQL people to help when I need it.

--
/kj


 
Reply With Quote
 
Ace Fekay [Microsoft Certified Trainer]
Guest
Posts: n/a

 
      04-28-2009
"kj [SBS MVP]" <> wrote in message news:...
>
> Sometimes it seems they get a bit overzealous trying to squeeze out
> everything they can. But then I find their positions sound for serious SQL
> work. Separate spindles for logs, tempdb's, main db and of course RAID and
> allocation sizes 'tweaked' to their purpose. I'm glad I have some quality
> SQL people to help when I need it.
>


I agree. It is always beneficial to have a resource such as your SQL folks!

Cheers!!



 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
sbs system partition size Kevin Anderson Windows Small Business Server 2 05-24-2007 10:55 AM
System partition size Robert Murphy Windows Vista Installation 6 03-22-2007 05:24 PM
Maximum Partition / Volume Size best Practice webcrawlr@hotmail.com Server Setup 0 04-04-2006 09:27 PM
System partition re-size mkirros Windows Server 1 08-04-2005 08:53 PM
System partition size Mike Bowman Active Directory 1 02-01-2005 12:46 PM



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59