Netflix Chaos Monkey Upgraded
11–20 of 89 posts
Re: Netflix Chaos Monkey Upgraded
#12It looks like it's working too well. The site is unreachable for me.
down : Secure Connection Failed The connection to techblog.netflix.com was interrupted while the page was loading.
Re: Netflix Chaos Monkey Upgraded
#13It looks like it's working too well. The site is unreachable for me.
Re: Netflix Chaos Monkey Upgraded
#14Has anyone else deployed a Chaos Monkey in production ? I can imagine it would be a tough sell to the CEO. :)
You catch bugs, and no one says you can't run Chaos Monkey in staging or a similar environment if it really is a tough sell.
Re: Netflix Chaos Monkey Upgraded
#15Has anyone else deployed a Chaos Monkey in production ? I can imagine it would be a tough sell to the CEO. :)
I remember reading years and years ago about bandit algorithms... this kind of ops work is at a level that's found only in a few different companies.
Re: Netflix Chaos Monkey Upgraded
#16Another useful tool is https://github.com/gaia-adm/pumba - like ChaosMonkey, but just for Docker containers. The coolest part for us was emulating networking problems between containers (packet loss, unavailability etc).
Re: Netflix Chaos Monkey Upgraded
#17I wonder what the reasoning was for having version 2 only terminate instances (vs burning up CPU, taking disks offline, etc.)? I assume it's something to do with what Chaos Monkey is NOT trying to solve (ie. eating up CPU is caught elsewhere by another system and out of scope for Chaos Monkey now). Just trying to think it through...
I would assume that terminating is easy via the AWS API, whereas some of the other things need a process on the instance. You shouldn't really be connecting to boxes directly over SSH if you do DevOps correctly, so maybe they blocked port 22 to enforce this.
Re: Netflix Chaos Monkey Upgraded
#18I wonder what the reasoning was for having version 2 only terminate instances (vs burning up CPU, taking disks offline, etc.)? I assume it's something to do with what Chaos Monkey is NOT trying to solve (ie. eating up CPU is caught elsewhere by another system and out of scope for Chaos Monkey now). Just trying to think it through...
Re: Netflix Chaos Monkey Upgraded
#19Seems unfortunate that it requires the coupling with spinnaker - although i can see how it helps with the cluster definition features.
Edit: I'll add that we've been using the original chaos monkey and chaos lambda extensively in production for some time with very few problems.
Re: Netflix Chaos Monkey Upgraded
#20Another useful tool is https://github.com/gaia-adm/pumba - like ChaosMonkey, but just for Docker containers. The coolest part for us was emulating networking problems between containers (packet loss, unavailability etc).