The problems I am trying to solve is to make prototyping faster so we can gather some feedback and build what people want faster
I had been looking for it but somehow I still could not find it among services provided by Amazon Web Service And Google Cloud
I worked in a start-up. Here, I realized sometimes we use the wrong architecture when building our system because sometimes we need to build it fast and we don't have experience for building correct architecture.
I just wonder whether start up really need this team or not?
If yes, what are the responsibilities and how to measure the impact of this team in engineering organization?
I'm exploring options for doing service discovery for system in my company that used micro-service arhictecture. Mostly, we're using AWS for our stack.
I found out that Route53 can provide service discovery for AWS https://docs.aws.amazon.com/Route53/latest/APIReference/overview-service-discovery.html
But I wonder the reason some companies (e.g. Stripe) using something like Consul https://stripe.com/blog/service-discovery-at-stripe
Anyone can share their experience and provide the difference between those two?
Thanks
I'm kind of astonished with the idea of status page for showing our system status to public like https://status.stripe.com/
Are there any open sources that I can reuse for implementing this use case?
Thanks!
I worked for a company more than 1 year which most of our stack is using Node.js architected in micro-service way.
I found difficulty on finding the best way for tracing context and error (distributed tracing) to detect issue faster. Anyone has experienced this too and been willing to share the way for dealing with this in production system?
P.S: I believe most people usually passing context in function call and combine it with open tracing. But I'm not sure if there are any better ways than that in Node.js. Example of distributed tracing in Golang: https://www.youtube.com/watch?v=nm2A80PfYww
I'm looking for centralized tools for managing secrets for my engineering team right now. Is there any recommended tools from your experience using them in production?
For example like Vault (Hashicorp product).
Thanks
Anyone used Spinakker in production? How is it going compare to Jenkins? What's the benefit and drawback?
Thanks
I just saw Git web based UI management today. I wonder if someone can share their experience using either on of them so I can compare the benefit and drawback of those 2 options. Anyone can share?
Thanks
I'm trying to setup standard platform for technical documentation. I found that Gitbook and Confluence are the example of good ones, but I wonder if there is any good open source alternative to this.
Anyone has better options?
I would like to initiate feature flag driven development in my current company. I saw several ideas like what Etsy built https://github.com/etsy/feature but I wonder whether this is good idea or not.
From my perspective, that way will mess up the logic in my code and not scalable in micro services .I can imagine that will be a ton of bugs when I didn't put the logical condition in one of my services.
So anyone has experience in doing feature flag in micro services?