C# 程序可以将文本文件读入内存,然后将该对象传递给需要文件名的方法吗?
在 C# 程序中,我通过 MySql .Net Connector 的 MySqlBulkLoader 函数将一个大文本文件 (300mb) 导入到 MySQL 数据库中。
导入需要相当长的时间,并且导致运行它的 Windows 2003 Server 上的磁盘使用率几乎为 100%。为了加快导入速度,程序现在将大文件分割成更小的块。
是否可以将小文件块(8mb)读入内存(即数组),然后将其作为文件传递给MySQLBulkLoader?
批量加载器查找文件名路径:
MySql.Data.MySqlClient.MySqlBulkLoader myBulk = new MySql.Data.MySqlClient.MySqlBulkLoader(connection);
myBulk.Timeout = 10 * 60; /
myBulk.TableName = "some_table";
myBulk.Local = true;
myBulk.LineTerminator = @"\n";
myBulk.FileName = aFile.FullName;
myBulk.FieldTerminator = "";
In a C# program I am importing a large text file (300mb) into a MySQL database via the MySqlBulkLoader function of the MySql .Net Connector.
The import takes quite a long time and results in almost 100% disk usage on the Windows 2003 Server it is running on. In an attempt to speed up the import the program nows splits the big file into smaller chunks.
Would it be possible to read the small file chunk (8mb) into memory (ie array) and then pass it to the MySQLBulkLoader as a file?
The bulk loader looks for a filename path:
MySql.Data.MySqlClient.MySqlBulkLoader myBulk = new MySql.Data.MySqlClient.MySqlBulkLoader(connection);
myBulk.Timeout = 10 * 60; /
myBulk.TableName = "some_table";
myBulk.Local = true;
myBulk.LineTerminator = @"\n";
myBulk.FileName = aFile.FullName;
myBulk.FieldTerminator = "";
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
内存不是文件,所以简短的答案是否定的。替代方案是:
System.IO.Path.GetTempFileName()
是您的朋友,因为名称给出了部分文件)并传递该文件文件名到 MySqlBulkLoaderMemory isn't a file, so the short answer is no. The alternatives are:
System.IO.Path.GetTempFileName()
is your friend here, for the name to give the partial file) and passing that filename to MySqlBulkLoader以下类认为这是不可能的,并在批量加载之前将
DataTable
写入磁盘。它可能不适合所有情况,但它适合我当时的需求。
The following class accepts that it is not possible and writes the
DataTable
to disk before bulkloading.It may not be suited to all circumstances, but it suited my needs at the time.