Closed sydhds closed 1 year ago
@AurelienFT @Eitu33 @aoudiamoncef @Reda-R @modship @Ben-PH @Leo-Besancon @Ben-Rey @damip @bilboquet Need you to vote on Rust versus Python thing?
@massalabs/core-team ping
I vote for Python.
IMHO, Python 🐍 checks more boxes than Rust.
For load tests, Python have Locust
Python is probably the best choice in the long run, it gets my vote as well
I'm erring on the side of python.
The Pros for rust, and cons for python, only seem to carry weight when viewed from the perspective of the core team only, and that would be to the detriment of the project as a whole. The inverse also remains: The cons for rust, and pros for python, seem to be weak only in the context of the core team, but with respect to the project as a whole, seem to carry significant weight.
..I also think the diversity argument is particularly valuable.
I would like to see something that ensures the use of explicit typing, as that would address some of my concerns about using python, though that might just be a personal thing. I'd be mild voice of push-back if we are going for untyped, but I won't insist on it too strongly.
I’m okay with both. It depends on the use cases and the machines on which it is used but if we do not look for the performance I think that python, not being compiled is more easily modifiable/maintainable
I'd probably be happy with both choices. I never wrote python tests and I usually like Rust tests, but it may be easier to quickly iterate with Python.
Python: We will find many more developers able to code in Python than in Rust.
I'd vote for Rust :)
About Rust main cons, I'd say that it's an opportunity to learn Rust for other guys, as a C and C++ programmer, learning Rust had a positive impact on my work in those languages. I fill it would be same for others.
The major problems I had in the past with functional tests were related to duration (it took days). Last time I've seen comparisons Python was 80x slower than C and Rust 1.1x, if it's still relevant it may not be a blocker for test writings.
If we go the Python way, I really hope we'll use Typing.
On second thoughts, is the argument of saying "Python is easier to maintain than Rust" true? In the short run I believe this isn't true since the current team is more proficient in Rust. For the long run on the other hand it first felt obvious that Python would be better as I said in https://github.com/massalabs/massa-cloud-simulator/issues/25#issuecomment-1427599149, but after thinking a bit more about it using Rust for tests isn't the same as using Rust for a complex project, the understanding of underlying behaviours is not as necessary in tests, and I believe a good developer (no matter the background) would be able to maintain that kind of code. This is a personal opinion that might not be true. I also understand that using Rust for testing would probably be frustrating for someone that is used to Python.
Edit: Also as @bilboquet pointed out in https://github.com/massalabs/massa-cloud-simulator/issues/25#issuecomment-1429479335, the performance is definitely something we'll need given the nature of our system if we want scalable tests
There is no doubt that Python performance is not an par with Rust performance but I think this is not very important in our case because:
"In the future, Massa plans to hire Testers and in the industry, it's very common to use Python. So it would release time for core dev to focus on other things" and "We will find many more developers able to code in Python than in Rust."
How true is it? I mean, there are obviously more Python devs than Rust devs, but are they easier to hire to write tests? An experienced Python dev will probably have more fun projects to deal with. Whereas someone with just basic Rust understanding (enough to write scenarios) will probably be more inclined to do functional testing in Rust to gain in experience.
@massalabs/core-team Last week to give your thoughts on this.
@massalabs/core-team
Just to elaborate a bit about my choice.
My feeling (a bit driven by previous experiences, I may give details if asked) is that we will have to manage functional tests ourselves.
That's why I vote Rust.
Maybe it's no the best choice, I, for sure, don't have the big picture (better test framework in Python? anything else?), but I think that this point (that we'll have to do them) was underestimated.
For all intents and purposes I would vote for rust as well. Python has one advantage tho: data analysis and visualization. If we want to gather de data from many nodes and run statistics, data analysis and plot graphs quickly, Python is the way to go.
I don't think the first usecase is data visualisation it could be in a second time.
I'm still in favor of Python as it shows many advantage (libs for visualization / statistics / graph / testing framework), it allows us to easily onboard other dev from the run team (and maybe others: inno / secu ...), and it's more flexible.
Not sure to see any interest in using Rust besides "we are all Rust dev"...
Looks like we need a vote :) can you organize one on discord @sydhds by summarizing all arguments for python and for rust ?
Truly naive question: do we really have to choose?
I mean do we have to choose now? Isn't it possible to have the tests done in either Rust or Python (as long as we have the traceability) depending on the use case or the ability of the person in charge?
We will all make tests for massa. So we will all be "in charge".
Note: the security team will also be using this
We will all make tests for massa. So we will all be "in charge".
I totally agree.
Looks like we need a vote :) can you organize one on discord @sydhds by summarizing all arguments for python and for rust ?
Make a thread in our Discord :)
Chosen: python. Note: when GRPC is available, the pyo3 bindings won't be necessary anymore
Intro
Even if the cloud simulator is still WIP (for the docker/K8S part), we need to decide which programming language we want to use to write the tests (aka functional tests).
For now, we have 2 candidates: Rust or Python
What we want to write
Here is a first test already written (in Python) as a demonstration
And for the others tests, we would like to write:
While most of the tests look quite easy to write, the difficulty remains in the data/logs/infos we retrieve. Writing a test, and asserting the network is down is not that useful, without nice information. A framework to help retrieving those information would be nice and avoid that each tests reinvent the wheel; if flexible enough, it would be a great tool to easily add additional info in case, we are (blindly) debugging a particular issue.
Rust pros & cons
Python pros & cons
Conclusion
While writing those tests is not a very fun tasks, it could help use to catch bugs before going into labnet or testnets.