1/ What’s the difference? 🤔
All these roles focus on improving software delivery and reliability but have different goals. Here’s a quick breakdown:
2/ Platform Engineer 👷
👉 Goal: Make life easier for developers.
• Build tools & platforms (e.g. CI/CD pipelines, Kubernetes)
• Standardize workflows for efficiency
• Create self-service systems so developers can work faster
🛠️ They focus on improving developer productivity.
A List of critical #AWS services and their limitations 👇
1. EC2 – Instance limits by region, instance type restrictions. 2. RDS – Max database storage limits, instance size restrictions. 3. S3 – Max object size is 5TB, bucket policies can limit access. 4. EBS – Volume size max of 64TB, 20,000 IOPS for io1/io2 volumes.
5. IAM – Max 5,000 roles per account, policy size limits. 6. Lambda – Max execution timeout of 15 minutes, memory max 10GB. 7. DynamoDB – Partition throughput limits, item size max of 400KB. 8. CloudFormation – 200 resources limit per stack.
🧵 Mastering Docker Troubleshooting: 15 Key Tips for Developers and DevOps Engineers!
A Thread 👇👇
1/ 🐳 Check Container Status
Use docker ps -a to view all containers and their statuses. A container may have exited unexpectedly.
Look at STATUS and RESTART policies to identify potential issues.
2/ 🔍 Inspect Logs
Run docker logs <container_name> to see the container logs.
This helps troubleshoot crashes, errors, or other issues within the app or service.