does it just prevent you from adding more data or is there some type of FILO system set up for these look up tables?
Im thinking about implementing my own query logic for removing old rows of Main look up when it hits 10k but idk let me know what you guys think of this simple pseudo design:
run rules as top down of workflow
1. run rule for select all key and date sorted by date.
2. check if key max is 10k
3. logic for key for oldest date.
4. run rule for removing by key
return to previous workflow or just be done.
*** KEEP in mind the limitations when creating the iteration logic removing values from main look up table.