English 中文(简体)
Windows RPC 校对
原标题:Windows RPC tuning

我正在利用世界海事委员会监测几百个东道国。 我正在投票,每次使用5秒。 我正在利用C#的校对池来管理目前排定的适当WMI查询。 通常,提出询问的时间不超过30天。 有时,差距为16秒,而不是5秒,没有明显的使用通用报告格式。 由于万国邮联没有得到充分利用,我怀疑在太平洋共同体秘书处或非加太集团/国际交易日志中存在瓶颈。 然而,我认为,由于连接是永久开放的,这并不是TCP/IP的障碍。 因此,我怀疑在监测机器上加入皇家警察部队的瓶颈。

Is there any RPC tuning I can do on the monitoring machine?

www.un.org/spanish/ecosoc

我已经做了一些工作。 在我上台之前,网络校正。 我对<代码>ThreadPool作了调整。 ThreadPool.SetMinThreads (200, 200) and ThreadPool.SetMaxThreads (300,300) calls. 我使用的是<代码>Task的物体,所有物体均使用<代码>TaskCreationOptions。 LongRunning utzCreationOp。 PreferFairness。

问题回答

我正在使用C#的校对池。

如果你执行大量阻挡和很少执行的法律,那不是好的想法。 与世界海事委员会一样。 校对机群显示器试图将安装线数限制在机上的核心数。 这是一种优化,它减少了用于翻新环境开关的间接费用。 但它可以预测或发现底线实际上不是执行守则。 它有适应性的时间安排算法,可以处理,如果现有校对尚未完成,但运作缓慢,则可以执行额外校对。

你可以叫ThreadPool.SetMinThread()来增加允许同时执行的read子数量。 缺省是核心数。 将这个问题增加到30个,但具有全球副作用。 使用透镜而不是read池是当地的解决办法。





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签