How interested are you in the team's domain area? What are you looking for more? This is not a standard product development, but a platform for internal teams.
Tech Support / L1-L3
Do you have experience building dashboards in Grafana?
Tell us about your experience with monitoring tools: Zabbix, Prometheus, Grafana.
Do you have experience with Redis? What did you do?
Ping is just a network interface check. What else needs to be checked?
What operators are used inside a SELECT query and in what order?
What is a worker node in Kubernetes?
How to fight race conditions?
Why did you decide to leave your previous job?
How were access rights to file resources distributed? What types of AD groups exist and how do they differ?
Tell about your experience with Git. List the basic commands for creating a commit to a remote repository.
List the main entities of Kubernetes you have to work with.
Network problem diagnosis: uploading 20 GB over a 3 Gbps channel takes 6 hours. Where is the bottleneck and what tools can be used for diagnosis?
How is interaction with adjacent teams (development, infrastructure) organized?
What is the difference between a partition and a topic in Kafka?
What is a hash table?
/** * Repeating characters * * Write a function that takes a string as input and returns * for each unique character the maximum number of its consecutive repetitions. * * Input: aaffbaaaaffc * Output: a:4 b:1 f:2 c:1 * * Input: bbbbbb * Output: b:6 * * Input: abc * Output: a:1 b:1 c:1 * * Input: aabbcc * Output: a:2 b:2 c:2 * * Input: aaabbbccc * Output: a:3 b:3 c:3 * * Input: a * Output: a:1 * * Input: "" * Output: */