Searching the best prompts from our community
Discover the most effective Microservices prompts. High-quality templates curated by experts to help you get professional AI results.
Design scalable serverless architecture on AWS. Components: 1. API Gateway for request routing and throttling. 2. AWS Lambda for business logic execution. 3. Amazon DynamoDB for NoSQL data storage. 4. Amazon Cognito for user authentication. 5. AWS Step Functions for workflow orchestration. 6. Amazon...
Deploy Istio service mesh on Kubernetes. Features: 1. Automatic sidecar injection for traffic management. 2. Mutual TLS for service-to-service encryption. 3. Traffic routing (canary deployments, A/B testing). 4. Circuit breaking and retry policies. 5. Distributed tracing with Jaeger. 6. Service-leve...
Design microservices architecture effectively. Principles: 1. Single Responsibility (one service, one business capability). 2. Decentralized Data (each service owns its database). 3. API Gateway (single entry point). 4. Service Discovery (Consul, Eureka). 5. Asynchronous Communication (message queue...
Deploy and manage API gateways with rate limiting, authentication, and security controls for microservices architecture. API Gateway features: 1. Request routing: path-based routing, host headers, query parameters, weighted routing for A/B testing. 2. Protocol translation: REST to GraphQL, HTTP to g...
Master Docker containerization for microservices with optimization and security best practices. Dockerfile optimization: 1. Multi-stage builds: separate build and runtime environments, reduce image size by 70-80%. 2. Base image selection: Alpine Linux for minimal footprint, distroless for security. ...
Deploy and manage microservices communication using Istio service mesh for traffic management, security, and observability. Istio architecture: 1. Data plane: Envoy proxy sidecars, automatic injection, traffic interception. 2. Control plane: Pilot (traffic management), Citadel (security), Galley (co...
Compare and contrast the microservices architecture with the monolithic architecture. Discuss the pros and cons of each in terms of development, deployment, scalability, and complexity. For a new, small-scale e-commerce startup, which architecture would you recommend and why?
Design microservices effectively. Patterns: 1. Service per business capability. 2. API Gateway for routing. 3. Service discovery (Consul, Eureka). 4. Circuit breaker for resilience. 5. Event-driven communication. 6. Database per service. 7. Saga pattern for distributed transactions. 8. CQRS for read...