FAQ 033: When I configure the database size limit, and if I have a database that exceeds these settings (eg 2Gbyte), what will happen to the new data values? Will they be stored?

If the database limit is reached, then the new data should be recorded and an appropriate amount of the old data will be deleted (FIFO)

NOTE: FIFO (First In First Out) here refers to the way the data stored in a queue is processed. Each item in the queue is stored in a queue (simpliciter) data structure. The first data to be added to the queue will be the first data to be removed. Then data processing will proceed sequentially in the same order.