Skip to content

orbitalwitness/devops-test

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Orbital Witness DevOps Interview Test

Background

Orbital Witness is a building a document ordering and processing system using software-oriented architecture principles.

As a DevOps engineer, you are tasked with improving the engineering efficiency by producing automation tools that provision services in an efficient, predictable and reproducible way.

We use HTTPie in our examples for clarity.

Architecture Overview

                      +-----------------------------------+
                      |                                   |
                      |         Redis Message Queue       |
                      |                                   |
                      +--------^------------------+-------+
                               |                  |
                              (4)                (6)
                               |                  |
+------------+       +---------+---+      +-------v------+
|            |       |             |      |              |
|  Auth API  |       |  Order API  |      |  OCR Worker  | (*n)
|            |       |             |      |              |
+--^------+--+       +--^-------+--+      +--------------+
   |      |             |       |
  (1)    (2)           (3)     (5)
   |      |             |       |
+--+------v-------------+-------v---+
|                                   |
|              Customer             |
|                                   |
+-----------------------------------+

There are 3 distinct services:

  • Auth API - Creates authentication tokens to valid users.
  • Order API - Processes document orders.
  • OCR Worker - Performs Optical Character Recognition (OCR) against documents.

A document order flow is as follows:

  1. A customer authenticates with the Auth API by providing a valid username and password.
  2. An authentication token that is valid for 30 seconds is returned.
  3. Use this authentication token to make a document order request to the Order API.
  4. The Order API submits the order to a message queue for further background processing.
  5. A successful response is returned.
  6. Meanwhile, a OCR Worker processes the order from the message queue by performing OCR against the document.

We use environment variables to configure a service.

Your task

  • Read the documentation for each service. Run and test them to make sure they work as expected.
  • Once you're familiar with the services, use your preferred tools to automate provisioning of a local development environment.
  • Be sure to include external dependencies like Redis and configuration management.
  • In order for a microservices-based architecture to work best, implement a HTTP router in front of the services that routes requests to the correct service. A popular solution is path-based routing:
  • Make your automation available on a public GitHub repository with a README on how to get things started.

Don't worry too much about making this production ready. We may discuss production considerations with you later on.

Bonus (Optional)

Releases

No releases published

Packages

No packages published

Languages