You should increase the auto increment for commerce order ID for production sites:
ALTER TABLE 'commerce_order' AUTO_INCREMENT = 2243162;
When you need this in an update hook wrap that query in db_query
:
<?php
db_query('ALTER TABLE commerce_order AUTO_INCREMENT = 2145172');