Sam

Results 18 comments of Sam

Would really love this to be merged! Really useful for allowing you to set some sort of vague limit on the size the cache is allow to grow to without...

@pipoa @anidotnet You can remove the blue box whilst retaining the tab index (probably the desired result) by adding the following to the scss of the component which uses the...

Having the same problem with mysql

Ok the problem with mysql is that the current version of the mysql package does not support utf8mb3. This issue is then made less obvious by a lack of logging....

Fix for mysql here: https://github.com/d4software/QueryTree/pull/140 Easy to apply to pg and mssql but I don't have instances handy for testing.

I am seeing this issue too. When a disk alarm fires in rabbitMQ you get an indefinite block when calling publish. This differs to the behaviour you see if rabbitMQ...

For mysql you can simply do: ``` await knex.raw('SET TRANSACTION ISOLATION LEVEL READ COMMITTED;'); await knex.transaction(async (trx) => { ... ``` This will set the transaction isolation level to READ...

@elhigu you're right! If I print the current isolation level I can see that indeed it still prints the default ``` const isolationLevel = await this.knex.raw('SELECT @@tx_isolation as result;').transacting(trx); console.log(isolationLevel[0][0].result);...

It has to be more than luck, I've just hit it with 5000 concurrent requests with connection pool settings of: pool: { min: 0, max: 20 } and it works...

Having the exact same problem. I have a single server and single dashboard running and seeing this on small work loads. Nothing else is writing or reading to the db...