Fiz uma entrevista na empresa Netdata (Atenas, , Ática).
Entrevista
The first interview was an introductory meeting to get to know you and your experience. It covers your education, work, and projects, basic technical skills, and problem-solving abilities. You may be asked coding or logic questions. It’s also a chance to ask about the role and company culture.
Perguntas de entrevista [1]
Pergunta 1
Can you tell me about yourself and your background?
Candidatei-me por meio de recrutador(a). O processo levou 2 semanas. Fui entrevistado pela Netdata (Madrid) em out. de 2021
Entrevista
First interview with HR. All were good. We select a date to proceed with the Tech interview. The interview was cancelled 10 minutos before to start because the position was already taken. No serious!
Perguntas de entrevista [1]
Pergunta 1
P: Are you interested in NetData?
P: Salary expectations?
Candidatei-me por meio de recrutador(a). O processo levou 4 semanas. Fui entrevistado pela Netdata (Roterdão) em ago. de 2021
Entrevista
Process with basically 3 interviews. First one with the recruiter, second one with a manager with some level of technical questions but nothing too deep. Then a take home assignment which I described in the questions asked part below. Then an interview with the very arrogant COO. For me the last interview lasted 10 minutes because the COO started the interview right out of the gate just pointing out mistakes I made in the assignment, but all of the "mistakes" were explained and reasoned about in the README of the project. And I pointed out that all the answers to his questions were in the README he said he didn't like my attitude and cut the interview short. Meaning, the team that reviewed the project didn't even take the time to read the documentation presented with the project. This is exactly the reason companies need to stop giving coding assignments. The candidate spends hours and sometimes days which he take out of his family time, and companies like Netdata do not give the proper value. I am actually happy this didn't workout, because with a COO like this, this is definitely not a company I would like to work for.
Perguntas de entrevista [1]
Pergunta 1
Deliverables:
1. The microservice written in golang
2. A brief documentation outlining your design/implementation decisions
3. A unit and end-to-end test suite for your implementation
In this assignment we want you to design a new feature for Netdata cloud that allows users to receive notifications for the triggered alarms in a non-intrusive manner.
To achieve that you need to create a microservice which will consume events from two topics.
You will also need to create a publisher to send the AlarmDigest to the notification service.
Subscribe to topics on Nats and Publish to it also.
Notes
1. For the purposes of this challenge you can assume that your service will be part of an event driven system, with multiple microservices that communicate via messaging.
2. In the context of this challenge, nats will act as the message broker.
3. Our broker cannot guarantee in-order delivery of the messages
4. Our broker can guarantee at-least-one delivery for all topics
5. Your solution should be capable of handling any amount of messages
6. Your solution should be able to scale horizontally.
7. It is very important that all active alarms are eventually sent to the user, alarms should not be lost.
8. Ideally a user shouldn’t receive the same alarm twice, if its status has not changed since the last digest email.
9. Active alarms should be ordered chronologically (oldest to newest)