Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想通过heroku run console连接运行几个小时的过程。是否有我应该关注的最大运行时间或日志长度?rake 任务会更适合,还是因为连接相同而没有区别?
heroku run console
谢谢
Heroku 回复我:所有heroku run项目的时间限制为 1 小时。
heroku run
我不知道有什么硬限制,但一般来说,如果你在远程控制台中运行一个长进程,最好以某种方式分离进程,这样如果出现连接问题,进程就不会终止。这也将绕过任何实际限制。如果在 Heroku dynos 上可用,请使用 screen,或者查看如何在 shell 中分离(不仅仅是后台)进程。