ActiveRecord 在 Heroku 上错误加载二进制字段,在 OSX 上正常
我有一个 Rails 3.1 应用程序,它将图像存储在 postgresql 数据库的二进制字段中(我知道在数据库中存储图像存在潜在问题,但现在必须这样做)。在 OSX 上的开发模式和规范中,本地一切正常,但在部署到 Heroku 的应用程序中所有图像都损坏了。我通过将本地计算机指向 heroku 实例使用的同一数据库来验证数据库中的数据是否正确,并且所有图像都正确显示。
因此,问题似乎在于 ActiveRecord(在 Heroku 上运行)从数据库加载数据。我也猜测这是一个编码问题。在本地运行 Rails 控制台,我可以验证这些字段的字节大小是否正确,但在 Heroku 上运行 Rails 控制台显示字节大小不正确。事实上,通过 Heroku 上的 ActiveRecord 加载 N 字节文件会导致所有文件的字节大小为 2N+1。
非常感谢任何帮助。
I have a rails 3.1 app that stores images in a binary field in a postgresql database (I am aware of potential issues with storing images in a database, but have to do so for now). Everything works fine locally in development mode and specs on OSX, but all images are broken in the app deployed to Heroku. I've verified that the data in the database is correct by pointing my local machine at the same database that the heroku instance uses, and all images displayed correctly.
So, the problem seems to lie in ActiveRecord (running on Heroku) loading the data from the database. I'm also guessing it is an encoding issue. Running the rails console locally I can verify that the bytesize of these fields are correct, but running the rails console on Heroku shows an incorrect bytesize. In fact, loading an N byte file via ActiveRecord on Heroku results in a bytesize of 2N+1 for all files.
Any help is greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
2n+1 听起来像是您从
bytea
获得十六进制输出,而不是旧的转义格式。我猜您使用的是专用数据库,这意味着 PostgreSQL 9.0 有一个 不同的bytea的默认编码:如果我是对的,那么您可以使用上面链接中的说明或使用此摘要版本:
DATABASE_URL
中提取 PostgreSQL 用户名,该用户名类似于postgres://username:password@host/database_name
。psql
控制台执行ALTER ROLE username SET bytea_output TO 'escape';
,当然,username
是 (1) 中的用户名。psql
执行heroku restart
来重新启动您的应用程序。然后再试一次,希望您能得到正确的字节。
The 2n+1 smells like you're getting hex output from your
bytea
instead of the old escaped format. I'm guessing that you're using a dedicated database and that means PostgreSQL 9.0 which has a different default encoding for bytea:If I'm right then you can use the instructions in the above link or use this summarized version:
DATABASE_URL
which looks likepostgres://username:password@host/database_name
.heroku pg:psql
to get a PostgreSQL console.ALTER ROLE username SET bytea_output TO 'escape';
from the thepsql
console where, of course,username
is the username from (1).psql
do aheroku restart
to restart your application.Then try again and hopefully you'll get the right bytes.