Error forwarding data: Duplicate entry for key 'PRIMARY'

Looks like you’re trying to write a value to the column ‘PRIMARY’ that is not unique. That column is most likely your primary key column and you can’t have values in a primary key column that are not unique.

Check how you are generating whatever this value is: ‘24062-1416977712044’

If it’s something that won’t be unique for every record then either it can’t be your primary key or you need to find a different way to generate it so it will be (timestamps or something of the like).