url-shortener

module
v1.0.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 19, 2023 License: Apache-2.0

README

url-shortener

using serverless framework and aws lambda to implement url shortener

use case

  • URL shortening: given a long URL => return a much shorter URL
  • URL redirecting: given a shorter URL => redirect to the original URL
  • High availability, scalability, and fault tolerance considerations

Back of the envelope estimation

  • Write operation: 100 million URLs are generated per day.
  • Write operation per second: 100 million / 24 /3600 = 1160
  • Read operation: Assuming ratio of read operation to write operation is 10:1, read operation per second: 1160 * 10 = 11,600
  • Assuming the URL shortener service will run for 10 years, this means we must support 100 million * 365= 36.5 billion records.
  • Assume average URL length is 100.
  • Storage requirement over 10 years: 365 billion 100 bytes 10 years = 365 TB

design

hash
Base 62 conversion

Directories

Path Synopsis
util
id

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL