Glauber Costa
Glauber Costa
Running scylla-jmx master (dd8d5c87edf4a480ac66c2dc1c9759ae53fd31e4) against scylladb master (scylladb/scylla@d9c80cac266c1cef94674f1ec5bd4a9fc39a3525) calling nodetool cfstats, I get: ``` Keyspace: keyspace1 Read Count: 0 Read Latency: NaN ms. Write Count: 8330327 Write Latency: 7.1027223781251324E-6 ms....
One user points out in our discord that having a metric about rows returned - and in particular, the ratio of rows returned by rows read, is a great way...
[libsql](https://github.com/libsql) is an open contribution fork of SQLite, that includes a [server-mode](https://github.com/libsql/sqld) to make it accessible over HTTP. This allows it to be used from serverless environments that don't have...
This is because liburing broke it with their commit https://github.com/axboe/liburing/commit/f0c5c54945ae92a00cdbb43bdf3abaeab6bd3a23 It was fixed (by reverting) by https://github.com/axboe/liburing/commit/1bafb3ce5f5eeb11cd982c7540f6aa74e3f381d4, and then a unit test was added by https://github.com/axboe/liburing/commit/596413404af870f01a03d47f284b328758db1152 Could we update liburing...
Liburing is approaching a new release. I am testing my integration and found two issues when using uring-sys with the new release. See https://twitter.com/glcst/status/1360036763318824963 for details Relevant liburing commits: *...
liburing now supports freeing memory allocated for usage with the feature discovery functionality. I would be happy to provide the uring-sys implementation which I have in a private branch, but...
`CREATE VIRTUAL TABLE` used by many extensions, is not working. The problem is that when we parse a statement like this: ``` CREATE VIRTUAL TABLE t3 using fts5(a,b,c); ``` it...
We should emulate `PRAGMA pragma_list`, to return a list of supported PRAGMA statement, since we're not allowing all PRAGMAs.
Reference, thread on discord: https://discord.com/channels/933071162680958986/933071163184283651/1154540600293609652 User suggests - and I agree - that it would be helpful to provide a docker image that includes the turso cli, the libsql-server, and...
Users wanting to use extensions today, miss out on local development experience. For `file` URL users, the client doesn't provide a good way to bring in and load the extensions:...