- A single Group can launch only same type of EC2 instance.
- A single Group can launch only one type of AMI
- AMI's need to be present in the same region, rather same zone
- We can not used this group to scale RDS instance
- If we keep ELB as one level higher than Auto Scaling Group, when Scale Down happens, the process instructs ELB to remove EC2 instance from ELB group first.
- Should be cautious about using Elastic IP with Auto Scaling Group. It may not be a cost effective option.
- Max # of Launch configuration per AWS account is 100.
We'll explore scenarios involving nested queries, aggregations, custom scoring, and hybrid queries that combine multiple search criteria. 1. Nested Queries ElasticSearch Example: ElasticSearch supports nested documents, which allows for querying on nested fields with complex conditions. Query: Find products where the product has a review with a rating of 5 and the review text contains "excellent". { "query": { "nested": { "path": "reviews", "query": { "bool": { "must": [ { "match": { "reviews.rating": 5 } }, { "match": { "reviews.text": "excellent" } } ] } } } } } Redis Limitation: Redis does not support nested documents natively. While you can store nested structures in JSON documents using the RedisJSON module, querying these nested structures with complex condi...
Comments