Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
ASP.NET, IIS and application pool recycle problem
Message
From
20/01/2014 10:47:19
 
 
To
20/01/2014 08:12:09
General information
Forum:
ASP.NET
Category:
Other
Environment versions
Environment:
VB 9.0
OS:
Windows 7
Network:
Windows 2003 Server
Database:
MS SQL Server
Application:
Web
Miscellaneous
Thread ID:
01591946
Message ID:
01592175
Views:
42
>Let me give you my impression - not directly related to this 'problem'
>Seems you are working with a 'busy' system
>
>(1) You're fully on NAS storage
>Heavy transfers to and from the NAS drive on gigabit controller may take in excess of 50% of the bandwidth
>The more a network (TCP/IP) is busy, the more likely are collisions. There's a random wait to retransfer - but as collisions occur the traffic increases
>
>(2) VMWare - execution speed
>Does the machine have enough memory configured and enough processors/cores
>
>(3) Performance
>Related to some other posts ( creating a StringBuilder when not ncessary, the use of object collections + boxing/unboxing)
>
>.Net lets you create objects as needed. But when it comes to removing (destroying) an object on the heap, you have no control
>( see garbage collection http://msdn.microsoft.com/en-us/library/0xy59wtx(v=vs.110).aspx )
>If you create lots of objects, they will have to be garbage collected at some point in time.
>After that the objects have been 'removed' the heap is compacted ( not the large object heap )
>Compaction is not only moving things around in memory, but also updating the references to objects when they have been moved
>
>Creating an object that is not needed is not a real problem if the system is not very busy
>
>In a 'busy' system, a thread may get suspended for a while when garbage collection is busy
>
>It is also best to use the 'using' clause for objects that implement IDisposable. If the Dispose() method is not called when you no longer need the object, they cannot be removed immediately by the garbage collector. Instead they have to be handled by a Finalizer thread

Thanks for all this, but it this related to the IIS recycle worker process issue?

See my other message I just created when you were writing this one. Message #1592174
Michel Fournier
Level Extreme Inc.
Designer, architect, owner of the Level Extreme Platform
Subscribe to the site at https://www.levelextreme.com/Home/DataEntry?Activator=55&NoStore=303
Subscription benefits https://www.levelextreme.com/Home/ViewPage?Activator=7&ID=52
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform