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

Upgrade Rococo Muse to use fork aware tx pool #172

Closed
valentinfernandez1 opened this issue Jul 19, 2024 · 1 comment
Closed

Upgrade Rococo Muse to use fork aware tx pool #172

valentinfernandez1 opened this issue Jul 19, 2024 · 1 comment
Assignees
Labels

Comments

@valentinfernandez1
Copy link
Collaborator

valentinfernandez1 commented Jul 19, 2024

We want to start testing the fork-aware transaction pool in an environment closer to production. For this it is very important to deploy the newly built binaries that includes this new version of the pool.

Only binary update is needed. No chain reset or runtime upgrade required.

Docker Image: https://github.com/paritytech/project-mythical/actions/runs/10009188259

Required flags:

--pool-type=fork-aware
-ltxpool=info
--pool-limit 50000
--pool-kbytes 2048000
@BulatSaif
Copy link

Done:

Image: docker.io/mythicalgamesengineering/parity:mku-fork-aware-txpool-integrated

CMD collators:

/usr/bin/mythos-node \
                --name=${POD_NAME} \
                --base-path=/chain-data \
                --keystore-path=/keystore \
                --chain=/chain-data/chainspec.json \
                --database=paritydb \
                --state-pruning=1000 \
                --collator \
                --prometheus-external \
                --prometheus-port 9615 \
                --unsafe-rpc-external \
                --rpc-port=9944 \
                --rpc-cors=all \
                --listen-addr=/ip4/0.0.0.0/tcp/30334 \
                --listen-addr=/ip4/0.0.0.0/tcp/30335/ws \
                --public-addr=/ip4/${EXTERNAL_IP}/tcp/${PARA_CHAIN_P2P_PORT} \
                --public-addr=/ip4/${EXTERNAL_IP}/tcp/${PARA_CHAIN_P2P_PORT_WS}/ws \
                --node-key $(cat /vault/secrets/nodekey-${POD_INDEX}) \
                --log="xcm=trace" \
                --telemetry-url='wss://submit.telemetry.parity-stg.parity.io/submit/ 1' \
                --pool-type=fork-aware \
                --pool-limit 50000 \
                --pool-kbytes 2048000 \
                -- \
                --name=${POD_NAME} \
                --base-path=/relaychain-data \
                --keystore-path=/relaychain-keystore \
                --database=paritydb \
                --state-pruning=256 \
                --telemetry-url='wss://submit.telemetry.parity-stg.parity.io/submit/ 1' \
                --public-addr=/ip4/${EXTERNAL_IP}/tcp/${RELAY_CHAIN_P2P_PORT} \
                --listen-addr=/ip4/0.0.0.0/tcp/30333 \

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants