Extending this question Why does eclipselink consume the whole allocationSize each time it's rebooted?
I would like to know what a proper solution for this problem is, the only answer in that post suggests switching to an IDENTITY strategy which i have done but i cannot see the changes. The allocation size of 50 is still in affect. Does anyone have any examples on how to generate sequential identifiers (1, 2, 3) based on each entity (table) and not a single sequence accessible by all tables?
Extending this question Why does eclipselink consume the whole allocationSize each time it's rebooted?
Share
You have the TableGenerator annotation for that purpose.
Make sure that all the name/*table* and pkColumnValue fields value are unique.
Reference