How to determine that degradation occurred specifically due to increased resource consumption (CPU, etc.)?
Golang
What types of mutual exclusions (Mutex) are implemented in the standard Go library?
How is a slice passed to a function in a programming language?
Tell me about working with slices in Golang: how do capacity, length work, and what happens when going out of bounds
How many microservices have you written during your time at the company?
What is GOMAXPROCS and how many goroutines will run in parallel out of 1000?
Tell about your experience, what you did, on which project you worked, and what role you played?
Is there an individual entrepreneur or other forms of legal entities?
// What will the code output? func main() { var wg sync.WaitGroup for i := 0; i < 3; i++ { go func() { wg.Add(1) defer wg.Done() fmt.Print(i) }() } wg.Wait() fmt.Println("\ndone") }
What is the role of the EXPLAIN operator when executing SQL queries in a database?
How to remove a reservation after the timeout (5 minutes)?
What would you definitely not want to see at your new workplace?
Tell me about optimizing database queries from a technical perspective.
Which tasks do you like more, and which less?
Tell me about your last project that you are proud of.
SELECT department, SUM(salary) FROM employees WHERE SUM(salary) > 10000 GROUP BY department;
What types of layered architectures are there? (Clean Architecture, Hexagonal, DDD)
How does the task pipeline go from business to development?
Tell me about the Golang scheduler, how does it work with blocking operations
Does your team have mobile development?