“It's The Future”
141–150 of 536 posts
Re: “It's The Future”
#142I think I will be fine, thanks. I'll stick to my shell scripts, so far they've outlived any other devops fad.
Why not use Python instead? Shellscript is so... chaotic.
Shell scripts are guaranteed to be runnable on all machines.
Unfortunately the shell "language" sucks, but still...
Re: “It's The Future”
#143I have to use ECS for caching (I am not happy about it)
Builds might fail due to the custom docker version/compilation
You can mock docker, but people are using it in one way or another and you should support it properly.
Re: “It's The Future”
#144Re: “It's The Future”
#145Earlier quoted context omitted.
40k visitors per month isn't one per minute. It's anywhere from one per minute to 40k per second. Division of requests by time is the worst possible mistake in calculating load.
Plus visitors != requests. I have 200k visitors per month generating 8m page views and about 50m hits on the servers (with CDNs taking another few hundred million hits). These all peak during the UK weekdays and wind down at nights and weekends. Divisions over time aren't going to work, but neither is translating visitors into requests, especially as it's only the page views that have a beyond trivial computation cos…
Total Requests
Last Month
622,482Re: “It's The Future”
#146Sometimes it seems the webdev world is unaware of the complexity its creating simply to execute instructions....
What do you mean? I'm just running bytecode on a virtual machine ontop of a virtualized container on top of virtualized hardware on a CPU where the instruction set is virtualized in microcode...
Re: “It's The Future”
#147Re: “It's The Future”
#148Obligatory link to "The S stands for simple", a SOAP-bashing classic: http://harmful.cat-v.org/software/xml/soap/simple
Nooooooooooooooooo. Everytime someone says "service discovery" a kitten dies (Except for consul, that's the biz).
Re: “It's The Future”
#149Question: Is there an advantage to using docker when it takes 3 hours to rebuild our relatively small database?
Re: “It's The Future”
#150"-No, look into microservices. It’s the future. It’s how we do everything now. You take your monolithic app and you split it into like 12 services. One for each job you do. That seems excessive" A 100 times yes. We tried to split our monolithic Rails app into micro-services built in Go. 2 years and many fires later, we decided to abandon the project. It was mostly because the monitoring and alerting were now split in…