-
Updated
Oct 7, 2021 - Java
distributed-systems
Here are 3,240 public repositories matching this topic...
-
Updated
Oct 19, 2021 - Go
-
Updated
Oct 9, 2021
-
Updated
Oct 19, 2021 - Go
-
Updated
Oct 19, 2021 - Go
-
Updated
Mar 28, 2021
-
Updated
Oct 18, 2021 - Go
ActorAdapter will ignore null
message with "Adapter function returned null which is not valid as an .."
However, this seems not be documented. For instance, scaladoc/javadoc of pipeToSelf
could mention it as well as any other place where adapters are used.
-
Updated
Oct 18, 2021 - Go
-
Updated
Oct 19, 2021 - Go
-
Updated
Oct 19, 2021 - Java
-
Updated
Oct 18, 2021 - Python
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 MinSendBackupAfterMs is now set to 1 ms. Unfortunately this causes backup requests to be send when there is low load. It would be useful if we could set the minimum a little bit higher for certain endpoints.
-
Updated
Oct 19, 2021 - C#
-
Updated
Oct 17, 2021
-
Updated
Sep 9, 2021 - Rust
-
Updated
Sep 30, 2021
-
Updated
Jun 24, 2021 - Python
currently only Mac is supported. We should also support Linux.
Similar to Homebrew/homebrew-core#74494 for uber/cadence#3932
See doc about how to do it: https://docs.brew.sh/Homebrew-on-Linux
Cobra, the library used to implement the CLI commands also generate the shell completion scripts, for bash, zsh, fish and powershell. This completion scripts are based on the description of each commands (living in https://github.com/MichaelMure/git-bug/tree/master/commands).
At the moment, those completion works decently, completing command names and flags. However it would be possible to do b
-
Updated
Oct 20, 2021 - Go
-
Updated
Sep 29, 2021
-
Updated
Oct 18, 2021 - JavaScript
hz-stop --help
No Hazelcast server found to stop
We are using font-awesome V4 and should migrate to font-awesome V5 which comes with its own vue.js module: https://github.com/FortAwesome/vue-fontawesome
Migration includes removing old font-awesome V4 module and changing all existing icons to new vue.js tag.
This is blocked until #114 is merged which comes with first initial integration.
Since we already require go 1.17 in the go.mod we should migrate to the new io and os packages https://golang.org/doc/go1.16#ioutil
With Hive connector
trino:default> CREATE TABLE one (a varchar);
-> CREATE VIEW two AS SELECT * FROM one;
CREATE TABLE
CREATE VIEW
DROP TABLE
is rejected on a view:
trino:default> DROP TABLE two;
Query 20210906_150832_00015_id3y3 failed: line 1:1: Table 'hive.default.two' does not exist, but a view with that name exists. Did you mean DROP VIEW hive.default.t
Improve this page
Add a description, image, and links to the distributed-systems topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the distributed-systems topic, visit your repo's landing page and select "manage topics."
Currently many more Python projects like dask and optuna are using Python type hints. With the Python package of xgboost gaining more and more features, we should also adopt mypy as a safe guard against some type errors and for better code documentation.