distributed-database
Here are 215 public repositories matching this topic...
-
Updated
Nov 25, 2020 - Go
Postgres provides the fuzzystrmatch module, which includes several useful functions:
-
levenshtein
andlevenshtein_less_equal
, to calculate levenshtein distance between strings -
soundex
anddifference
to calculate Soundex codes for names -
metaphone
,dmetaphone
anddmetaphone_alt
to compute "sounds like" stri
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
-
Updated
Nov 21, 2020
databasename can not contain dot 。if contain, after dot string will be discard。 i found like pattern in SQLServerDataSourceMetaData class "jdbc:(microsoft:)?sqlserver://([\w-.]+):?([0-9]);\S(DatabaseName|database)=([\w-]+);?" should be "jdbc:(microsoft:)?sqlserver://([\w-.]+):?([0-9]);\S(DatabaseName|database)=([\w-.]+);?"
-
Updated
Nov 25, 2020 - C++
This issue is the umbrella issue tracking the effort to add namespace to FDB code base. Idea is that with namespace in place, code would be much easier to read and understand at the call site. The coupling between different parts of the system would be easier to be seen and understood. Also this can help with potential symbol collisions.
-
Updated
Nov 17, 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
Nov 11, 2020 - Rust
For an onprem cloud provider, need validation to disable entering duplicate region codes on the "Region and Zones page". Currently, it fails silently without any visual feedback, and the only way to know is from the developer tools
{"error":"Region code already exists: us-west"}
-
Updated
Nov 25, 2020 - C
-
Updated
Jan 31, 2020 - Ruby
-
Updated
Oct 8, 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
Make tests in TestSetSessionTask
more readable by using assertThatThrownBy
.
-
Updated
Nov 19, 2020 - Go
-
Updated
Nov 25, 2020 - C++
-
Updated
Jul 17, 2020 - C++
-
Updated
May 6, 2017 - C++
-
Updated
Nov 25, 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
Nov 25, 2020 - Java
-
Updated
Nov 5, 2019
-
Updated
Aug 24, 2020 - Go
-
Updated
May 18, 2020
-
Updated
Nov 23, 2020 - Go
-
Updated
Aug 13, 2018 - JavaScript
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."
It is mentioned that there is an error code page for v2 protocol:
https://github.com/etcd-io/etcd/blob/ae7862e8bc8007eb396099db4e0e04ac026c8df5/server/etcdserver/api/v2error/error.go#L16
However, I can't find
Documentation/v2/errorcode.md
in this repo. Is the comment stale?