distributed-database
Here are 205 public repositories matching this topic...
Feature Request
Is your feature request related to a problem? Please describe:
This is a really minor nit, but the EXPLAIN output on binary strings is different from what I expected:
CREATE TABLE t1 (
id INT NOT NULL PRIMARY KEY auto_increment,
b varchar(255) not null,
c varbinary(255) not null,
index (b),
index (c)
);
INSERT INTO t1 (b,c) VALUES ('a', 'a'),('b
In PostgreSQL, @ is a unary operator that returns the absolute value of a number. For example:
jordan=# select @ -5.0;
?column?
----------
5.0
(1 row)
CockroachDB is missing such a unary operator.
-
Updated
Jun 27, 2020
Throw NullPointException when INSERT column and values mismatch.
It is better to throw suitable SQLException for JDBC-driver and proxy.
The tasks are:
- Throw suitable SQLException for JDBC-driver.
- Report suitable error packet with MySQL proxy.
- Report suitable error packet with PostgreSQL proxy.
Use case
ClickHouse/ClickHouse#7971
Remove the double logging for open trace file failure from the TraceEvent cache based implementation
With the new issue reporting mechanism in place (PR #2605), the old TraceEvent cache based implementation specifically for trace file open failure can be removed.
On a sharded collection, if you try to create a custom index (e.g. hash index) with uniqueness, that doesn't include the sharding key (which by default is the autogenerated _key
) then it will fail with an error like:
Index creation failed: shard key '_key' must be present in unique index
There's zero documentation that I could find around this, and it's fairly fundamental, since you can't
-
Updated
Jun 12, 2020
Hello Philip!
I think there is an issue with this part of the code of rqlite (store/store.go).
func (s *Store) Database(leader bool) ([]byte, error) {
if leader && s.raft.State() != raft.Leader {
return nil, ErrNotLeader
}
// Ensure only one snapshot can take place at once, and block all queries.
s.mu.Lock()
defer s.mu.Unlock()
f, err := ioutil.TempFile("", "rqlilte-snap-
The beginning of the course is pretty boring, and there's not a lot of interesting background reading before project 1. I'm thinking a great way to start it off would be to make the first reading a link to a powerfully inspiring experience report. Something that makes people psyched to learn how to write systems programs in this unique language.
Here are two I've been suggested but haven't eval
Citus_indent setup
The steps described in our README does not work for me: https://github.com/citusdata/citus/blob/master/CONTRIBUTING.md#following-our-coding-conventions
The main problem is that after cloning the tools
repo we need to run make install
from top level instead of uncrustify
because many of the variables are defined at the top level.
CC: @Arnav15 @ramkumarvs
Existing test actions that can be used here. We would want to test only the yugabyte and yugaware helm charts and not all the charts in this repo.
(e.g - macOS):
- Create a section with installation steps:
brew install cmake autoconf libtool gcc automake openssl
export PKG_CONFIG_PATH="/usr/local/opt/openssl/lib/pkgconfig"
- Update README.MD
- Update build.sh(force linking openssl doesn't work anymore)
I've wasted a lot of time trying to resolve openssl dependency issue, by applying solutions which are not relevant any
-
Updated
Jan 31, 2020 - Ruby
-
Updated
Jun 21, 2020 - Go
-
Updated
Jun 24, 2020 - Go
Feature Request
Is your feature request related to a problem? Please describe:
large-size-value writes will lead to the instability of Pegasus. We encounter many cases where the client continuously wrote >=1MB value (though in quite low qps) which caused high tail latency of other tables, even caused the program somehow coredump.
Describe the feature you'd like:
CHAR is mapped to Kudu string
https://github.com/prestosql/presto/blob/ec549ac8a1192b18c3667203974f453d5fe5a9fa/presto-kudu/src/main/java/io/prestosql/plugin/kudu/TypeHelper.java#L88-L89
but char(3)
value ab⎵
is not persisted as such, it's stored as ab
instead.
-
Updated
Apr 17, 2020 - C++
- dble version:
dble-9.9.9.9-9bf5140bf8483248e94077ba0b429e7d4acfb353-20200326102553 - preconditions :
no - configs:
schema.xml
rule.xml
server.xml
- steps:
step1. explain information functions in dble such as
explain SELECT ROW_COUNT();
- expect result:
- inner_
We need to implement integration/unit tests for internal/transport
package.
In the last section of the tutorial, it goes:
<dependency> <groupId>org.corfudb</groupId> <artifactId>runtime</artifactId> <version>0.1-SNAPSHOT</version> <scope>compile</scope> </dependency>
Directly using this setup incurs an error when launching the app,
causing the server unable to deserialize the corfumsg, such as follows:
io.netty.handler.codec.DecoderExcep
-
Updated
Nov 5, 2019
-
Updated
Nov 6, 2019 - Go
Gitcoin Integration Bounty
Integrate 3Box into Gitcoin: Backup my Gitcoin profile information to my 3Box account
Prize Bounty
1,000 DAI
Challenge Description
Give Gitcoin users the option to backup their complete Gitcoin profile and contribution history to 3Box. This feature will give Gitcoin users greater control of their data and allow them to take this information to o
Public key hash is what used for identification everywhere (well, except grant queries).
-
Updated
Aug 13, 2018 - JavaScript
-
Updated
Jul 1, 2020 - 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.
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."
I'm using TLS on etcd 3.3.12 and have a mix of etcd proxies and masters. The proxies don't seem to honour the --cipher-suites setting, as it ends up with
ECDHE-RSA-AES256-GCM-SHA384
despite--cipher-suites=TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305,TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
being set.