Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG] OrderBy call may return "LiteDB ENSURE: buffer size must be PAGE_SIZE" #2300

Closed
matsakiv opened this issue Mar 21, 2023 · 1 comment
Closed
Labels

Comments

@matsakiv
Copy link
Contributor

matsakiv commented Mar 21, 2023

Version
LiteDb: 5.0.16
OS: MacOS Darwin (Kernel 21.2.0)
.NET: 5.0.17

Describe the bug
When trying to call OrderBy while reading data from the collection, an error occurs with the message LiteDB ENSURE: buffer size must be PAGE_SIZE. Database uses password/encryption and the number of records in collection is large (over 10000 entries).

It looks like the problem is that in some cases the SortService class can use multiple containers and use a Stream File in method Insert. By default container size is 8192*100=819200 bytes. But if encryption is used then in the AesStream.Write method there is a hard restriction that the size of the incoming buffer must be exactly equal to the PAGE_SIZE=8192.

If the number of records multiplied by the size of the sorting key exceeds the size of the container (819200) then SortService is guaranteed to use the file system and an error occurs.

This is the location of the call to write to disk in SortService:

if (_done.Running == false && _containers.Count == 1)
{
    container.InitializeReader(null, _buffer, _pragmas.UtcDate);
}
else
{
    // store in disk
    container.Position = _disk.GetContainerPosition();

    _disk.Write(container.Position, _buffer); // <= call sort disk write here

    container.InitializeReader(_reader.Value, null, _pragmas.UtcDate);
}

This results in a call to the Write method of the SortDisk class:

public void Write(long position, BufferSlice buffer)
{
    var writer = _pool.Writer;

    // there is only a single writer instance, must be lock to ensure only 1 single thread are writing
    lock(writer)
    {
        writer.Position = position;
        writer.Write(buffer.Array, buffer.Offset, _containerSize); // <= here writer can be AesStream, _containerSize = 819200
    }
}

And in the end it leads to a fall in AesStream:

public override void Write(byte[] array, int offset, int count)
{
    ENSURE(count == PAGE_SIZE, "buffer size must be PAGE_SIZE"); // <= Fail, count = 819200, but PAGE_SIZE = 8190
    ENSURE(this.Position % PAGE_SIZE == 0, $"AesWrite: position must be in PAGE_SIZE module. Position={this.Position}, File={_name}");

    _writer.Write(array, offset, count);
}

if I understand correctly, it can be fixed by the multiplicity requirement containerSize % PAGE_SIZE == 0 and multiple writer calls for each block of size PAGE_SIZE.

StackTrace from Sentry logs:

System.Exception: LiteDB ENSURE: buffer size must be PAGE_SIZE
  ?, in void Constants.ENSURE(bool conditional, string message)
  ?, in void AesStream.Write(byte[] array, int offset, int count)
  ?, in void SortDisk.Write(long position, BufferSlice buffer)
  ?, in void SortService.Insert(IEnumerable<KeyValuePair<BsonValue, PageAddress>> items)
  ?, in IEnumerable<BsonDocument> BasePipe.OrderBy(IEnumerable<BsonDocument> source, BsonExpression expr, int order, int offset, int limit)+MoveNext()
  ?, in IEnumerable<BsonDocument> BasePipe.Include(IEnumerable<BsonDocument> source, BsonExpression path)+MoveNext()
  ?, in IEnumerable<BsonDocument> QueryPipe.Select(IEnumerable<BsonDocument> source, BsonExpression select)+MoveNext()
  ?, in BsonDataReader QueryExecutor.ExecuteQuery(bool executionPlan)+RunQuery()
  ?, in new BsonDataReader(IEnumerable<BsonValue> values, string collection)
  ?, in BsonDataReader QueryExecutor.ExecuteQuery(bool executionPlan)
  ?, in IBsonDataReader LiteEngine.Query(string collection, Query query)
  ?, in IEnumerable<BsonDocument> LiteQueryable<T>.ToDocuments()+MoveNext()
  ?, in List<TResult> SelectEnumerableIterator<TSource, TResult>.ToList()

Code to reproduce

using var db = new LiteDatabase("Filename=fail.db;Password=12345678");

var collection = db.GetCollection("test");

var docsCount = 60000; // 819200 / 14 =~ 58 514 records, where 14 is size of 'Date' key

var docsToUpsert = new List<BsonDocument>();

for (var i = 0; i < docsCount; ++i)
{
    docsToUpsert.Add(new BsonDocument
    {
        ["Date"] = DateTime.UtcNow
    });
}

collection.Upsert(docsToUpsert);

var docs = collection.Query()
    .OrderBy("Date")
    .Offset(0)
    .Limit(20)
    .ToList();
@matsakiv matsakiv added the bug label Mar 21, 2023
@mbdavid
Copy link
Owner

mbdavid commented Mar 27, 2023

Hi @matsakiv, thanks for your investigation and PR to fix. I beleave there is no problem with Aes algothims works with multiples of PAGE_SIZE.

I will made same tests, but in this case, I almost sure that this "ENSURE" are wrong. Just remove can works fine. I made this lot of ENSURE to test internal conditions and better track bugs. Sometime this ENSURE can be wrong for same specific case.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants