Git Product home page Git Product logo

Comments (4)

elithrar avatar elithrar commented on July 28, 2024

First: unless you have an absolutely pressing need to restart your
application without any downtime, I'd leave Einhorn for now. Goji already
gracefully stops, and you can use nginx/haproxy up front to serve a pretty
503/maintenance page during the short downtime.

Second: supervisor, systemd and Upstart can all do this and should have no
problems. I use supervisord and have zero problems restarting a Go binary.

If you are having problems, post your supervisor.conf config here (or on
Stack Overflow) and I'll gladly help.

On Friday, 13 June 2014, badoet [email protected] wrote:

im surprised with the lack of detailed coverage on how to run golang web
app in the background process i.e. when i close my ssh window it doesnt go
down together with it.
and a good tool to just do a simple start, stop, AND RESTART!

how do we do it with goji? running it as a background process using
supservisord seems fine with centos but the during restart, the program
will just hang.
and using einhorn. i can start it. but cant restart it...
the einhorn only claimed "You can also seamlessly restart your workers
without dropping any requests" but never document the HOW part.

im seriously frustrated with the current condition. golang is so beautiful
n powerful n yet the deployment is a bitch.


Reply to this email directly or view it on GitHub
#31.

from goji.

badoet avatar badoet commented on July 28, 2024

hey thx for the quick reply.

this is my basic supervisord.conf
[supervisord]
http_port=/var/tmp/supervisor.sock ;
logfile=/var/log/supervisor/supervisord.log ;
logfile_maxbytes=50MB ;
logfile_backups=10 ;
loglevel=info ;
pidfile=/var/run/supervisord.pid ;
nodaemon=false ;
minfds=1024 ;
minprocs=200 ;

[supervisorctl]
serverurl=unix:///var/tmp/supervisor.sock ;

[program:goprogram]
command=/home/goprogram/main;
autostart=true;
autorestart=true;
startretries=3;
user=git;

i tried to use monit to just do start and stop (not restart -somehow cant chain stop n start).
it kinda work. bt i do would love to get the restart working. so that i can use it in my post-receive hook in my git push

from goji.

elithrar avatar elithrar commented on July 28, 2024

That config looks good to me. Does the supervisor log show any errors? Are
you using the package manager supplied supervisord (older) or via
easy_install/pip (recent)?

I assume a supervisorctl stop goprogram && supervisorctl start goprogram works fine, but that restart does not?

On Friday, 13 June 2014, badoet [email protected] wrote:

hey thx for the quick reply.

this is my basic supervisord.conf
[supervisord]
http_port=/var/tmp/supervisor.sock ;
logfile=/var/log/supervisor/supervisord.log ;
logfile_maxbytes=50MB ;
logfile_backups=10 ;
loglevel=info ;
pidfile=/var/run/supervisord.pid ;
nodaemon=false ;
minfds=1024 ;
minprocs=200 ;

[supervisorctl]
serverurl=unix:///var/tmp/supervisor.sock ;

[program:goprogram]
command=/home/goprogram/main;
autostart=true;
autorestart=true;
startretries=3;
user=git;

i tried to use monit to just do start and stop (not restart -somehow cant
chain stop n start).
it kinda work. bt i do would love to get the restart working. so that i
can use it in my post-receive hook in my git push


Reply to this email directly or view it on GitHub
#31 (comment).

from goji.

badoet avatar badoet commented on July 28, 2024

yeap the restart doesnt work. it will just hang and not complete the operation.
yes i was using the old supervisord.

i somehow figured out that i can restart the application using monit. with 'monit restart goprogram' haha
manage to pull off an automatic git-push -> git checkout -> build go -> restart goprogram using monit in my post-receive script.
anyone having the same problem can just ping me, i will share my configs.

@elithrar thank u so much for helping me out. it is reallly kind of u
i will close this issue for now.

cheers

from goji.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.