What is a Garbage Collector in Python?
Python
How was the worker with Kafka consumer organized — separately or together with FastAPI?
What tasks are you currently researching or analyzing?
What criteria will you consider when evaluating and choosing a software solution?
What technologies or topics are you currently mastering to improve your professional skills?
What types of tasks do you find most interesting to solve at work?
async def check_response(delay: int, message: str) -> None: timeout = httpx.Timeout(timeout=5) client = httpx.AsyncClient( base_url=BASE_URL, timeout=timeout, ) async with client: response = await client.get(url=f"/delay/{delay}") print(response.status_code, message) async def main() -> None: await check_response(delay=2, message="from first line"), await check_response(delay=2, message="from second line"), await check_response(delay=2, message="from third line"), if __name__ == "__main__": print("Total time:", timeit.timeit(lambda: asyncio.run(main()), number=2))
What data bus did you use and what did you use for reading from Kafka?
What is the minimum acceptable level of income for you?
How many pods handled 500 RPS?
What is MRO (Method Resolution Order)?
Which version of Helm was used and how does Helm 3 differ from Helm 2?
How did you deploy in Kubernetes, and which web server did you use?
Is writing to disk and requesting a third-party service blocking or not? How does asyncio handle this?
How did you score clients before switching to ML scoring?
What are your plans for professional growth and skill development?
What is __slots__ in Python?
What source assigned you your current tasks or assignments?
How did you organize and manage work tasks in your previous experience?
What was your RPS and how did you handle the load?