Groups | Blog | Home
all groups > dotnet performance > november 2005 >

dotnet performance : dotNET remoting Performance


lazyTrucker
11/15/2005 10:27:43 AM

Hi all,

Ok, first I am new to dotNET so bear with me, I am creating a remotin
host, client app which would potentially get alot of traffic, say 200
hits a second, the host is seraching SQL and building an XML REPLY.

It looks like the db is the bottle neck here, is there any way to spee
up this process?

&

How is the instance of each request handled, are they serially queue
or other, & is there any way to optimize this process?

Cheers Lazy Trucker

--
lazyTrucke
-----------------------------------------------------------------------
lazyTrucker's Profile: http://www.hightechtalks.com/m26
View this thread: http://www.hightechtalks.com/t228576
Manoj G [MVP]
11/21/2005 12:00:00 AM
I suppose calls to remoted objects are queued on the .NET thread pool. With
2000 hits per second on one single machine, the bottleneck could very well
be the machine hosting the objects.
You need to check the performance counters of both the machines and see
where the problem really is, specifically the processor utilization and
available memory counters.

It would be a good idea to have the remoted objects stateless, so that you
can host these in a load balanced environment, typically on the IIS.

--
HTH,
Manoj G
MVP, Visual Developer
http://msmvps.com/manoj

"lazyTrucker" <lazyTrucker.1yj8ty@no-mx.forums.yourdomain.com.au> wrote in
message news:lazyTrucker.1yj8ty@no-mx.forums.yourdomain.com.au...
[quoted text, click to view]

AddThis Social Bookmark Button