-
Notifications
You must be signed in to change notification settings - Fork 47
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
chore: Merge Orchestrator history #471
base: main
Are you sure you want to change the base?
Conversation
Change the external_id field to be an enum instead of a regular String
refactor to workspace
* initialised atlantic service * feat: added l1 and l2 proving apis * add header * feat:added testcases for atlantic service * chore: change to atlantic proving service * fix: change layout to 'starknet_with_keccak' * change layout to all_cairo for testing * update gps verifier * chore: add program hash log * fix: change program hash * ran formatter * refactor init commit * broken http client * refactor: http_client and prover services refactored * fix: build issue fixed with temp snos * chore: linting and formatting * chore: todo added for later to change snos * refactor: atlantic test updated as pwe the new changes * chore: linting and removed print statements * refactor: prover-service renamed to prover-clients * changelog: updated * chore: formatting and linting * fix: changing prover service to sharp * fix: adding proof layout to env file * fix: updated the prvoving zip * fix: program hash fixed and fact of the block registered * fix: sleep added after setting fact * refactor: toml files cleaning and http mock version update * update: duplicate SNOS_PROOD_LAYOUT removed * changelog: updated * chore: linting * fix: snos layout updated to dynamic * fix: linting and proof layout * refactor: added different layout name for snos and proving * fix: comments resolved, docker-compose deleted, request-builder updated * changelog: updated * resolved: comments and path updated in yaml for s3 download * refactor: replaced mock server with dummy url to create http client * fix: atlantic endpoint updated * refactor: atlantic test now use mock server * fix: files added * fix: env variable's name updated * chores: removed extra print statement --------- Co-authored-by: byteZorvin <[email protected]> Co-authored-by: apoorvsadana <[email protected]> Co-authored-by: mohiiit <[email protected]>
* refactor: rust_log filtering * hardcoding localstack sha version on e2e
* fix: atlantic added in clap, get status code updated and snos branch updated as well * fix: atlantic tests and url update * update: starknet-os version * verification values udpated for proving * verification logic changed * dockerfile updated * atlantic query response updated * nack->ack and max 10 blocks in update state * fix: aws event bridge setup * update: delete storage setup * update: fixed serialization of trigger message * update: fix worker trigger for aws * update: re-fix CI issue * random commit to re-trigger CI * update: added more metric * update: Bucket Region from ENV * update: reworked location constraint --------- Co-authored-by: mohiiit <[email protected]> Co-authored-by: apoorvsadana <[email protected]>
update: remove dynamic entries from attributes
* update: readme and example env
* fix worker enabled check --------- Co-authored-by: Heemank Verma <[email protected]>
* update: added verification status to verify job * update: added verification time * update: JOB_METADATA_PROCESSING_COMPLETED_AT
* update: added operation_job_status
* chore: readme udpated: * chore: readme updated * chore(readme): re-added a few sections that were missed earlier * chore(readme): linting * chore: linting and formatting * chore: linting and formatting * chore: linting and formatting * chore: script added for dummy contract deployment, readme udpated to use dummy sharp service * update: aws_event_bridge rework * update: e2e * chore: linting-formatting and readme updated * chore: readme misinformation fixed * update: verification job timeout and polling changed to work for 25 hours * chore: comment added for older python version needed * refactor: event bridge type added * chore: linting and formatting of toml files * update: time delay for txn finality in state update increased to 30 mins --------- Co-authored-by: mohiiit <[email protected]> Co-authored-by: Heemank Verma <[email protected]>
* update: fixed block_state collection
* refactor: error handling added for the storage functions * chore: removed expect * chore: changelog * refactor: http-client refactored to handle panic better --------- Co-authored-by: mohiiit <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Given we are moving to a monorepo, I feel like we need to rethink what files we have at the root of the project. We probably want to move any configuration files and README
s to either crates/madara
or crates/orchestrator
and keep only common logic at the root.
We also need to think about how we want to run the CI for each project so that this doesn't take for ever on simple changes.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't this be moved to crates/orchestrator
if it is related to that?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are we sure we want to strore artefacts under scripts?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We probably want to figure out a way to compile only SNOS or Madara if we change only one of those no? At least I feel like testing Madara against SNOS should be a separate and last step in the CI if all other steps pass. And make it so that if changes are made to SNOS we do not run e2e on Madara.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I feel like we should tests Madara and SNOS in different CI actions
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Imo this should also be under crates/ortchestrator
. Given we are making this a monorepo we probably also want to move some Madara-specific files such as the README
under crates/madara
@@ -139,7 +153,7 @@ mc-devnet = { path = "crates/madara/client/devnet" } | |||
m-cairo-test-contracts = { path = "crates/madara/cairo-test-contracts" } | |||
|
|||
# Starknet dependencies | |||
cairo-vm = "=1.0.1" | |||
cairo-vm = { git = "https://github.com/Moonsong-Labs/cairo-vm", branch = "madara-monorepo" } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Instead of using forks I feel like we should be importing two separate versions of the same crate under an alias so that madara and the orchestrator can both have their own version. This feels more maintainable long term as far as supporting new features is concerned, and should also make it easier to merge both into a single dependency in the future.
This PR pulls in the entire madara-orchestrator git history into this project.
Because the entire history was pulled in (using
git merge --allow-unrelated-histories
) the PR is absolutely massive (and probably difficult to review). My process was basically this:git merge --allow-unrelated-histories
(that is, pull in the entire codebase history)crates/orchestrator
and project files to a temp dir)Cargo.toml
to build (note thatorchestrator
is not a member ofdefault-members
, disagree if you want!)Status 🚧
So far this builds and
madara
appears to be unaffected. The project files formadara-orchestrator
were kept, but were moved (temporarily) toold_orchestrator_files/
. This means that things like CI will not currently work.Repository forks 🍴
This required forking several repositories in order to avoid version conflicts. Each fork uses the same
madara-monorepo
branch name. These repos were forked: