You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I wanted to run the test scheduler_tests.py. I believe, for a given trace, this test will give me the schedule in a file /tmp/simple.output.
The traces used seems to be missing. I can use a different trace, but it does not have an "expected" output file for those. Also, the relevant file (run_scheduler_with_trace.py) is not prepared to take the arguments passed by the test.
The text was updated successfully, but these errors were encountered:
There are 3 arguments that are not supported.
--simulate
--worker_types
-l
The simulate argument can be handled as it can be read from command line and passed to the Scheduler's constructor. However, the other two are not expected arguments for the Scheduler class. I am not sure where they are to be passed or how to handle them.
You can get rid of the --simulate argument then, simulate is set to True by default in this driver file. --worker_types is replaced by --cluster_spec. I'm not sure what -l did before, but you can probably omit it.
I wanted to run the test
scheduler_tests.py
. I believe, for a given trace, this test will give me the schedule in a file/tmp/simple.output
.The traces used seems to be missing. I can use a different trace, but it does not have an "expected" output file for those. Also, the relevant file (
run_scheduler_with_trace.py
) is not prepared to take the arguments passed by the test.The text was updated successfully, but these errors were encountered: