Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I currently use Builder to generate the XML for my site's video player and Paperclip to save it to Amazon S3. The generation occurs in a before_save callback and the storage occurs during the save.

class VideoPlayerXml < ActiveRecord::Base
  has_attached_file :xml,
                   :storage => :s3,
  ....

  def before_save
  ....
    File.open(file_path, "w+") do |file|
      x = Builder::XmlMarkup.new(:target => file, :indent => 1)
      x.instruct!
    end
    self.xml = File.open(file_path, "r")
  end
  ....
end

This saving process occurs in a background job as well. The issue I am having is that on very rare occasions, the XML generated by this process is invalid, missing entire or partial elements. When I reprocess a problem XML file, it is fine, so the problem is not reproducible. My first assumption was that a memory limitation could be causing this, but the last time this happened was this morning and the memory on that server has been fine the entire time. Any ideas what could be causing this? Thanks.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.