Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: blutgang new version #297

Merged
merged 1 commit into from
Mar 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/blutgang/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ icon: https://github.com/rainshowerLabs/blutgang/assets/55022497/ec668c7a-5f56-4
sources:
- https://github.com/rainshowerLabs/blutgang
type: application
version: 0.0.4
version: 0.0.5
maintainers:
- name: barnabasbusa
email: busa.barnabas@gmail.com
2 changes: 1 addition & 1 deletion charts/blutgang/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

# blutgang

![Version: 0.0.4](https://img.shields.io/badge/Version-0.0.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
![Version: 0.0.5](https://img.shields.io/badge/Version-0.0.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)

Blutgang is a blazing fast, caching, minimalistic load balancer designed with Ethereum's JSON-RPC in mind. Historical RPC queries are cached in a local database, bypassing the need for slow, repeating calls to your node.

Expand Down
10 changes: 7 additions & 3 deletions charts/blutgang/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ config: |
sort_on_startup = {{ .Values.blutgangNamespace.sort_on_startup | default true }}
# Enable health checking
health_check = {{ .Values.blutgangNamespace.health_check | default true }}
# Enable content type header checking. Set this to `true` if you want
# Blutgang to be JSON-RPC compliant.
header_check = {{ .Values.blutgangNamespace.header_check | default true}}
# Acceptable time to wait for a response in ms
ttl = {{ .Values.blutgangNamespace.ttl | default 300 }}
# How many times to retry a request before giving up
Expand Down Expand Up @@ -92,7 +95,7 @@ config: |
# Print DB profile when dropped. Doesn't do anything for now.
print_profile = false
# Frequency of flushes in ms
flush_every_ms = 24000
flush_every_ms = 240

# Add seperate RPCs as TOML tables
# DO NOT name an rpc `blutgang`, `admin`, or `sled`
Expand All @@ -102,9 +105,9 @@ config: |
{{- if .ws_url }}
ws_url = {{ .ws_url | quote }}
{{- end }}
# The maximum ammount of time we can use this rpc in a row.
# The maximum amount of time we can use this rpc in a row.
max_consecutive = {{ .max_consecutive | default 150 }}
# Max ammount of querries per second.
# Max amount of querries per second.
max_per_second = {{ .max_per_second | default 200 }}
{{- end }}

Expand All @@ -115,6 +118,7 @@ blutgangNamespace:
ma_length: 100
sort_on_startup: true
health_check: true
header_check: true
ttl: 300
max_retries: 32
expected_block_time: 13000
Expand Down
Loading