0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

eslint の no-await-in-loop の指摘の検証

Posted at

Promise.all() による非同期実行の性能

このテストプログラムでは、eslint が no-await-in-loop で指摘するコードについて、どのような問題かを調査するため、ファイルの読み込みを同期的に順次実行した場合(指摘の対象となるコード)とPromise.all() を使って非同期に並列実行した場合の性能の比較します。
ソースコード全体は https://github.com/procube-sandbox/await-in-loop-test で公開しています。

await を含むループで実行

以下に 2000 個のファイルを順次読み出すプログラムを示します。

typescript {.line-numbers}
async function testSync() {
    const logger = new BufferdLogger()
    const numbers = []
    for (const filename of filenameGenerator(size)) {
        logger.log(`start process for file ${filename}`)
        const data = await readData(filename, logger)
        logger.log(
            `end process for file ${filename} result = ${JSON.stringify(data)}`,
        )
        numbers.push(data.number)
    }
    logger.log(`numbers=${JSON.stringify(numbers)}`)
    // 実行順序・結果を確認する場合は以下を実行
    // logger.print()
}

上記を eslint にかけると、 no-await-in-loop の規則に引っかかってエラーになります。 await(非同期に実行可能な処理)を同期的に順次実行するので効率が悪いと言う指摘です。

並列処理版

上記と同等のプログラムを Promise.all() を使って書き直しました。

async function testAsync() {
    const logger = new BufferdLogger()
    const numbers = await Promise.all<number>(Array.from(filenameGenerator(size)).map(async (filename) => {
        logger.log(`start process for file ${filename}`)
        const data = await readData(filename, logger)
        logger.log(
            `end process for file ${filename} result = ${JSON.stringify(data)}`,
        )
        return data.number as number
    }))
    logger.log(`numbers=${JSON.stringify(numbers)}`)
    // 実行順序を確認する場合は以下を実行
    // logger.print()
}

性能測定結果

以下により、Promise.all() を使用した方が3倍以上性能が良いことがわかりました。

$ yarn start
yarn run v1.22.19
$ yarn build && node index.js
$ tsc -p tsconfig.json
elapstime for testSync() = 480ms
elapstime for testAsync() = 128ms
Done in 2.37s.

二度目の実行の場合やテストの順序により結果は変動しますが総じて2倍以上の差があることは確認できています。また、ファイルの数が増えると差が開く傾向にあります。

実行手順

上記テストプログラムを実行するためには node.js の 18 以上と git cli がインストールされた環境が必要です。以下のコマンドで実行できます。

git clone https://github.com/procube-sandbox/await-in-loop-test.git
cd await-in-loop-test
yarn install
yarn start
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?