Showing posts with label footprint. Show all posts
Showing posts with label footprint. Show all posts

Wednesday, March 7, 2012

RS Instance Footprint

Hi!
Does anyone know the footprint of an RS instance? Does it increase proportionally with every instance or is there some shared pool? If I have 10 instances of RS is it really like having a full 10 separate RS running or are they all pooling?

Thanks

With the exception of the ReportServer/ReportServerTempDB databases, there are no shared resources. From a memory perspective, the OS may share code pages between processes just like it does for any other process. A good portion of the code running in Reporting Services is CLR code, so that complicates code sharing to some extent since the code is JIT'ed per-process.

|||Ouch! So every instance is actually a full instance eating up tons of RAM. Oh well, I was working on a 1 instance solution anyways, thanks.