Sobes.tech

ERP Consultant

Why are you considering changing jobs and what is important in a new place?

Principal
198

Does everyone get the same amount of annual leave?

194

What anti-patterns in microservice architecture do you know?

Junior
192

public class Main { public static void main(String[] args) { System.out.println("Hello World"); } } -------------------------------- @SpringBootApplication @RestController @RequestMapping("/tasks") public class Main{ private final List<Task> tasks = new ArrayList<>(); private final AtomicLong idGenerator = new AtomicLong(1); public static void main(String[] args){ SpringApplication.run(Main.class, args); } @PostMapping @ResponseStatus(HttpStatus.CREATED) public Task createTask(@RequestBody CreateTaskRequest request){ Task task = new Task(idGenerator.getAndIncrement(), request.title()); tasks.add(task); return task; } @GetMapping public List<Task> getAllTasks(){ return tasks; } public record CreateTaskRequest(String title){ } public record Task(Long id, String title){ } }

192

How did you deal with goroutine leak — did you monitor it?

Principal
190

If the application does not respond for a few minutes and a request queue accumulates, how will they be processed? Will the application crash with OOM?

189

What were the bottlenecks in the monolith messenger, and why was it decomposed?

Principal
185
/7