SELECT 
  a.*, 
  b.option_name, 
  b.internal_option_name, 
  b.option_text, 
  b.description, 
  b.inner_hint, 
  b.incorrect_message, 
  b.comment 
FROM 
  product_options as a 
  LEFT JOIN product_options_descriptions as b ON a.option_id = b.option_id 
  AND b.lang_code = 'en' 
WHERE 
  a.product_id IN (
    296884, 296840, 296925, 296885, 296815, 
    296844, 296874, 296922, 296903, 296924, 
    296930, 296843, 296902, 296910, 296891, 
    296863, 296923, 296850, 296887, 296816, 
    296916, 296813, 296856, 296854, 296901, 
    296878, 296871, 296867, 296879, 296918, 
    296870, 296855, 296866, 296896, 296812, 
    296824, 296915, 296865, 296898, 296877, 
    296907, 296920, 296889, 296921, 296926, 
    296849, 296814, 296859, 296873, 296839, 
    296831, 296893, 296928, 296832, 296841, 
    296919, 296881, 296861, 296883, 296838, 
    296848, 296853, 296899, 296846, 296833, 
    296858, 296886, 296894, 296835, 296869, 
    296892, 296837, 296845, 296895, 296864, 
    296917, 296851, 296862, 296872, 296882, 
    296900, 296875, 296847, 296876, 296906, 
    296860, 296868, 296857, 296842
  ) 
  AND a.status = 'A' 
ORDER BY 
  a.position

Query time 0.00135

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "247.68"
    },
    "ordering_operation": {
      "using_filesort": true,
      "cost_info": {
        "sort_cost": "89.00"
      },
      "nested_loop": [
        {
          "table": {
            "table_name": "a",
            "access_type": "range",
            "possible_keys": [
              "c_status"
            ],
            "key": "c_status",
            "used_key_parts": [
              "product_id",
              "status"
            ],
            "key_length": "6",
            "rows_examined_per_scan": 89,
            "rows_produced_per_join": 89,
            "filtered": "100.00",
            "index_condition": "((`goimagine`.`a`.`product_id` in (296884,296840,296925,296885,296815,296844,296874,296922,296903,296924,296930,296843,296902,296910,296891,296863,296923,296850,296887,296816,296916,296813,296856,296854,296901,296878,296871,296867,296879,296918,296870,296855,296866,296896,296812,296824,296915,296865,296898,296877,296907,296920,296889,296921,296926,296849,296814,296859,296873,296839,296831,296893,296928,296832,296841,296919,296881,296861,296883,296838,296848,296853,296899,296846,296833,296858,296886,296894,296835,296869,296892,296837,296845,296895,296864,296917,296851,296862,296872,296882,296900,296875,296847,296876,296906,296860,296868,296857,296842)) and (`goimagine`.`a`.`status` = 'A'))",
            "cost_info": {
              "read_cost": "86.10",
              "eval_cost": "8.90",
              "prefix_cost": "95.00",
              "data_read_per_join": "270K"
            },
            "used_columns": [
              "option_id",
              "product_id",
              "company_id",
              "option_type",
              "inventory",
              "regexp",
              "required",
              "multiupload",
              "allowed_extensions",
              "max_file_size",
              "missing_variants_handling",
              "status",
              "position",
              "value",
              "google_export_name_option",
              "etsy_prop_id"
            ]
          }
        },
        {
          "table": {
            "table_name": "b",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "option_id",
              "lang_code"
            ],
            "key_length": "9",
            "ref": [
              "goimagine.a.option_id",
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 89,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "54.78",
              "eval_cost": "8.90",
              "prefix_cost": "158.68",
              "data_read_per_join": "302K"
            },
            "used_columns": [
              "option_id",
              "lang_code",
              "option_name",
              "internal_option_name",
              "option_text",
              "description",
              "comment",
              "inner_hint",
              "incorrect_message"
            ]
          }
        }
      ]
    }
  }
}