how many servers can connect to direct attached scsi storage
Web Server forum
Back To The Forum Home!Search!Private Messaging System

Web Server Talk Web Server Talk > WebserverTalk Community > Data Storage > how many servers can connect to direct attached scsi storage




  Last Thread   Next Thread Next
  Show Printable Version Email this Page Subscribe to this Thread      Post New Thread    Post A Reply      

    how many servers can connect to direct attached scsi storage  
Ken Shaw


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
05-30-04 04:10 PM

I'm trying to figure out how many servers I can connect to a direct attached
hard disk SCSI array.

I've been told its only two - is this true?

Cheers,

Ken







[ Post a follow-up to this message ]



    Re: how many servers can connect to direct attached scsi storage  
Rob Turk


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
05-30-04 04:10 PM

"Ken Shaw" <kenshawjr@hotmail.com> wrote in message
news:407cf13e$0$440$afc38c87@news.optusnet.com.au...
> I'm trying to figure out how many servers I can connect to a direct
attached
> hard disk SCSI array.
>
> I've been told its only two - is this true?
>
> Cheers,
>
> Ken
>

You can attach as many devices to a SCSI bus as there are SCSI addresses
available. On a SCSI bus there are 16 (or 8 for narrow SCSI) addresses in
total. Assuming your array takes up a single address (no fancy
virtualisation) that leaves room for 15 other devices. Those can be any SCSI
device or server, so at most you can attach 15 servers, in theory.

In real life you will be limited by cable length, performance and by a
mechanism to actually share the information on the disk array.

Rob







[ Post a follow-up to this message ]



    Re: how many servers can connect to direct attached scsi storage  
Ken Shaw


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
05-30-04 04:10 PM

Thanks for that.

So if I wanted to have 3 servers accessing a shared RAID array with 8 HDD's
in that RAID array - I could do that?

Cheers,

Ken

"Rob Turk" <wipe_me_r.turk@chello.nl> wrote in message
news:407cf7a0$0$566$e4fe514c@news.xs4all.nl...
> "Ken Shaw" <kenshawjr@hotmail.com> wrote in message
> news:407cf13e$0$440$afc38c87@news.optusnet.com.au... 
> attached 
>
> You can attach as many devices to a SCSI bus as there are SCSI addresses
> available. On a SCSI bus there are 16 (or 8 for narrow SCSI) addresses in
> total. Assuming your array takes up a single address (no fancy
> virtualisation) that leaves room for 15 other devices. Those can be any
SCSI
> device or server, so at most you can attach 15 servers, in theory.
>
> In real life you will be limited by cable length, performance and by a
> mechanism to actually share the information on the disk array.
>
> Rob
>
>







[ Post a follow-up to this message ]



    Re: how many servers can connect to direct attached scsi storage  
Rob Turk


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
05-30-04 04:10 PM

"Ken Shaw" <kenshawjr@hotmail.com> wrote in message
news:407cf898$0$4548$afc38c87@news.optusnet.com.au...
> Thanks for that.
>
> So if I wanted to have 3 servers accessing a shared RAID array with 8
HDD's
> in that RAID array - I could do that?
>
> Cheers,
>
> Ken
>

Yes, but do note that this is on a hardware level only. If you create file
systems on the array and expect all servers to be able to access those
simultaneously then you need additional software. Most file systems like
NTFS are not designed to have multiple computers changing data on it. Each
system assumes it has exclusive access to all file structures. When one
system makes changes, the other systems will not know about the changes and
may overwrite them.  Trying to just hook it all up will result in data
corruption.

Check out Veritas Sanpoint or Sistina GFS for details. There are other
companies offering similar functionality. Google:
http://www.google.com/search?source...br />
e+system for more details.

Rob







[ Post a follow-up to this message ]



    Re: how many servers can connect to direct attached scsi storage  
Ken Shaw


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
05-30-04 04:10 PM

Thanks for that Rob.

A lot of the links that come from that google search are about SAN
technology.  If I'm sharing a SCSI array with just a few machines is this
classed as a SAN?  Do you know if Windows Datacentre Server handles the
connection of direct attached storage to multiple machines?  From what I
understand - windows clusters with SQL Server can only be set up if you're
using direct attached storage.  So can the OS handle the behaviour you're
talking about?

Cheers,

Ken

"Rob Turk" <wipe_me_r.turk@chello.nl> wrote in message
news:407d05b3$0$565$e4fe514c@news.xs4all.nl...
> "Ken Shaw" <kenshawjr@hotmail.com> wrote in message
> news:407cf898$0$4548$afc38c87@news.optusnet.com.au... 
> HDD's 
>
> Yes, but do note that this is on a hardware level only. If you create file
> systems on the array and expect all servers to be able to access those
> simultaneously then you need additional software. Most file systems like
> NTFS are not designed to have multiple computers changing data on it. Each
> system assumes it has exclusive access to all file structures. When one
> system makes changes, the other systems will not know about the changes
and
> may overwrite them.  Trying to just hook it all up will result in data
> corruption.
>
> Check out Veritas Sanpoint or Sistina GFS for details. There are other
> companies offering similar functionality. Google:
>
http://www.google.com/search?source...red+file+system f
or more details.
>
> Rob
>
>







[ Post a follow-up to this message ]



    Re: how many servers can connect to direct attached scsi storage  
Nik Simpson


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
05-30-04 04:10 PM

Ken Shaw wrote:
> Thanks for that Rob.
>
> A lot of the links that come from that google search are about SAN
> technology.  If I'm sharing a SCSI array with just a few machines is
> this classed as a SAN?

Well, yes and no, the main reason that SCSI never really took off as the
basis for shared storage is that it doesn't work particularly well. You can
build a small shared storage cluster around SCSI, but you may well end with
more trouble than you expect with performance in particular.

> Do you know if Windows Datacentre Server handles
> the connection of direct attached storage to multiple machines?

Clustering in the Windows world is "shared nothing" i.e. if you have two
machines in a cluster, machine 1 exclusively owns its filesystems and
machine 2 exclusively owns its filesystems. If for example machine 1 fails,
machine 2 takes over the filesystems (and associated applications.)

There is no general mechanism in Windows clustering for shared access to a
single filesystem at the SCSI/FC level that requires additional software
such as the examples mentioned by Rob.

I don't beleive that MS supports shared SCSI storage in Windows clustering
anymore because of the problems everybody had trying to get it to work in
the late 90s (I know, I was one of the poor slobs trying :-) These days, MS
clustering (and anybody else's clustering for that matter) pretty much
assumes Fibre attached storage.

>  From what I understand - windows clusters with SQL Server can only be set
> up if
> you're using direct attached storage.

Define "direct attached" there is nothing in the Windows clustering model
that requires direct attached as opposed to SAN attached because
functionally (i.e. to the OS) there is no difference between having an
exclusive point-to-point connection from the host to a Fibre array and doing
the same thing via an FC switch.

> So can the OS handle the behaviour you're talking about?

If you mean can it handle the locking issues associated with a shared
filesystem, the answer is no, it doesnt even try.

Perhaps you could explain the "high-level" problem that is leading you
towards a shared SCSI storage solution, there may be tother ways of
addressing the problem.


--
Nik Simpson







[ Post a follow-up to this message ]



    Re: how many servers can connect to direct attached scsi storage  
Ken Shaw


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
05-30-04 04:10 PM

Thanks Nik.

Ok here's where we're at.

We've got 3 dell poweredge servers that are running an ASP.NET app.  Thats
connecting to a SQL Server 2000 standalone.  The app we're running involves
uploading significant numbers of bytes from teh clients to be stored as
files somewhere.

We need high availability and centralised storage.  What I am trying to do
is have failover clustering working on both the database server and the
webservers.

What I was hoping was that the database servers could be in a failover pair
using a shared hard-disk enclosure and that the 3 web-servers could also be
attached to that one hard-disk enclosure.

The space requirements are geared toward the web-servers.  We'll be
accepting about 200 gb of files from users using the applciation - whereas
the SQL database will only be a few gigabytes.  So the space requirements of
teh file servers are much higher.


Cheers,

Ken



"Nik Simpson" <n_simpson@bellsouth.net> wrote in message
news:n5afc.13887$Yw5.12017@bignews4.bellsouth.net...
> Ken Shaw wrote: 
>
> Well, yes and no, the main reason that SCSI never really took off as the
> basis for shared storage is that it doesn't work particularly well. You
can
> build a small shared storage cluster around SCSI, but you may well end
with
> more trouble than you expect with performance in particular.
> 
>
> Clustering in the Windows world is "shared nothing" i.e. if you have two
> machines in a cluster, machine 1 exclusively owns its filesystems and
> machine 2 exclusively owns its filesystems. If for example machine 1
fails,
> machine 2 takes over the filesystems (and associated applications.)
>
> There is no general mechanism in Windows clustering for shared access to a
> single filesystem at the SCSI/FC level that requires additional software
> such as the examples mentioned by Rob.
>
> I don't beleive that MS supports shared SCSI storage in Windows clustering
> anymore because of the problems everybody had trying to get it to work in
> the late 90s (I know, I was one of the poor slobs trying :-) These days,
MS
> clustering (and anybody else's clustering for that matter) pretty much
> assumes Fibre attached storage.
> 
set[vbcol=seagreen] 
>
> Define "direct attached" there is nothing in the Windows clustering model
> that requires direct attached as opposed to SAN attached because
> functionally (i.e. to the OS) there is no difference between having an
> exclusive point-to-point connection from the host to a Fibre array and
doing
> the same thing via an FC switch.
> 
>
> If you mean can it handle the locking issues associated with a shared
> filesystem, the answer is no, it doesnt even try.
>
> Perhaps you could explain the "high-level" problem that is leading you
> towards a shared SCSI storage solution, there may be tother ways of
> addressing the problem.
>
>
> --
> Nik Simpson
>
>







[ Post a follow-up to this message ]



    Sponsored Links  




 





   All times are GMT. The time now is 03:59 AM.      Post New Thread    Post A Reply      
  Last Thread   Next Thread Next


Most Popular forums 

Forum Jump:
Rate This Thread:

Forum Rules:
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is OFF
vB code is ON
Smilies are ON
[IMG] code is OFF
 
Medical and Health forum | Computer Games Reviews | Graphics design forum

Back To The Top
Home | Usercp | Faq | Register