我正在尝试使用Parallel.For()将n#个平面文件加载到数据库中。每次迭代需要在一个文件夹中创建2个配置文件,然后运行另一个使用配置文件的进程知道如何将平面文件加载到Oracle中。在我决定使用并行选项之前,我通过迭代1000次来测试性能优势,每次创建配置文件。我的速度提高了2倍。
然后我添加了我调用其他进程的部分,并且我得到定期错误,我试图在每次迭代中创建的一些配置文件都没有。
这是我的精简代码:
public static void FindFilesToLoad(int monitorId)
{
//left out code here that calls a stored procedure to get a list of ids
fileCount = idList.Count;
if (fileCount != 0)
{
Parallel.For(0, fileCount,
i =>
{
fileId = Convert.ToInt32(idList[i]);
//do the work here...
LoadFileIntoDatabase(monitorId, fileId);
});
}
}
public static void LoadFileIntoDatabase(int monitorId, int fileId)
{
stamp = Guid.NewGuid().ToString();
controlFile = CreateSqlLoaderControlFile(monitorId,stamp);
controlFileName = Path.GetFileName(controlFile);
parFile = CreateParFile(monitorId, controlFileName, stamp);
myCommand = @"CMD.EXE";
ProcessStartInfo startInfo = new ProcessStartInfo(myCommand)
{
WorkingDirectory = @"c:\temp\",
Arguments = @"/c SQLLDR CONTROL=" + controlFile + " PARFILE=" + parFile ,
RedirectStandardOutput = true,
RedirectStandardError = true,
UseShellExecute = false
};
Process process = new Process();
process.StartInfo = startInfo;
process.Start();
process.WaitForExit();
exitCode = process.ExitCode;
}
错误示例: SQL Loader-500:无法打开文件(6f46ccfd-986e-427e-ab63-b7ce2396488e.ctl) SQL Loader-553:找不到文件 SQL * Loader-509:系统错误:系统找不到指定的文件