distributed-database
Here are 193 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
Implement ST_Centroid
on arguments {geography,bool}, which should adopt PostGIS behaviour.
For Geography builtins, please do the following:
- Ideally add a relevant helper function in
pkg/geo/geogfn
(parse and output related functions can go in [pkg/geo
](https://github.com/coc
-
Updated
May 15, 2020
Hi guys, welcome!
Background
ShardingSphere 5.x will present itself with new valuable features and simple configuration API to our community.
We will provide many of build-in sharding algorithms to users, which means uses can choose a proper one from sharding-algorithm selections before implementing the interface of the sharding algorithm themselves.
**Therefore we call for
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
May 21, 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.
This list could grow large, if doing restore frequently.
No snapshots
Restoration UUID State
ada72c63-b760-4fea-8a8a-78ea24a424d7 RESTORED
(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
May 24, 2020 - Go
Add xa admin commands:
- radon xa recover
mysql > radon xa recover;
+----------+--------------+
| formatID | backend |
+----------+--------------+
| xxx | xx |
+----------+--------------+
1 row in set (0.00 sec)
-
radon xa rollback all;
rollback all the xa transaction -
radon xa commit all;
commit all the xa transaction
[docs] unsupport sql
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:
-
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
Public key hash is what used for identification everywhere (well, except grant queries).
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
-
Updated
Aug 13, 2018 - JavaScript
-
Updated
Feb 2, 2017 - Erlang
-
Updated
May 17, 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.