Giter Site home page Giter Site logo

production-readiness-checklist's People

Contributors

tanakaworld avatar tcnksm avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

production-readiness-checklist's Issues

Production Readiness Review (Level A)

This template is the Production Readiness Checklist (PRC) for Level A microservices. Please make sure you have read the PRC guidelines.

Production Readiness Review has the following 2 phases:

Please have Design phase review before beginning development of your microservice and have Pre-production phase review before rolling out production release.

Design checklist

This checklist contains items are things that must be considered during the design phase and verified before the start of implementation.

โ˜€๏ธ General

๐Ÿ”’ Security

  • Authentication - It is protected by an authentication service.
  • Authorization - Access is restricted to the appropriate level. Consider who should have access to each exposed API and what they are allowed to do.
  • Transport Security - It uses TLS to communicate with other services over the Internet.

๐Ÿ€ Sustainability

  • No short-term transfer - Its team members are not forced to move to another team in the short term.
  • OnCall considered team - Its team follows OnCall practices.
  • Dependency SLA - Its team knows SLA of the service dependencies.
  • SLOs - Its SLOs and SLOs owner are defined.

Pre-production checklist (Mercari and Merpay common)

This checklist contains points that must be satisfied during implementation and verified prior to release.

It is recommended to ensure that your service is deployed in production (but not receiving production traffic) before requesting the PRC, as some of the points in the list below can only be validated (e.g. capacity estimation, dashboards, screenboards, alerting, profiling, ...) if the service is deployed in production and can receive some non-production traffic. This should be done only if your service will not impact other production services or datasets. Please let us know in the issue if you think this would be a problem for your service.

๐Ÿ”ง Maintainability

  • Unit test - It has unit tests. And the unit tests are running in a CI system.
  • Test coverage - Its test coverage is reported to Codecov in CI system.
  • High Test coverage - Its test coverage is over 80%.
  • Config in env-var - Its config can be overridden via environment variable.
  • dockerignore - It has dockerignore to reduce the Docker image size.
  • No latest tag - Its Docker image tag is not latest or master.
  • Dependabot - Its dependencies are automatically updated.
  • Automated build - Its build process is automated (binary build and Docker image build is in this scope).
  • Automatic build - Its automated build process is running in CI/CD system.
  • Automated deploy - Its deploy process is automated.
  • Automatic deploy - Its automated deploy process is running in CI/CD system.
  • Gradual deploy - Its deploy can be gradual if you want.
  • Automated rollback - Its rollback process is automated.
  • Automatic rollback - Its rollback process is automatic.

๐Ÿ“‰ Observability

  • Tracing - Its requests are traced by Datadog APM.
  • Timeboard - Its Datadog Timeboard is created.
  • Screenboard - Its Datadog Screenboard is created.
  • GCP metrics - Its GCP projects are integrated with Datadog.
  • Actionable alert - Its Datadog Monitors are created. And those alerts are actionable.
  • Warning alert - Its warning alerts are sent to Slack or a ticket system instead of PagerDuty.
  • Critical alert - Its critical alerts are sent to PagerDuty.
  • OnCall rotation - It has a PagerDuty team, escalation policy, schedules.
  • OnCall playbooks - It has OnCall playbooks.
  • Log to STDOUT - Its logs are output to STDOUT/STDERR.
  • Log as JSON - Its logs are emitted in container log format.
  • Log with annotation - Its logs have Request ID annotation
  • Profiling - It is profiled by GCP Stackdriver Profiler.
  • Error tracking - Its errors are tracked by Sentry.

โœˆ๏ธ Reliability

  • Auto Scale - It automatically scales horizontally to handle fluctuating workloads, its HPA is set as described in the Resource Requests and Limits documentation, and can be scaled manually if needed.
  • CPU req/limit - Its CPU limit and request are set as described in the Resource Requests and Limits documentation.
  • Memory req/limit - Its memory resource request value is as same as limit value.
  • Capacity planning - It can handle the expected load: either load test has been performed, or the expected traffic is under control (e.g., by Gateway).
  • Zero downtime deploy - Its deploy process does not cause service degradation or downtime (e.g. error rate does not increase during deploy).
  • Graceful shutdown - It can stop gracefully.
  • Graceful degradation - It keeps working, at least partially, while dependencies (e.g. other service or database) are not working partially or completely.
  • PreStop - It has a preStop. See more on Configure PreStop.
  • PDB - It has a PodDisruptionBudget set as described in the Configure Pod Distription Budget
  • Liveness Probe - It has a health check (endpoint) for liveness probe. And liveness probe is configured. See more on Configure Liveness Probe.
  • Readiness Probe - It has a health check (endpoint) for readiness probe. And readiness probe is configured.
  • Timeout - It sets an appropriate timeout for requests over a network.
  • Smart retry - It performs smart retries when interacting with dependencies (e.g. other services or database).

๐Ÿ”’ Security

  • Security review - It has completed the security design review by security team.
  • Non-root user - Its docker container runs as non-root user
  • Secrets - Its sensitive configuration is stored in Kubernetes secrets.
  • Non-sensitive log - It does not write sensitive information to app logs (STDOUT/STDERR).

๐Ÿ“‹ Accessibility

  • Design Doc - Its design doc is up to date with the implementation.
  • Description - It has service description.
  • Contact - It has contact info about the owners.
  • Source repo - It has links to source repo.
  • Docs - It has links to docs for users.
  • SLOs - Its dashboard shows SLOs.

๐Ÿ“ Data Storage

  • Data Replication - Its data is replicated to BigQuery (if required).
  • Minimal Operator Privileges - Personnel has minimal access privileges and accesses are auditable.
  • Recovery - It can be recovered from backup; the procedure has been defined and tested.
  • Fast Recovery - It can be recovered from backup in less than 2 hours; the procedure is described in the OnCall playbook, and it is practiced every 6 months.
  • PIT Recovery - Point-in-time recovery from backup can be completed in less than 2 hours.
  • Timeboard - Its GCP databases have a Datadog Timeboard.

GCP Cloud SQL (MySQL)

  • Maintenance Window - Its databases have a defined maintenance window (during core hours).
  • Regional HA - Its databases have regional HA enabled..
  • Read Replicas - Its databases have one or more read replicas, and it uses them for reads that do not need strict consistency.
  • Missing Master - It keeps correctly serving idempotent requests with no side-effects when the master is unavailable (e.g. by sending all reads to the read replicas and returning internal error to all other requests)..
  • Failover Tests - It keeps running with minimal disruption during, and fully recovers after, a database maintenance or failover.
  • Operational Guidelines - Its databases are in compliance with the Cloud SQL Operational guidelines, so that they do not fall outside the Cloud SQL SLA.
  • Automatic Backups - Its databases have automatic backups enabled.
  • Automatic Storage Increase - Its databases have automatic storage increase enabled.
  • Replication Lag - Alerts should be sent if replication lag (Seconds Behind Master in Stackdriver) is >300s.
  • CPU - CPU usage of each instance (including replicas) should be <50% during peak load, and alerts should be sent if it increases to >80%.
  • Minimal Data Privileges - It has one or more dedicated MySQL users (not root) that have only the bare minimum set of required privileges (e.g. only SELECT and INSERT, but no UPDATE, DELETE or any other DDL/admin privileges). If the service has both admin and non-admin endpoints, they should use different users with different permissions.

GCP Cloud Spanner

  • Regional Configuration - If it is a service deployed in a single region, its databases are in regional configuration and are deployed in the same region.
  • Global Configuration - If it is a service deployed in multiple regions, its databases are in multi-regional configuration and they are deployed in the same regions.
  • SLA Exclusions - Its databases are in compliance with the SLA exclusions, so that they do not fall outside of the Cloud Spanner SLA.
  • Automatic Backups - Its databases have scheduled automatic backups.
  • CPU - CPU usage of each node is monitored and alerts are sent if it is >65% (or >45% for multi-regional instances).
  • Disk usage - Disk usage of each node is monitored and alerts are sent if it is >75%.
  • Sessions - Number of sessions on each database+node is monitored and alerts are sent if it is >7500.

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.