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

promote main dpid resolver #26

Merged
merged 39 commits into from
Sep 18, 2024
Merged
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
bd15b3d
add test cases for attestation routing
kadamidev Jun 13, 2024
e3aaacd
config changes for easier debugging
kadamidev Jun 14, 2024
5e189bf
fix dpid resolver returning vNaN for an invalid version string, or hi…
kadamidev Jun 14, 2024
b33716a
Merge pull request #23 from desci-labs/attestation-routing
hubsmoke Jun 21, 2024
6ab8d04
modernize project config
m0ar Jun 14, 2024
1022f7c
Add sanityCheckEnv merge hook
m0ar Jun 19, 2024
e9d75ce
Upgrade node and dependencies
m0ar Jun 20, 2024
2466f39
Optimise docker image
m0ar Jun 20, 2024
3d96cc0
Switch nodemon for tsx, generate sourcemaps, use dumb-init in k8s
m0ar Jun 20, 2024
e9dfa20
separate vault secrets per env
m0ar Jun 25, 2024
7ef3c1d
support codex + alias resolution
m0ar Jun 25, 2024
8deaff5
Add fallback resolver envvar, tidy
m0ar Jun 25, 2024
68f608b
[wip] borky json bodies
m0ar Jun 26, 2024
4b991ac
add discovery & history endpoints
m0ar Jun 26, 2024
6f251be
fixes after rebase, fix port collision in test suite, add attestation…
m0ar Jun 26, 2024
6a134c1
fixes after rebase, fix port collision in test suite, add attestation…
m0ar Jun 26, 2024
0fa7e35
Merge pull request #24 from desci-labs/m0ar/enable-codex
hubsmoke Jun 27, 2024
ee0a24d
patch fallback check
m0ar Jun 28, 2024
cc0b235
Merge pull request #25 from desci-labs/m0ar/patch-fallback-check
m0ar Jun 28, 2024
d30e9ae
fix buid
hubsmoke Jul 10, 2024
5009132
Optional version query params on direct dpid/codex resolution handlers
m0ar Jul 23, 2024
514233b
remove logfile accumulation, respond on incorrect dpid, add healthcheck
m0ar Jul 29, 2024
a08df7e
Fix env loading, dynamic legacy fallback on wildcard resolution route
m0ar Jul 30, 2024
4cf4fef
make all resolvers return full history, history accepts single query …
m0ar Jul 30, 2024
b98e27b
reorder healthcheck route to avoid hitting the wildcard
m0ar Jul 27, 2024
7308307
add CI test workflow
m0ar Aug 14, 2024
cbccc1a
pick base image with .nvmrc
m0ar Aug 14, 2024
84d4129
Fix build workflow, add docker build args
m0ar Aug 14, 2024
8b2402d
Merge pull request #27 from desci-labs/m0ar/improve-direct-resolution
m0ar Aug 19, 2024
b60d145
Fix regex calling anything containing at least 1 digit a DPID
m0ar Aug 21, 2024
3e8b376
Merge pull request #28 from desci-labs/m0ar/hotfix-dpid-regex
m0ar Aug 21, 2024
56c3902
bump contracts pkg to use correct latest local dev contract address
kadamidev Sep 3, 2024
13fa3ee
use redis to cache commits, dpid mappings, and legacy history
m0ar Sep 16, 2024
52da0e6
use redis.isReady to skip when connection is pending
m0ar Sep 16, 2024
7dc3cf1
refresh commit ttl on load
m0ar Sep 17, 2024
1931b7c
Merge pull request #30 from desci-labs/m0ar/resolver-redis-cache
m0ar Sep 17, 2024
6c1f4d1
fix workflow not applying kubernetes declarations
m0ar Sep 17, 2024
7fd318c
Merge pull request #31 from desci-labs/m0ar/fix-resolver-workflow
m0ar Sep 17, 2024
5df1f0c
Merge pull request #29 from desci-labs/bump-contracts-pkg
hubsmoke Sep 18, 2024
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
Prev Previous commit
Next Next commit
use redis to cache commits, dpid mappings, and legacy history
  • Loading branch information
m0ar committed Sep 16, 2024
commit 13fa3ee4ed6d53fce46f59b12272dbbec477326a
12 changes: 11 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
PORT=5460
SUPABASE_URL=
SUPABASE_KEY=
IPFS_GATEWAY=https://ipfs.desci.com/ipfs

# Set these to run with a local redis instance, outside of the backend cluster
# REDIS_HOST=localhost
# REDIS_PORT=6379
# Short TTL's for tinkering with history loading
# CACHE_TTL_ANCHORED=60
# CACHE_TTL_PENDING=5

# If set to 1, the `/*` route will use the legacy handler
FALLBACK_RESOLVER=0

@@ -15,13 +22,16 @@ FALLBACK_RESOLVER=0
DPID_ENV=dev
OPTIMISM_RPC_URL=https://reverse-proxy-dev.desci.com/rpc_opt_sepolia
CERAMIC_URL=https://ceramic-dev.desci.com
IPFS_GATEWAY=https://ipfs.desci.com/ipfs

# Staging
# DPID_ENV=staging
# OPTIMISM_RPC_URL=https://reverse-proxy-staging.desci.com/rpc_opt_sepolia
# CERAMIC_URL=https://ceramic-prod.desci.com
# IPFS_GATEWAY=https://ipfs.desci.com/ipfs

# Prod
# DPID_ENV=production
# OPTIMISM_RPC_URL=https://reverse-proxy-prod.desci.com/rpc_opt_sepolia
# CERAMIC_URL=https://ceramic-prod.desci.com
# IPFS_GATEWAY=https://ipfs.desci.com/ipfs
5 changes: 5 additions & 0 deletions kubernetes/deployment.dev.yaml
Original file line number Diff line number Diff line change
@@ -34,6 +34,11 @@ spec:
export OPTIMISM_RPC_URL={{ .Data.OPTIMISM_RPC_URL }}
export CERAMIC_URL={{ .Data.CERAMIC_URL }}
export FALLBACK_RESOLVER={{ .Data.FALLBACK_RESOLVER }}

export REDIS_HOST={{ .Data.REDIS_HOST }}
export REDIS_PORT={{ .Data.REDIS_PORT }}
export CACHE_TTL_ANCHORED={{ .Data.CACHE_TTL_ANCHORED }}
export CACHE_TTL_PENDING={{ .Data.CACHE_TTL_PENDING }}
echo "loaded"
{{- end -}}
labels:
5 changes: 5 additions & 0 deletions kubernetes/deployment.prod.yaml
Original file line number Diff line number Diff line change
@@ -34,6 +34,11 @@ spec:
export OPTIMISM_RPC_URL={{ .Data.OPTIMISM_RPC_URL }}
export CERAMIC_URL={{ .Data.CERAMIC_URL }}
export FALLBACK_RESOLVER={{ .Data.FALLBACK_RESOLVER }}

export REDIS_HOST={{ .Data.REDIS_HOST }}
export REDIS_PORT={{ .Data.REDIS_PORT }}
export CACHE_TTL_ANCHORED={{ .Data.CACHE_TTL_ANCHORED }}
export CACHE_TTL_PENDING={{ .Data.CACHE_TTL_PENDING }}
echo "loaded"
{{- end -}}
labels:
5 changes: 5 additions & 0 deletions kubernetes/deployment.staging.yaml
Original file line number Diff line number Diff line change
@@ -70,6 +70,11 @@ spec:
export OPTIMISM_RPC_URL={{ .Data.OPTIMISM_RPC_URL }}
export CERAMIC_URL={{ .Data.CERAMIC_URL }}
export FALLBACK_RESOLVER={{ .Data.FALLBACK_RESOLVER }}

export REDIS_HOST={{ .Data.REDIS_HOST }}
export REDIS_PORT={{ .Data.REDIS_PORT }}
export CACHE_TTL_ANCHORED={{ .Data.CACHE_TTL_ANCHORED }}
export CACHE_TTL_PENDING={{ .Data.CACHE_TTL_PENDING }}
echo "loaded"
{{- end -}}
labels:
161 changes: 161 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -42,6 +42,7 @@
"pino": "^9.2.0",
"pino-http": "^10.1.0",
"pino-pretty": "^11.2.1",
"redis": "^4.7.0",
"url-safe-base64": "^1.2.0"
}
}
Loading
Loading