Botond Dénes
Botond Dénes
It is well known that this is the case for two nodes with different shard counts, but recently we've seen an [issue](https://github.com/scylladb/scylla/issues/9983) so far only seen in clusters of mismatching...
I recently added very basic [validation](https://github.com/scylladb/scylladb/commit/b23ce76b278260b2eafaf2fa67729fdbe638f83a) to the read-path, in the query-result-builder. This found many issues when running dtests, so it had to be reverted. The fact that it found...
A question that often comes up in the scylla user slack channel is what are the limits of scylla. e.g. number of rows in a partition, size of rows/partitions/cells, etc....
In theory all reads are waited on when a table is dropped. And said reads should clean up any reads parked in the reader concurrency semaphore. But as seen recently...
Currently, when detaching the table from the database, we force-evict all queriers for said table. This series broadens the scope of this force-evict to include all inactive reads registered at...
Just seen a failure that I cannot reproduce. I'm guessing it is timing related. Log attached. [logalloc_test.99.log](https://github.com/scylladb/scylla/files/6646757/logalloc_test.99.log) @michoecho
``` (wrapper-1.0:26041): Gtk-CRITICAL **: IA__gtk_label_set_markup: assertion 'GTK_IS_LABEL (label)' failed (wrapper-1.0:26041): Gtk-CRITICAL **: IA__gtk_bin_get_child: assertion 'GTK_IS_BIN (bin)' failed (wrapper-1.0:26041): Gtk-CRITICAL **: IA__gtk_label_set_markup: assertion 'GTK_IS_LABEL (label)' failed (wrapper-1.0:26041): Gtk-CRITICAL **: IA__gtk_bin_get_child: assertion...
While investigating [this issue](https://github.com/denesb/xfce4-i3-workspaces-plugin/issues/7) I consistently met crashes inside _i3ipc-glib_ when restarting i3. Since I wasn't entirely confident that the bug was not in my code I created a minimal...
The low-level `mutation_fragment_stream_validator` gets `reset()` methods that until now only the high-level `mutation_fragment_stream_validating_filter` had. Active tombstone validation is pushed down to the low level validator. The low level validator, which...
Found by a fragment stream validator added to the mutation-compactor (https://github.com/scylladb/scylladb/pull/11532). As that PR moves very slowly, the fixes for the issues found are split out into a PR of...