/tilla-code

Primary LanguageTypeScript

Backend Coding Challenge

Our main goal for this exercise is to get an idea of how you are to work with and how you approach your engineering work. That insight is more important than your actual working solution at the end of this exercise.

Please record your screen and talk us through the coding exercise as you work through it. Don't hesitate to think out loud—that's the interesting part!

We expect this to take around an hour.

Brief

You'll be building an endpoint to look up airport information. In its current state, we render a list of all airports (around 6000) on the frontend, but we don't want to keep this data in the frontend or load them all at once.

Please move this data into a database scheme on the backend, and then write an endpoint that allows fetching data from the frontend. Your endpoint should allow user to look up airports by searching for airports by name, IATA, city, or country.

The designer gave you this mock-up as a reference. It's fine if the design doesn't look like this, since this exercise focuses on the back-end, but it gives you an idea of where this would go.

image

Assumptions

  • Tilla uses NestJS, Prisma with PostgreSQL and TypeScript. It'd be cool if you use that same tech stack for this exercise.
  • The database is currently a JSON file with airport data.
  • The IATA code is a unique identifier for an airport.
  • While we care more about your thought process than your outcome, we're still interested in how you write code. Don't cut corners there, and write the code as if you'd write a real-world, production-quality product.

Extra questions

We'd love to hear your thoughts on some of these questions. Please don't spend more than a minute or two on each question.

  • What are some edge cases you would take care of before shipping this to production?
    • Proper logging [API level and database level as well]
    • Backup for failures, how to handle recoveries (especially db)
    • API health check to monitor service is up and running
    • Tests (e2e[FE], integration, unit)
    • Run load test with large amount of data
    • Check the query execution time, [postgress with 'explain' keyword]
    • containerization and orchestration of the application [smooth deployments]
    • Since API is open , whitelist the IP
  • How would you scale this to handle high amounts of traffic?
    • Use im-memory db like redis, since this data does not update more frequently.(implement cache invalidation as well)
    • Use API gateway
      • Rate Limiting: Implement rate limiting to prevent abuse and ensure fair usage of API.
      • Request Throttling: Throttle requests to manage spikes in traffic.
    • Use load balancer for scale the API
  • What's important for you to work well in a fully remote team?
    • Communication is very important since team is distributed across multiple regions/ timezones
    • Regular check ins to sync with team members + managements regrading the task process, deliverables, company strategies/goals

Deliverables

  • Invite @pieterbeulque and @umartayyab to a GitHub repo with your completed project
  • A video of your screen recording (unlisted YouTube video, Loom, … anything works)
  • Answers to the questions above can be either in the video or written down in the README of your repo

Getting Started

The app is designed to work out of the box.

yarn install
yarn dev

How to test the app

  1. yarn install
  2. open a terminal and run yarn docker:up (for DB)
  3. open another terminal and run npx ts-node docker/init.ts (seed the data)
  4. run yarn start
  5. open browser in http://localhost:3000
  6. API doc in http://localhost:3001/docs

The app should be available via http://localhost:3000.

Good luck and talk soon!