3300 insertions/second comes to 30 seconds for 100K. I find 30 fairly large for "several". But is this number for 3300 separate queries, or a single query with 3300 rows? Of course, there are many other factors to consider, not of them mentioned in the original post, nor in any way perl related:
How many indices are they? What kind of indices? Do they allow for new rows written at the end of the table, or must the table be rewritten?
Are there any constraints? Foreign keys? Unique indices? Triggers? Auditting?
How many rows are there already?
How many other processes are using the table while you're doing inserts?
What's the hardware the database is running on?
How much memory does said hardware have?
How "hot" is the table?
Is the table being replicated?
What's the physical layout of where the data is written to? What's the physical layout of where your logs are written to?