distributed-database
Here are 211 public repositories matching this topic...
-
Updated
Sep 23, 2020 - Go
SQL supports hidden columns: columns that are only included in a projection if explicitly requested. An example of this is the rowid column that is created on tables without explicitly primary keys.
Currently, there is no way to get a hidden column on a user-defined table: it's only possible if you manually set the hidden boolean in the table descriptor, by editing the CockroachDB source code
-
Updated
Sep 5, 2020
Now insert and query share the resource ( Max Process Count control) 。 When the query with high TPS,the insert will get error (“error: too many process”). I think separator the resource for Insert and Query will makes sense. Ensure enough resource for insert。It looks like Use Yarn, Insert and Query use the different resource quota。
Or the simple way , Can we set Ratio for Insert and
The class TextProtocolBackendHandlerFactory has already split into multiple Factory classes. It is better to split test cases into suitable classes.
- Move TCL related test cases into
TransactionBackendHandlerFactoryTest - Keep one TCL SQL test case in
TextProtocolBackendHandlerFactoryTestand assert return TransactionBackendHandler - Move DAL related test cases into `DALBacke
-
Updated
Sep 23, 2020 - C++
The old restore supports adding prefix and suffix to the backup data. This allows us to restore a key space (say [a, b)) to a new key space (say [awesome_a, awesome_b).
This feature is useful in:
- Performance testing: We do not want to throw away existing loaded data in the cluster because loading a huge DB takes time;
- Cross-verification: Users may want to verify the restored data in the
-
Updated
Sep 23, 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-
-
Updated
Aug 14, 2020 - Rust
Repro steps:
- Create a 3 node YW cloud universe (tested against GCP)
- Go to the nodes page at http://portal.dev.yugabyte.com/universes/e78b9592-0f2b-4e41-80e4-f30c94611b5b/nodes or equiv
- Pick one node, "Stop Processes"
- Pick same node, "Release Instance"
- Destroy/delete universe. Do not check "force delete"
Universe deletion fails.
If "force delete" is set to true, universe
-
Updated
Sep 23, 2020 - C
-
Updated
Jan 31, 2020 - Ruby
-
Updated
Jun 21, 2020 - Go
Currently we don't have any mechanism to limit the maximum number of clients that could be handled simultaneously.
This feature should be designed properly. Here is some clue: https://redis.io/topics/clients#maximum-number-of-clients
Migrate Benchto (https://github.com/prestosql/benchto/) from Travis to GHA.
-
Updated
Sep 22, 2020 - Go
-
Updated
Sep 23, 2020 - C++
-
Updated
Jul 17, 2020 - C++
-
Updated
May 6, 2017 - C++
-
Updated
Sep 23, 2020 - Java
Now that we support more than 1 data type, we should include the values data type in cache nodes. This give us a way of easily identifying what type of data a key points to e.g. string, queue (and more types in the future)
Currently a cache node object consists of a Key, a Value and a TTL. We should also add a field specifying the type of the Value
-
Updated
Sep 23, 2020 - Java
-
Updated
Nov 5, 2019
-
Updated
Aug 24, 2020 - Go
-
Updated
May 18, 2020
-
Updated
Sep 18, 2020 - Go
-
Updated
Aug 12, 2018 - Swift
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."
Today,
etcdctl endpoint healthonly performs a quorum GET. If server is corrupted or exceeded quota (which put the server into read only mode), this command incorrectly returnshealthy.