开发者

What would be a good approach to use Thread or Thead Pool in ASP.NET

开发者 https://www.devze.com 2022-12-26 11:34 出处:网络
I am developing a component to create bespoke BulkImport functionality in ASP.NET. Underline this component will be using SqlBulkCopy class. There will be different file formats. The file is imported

I am developing a component to create bespoke BulkImport functionality in ASP.NET. Underline this component will be using SqlBulkCopy class. There will be different file formats. The file is imported into a intermidiate table and is then transformed to the required tables. The upload file can be big and might take couple of minutes for processing. I would like to use Thread or Thead Pool开发者_JS百科 to do asynchronous processing. Can you please suggest a good approach to handle this problem.

note: This is an internal application which would be used by max 2-5 person at any given time.


The main problem with firing up additional threads in ASP.NET is that the framework can rip the AppDomain out from under you (for example, if someone edits the web.config or IIS decides to recycle the worker process). If that happens, your worker thread is also terminated and you can't really control it.

If you don't think that'll be a problem, then it doesn't really matter, but I would suggest that a better solution would probably be to fire up the work in a separate process that you can then monitor from your web application.

That way, if someone edits the web config, or IIS recycles the worker process, the import process is running independently and you don't have to worry.


Here is my approach:

  • Ask the user to paste in the unc path to the file. Save this path into a table in sql.
  • Write a windows service to check for new entries in the path table. When finding a new entry, start processing the file. Update the tabel periodicly with the progress and check flags (below)
  • Have an ajax callback in the browser that checks the table for progress, returning as a percentage to the client. Allow the client to stop the process by adding some flags to the table.
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号