Giter VIP home page Giter VIP logo

beeinventor's Introduction

Distributed Dictionary System Design

Basic Requirements

  • User can upload texts or books
  • User can view the texts or books
  • User should be able to search texts or books

Solution

Backend Architecture with AWS

  • Entry point for client

    • API Gateway
  • Scalable Microservices

    • Load Balencer
    • ECS (or EKS)
    • SQS
    • Lambda
  • Main Database

    • RDS (or Aurora)
  • Full-text Search Engine

    • Elastic Search
  • File Storage

    • S3 private bucket
  • Cache

    • Cloud Front
    • Elastic Cache

User upload flow

  1. The client sends GET /pre-signed-url request and uploads original files.
  2. The client sends POST /texts or POST /books request.
  3. Upload service validate metadata and uploaded files.
  4. Upload service store metadata to DB and enqueue for content parser.
  5. Content parser get files from S3 and metadata from DB then stores texts to Elastic Search.

User view flow

  1. The client sends GET /texts, GET /books or GET /texts/<:id>, GET /books/<:id> request.
  2. View & Search service check if metadata cache exist
    • exist: Get metadata from cache
    • not exist: Get metadata from DB then store to cache
  3. Generate pre-signed url to accsee files (cached by CDN) and return result to client

User search flow

  1. The client sends GET /search?q=word request.
  2. View & Search service check if search cache exist
    • exist: get search result from cache
    • not exist: search contents from Elastic Search and get metadata from DB then store result to cache.
  3. Return search result to client.

beeinventor's People

Contributors

yk9331 avatar

Watchers

 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.