Git Product home page Git Product logo

Comments (3)

sahalazj-github avatar sahalazj-github commented on May 18, 2024
const v8Profiler = require('v8-profiler-next')
const generateVmHeapsnapshot = (options, callback) => {
    try {
        const { cupFilePath } = options
        console.log('EnterGenerateSnapshot', cupFilePath)
        const snapshot = v8Profiler.takeSnapshot()

        console.log('AfterGenerateSnapshot')

        // 1. not as stream
        const file = fs.createWriteStream(cupFilePath);
        const transform = snapshot.export();
        transform.pipe(file);
        transform.on('finish', snapshot.delete.bind(snapshot));

    } catch(e) {
        console.log('GenerateVmHeapsnapshotError', e)
    }
}

这段代码执行完之后,就会看到进程的cpu立即上升到接近100%,这属于正常现象吗?node版本:12.16.1
image

from v8-profiler-next.

hyj1991 avatar hyj1991 commented on May 18, 2024

这是正常的,堆快照序列化是一个比较大的开销,等堆快照生成 cpu 会降下来。

from v8-profiler-next.

hyj1991 avatar hyj1991 commented on May 18, 2024

相比之下,进程堆内存比较大时,生成的堆快照的体积一般也比较大,且会耗费一定的时间,这个是没问题的。

from v8-profiler-next.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.