使用 Ruby on Rails 批量更新插入
我有一个 Rails 3 应用程序,需要将外部系统提供的 XML 文件提取到 Postgres 数据库中。我想使用类似 ActiveRecord-Import 的东西,但这似乎无法处理 Postgres 的 upsert 功能,并且我将摄取的一些记录已经存在,但需要更新。
我读到的大部分内容都建议即时编写 SQL,但这似乎是一个可能已经解决的问题。我就是找不到它。
谢谢。
I have a Rails 3 application where I need to ingest an XML file provided by an external system into a Postgres database. I would like to use something like ActiveRecord-Import but this does not appear to handle upsert capabilities for Postgres, and some of the records I will be ingesting will already exist, but will need to be updated.
Most of what I'm reading recommends writing SQL on the fly, but this seems like a problem that may have been solved already. I just can't find it.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 upsert 在 MySQL 和 PostgreSQL 上进行更新插入。
如果您正在寻找原始速度,您可以使用 nokogiri 和 upsert。
使用 data_miner 导入数据可能会更容易,它在内部使用 nokogiri 和 upsert 。
You can do upserting on MySQL and PostgreSQL with upsert.
If you're looking for raw speed, you could use nokogiri and upsert.
It might be easier to import the data using data_miner, which uses nokogiri and upsert internally.
如果您使用的是 PostgreSQL 9.1,则应该使用可写公用表表达式。类似于:
在这种情况下,您首先在临时表中批量处理细化,然后它将尝试根据您的逻辑更新临时表中的记录,并插入其余部分。
If you are on PostgreSQL 9.1 you should use writeable common table expressions. Something like:
In this case you bulk process thins in a temp table first, then it will try to update the records from the temptable according to your logic, and insert the rest.
这是一个两步的事情。首先,您需要获取 XML 文件。如果它是由用户通过表单提供的,那么你很幸运,否则你需要使用 ruby 的标准 HTTP 库或其他像 mechanize 这样的 gem(实际上非常棒)来获取它
。第二件事非常简单。您将所有 XML 读取到一个字符串中,然后您可以使用这段代码将其转换为哈希:
然后您可以解析并使用数据...
Its a two step thing. First you need to fetch the XML File. If its provided by a user via a form that luck for you otherwise you need to fetch it using the standard HTTP lib of ruby or otherwise some gem like mechanize (which is actually really great)
The second thing is really easy. You read all the XML into a string and then you can convert it into a hash with this pice of code:
Then you can parse and work with the data...