Skip to content
#

distributed-database

Here are 275 public repositories matching this topic...

mortehu
mortehu commented Mar 3, 2022

What happened?

If you don't pass a --name argument to your etcd processes, they will all have the name default and the cluster will operate normally. However, when you add a member, the generated ETCD_INITIAL_CLUSTER variable will have multiple entries with the name "default". When this environment variable is used, etcd will parse these into a mapping under a single key ("defau

tiancaiamao
tiancaiamao commented Feb 14, 2022

Enhancement

[2022-02-14T04:12:14.746Z] ----------------------------------------------------------------------
[2022-02-14T04:12:14.746Z] FAIL: db_test.go:7069: testSerialDBSuite.TestModifyColumnTypeWhenInterception
[2022-02-14T04:12:14.746Z] 
[2022-02-14T04:12:14.746Z] db_test.go:7124:
[2022-02-14T04:12:14.746Z]     c.Assert(checkMiddleWarningCount, Equals, true)
[2022-02-14T04:12:
cockroach
mgartner
mgartner commented Apr 19, 2022

There are several optimization the execution engine can perform when evaluating LIKE patterns with %, which matches zero or any number of any character. For example, see #80073.

Sequential %s can prevent these optimizations, but they are semantically equivalent to a single %, so the optimizer should normalize them to a single %.

For example:

-- The following expressions 
C-enhancement good first issue T-sql-queries
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
pkj415
pkj415 commented Apr 18, 2022

Description

Create a cluster with TEST_docdb_log_write_batches=true and observe the following -

./bin/yb-ctl create --rf=1 --data_dir ~/yugabyte-data --tserver_flags 'TEST_docdb_log_write_batches=true'
./bin/ysqlsh
yugabyte=# create table test (k int primary key, v int);
CREATE TABLE
yugabyte=# insert into test values (1, 1);
ERROR:  Network error: recvmsg error: Connection refus
good first issue area/docdb
proddata
proddata commented Feb 6, 2022

Use case:
Postgres compatible tools like Datagrip, DBeaver, etc. want to get (and sometimes set e.g. Azure Data Studio) the datestyle used by the database. It seems like there is already some implementation for that.

Feature description:
As a db tool engineer I want to be able to fetch the set datestyle of a database to be know how to interpret dates in my tool.

extra: ability

risingwave
lmatz
lmatz commented May 7, 2022

Currently, the executor would poll each upstream sources sequentially.

    loop {
        if self.source_idx >= self.sources.len() {
            break;
        }
        if self.current_source.is_none() {
            let proto_source = &self.sources[self.source_idx];
            let source =
                CS::create_source(self.env.clone(), proto_source,
type/enhancement good first issue help wanted component/batch
IceFireDB

IceFireDB is a database built for web3 and web2. It strives to fill the gap between web2 and web3 with a friendly database experience, making web3 application data storage more convenient, and making it easier for web2 applications to achieve decentralization and data immutability.

  • Updated May 7, 2022
  • Go

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