今回は並列処理で単位時間当たりの処理能力の向上を図り、どの程度リニアに性能が向上するかを検証します。
【検証の方法について】
通常の運用であれば、スケジューラのジョブを並列実行させますが、今回のサンプルではプログラム内で複数スレッドを生成することで検証を行います。
検証環境は「エクセルファイルのバッチ出力 その5」と同様です。なお、今回はデバッグモードではなく、アプリケーション(.exe)を直接実行します。
【サンプルソース(GUI部)】
サンプルのソースの内、呼び出し側(GUI側)を以下の様に修正します。並列度はスライダーで指定し、並列度を1から8(論理コア数)まで変化させます。
並列実行はSystems.Threads.Tasksに含まれるParallel.Forを使用します。スレッド毎に個別のオブジェクト(エクセルおよびDBセッションを保持する)を起動し、スレッド間の競合回避を図ります。
Figure 1: Form |
List 1:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using Util;
using System.Diagnostics;
using System.Threading;
using System.Threading.Tasks;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
int num_threads = trackBar1.Value;
List<Util.Ora2Excel> lst = new List<Util.Ora2Excel>();
// initialize
for (int i = 0; i < num_threads; i++)
{
lst.Add(new Util.Ora2Excel());
lst[i].OpenDb(txtUser.Text, txtPassword.Text, txtConnString.Text);
lst[i].InitExcel();
}
DateTime startTime = DateTime.Now;
Parallel.For(0, num_threads, threadID =>
{
for (int idx = 0; idx < 100; idx++)
{
lst[threadID].OpenBook(@"c:\template_emp.xlsx", true);
lst[threadID].Extract(txtSql.Text, txtSheet.Text);
lst[threadID].SaveBook(@"c:\" + threadID.ToString() + @"\result_emp" + "_" + threadID.ToString() + "_" + idx.ToString() + ".xlsx");
lst[threadID].CloseBook();
}
});
// write the result
System.IO.StreamWriter sw = new System.IO.StreamWriter(@"c:\testResult.log", true);
sw.WriteLine("threads: " + num_threads.ToString() + ", " + (DateTime.Now - startTime).ToString());
sw.Close();
// close objects
for (int j = 0; j < num_threads; j++)
{
lst[j].QuitExcel();
lst[j].CloseDb();
}
}
private void trackBar1_Scroll(object sender, EventArgs e)
{
lblThreads.Text = "threads: " + trackBar1.Value.ToString();
}
}
}
【サンプルソース(DLL部)】
DLL部のソースに変更はありません。ソースは「エクセルファイルのバッチ出力 その3」を参照してください。
結果は以下の通りです。4多重まで増加させた場合でも、シングルスレッド実行の場合の約2倍の性能向上にとどまりました。秒間10.3ファイルの出力性能です。性能の向上率は高いとは言えません。
また、4コア以降、多重度を上げるにつれて性能が劣化しています。
Figure 2: Performance result |
次回はOS統計を確認します。
[Summary]
In this post, we'll see how much we can increase Excel file processing performance by parallel (multi thread) processing.
[Environment]
Please refer to Excel file processing, Part 5.
[Sample source (GUI)]
In the ordinary batch system,you may run programs by job scheduler parallel. In this test, I implement multi thread processing within the sample program. Please refer Figure 1 and List 1. The slider at the bottom of the form specifies the number of threads. Each thread owns individual database session and Excel object.
[Sample source (DLL)]
No changes have been made. Please refer to Excel file processing, Part 3 for the source code.
[Result]
As shown in Figure 2, the result is not so good. The output performance hit the peak with four threads. The peak performance is 10.3 files per sec. (100% increase from single thread performance)
In the next post, we read the OS statistics.
0 件のコメント:
コメントを投稿