-
Notifications
You must be signed in to change notification settings - Fork 46
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
feat: migrating localnet to latest indexer v3.x images #351
Conversation
eb558a6
to
4dc473e
Compare
@winder a few further questions to clarify if possible (cc @robdmoore @neilcampbell ) I was able to execute the algod container with 2 networks (relay participation and one follower nodes). It wasn't clear that network configurations are passed differently that config.json which is why i was confused initially. If you execute the compose on the contents of the attached archive you will see that it seems to be working fine. Conduit is able to chat with 8081 port on algod (which is the port for the follower, while relay is at 8080). There is a slight millisecond delay that still happens with this setup where fresh deployment of an app takes certain amount of time before it pops up on indexer search application by account endpoint response -> will require adding some tweaks to our fixtures on utils ts and py (cc @neilcampbell @robdmoore )
Which i assume implies that follower node is unable to fetch the data from relay on port 10000 ? The port 10000 is set as a
If you need any extra context/input please let me know. |
What behavior do you see that is undesirable? The log you shared is an info level event, so not an error. |
@winder aside from compose working the only side effect observed was on our algokit utils unit tests in few places where we get to test app update calls we perform 2 consecutive deploys of a contract. In the case with current v2 indexer, changes are propagated almost instantly so its possible to perform Other than that would still appreciate a reply for question 2. Just want to ensure i'm not passing any unnecessary environment variables or configurations that can cause unforeseen side effects. After that will publish the pr and we will do more extensive smoke tests + will require changes in unit tests to account for increased delays on certain tests (that were previously not accounting for the fact that it may take extra time for indexer to sync with changes from algod). CC @robdmoore @neilcampbell |
Proposed Changes
Related improvements