Here’s my table with some sample data
a_id | b_id
------------
1 225
2 494
3 589
When I run this query
INSERT IGNORE INTO table_name (a_id, b_id) VALUES ('4', '230') ('2', '494')
It inserts both those rows when it’s supposed to ignore the second value pair (2, 494)
No indexes defined, neither of those columns are primary.
What don’t I know?
From the docs:
(my italics).
Your row is not duplicating “an existing UNIQUE index or PRIMARY KEY value” since you have no primary key nor any unique constraints.
If, as you mention in one of your comments, you want neither field to be unique but you do want the combination to be unique, you need a composite primary key across both columns (get rid of any duplicates first):