Skip to content

S3 for Certmagic with added BadgerDB caching to prevent high CPU/resource usage and improve scalability

License

Notifications You must be signed in to change notification settings

diamondcdn/badger-s3

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Updated S3 for CertMagic Storage

This library has been modified to cache SSL certificates using BadgerDB (which is a version of RocksDB) for better performance so you don't have to call your S3 bucket tons!

This library allows you to use any S3-compatible provider as key/certificate storage backend for your Certmagic-enabled HTTPS server. To protect your keys from unwanted attention, client-side encryption using secretbox is possible.

See example/ for an exemplary integration.

Why have we made this fork?

Whilst using this plugin, Certmagic itself calls the Load and other functions quite a lot and there is not any level of caching on those functions for the library. We've chosen BadgerDB which is a proven database that has been able to handle millions of concurrent reads and writes on our systems. We've learned that the default S3 cache library simply cannot cut it and handle the amount of requests we receive.

The aim of this fork is to improve performance and scalability when it comes to using the AWS S3 storage with Certmagic to store certificates.

What is a S3-compatible service?

In the current state, any service must support the following:

  • v4 Signatures
  • HTTPS
  • A few basic operations:
    • Bucket Exists
    • Get Object
    • Put Object
    • Remove Object
    • Stat Object
    • List Objects

Known good providers/software:

  • Minio (with HTTPS enabled)
  • Backblaze
  • AWS

For development

Our caching key format is as follows

  • <key> - Just a regular S3 file
  • `<key_ki> - The key info for a S3 file

About

S3 for Certmagic with added BadgerDB caching to prevent high CPU/resource usage and improve scalability

Topics

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Languages

  • Go 100.0%