SELECT 
  tmall_product_review_prepared_data.product_id AS product_id, 
  tmall_product_review_prepared_data.average_rating AS average_rating, 
  tmall_product_review_prepared_data.reviews_count AS reviews_count 
FROM 
  tmall_product_review_prepared_data 
WHERE 
  tmall_product_review_prepared_data.product_id IN (280, 281, 282, 283, 284, 278, 279) 
  AND tmall_product_review_prepared_data.storefront_id = 0

Query time 0.00763

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost": 0.012858124,
    "nested_loop": [
      {
        "table": {
          "table_name": "tmall_product_review_prepared_data",
          "access_type": "range",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "7",
          "used_key_parts": ["product_id", "storefront_id"],
          "loops": 1,
          "rows": 7,
          "cost": 0.012858124,
          "filtered": 100,
          "index_condition": "tmall_product_review_prepared_data.storefront_id = 0 and tmall_product_review_prepared_data.product_id in (280,281,282,283,284,278,279)"
        }
      }
    ]
  }
}

Result

product_id average_rating reviews_count
278 4.00 3
279 4.00 3
280 4.00 3
281 4.00 3
282 4.00 3
283 4.00 3
284 4.00 3