I am giving the number of mapper to 10 but still, the sqoop is transferring the data into 5 files only.
sqoop import --connect jdbc:mysql://localhost/retail_db \--username root \--P --table order_items -m 10 \--split-by "order_item_quantity";
When I run the query select distinct(order_item_quantity) from order_item it is giving me the result as 1,2,3,4,5.
Are we telling that the number of the mapper, in this case, is irrelevant?