gpt4 book ai didi

c# - 重复初始化 Clearscript V8 引擎时内存不足(GC 问题?)

转载 作者:太空狗 更新时间:2023-10-30 00:49:33 25 4
gpt4 key购买 nike

我已经创建了一个基本的默认 ASP.NET 5 项目。我有一个 Controller 可以创建

var engine = new V8ScriptEngine();

并返回一些模拟 json。当我刷新页面一定次数时,我得到

Fatal error in heap setup

Allocation failed - process out of memory

然后跟踪堆栈

Unhandled Exception: System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.AccessViolationException: Attempted to read or write protected memory. This is often an indication that other memory is corrupt.
at V8Isolate.Create(StdString* , V8IsolateConstraints* , Boolean , Int32 )
at Microsoft.ClearScript.V8.V8IsolateProxyImpl..ctor(String gcName, V8RuntimeConstraints gcConstraints, Boolean enableDebugging, Int32 debugPort)
--- End of inner exception stack trace ---
at System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
at System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
at System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
at System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
at System.Activator.CreateInstance(Type type, Object[] args)
at Microsoft.ClearScript.V8.V8Proxy.CreateImpl[T](Object[] args)
at Microsoft.ClearScript.V8.V8IsolateProxy.Create(String name, V8RuntimeConstraints constraints, Boolean enableDebugging, Int32 debugPort)
at Microsoft.ClearScript.V8.V8Runtime..ctor(String name, V8RuntimeConstraints constraints, V8RuntimeFlags flags, Int32 debugPort)
at Microsoft.ClearScript.V8.V8ScriptEngine..ctor(V8Runtime runtime, String name, V8RuntimeConstraints constraints, V8ScriptEngineFlags flags, Int32 debugPort)
at Microsoft.ClearScript.V8.V8ScriptEngine..ctor()

我试着用dotMemory 查看内存。每次我刷新页面时,都会创建一个引擎,并将 2MB 的 ram 添加到非托管内存中。当它达到一定的限制时,它会崩溃,如上所述。只要我在达到限制之前单击强制 GC,内存就会下降,我可以再次使用该页面。

我的问题是:为什么 GC 不首先处理这个问题?在每次请求之后,如果我强制 GC 就可以处理该对象。我会假设如果我几乎没有内存但我可以用 GC 回收它,它会这样做。

我该如何解决这个问题?也许添加更多内存会有所帮助,但我也不知道该怎么做。如果 GC 永远不会清理这些对象,它无论如何都会被破坏。

当我运行 Kestrel (dnx web) 并使用 IIS 时,也会发生同样的情况。我将框架设置为“dnx46”

这是我的dnx版本

$ dnx --version
Microsoft .NET Execution environment
Version: 1.0.0-rc1-16231
Type: Clr
Architecture: x86
OS Name: Windows
OS Version: 10.0
Runtime Id: win10-x86

ClearScript 版本是 "ClearScript.V8": "5.4.3"

最佳答案

简短版:您需要 dispose每个脚本引擎,当你完成它。一种方便的方法是使用 using声明:

using (var engine = new V8ScriptEngine()) {
// do stuff
}

更长的版本:每个 V8 实例预留一大块地址空间。这些不会显示为已用内存,但在 32 位进程中,您可能会用完几十个实例的地址空间。托管 GC 最终会将其全部清理干净,但因为它无法跟踪 V8 的地址空间预留,所以它并不急于这样做,因为它没有检测到任何内存压力。最终,您的内存使用率仍然很低,但 V8 无法再保留足够大的地址空间 block ,因此它失败了。

关于c# - 重复初始化 Clearscript V8 引擎时内存不足(GC 问题?),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37387363/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com