reliability
Here are 155 public repositories matching this topic...
A curated list of Site Reliability and Production Engineering resources.
-
Updated
Apr 10, 2021
Compilation of public failure/horror stories related to Kubernetes
-
Updated
Aug 23, 2020 - HTML
A curated collection of publicly available resources on how technology and tech-savvy organizations around the world practice Site Reliability Engineering (SRE)
-
Updated
Mar 24, 2021 - JavaScript
Currently this will work:
"method": [
{
"name": "send-invalid-request",
"type": "action",
"provider": {
"type": "process",
"path": "echo",
"arguments": "${request_file}"
}
}
]
But this won't:
"method": [
{
"name": "send-invalid-
Unit test cases.
A framework for rapid development of reliable asynchronous software.
-
Updated
Nov 4, 2020 - C#
An always-on framework that performs end-to-end functional network testing for reachability, latency, and packet loss
-
Updated
Jun 28, 2019 - Go
A curated list of Site Reliability and Production Engineering Tools
-
Updated
Feb 17, 2021
Notes on Site Reliability Engineering. Leave a
-
Updated
Oct 31, 2019
Simple, Erlang-inspired fault-tolerance framework for Rust Futures.
-
Updated
Aug 24, 2020 - Rust
A component-based OS
-
Updated
Mar 18, 2021 - C++
Uncertainty treatment library
-
Updated
Apr 13, 2021 - C++
PowerShell scripts to ensure consistent and reliable build quality and configuration for your servers
-
Updated
Jun 18, 2018 - PowerShell
Let's Make DNS Outage Suck Less
-
Updated
Jul 24, 2019 - Shell
A curated list of awesome Site Reliability and Production Engineering resources.
-
Updated
May 6, 2018
Message inspection
Implement Message.InspectMsg and suitable overrides. This function should be invoked when a message is sent, but only when a debug flag is enabled in a lab load. Its purpose is to verify that the message
- belongs to a valid protocol
- matches its PSM's protocol (if sent by a PSM)
- has a valid signal for its protocol
- contains all parameters that are mandatory for its signal
- contains
RNL - Realtime Network Library - The opensource reliable UDP network library
-
Updated
Jul 11, 2020 - Pascal
Although it's not a high priority, we could get a more fancy and modern wheel.
Portable, independent, web-based, simple streaming YouTube video queues and playlists for music videos, audiobooks, etc.
-
Updated
Apr 12, 2021 - JavaScript
Transactional power-failsafe filesystem for microcontrollers
-
Updated
Feb 18, 2021 - C
Reliable distributed agreement service for the cloud
-
Updated
May 10, 2017 - Go
Fast computation of the Krippendorff's alpha agreement measure in Python.
-
Updated
Jan 27, 2021 - Python
Guardian of Kubernetes and OpenShift Clusters
-
Updated
Apr 1, 2021 - Python
CS654A-IITK. System Design Bytes for Software Enthusiasts
-
Updated
Apr 6, 2021
A pub-sub system for the distributed web - my master thesis @ IST
-
Updated
Aug 4, 2020 - TeX
A complete list of all the ways a Client and Server communicate with each other in JavaScript and Node.
-
Updated
Dec 20, 2017 - JavaScript
OpenCossan is an open and free toolbox for uncertainty quantification and management.
-
Updated
Feb 16, 2021 - MATLAB
Main repository of the Vigor NF verification project.
-
Updated
Mar 6, 2021 - C
Improve this page
Add a description, image, and links to the reliability topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the reliability topic, visit your repo's landing page and select "manage topics."


EntranceNode和DefaultNode构建的invocation tree 会一直存在内存中,因此如果资源大于默认2000,将无法再进行限流。
这一块虽然没有那么重要,但是可以采用这种优化
另外MAX_CONTEXT_NAME_SIZE也可以考虑提供出来供使用者调节。
这样处理在正常情况下应该对性能不会有什么影响,因为一般没有那么多资源限流。而如果真正遇到了需要限流的资源太多,也能够进行处理,而不是直接报错。不过那种场景可能会导致频繁new EntranceNode。而这也可以通过调节MAX_CONTEXT_NAME_SIZE来达到平衡。
_Originally p