Re: [go-nuts] How to determine system requirements for an application?

2020-07-03 Thread thatipelli santhosh
My thought would be write another program or client to send requests to your k8's deployed app/program to test its limits and determine your optimal solution. I think it is kind of doing a stress testing and go has tools for it. On Sat, Jul 4, 2020, 00:25 smart aquarius wrote: > But as per my u

Re: [go-nuts] How to determine system requirements for an application?

2020-07-03 Thread smart aquarius
But as per my understanding the threading mechanism of Golang is far more better and lightweight than any technology like C# or Java. My use case is I wanted to deploy golang api on kuernetes which will be called by 150 clients every 20 seconds. I don't know how much ram and cpu will be be good

Re: [go-nuts] How to determine system requirements for an application?

2020-07-03 Thread fgergo
If you can do that in any other language, similar strategy would work in similar go programs as well. (I assume you know you can't do that in the general case. For details see the halting problem.) On Fri, Jul 3, 2020, 11:58 wrote: > Hello, > > If we make an application in golang then how to det