5

我想导入大量的 cvs 数据(不是直接到 AR,而是在一些获取之后),而且我的代码很慢。

def csv_import 
    require 'csv'
    file = File.open("/#{Rails.public_path}/uploads/shate.csv")
    csv = CSV.open(file, "r:ISO-8859-15:UTF-8", {:col_sep => ";", :row_sep => :auto, :headers => :first_row})

    csv.each do |row|
      #ename,esupp= row[1].split(/_/) 
      #(ename,esupp,foo) = row[1]..split('_')
      abrakadabra = row[0].to_s()
      (ename,esupp) = abrakadabra.split(/_/)
      eprice = row[6]
      eqnt = row[1]
      # logger.info("1) ")
      # logger.info(ename)
      # logger.info("---")
      # logger.info(esupp)
      #----
      #ename = row[4]
      #eprice = row[7]
      #eqnt = row[10]
      #esupp = row[12]

        if ename.present? && ename.size>3
        search_condition = "*" + ename.upcase + "*"     

        if esupp.present?
          #supplier = @suppliers.find{|item| item['SUP_BRAND'] =~ Regexp.new(".*#{esupp}.*") }
          supplier = Supplier.where("SUP_BRAND like ?", "%#{esupp}%").first
          logger.warn("!!! *** supp !!!")
          #logger.warn(supplier)
        end

        if supplier.present?

          @search = ArtLookup.find(:all, :conditions => ['MATCH (ARL_SEARCH_NUMBER) AGAINST(? IN BOOLEAN MODE)', search_condition.gsub(/[^0-9A-Za-z]/, '')])
          @articles = Article.find(:all, :conditions => { :ART_ID => @search.map(&:ARL_ART_ID)})
          @art_concret = @articles.find_all{|item| item.ART_ARTICLE_NR.gsub(/[^0-9A-Za-z]/, '').include?(ename.gsub(/[^0-9A-Za-z]/, '')) }

          @aa = @art_concret.find{|item| item['ART_SUP_ID']==supplier.SUP_ID} #| @articles
          if @aa.present?
            @art = Article.find_by_ART_ID(@aa)
          end

          if @art.present?
            @art.PRICEM = eprice
            @art.QUANTITYM = eqnt
            @art.datetime_of_update = DateTime.now
            @art.save
          end

        end
        logger.warn("------------------------------")       
      end

      #logger.warn(esupp)
    end
 end

即使我删除并只得到这个,它也很慢。

def csv_import 
    require 'csv'
    file = File.open("/#{Rails.public_path}/uploads/shate.csv")
    csv = CSV.open(file, "r:ISO-8859-15:UTF-8", {:col_sep => ";", :row_sep => :auto, :headers => :first_row})

    csv.each do |row|
    end
end

有人可以帮助我使用fastcsv提高速度吗?

4

4 回答 4

2

正如它的名字所暗示的那样,更快的 CSV 会更快:)

http://fastercsv.rubyforge.org

也见。了解更多信息

Ruby on Rails 从 CSV 迁移到 FasterCSV

于 2012-08-28T20:17:31.567 回答
2

我不认为它会变得更快。

也就是说,一些测试表明大部分时间都花在了转码上(我的测试用例大约占 15%)。因此,如果您可以跳过它(例如,已经在 UTF-8 中创建 CSV),您会看到一些改进。

此外,根据ruby​​-doc.org,读取 CSV 的“主要”接口是 foreach,所以应该首选:

def csv_import
  import 'csv'
  CSV.foreach("/#{Rails.public_path}/uploads/shate.csv", {:encoding => 'ISO-8859-15:UTF-8', :col_sep => ';', :row_sep => :auto, :headers => :first_row}) do | row |
    # use row here...
  end
end

更新

您也可以尝试将解析拆分为多个线程。我在尝试使用此代码时达到了一些性能提升(标题遗漏的处理):

N = 10000
def csv_import
  all_lines = File.read("/#{Rails.public_path}/uploads/shate.csv").lines
  # parts will contain the parsed CSV data of the different chunks/slices
  # threads will contain the threads
  parts, threads = [], []
  # iterate over chunks/slices of N lines of the CSV file
  all_lines.each_slice(N) do | plines |
    # add an array object for the current chunk to parts
    parts << result = []
    # create a thread for parsing the current chunk, hand it over the chunk 
    # and the current parts sub-array
    threads << Thread.new(plines.join, result) do  | tsrc, tresult |
      # parse the chunk
      parsed = CSV.parse(tsrc, {:encoding => 'ISO-8859-15:UTF-8', :col_sep => ";", :row_sep => :auto})
      # add the parsed data to the parts sub-array
      tresult.replace(parsed.to_a)
    end
  end
  # wait for all threads to finish
  threads.each(&:join)
  # merge all the parts sub-arrays into one big array and iterate over it
  parts.flatten(1).each do | row |
    # use row (Array)
  end
end

这会将输入分成 10000 行的块,并为每个块创建一个解析线程。每个线程都被移交给数组中的一个子数组parts以存储其结果。当所有线程都完成后(之后threads.each(&:join)),所有块的结果parts都是联合的,就是这样。

于 2012-09-11T13:00:09.553 回答
0

我很好奇文件有多大,有多少列。

使用 CSV.foreach 是首选方式。在您的应用程序运行时查看内存配置文件会很有趣。(有时速度慢是由于打印造成的,因此请确保不要做超出需要的操作)

您可能能够对其进行预处理,并排除任何没有 esupp 的行,因为看起来您的代码只关心这些行。此外,您可以截断您不关心的任何右侧列。

另一种技术是收集独特的组件并将它们放入哈希中。似乎您多次触发相同的查询。

您只需要分析它并查看它在哪里花费时间。

于 2012-09-13T17:08:25.037 回答
0

查看 Gem smarter_csv!它可以分块读取 CSV 文件,然后您可以创建 Resque 作业以进一步处理这些块并将其插入数据库。

https://github.com/tilo/smarter_csv

于 2013-04-13T18:33:06.643 回答