-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: run order checker for bidengine in separate goroutine
due to increased number of orders (over 500M) querying via traditional way is ineffective due to - original implementation does only one query with limit set to 10000 which may put RPC into overloaded mode - this leads to provider service restart followed by teardown of all leases refs troian/pubsub#3 fixes akash-network/support#281 Signed-off-by: Artur Troian <[email protected]>
- Loading branch information
Showing
12 changed files
with
322 additions
and
219 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
AKASH_KEYRING_BACKEND=test | ||
AKASH_GAS_ADJUSTMENT=2 | ||
AKASH_CHAIN_ID=local | ||
AKASH_YES=true | ||
AKASH_GAS_PRICES=0.025uakt | ||
AKASH_GAS=auto | ||
AKASH_NODE=http://localhost:26657 | ||
|
||
AP_HOME=${AKASH_HOME} | ||
AP_KEYRING_BACKEND=${AKASH_KEYRING_BACKEND} | ||
AP_GAS_ADJUSTMENT=${AKASH_GAS_ADJUSTMENT} | ||
AP_CHAIN_ID=${AKASH_CHAIN_ID} | ||
AP_YES=${AKASH_YES} | ||
AP_GAS_PRICES=${AKASH_GAS_PRICES} | ||
AP_GAS=${AKASH_GAS} | ||
AP_NODE=${AKASH_NODE} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
AP_RUN_NAME=$(basename "$(pwd)") | ||
AP_RUN_DIR="${DEVCACHE_RUN}/${AP_RUN_NAME}" | ||
|
||
export AKASH_HOME="${AP_RUN_DIR}/.akash" | ||
|
||
dotenv .env |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
source_up .envrc | ||
source_up .envrc_run | ||
|
||
export AKASH_HOME=$DEVCACHE_RUN/kube/.akash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.