Giter VIP home page Giter VIP logo

indicium-code-challenge's Introduction

Description of the files created in python to solve the proposed problems.

bdQueryOrdersDetails.py

This python file makes a database query about the stored orders.

createTableService.py

This python file creates a csv file of the database table according to the table name entered by the user.

insertTableOrdersDetails.py

Este arquivo python insere no banco de dados os registro do arquivo CSV referente a tabela de detalhes do pedido.

verifyFileCSV.py

This python file parses the CSV file to see if it contains records with invalid or null fields.


_________________________________________________________________________________

code-challenge

Indicium code challenge for Software Developer focusing on data projects

Indicium Tech Code Challenge

Code challenge for Software Developer with focus in data projects.

Context

At Indicium we have many projects where we develop the whole data pipeline for our client, from extracting data from many data sources to loading this data at its final destination, with this final destination varying from a data warehouse for a Business Intelligency tool to an api for integrating with third party systems.

As a software developer with focus in data projects your mission is to plan, develop, deploy, and maintain a data pipeline.

The Challenge

We are going to provide 2 data sources, a Postgres database and a CSV file.

The CSV file represents details of orders from a ecommerce system.

The database provided is a sample database provided by microsoft for education purposes called northwind, the only difference is that the order_detail table does not exists in this database you are beeing provided with.This order_details table is represented by the CSV file we provide.

Schema of the original Northwind Database:

image

Your mission is to build a pipeline that extracts the data everyday from both sources and write the data first to local disk, and second to a database of your choice. For this challenge, the CSV file and the database will be static, but in any real world project, both data sources would be changing constantly.

Its important that all writing steps are isolated from each other, you shoud be able to run any step without executing the others.

For the first step, where you write data to local disk, you should write one file for each table and one file for the input CSV file. This pipeline will run everyday, so there should be a separation in the file paths you will create for each source(CSV or Postgres), table and execution day combination, e.g.:

/data/postgres/{table}/2021-01-01/file.format
/data/postgres/{table}/2021-01-02/file.format
/data/csv/2021-01-02/file.format

you are free to chose the naming and the format of the file you are going to save.

At step 2, you should load the data from the local filesystem to the final database that you chosed.

The final goal is to be able to run a query that shows the orders and its details. The Orders are placed in a table called orders at the postgres Northwind database. The details are placed at the csv file provided, and each line has an order_id field pointing the orders table.

How you are going to build this query will heavily depend on which database you choose and how you will load the data this database.

The pipeline will look something like this:

image

Requirements

  • All tasks should be idempotent, you should be able the whole pipeline for a day and the result should be always the same
  • Step 2 depends on both tasks of step 1, so you should not be able to run step 2 for a day if the tasks from step 1 did not succeed
  • You should extract all the tables from the source database, it does not matter that you will not use most of them for the final step.
  • You should be able to tell where the pipeline failed clearly, so you know from which step you should rerun the pipeline
  • You have to provide clear instructions on how to run the whole pipeline. The easier the better.
  • You have to provide a csv or json file with the result of the final query at the final database.
  • You dont have to actually schedule the pipeline, but you should assume that it will run for different days.
  • Your pipeline should be prepared to run for past days, meaning you should be able to pass an argument to the pipeline with a day from the past, and it should reprocess the data for that day. Since the data for this challenge is static, the only difference for each day of execution will be the output paths.

Things that Matters

  • Clean and organized code.
  • Good decisions at which step (which database, which file format..) and good arguments to back those decisions up.

Setup of the source database

The source database can be set up using docker compose. You can install following the instructions at https://docs.docker.com/compose/install/

With docker compose installed simply run

docker-compose up

You can find the credentials at the docker-compose.yml file

Final Instruction

You can use any language you like, but keep in mind that we will have to run your pipeline, so choosing some languague or tooling that requires a complex environment might not be a good idea. You are free to use opensource libs and frameworks, but also keep in mind that you have to write code. Point and click tools are not allowed.

Thank you for participating!

indicium-code-challenge's People

Contributors

devroberta avatar dpavancini avatar vitoravancini avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.