Skip to content
#

distributed-database

Here are 288 public repositories matching this topic...

aphyr
aphyr commented Jun 13, 2022

What happened?

In a Jepsen test run of five etcd 3.5.3 nodes, with process pauses (sending processes SIGSTOP and SIGCONT), compaction (performed via the admin API), and defragmentation (via etcdctl), one etcd process crashed with the following error message:

{"level":"panic","ts":"2022-06-13T14:11:27.870Z","caller":"etcdserver/apply.go:638","msg":"unexpected error during txn","error
qw4990
qw4990 commented Jul 26, 2022

Enhancement

mysql> CREATE TABLE t1 (
    -> risk_id varchar(32) NOT NULL,
    -> tran_id int NOT NULL,
    -> KEY (`risk_id`)
    -> );

mysql> CREATE TABLE t2 (
    -> risk_id varchar(32) COLLATE utf8mb4_general_ci NOT NULL,
    -> -- risk_id varchar(32) NOT NULL,
    -> tran_id int NOT NULL,
    -> KEY (`risk_id`)
    -> );

mysql> explain select /*+ hash_join(t1) */ t1.ris
type/enhancement help wanted good first issue sig/planner
cockroach
irfansharif
irfansharif commented Jul 19, 2022

Is your feature request related to a problem? Please describe.

When debugging lease placement issues, it's instructive to look at the count for the number of raft leaders that aren't leaseholders. That metric however skips over replicas that hold invalid leases, which can mask the problem of a store holding a set of invalid leases and those leases not being actively acquired elsewhere. We s

C-enhancement good first issue A-kv A-kv-observability
sfc-gh-ajbeamon
sfc-gh-ajbeamon commented Aug 9, 2021

Our CMake build process produces tarball packages using the cpack TGZ target. This produces a server and client package with a file layout meant to match where the various artifacts go.

Meanwhile, the packages we include on the download page are a flat archive of various binaries produced by the build process. This include one regular package and one debug package with debug symbols for a few

yugabyte-db
ebyhr
ebyhr commented Aug 8, 2022

We can just disable the pushdown on json column in MongoDB connector. TestMongoTypeMapping needs a new test method for json type when fixing this issue.

CREATE TABLE test (c1 json);
INSERT INTO test VALUES (json '{"id":0,"name":"user_0"}');

SELECT * FROM test WHERE c1 = json '{"id":0,"name":"user_0"}';
java.lang.UnsupportedOperationException
	at io.trino.spi.predicate.ValueSet.
bug good first issue
decster
decster commented Jul 23, 2022

Real behavior (Required)

java.sql.SQLNonTransientConnectionException: Could not connect to address=(host=localhost)(port=9030)(type=master) : (conn=0) could not load system variables

	at org.mariadb.jdbc.internal.util.exceptions.ExceptionFactory.createException(ExceptionFactory.java:73)
	at org.mariadb.jdbc.internal.util.exceptions.ExceptionFactory.create(ExceptionFactory.java:197)
type/bug good first issue

Improve this page

Add a description, image, and links to the distributed-database topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the distributed-database topic, visit your repo's landing page and select "manage topics."

Learn more