When we configure certain maxDatabaseSize then, sink copies current db as new back up db and truncates all logs in current db using DELETE FROM {_tableName} sqlite command in TruncateLog(SQLiteConnection sqlConnection) function in SQLiteSink.cs
But post this still db size remains at max value and after every log write new db is created, creating a lot of non-useful files.
When we configure certain maxDatabaseSize then, sink copies current db as new back up db and truncates all logs in current db using
DELETE FROM {_tableName}
sqlite command in TruncateLog(SQLiteConnection sqlConnection) function in SQLiteSink.csBut post this still db size remains at max value and after every log write new db is created, creating a lot of non-useful files.