release_tests.yaml 77 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675
  1. # Global release test configuration file.
  2. # All your release test configuration should go here. Adding release tests here
  3. # will automatically enable them in the Buildkite release testing schedules
  4. # (except they have frequency: disabled).
  5. # Here is an example configuration for reference:
  6. #- name: example_test
  7. # # Tests with the same group will be grouped in the Buildkite UI
  8. # group: Example group
  9. # # Provide the working directory which will be uploaded to the cluster
  10. # working_dir: example_dir
  11. #
  12. # # For release test infra migration, we provide these fields that are populated
  13. # # in the database
  14. # legacy:
  15. # test_name: example_test
  16. # test_suite: examples
  17. #
  18. # # How often to run the tests.
  19. # # One of [disabled, any, multi, nightly, weekly].
  20. # frequency: weekly
  21. # # Owning team. This field will be persisted to the database
  22. # team: ml
  23. #
  24. # # Python version. This optional field determines which Python version to run tests
  25. # # on. This must be a string!
  26. # python: "3.7"
  27. #
  28. # # Optional location of a bash setup script to run on the driver
  29. # # when setting up the local environment. Relative to working_dir
  30. # driver_setup: setup_driver.sh
  31. #
  32. # # Cluster information
  33. # cluster:
  34. # # Location of cluster env, relative to working_dir
  35. # cluster_env: cluster_env.yaml
  36. # # Location of cluster compute, relative to working_dir
  37. # cluster_compute: cluster_compute.yaml
  38. # # Autosuspend parameter passed to the cluster.
  39. # # The cluster will automatically terminate if inactive for this
  40. # # many minutes. Defaults to 10 if not set.
  41. # autosuspend_mins: 10
  42. # # Optional cloud_id to use instead of the default cloud
  43. # cloud_id: cld_12345678
  44. # # Alternatively, you can specify a cloud name
  45. # cloud_name: anyscale_default_cloud
  46. #
  47. # # Run configuration for the test
  48. # run:
  49. # # Type of test. Can be sdk_command or client (job to be implemented soon).
  50. # # Uses either Anyscale SDK commands or the Ray client to run the actual
  51. # # release test.
  52. # type: sdk_command
  53. #
  54. # # File manager to use to transfer files to and from the cluster.
  55. # # Can be any of [sdk, client, job].
  56. # file_manager: sdk
  57. #
  58. # # If you want to wait for nodes to be ready, you can specify this here:
  59. # wait_for_nodes:
  60. # # Number of nodes
  61. # num_nodes: 16
  62. # # Timeout for waiting for nodes. If nodes are not up by then, the
  63. # # test will fail.
  64. # timeout: 600
  65. #
  66. # # Optional prepare script to be run on the cluster before the test script
  67. # prepare: python prepare.py
  68. # # The prepare command can have a separate timeout
  69. # prepare_timeout: 300
  70. #
  71. # # Main script to run as the test script
  72. # script: python workloads/train_small.py
  73. # # Timeout in seconds. After this time the test is considered as failed.
  74. # timeout: 600
  75. #
  76. # # You can specify smoke test definitions here. If a smoke test is triggered,
  77. # # it will deep update the main test configuration with the values provided
  78. # # here. Smoke tests will automatically run with IS_SMOKE_TEST=1 as en
  79. # # environment variable and receive the --smoke-test flag as a parameter in the
  80. # # run script.
  81. # smoke_test:
  82. # # Smoke tests can have different frequencies. A smoke test is only triggered
  83. # # when the regular test is not matched.
  84. # frequency: nightly
  85. # # Here we adjust the run timeout down and run on less nodes. The test script
  86. # # remains the same.
  87. # run:
  88. # timeout: 300
  89. # wait_for_nodes:
  90. # num_nodes: 4
  91. # timeout: 600
  92. #
  93. # # After the test finished, this handler (in alerts/) will process the results.
  94. # # It can then let the test fail, e.g. if a metric regression is observed.
  95. # alert: default
  96. #########################
  97. # AIR release tests
  98. #########################
  99. - name: long_running_horovod_tune_test
  100. group: AIR tests
  101. working_dir: air_tests
  102. frequency: weekly
  103. team: ml
  104. cluster:
  105. cluster_env: horovod/app_config_master.yaml
  106. cluster_compute: horovod/compute_tpl.yaml
  107. run:
  108. timeout: 36000
  109. script: python horovod/workloads/horovod_tune_test.py
  110. long_running: true
  111. wait_for_nodes:
  112. num_nodes: 3
  113. type: sdk_command
  114. file_manager: job
  115. smoke_test:
  116. frequency: disabled
  117. run:
  118. timeout: 1800
  119. alert: default
  120. #######################
  121. # XGBoost release tests
  122. #######################
  123. - name: xgboost_train_small
  124. group: XGBoost
  125. working_dir: xgboost_tests
  126. legacy:
  127. test_name: train_small
  128. test_suite: xgboost_tests
  129. frequency: nightly
  130. team: ml
  131. cluster:
  132. cluster_env: app_config.yaml
  133. cluster_compute: tpl_cpu_small.yaml
  134. run:
  135. timeout: 600
  136. script: python workloads/train_small.py
  137. wait_for_nodes:
  138. num_nodes: 4
  139. type: client
  140. alert: xgboost_tests
  141. - name: xgboost_train_moderate
  142. group: XGBoost
  143. working_dir: xgboost_tests
  144. legacy:
  145. test_name: train_moderate
  146. test_suite: xgboost_tests
  147. frequency: nightly
  148. team: ml
  149. cluster:
  150. cluster_env: app_config.yaml
  151. cluster_compute: tpl_cpu_moderate.yaml
  152. run:
  153. timeout: 600
  154. script: python workloads/train_moderate.py
  155. wait_for_nodes:
  156. num_nodes: 32
  157. type: sdk_command
  158. file_manager: sdk
  159. alert: xgboost_tests
  160. - name: xgboost_train_gpu
  161. group: XGBoost
  162. working_dir: xgboost_tests
  163. legacy:
  164. test_name: train_gpu
  165. test_suite: xgboost_tests
  166. frequency: nightly
  167. team: ml
  168. cluster:
  169. cluster_env: app_config_gpu.yaml
  170. cluster_compute: tpl_gpu_small.yaml
  171. run:
  172. timeout: 600
  173. script: python workloads/train_gpu.py
  174. wait_for_nodes:
  175. num_nodes: 5
  176. type: sdk_command
  177. file_manager: sdk
  178. alert: xgboost_tests
  179. - name: xgboost_distributed_api_test
  180. group: XGBoost
  181. working_dir: xgboost_tests
  182. legacy:
  183. test_name: distributed_api_test
  184. test_suite: xgboost_tests
  185. frequency: nightly
  186. team: ml
  187. cluster:
  188. cluster_env: app_config.yaml
  189. cluster_compute: tpl_cpu_small.yaml
  190. run:
  191. timeout: 600
  192. script: python workloads/distributed_api_test.py
  193. wait_for_nodes:
  194. num_nodes: 4
  195. type: sdk_command
  196. file_manager: sdk
  197. alert: xgboost_tests
  198. - name: xgboost_ft_small_elastic
  199. group: XGBoost
  200. working_dir: xgboost_tests
  201. legacy:
  202. test_name: ft_small_elastic
  203. test_suite: xgboost_tests
  204. frequency: nightly
  205. team: ml
  206. cluster:
  207. cluster_env: app_config.yaml
  208. cluster_compute: tpl_cpu_small.yaml
  209. run:
  210. timeout: 900
  211. script: python workloads/ft_small_elastic.py
  212. wait_for_nodes:
  213. num_nodes: 4
  214. type: sdk_command
  215. file_manager: sdk
  216. alert: xgboost_tests
  217. - name: xgboost_ft_small_non_elastic
  218. group: XGBoost
  219. working_dir: xgboost_tests
  220. legacy:
  221. test_name: ft_small_non_elastic
  222. test_suite: xgboost_tests
  223. frequency: nightly
  224. team: ml
  225. cluster:
  226. cluster_env: app_config.yaml
  227. cluster_compute: tpl_cpu_small.yaml
  228. run:
  229. timeout: 900
  230. script: python workloads/ft_small_non_elastic.py
  231. wait_for_nodes:
  232. num_nodes: 4
  233. type: sdk_command
  234. file_manager: sdk
  235. alert: xgboost_tests
  236. - name: xgboost_tune_small
  237. group: XGBoost
  238. working_dir: xgboost_tests
  239. legacy:
  240. test_name: tune_small
  241. test_suite: xgboost_tests
  242. frequency: nightly
  243. team: ml
  244. cluster:
  245. cluster_env: app_config.yaml
  246. cluster_compute: tpl_cpu_small.yaml
  247. run:
  248. timeout: 600
  249. script: python workloads/tune_small.py
  250. wait_for_nodes:
  251. num_nodes: 4
  252. type: sdk_command
  253. file_manager: sdk
  254. alert: xgboost_tests
  255. - name: xgboost_tune_32x4
  256. group: XGBoost
  257. working_dir: xgboost_tests
  258. legacy:
  259. test_name: tune_32x4
  260. test_suite: xgboost_tests
  261. frequency: nightly
  262. team: ml
  263. cluster:
  264. cluster_env: app_config.yaml
  265. cluster_compute: tpl_cpu_moderate.yaml
  266. run:
  267. timeout: 900
  268. script: python workloads/tune_32x4.py
  269. wait_for_nodes:
  270. num_nodes: 32
  271. type: sdk_command
  272. file_manager: sdk
  273. alert: xgboost_tests
  274. - name: xgboost_tune_4x32
  275. group: XGBoost
  276. working_dir: xgboost_tests
  277. legacy:
  278. test_name: tune_4x32
  279. test_suite: xgboost_tests
  280. frequency: nightly
  281. team: ml
  282. cluster:
  283. cluster_env: app_config.yaml
  284. cluster_compute: tpl_cpu_moderate.yaml
  285. run:
  286. timeout: 900
  287. script: python workloads/tune_4x32.py
  288. wait_for_nodes:
  289. num_nodes: 32
  290. type: sdk_command
  291. file_manager: sdk
  292. alert: xgboost_tests
  293. #######################
  294. # LightGBM tests
  295. #######################
  296. - name: lightgbm_train_small
  297. group: LightGBM tests
  298. working_dir: lightgbm_tests
  299. legacy:
  300. test_name: train_small
  301. test_suite: lightgbm_tests
  302. frequency: nightly
  303. team: ml
  304. cluster:
  305. cluster_env: app_config.yaml
  306. cluster_compute: tpl_cpu_small.yaml
  307. run:
  308. timeout: 600
  309. script: python workloads/train_small.py
  310. wait_for_nodes:
  311. num_nodes: 4
  312. type: client
  313. alert: default
  314. - name: lightgbm_train_moderate
  315. group: LightGBM tests
  316. working_dir: lightgbm_tests
  317. legacy:
  318. test_name: train_moderate
  319. test_suite: lightgbm_tests
  320. frequency: nightly
  321. team: ml
  322. cluster:
  323. cluster_env: app_config.yaml
  324. cluster_compute: tpl_cpu_moderate.yaml
  325. run:
  326. timeout: 600
  327. script: python workloads/train_moderate.py
  328. wait_for_nodes:
  329. num_nodes: 32
  330. type: sdk_command
  331. file_manager: job
  332. alert: default
  333. - name: lightgbm_distributed_api_test
  334. group: LightGBM tests
  335. working_dir: lightgbm_tests
  336. legacy:
  337. test_name: distributed_api_test
  338. test_suite: lightgbm_tests
  339. frequency: nightly
  340. team: ml
  341. cluster:
  342. cluster_env: app_config.yaml
  343. cluster_compute: tpl_cpu_small.yaml
  344. run:
  345. timeout: 600
  346. script: python workloads/distributed_api_test.py
  347. wait_for_nodes:
  348. num_nodes: 4
  349. type: sdk_command
  350. file_manager: job
  351. alert: default
  352. - name: lightgbm_ft_small_non_elastic
  353. group: LightGBM tests
  354. working_dir: lightgbm_tests
  355. legacy:
  356. test_name: ft_small_non_elastic
  357. test_suite: lightgbm_tests
  358. frequency: nightly
  359. team: ml
  360. cluster:
  361. cluster_env: app_config.yaml
  362. cluster_compute: tpl_cpu_small.yaml
  363. run:
  364. timeout: 900
  365. script: python workloads/ft_small_non_elastic.py
  366. wait_for_nodes:
  367. num_nodes: 4
  368. type: sdk_command
  369. file_manager: job
  370. alert: default
  371. - name: lightgbm_tune_small
  372. group: LightGBM tests
  373. working_dir: lightgbm_tests
  374. legacy:
  375. test_name: tune_small
  376. test_suite: lightgbm_tests
  377. frequency: nightly
  378. team: ml
  379. cluster:
  380. cluster_env: app_config.yaml
  381. cluster_compute: tpl_cpu_small.yaml
  382. run:
  383. timeout: 600
  384. script: python workloads/tune_small.py
  385. wait_for_nodes:
  386. num_nodes: 4
  387. type: sdk_command
  388. file_manager: job
  389. alert: default
  390. - name: lightgbm_tune_16x4
  391. group: LightGBM tests
  392. working_dir: lightgbm_tests
  393. legacy:
  394. test_name: tune_16x4
  395. test_suite: lightgbm_tests
  396. frequency: nightly
  397. team: ml
  398. cluster:
  399. cluster_env: app_config.yaml
  400. cluster_compute: tpl_cpu_moderate.yaml
  401. run:
  402. timeout: 900
  403. script: python workloads/tune_16x4.py
  404. wait_for_nodes:
  405. num_nodes: 32
  406. type: sdk_command
  407. file_manager: job
  408. alert: default
  409. - name: lightgbm_tune_4x16
  410. group: LightGBM tests
  411. working_dir: lightgbm_tests
  412. legacy:
  413. test_name: tune_4x16
  414. test_suite: lightgbm_tests
  415. frequency: nightly
  416. team: ml
  417. cluster:
  418. cluster_env: app_config.yaml
  419. cluster_compute: tpl_cpu_moderate.yaml
  420. run:
  421. timeout: 900
  422. script: python workloads/tune_4x16.py
  423. wait_for_nodes:
  424. num_nodes: 32
  425. type: sdk_command
  426. file_manager: job
  427. alert: default
  428. #######################
  429. # ML user tests
  430. #######################
  431. - name: ml_user_horovod_user_test_latest
  432. group: ML user tests
  433. working_dir: ml_user_tests
  434. legacy:
  435. test_name: horovod_user_test_latest
  436. test_suite: ml_user_tests
  437. frequency: nightly
  438. team: ml
  439. cluster:
  440. cluster_env: horovod/app_config.yaml
  441. cluster_compute: horovod/compute_tpl.yaml
  442. driver_setup: horovod/driver_setup_latest.sh
  443. run:
  444. timeout: 1200
  445. script: python horovod/horovod_user_test.py
  446. type: client
  447. alert: default
  448. - name: ml_user_horovod_user_test_master
  449. group: ML user tests
  450. working_dir: ml_user_tests
  451. legacy:
  452. test_name: horovod_user_test_master
  453. test_suite: ml_user_tests
  454. frequency: nightly
  455. team: ml
  456. cluster:
  457. cluster_env: horovod/app_config_master.yaml
  458. cluster_compute: horovod/compute_tpl.yaml
  459. driver_setup: horovod/driver_setup_master.sh
  460. run:
  461. timeout: 1200
  462. script: python horovod/horovod_user_test.py
  463. type: client
  464. alert: default
  465. - name: ml_user_train_tensorflow_mnist_test
  466. group: ML user tests
  467. working_dir: ml_user_tests
  468. legacy:
  469. test_name: train_tensorflow_mnist_test
  470. test_suite: ml_user_tests
  471. frequency: nightly
  472. team: ml
  473. cluster:
  474. cluster_env: train/app_config.yaml
  475. cluster_compute: train/compute_tpl.yaml
  476. driver_setup: train/driver_setup.sh
  477. run:
  478. timeout: 36000
  479. script: python train/train_tensorflow_mnist_test.py
  480. type: client
  481. alert: default
  482. - name: ml_user_train_torch_linear_test
  483. group: ML user tests
  484. working_dir: ml_user_tests
  485. legacy:
  486. test_name: train_torch_linear_test
  487. test_suite: ml_user_tests
  488. frequency: nightly
  489. team: ml
  490. cluster:
  491. cluster_env: train/app_config.yaml
  492. cluster_compute: train/compute_tpl.yaml
  493. driver_setup: train/driver_setup.sh
  494. run:
  495. timeout: 36000
  496. script: python train/train_torch_linear_test.py
  497. type: client
  498. alert: default
  499. - name: ml_user_xgboost_gpu_connect_latest
  500. group: ML user tests
  501. working_dir: ml_user_tests
  502. legacy:
  503. test_name: xgboost_gpu_connect_latest
  504. test_suite: ml_user_tests
  505. frequency: nightly
  506. team: ml
  507. cluster:
  508. cluster_env: xgboost/app_config_gpu.yaml
  509. cluster_compute: xgboost/tpl_gpu_small_scaling.yaml
  510. run:
  511. timeout: 1200
  512. script: python xgboost/train_gpu_connect.py
  513. type: client
  514. alert: default
  515. - name: ml_user_xgboost_gpu_connect_master
  516. group: ML user tests
  517. working_dir: ml_user_tests
  518. legacy:
  519. test_name: xgboost_gpu_connect_master
  520. test_suite: ml_user_tests
  521. frequency: nightly
  522. team: ml
  523. cluster:
  524. cluster_env: xgboost/app_config_gpu_master.yaml
  525. cluster_compute: xgboost/tpl_gpu_small_scaling.yaml
  526. run:
  527. timeout: 1200
  528. script: python xgboost/train_gpu_connect.py
  529. type: client
  530. alert: default
  531. - name: ml_user_ray_lightning_user_test_latest
  532. group: ML user tests
  533. working_dir: ml_user_tests
  534. legacy:
  535. test_name: ray_lightning_user_test_latest
  536. test_suite: ml_user_tests
  537. frequency: nightly
  538. team: ml
  539. cluster:
  540. cluster_env: ray-lightning/app_config.yaml
  541. cluster_compute: ray-lightning/compute_tpl.yaml
  542. driver_setup: ray-lightning/driver_setup.sh
  543. run:
  544. timeout: 1200
  545. script: python ray-lightning/ray_lightning_user_test.py
  546. type: client
  547. alert: default
  548. - name: ml_user_ray_lightning_user_test_master
  549. group: ML user tests
  550. working_dir: ml_user_tests
  551. legacy:
  552. test_name: ray_lightning_user_test_master
  553. test_suite: ml_user_tests
  554. frequency: nightly
  555. team: ml
  556. cluster:
  557. cluster_env: ray-lightning/app_config_master.yaml
  558. cluster_compute: ray-lightning/compute_tpl.yaml
  559. driver_setup: ray-lightning/driver_setup.sh
  560. run:
  561. timeout: 1200
  562. script: python ray-lightning/ray_lightning_user_test.py
  563. type: client
  564. alert: default
  565. - name: ml_user_tune_rllib_connect_test
  566. group: ML user tests
  567. working_dir: ml_user_tests
  568. legacy:
  569. test_name: tune_rllib_connect_test
  570. test_suite: ml_user_tests
  571. frequency: nightly
  572. team: ml
  573. cluster:
  574. cluster_env: ../rllib_tests/app_config.yaml
  575. cluster_compute: tune_rllib/compute_tpl.yaml
  576. driver_setup: tune_rllib/driver_setup.sh
  577. run:
  578. timeout: 2000
  579. script: python tune_rllib/run_connect_tests.py
  580. type: client
  581. alert: default
  582. #######################
  583. # Tune cloud tests
  584. #######################
  585. - name: tune_cloud_aws_no_sync_down
  586. group: Tune cloud tests
  587. working_dir: tune_tests/cloud_tests
  588. stable: false
  589. legacy:
  590. test_name: aws_no_sync_down
  591. test_suite: tune_cloud_tests
  592. frequency: nightly
  593. team: ml
  594. cluster:
  595. cluster_env: app_config.yaml
  596. cluster_compute: tpl_aws_4x2.yaml
  597. run:
  598. timeout: 600
  599. script: python workloads/run_cloud_test.py no_sync_down
  600. wait_for_nodes:
  601. num_nodes: 4
  602. type: sdk_command
  603. file_manager: sdk
  604. alert: tune_tests
  605. - name: tune_cloud_aws_ssh_sync
  606. group: Tune cloud tests
  607. working_dir: tune_tests/cloud_tests
  608. stable: false
  609. legacy:
  610. test_name: aws_ssh_sync
  611. test_suite: tune_cloud_tests
  612. frequency: nightly
  613. team: ml
  614. cluster:
  615. cluster_env: app_config.yaml
  616. cluster_compute: tpl_aws_4x2.yaml
  617. run:
  618. timeout: 600
  619. script: python workloads/run_cloud_test.py ssh_sync
  620. wait_for_nodes:
  621. num_nodes: 4
  622. type: sdk_command
  623. file_manager: sdk
  624. alert: tune_tests
  625. - name: tune_cloud_aws_durable_upload
  626. group: Tune cloud tests
  627. working_dir: tune_tests/cloud_tests
  628. stable: false
  629. legacy:
  630. test_name: aws_durable_upload
  631. test_suite: tune_cloud_tests
  632. frequency: nightly
  633. team: ml
  634. cluster:
  635. cluster_env: app_config.yaml
  636. cluster_compute: tpl_aws_4x2.yaml
  637. run:
  638. timeout: 600
  639. script: python workloads/run_cloud_test.py durable_upload --bucket s3://tune-cloud-tests/durable_upload
  640. wait_for_nodes:
  641. num_nodes: 4
  642. type: sdk_command
  643. file_manager: sdk
  644. alert: tune_tests
  645. - name: tune_cloud_aws_durable_upload_rllib_str
  646. group: Tune cloud tests
  647. working_dir: tune_tests/cloud_tests
  648. stable: false
  649. legacy:
  650. test_name: aws_durable_upload_rllib_str
  651. test_suite: tune_cloud_tests
  652. frequency: nightly
  653. team: ml
  654. cluster:
  655. cluster_env: app_config_ml.yaml
  656. cluster_compute: tpl_aws_4x2.yaml
  657. run:
  658. timeout: 600
  659. script: python workloads/run_cloud_test.py durable_upload --trainable rllib_str
  660. --bucket s3://tune-cloud-tests/durable_upload_rllib_str
  661. wait_for_nodes:
  662. num_nodes: 4
  663. type: sdk_command
  664. file_manager: sdk
  665. alert: tune_tests
  666. - name: tune_cloud_aws_durable_upload_rllib_trainer
  667. group: Tune cloud tests
  668. working_dir: tune_tests/cloud_tests
  669. stable: false
  670. legacy:
  671. test_name: aws_durable_upload_rllib_trainer
  672. test_suite: tune_cloud_tests
  673. frequency: nightly
  674. team: ml
  675. cluster:
  676. cluster_env: app_config_ml.yaml
  677. cluster_compute: tpl_aws_4x2.yaml
  678. run:
  679. timeout: 600
  680. script: python workloads/run_cloud_test.py durable_upload --trainable rllib_trainer
  681. --bucket s3://tune-cloud-tests/durable_upload_rllib_trainer
  682. wait_for_nodes:
  683. num_nodes: 4
  684. type: sdk_command
  685. file_manager: sdk
  686. alert: tune_tests
  687. - name: tune_cloud_gcp_k8s_no_sync_down
  688. group: Tune cloud tests
  689. working_dir: tune_tests/cloud_tests
  690. stable: false
  691. legacy:
  692. test_name: gcp_k8s_no_sync_down
  693. test_suite: tune_cloud_tests
  694. frequency: nightly
  695. team: ml
  696. cluster:
  697. cluster_env: app_config.yaml
  698. cluster_compute: tpl_gcp_k8s_4x8.yaml
  699. cloud_id: cld_k8WcxPgjUtSE8RVmfZpTLuKM # anyscale_k8s_gcp_cloud
  700. run:
  701. timeout: 600
  702. script: python workloads/run_cloud_test.py no_sync_down --cpus-per-trial 8
  703. type: client
  704. wait_for_nodes:
  705. num_nodes: 4
  706. alert: tune_tests
  707. - name: tune_cloud_gcp_k8s_ssh_sync
  708. group: Tune cloud tests
  709. working_dir: tune_tests/cloud_tests
  710. stable: false
  711. legacy:
  712. test_name: gcp_k8s_ssh_sync
  713. test_suite: tune_cloud_tests
  714. frequency: nightly
  715. team: ml
  716. cluster:
  717. cluster_env: app_config.yaml
  718. cluster_compute: tpl_gcp_k8s_4x8.yaml
  719. cloud_id: cld_k8WcxPgjUtSE8RVmfZpTLuKM # anyscale_k8s_gcp_cloud
  720. run:
  721. timeout: 600
  722. script: python workloads/run_cloud_test.py ssh_sync --cpus-per-trial 8
  723. type: client
  724. wait_for_nodes:
  725. num_nodes: 4
  726. alert: tune_tests
  727. - name: tune_cloud_gcp_k8s_durable_upload
  728. group: Tune cloud tests
  729. working_dir: tune_tests/cloud_tests
  730. stable: false
  731. legacy:
  732. test_name: gcp_k8s_durable_upload
  733. test_suite: tune_cloud_tests
  734. frequency: nightly
  735. team: ml
  736. cluster:
  737. cluster_env: app_config.yaml
  738. cluster_compute: tpl_gcp_k8s_4x8.yaml
  739. cloud_id: cld_k8WcxPgjUtSE8RVmfZpTLuKM # anyscale_k8s_gcp_cloud
  740. run:
  741. timeout: 600
  742. script: python workloads/run_cloud_test.py durable_upload --cpus-per-trial 8 --bucket gs://tune-cloud-tests/durable_upload
  743. type: client
  744. wait_for_nodes:
  745. num_nodes: 4
  746. alert: tune_tests
  747. ########################
  748. # Tune scalability tests
  749. ########################
  750. - name: tune_scalability_bookkeeping_overhead
  751. group: Tune scalability tests
  752. working_dir: tune_tests/scalability_tests
  753. legacy:
  754. test_name: bookkeeping_overhead
  755. test_suite: tune_tests
  756. frequency: nightly
  757. team: ml
  758. cluster:
  759. cluster_env: app_config.yaml
  760. cluster_compute: tpl_1x16.yaml
  761. run:
  762. timeout: 1200
  763. script: python workloads/test_bookkeeping_overhead.py
  764. type: sdk_command
  765. file_manager: sdk
  766. alert: tune_tests
  767. - name: tune_scalability_durable_trainable
  768. group: Tune scalability tests
  769. working_dir: tune_tests/scalability_tests
  770. legacy:
  771. test_name: durable_trainable
  772. test_suite: tune_tests
  773. frequency: nightly
  774. team: ml
  775. cluster:
  776. cluster_env: app_config.yaml
  777. cluster_compute: tpl_16x2.yaml
  778. run:
  779. timeout: 900
  780. script: python workloads/test_durable_trainable.py --bucket tune-cloud-tests
  781. wait_for_nodes:
  782. num_nodes: 16
  783. type: sdk_command
  784. file_manager: sdk
  785. alert: tune_tests
  786. - name: tune_scalability_long_running_large_checkpoints
  787. group: Tune scalability tests
  788. working_dir: tune_tests/scalability_tests
  789. legacy:
  790. test_name: long_running_large_checkpoints
  791. test_suite: tune_tests
  792. frequency: weekly
  793. team: ml
  794. cluster:
  795. cluster_env: app_config.yaml
  796. cluster_compute: tpl_1x32_hd.yaml
  797. run:
  798. timeout: 86400
  799. script: python workloads/test_long_running_large_checkpoints.py
  800. long_running: true
  801. type: sdk_command
  802. file_manager: sdk
  803. smoke_test:
  804. frequency: nightly
  805. run:
  806. timeout: 3600
  807. alert: tune_tests
  808. - name: tune_scalability_network_overhead
  809. group: Tune scalability tests
  810. working_dir: tune_tests/scalability_tests
  811. legacy:
  812. test_name: network_overhead
  813. test_suite: tune_tests
  814. frequency: weekly
  815. team: ml
  816. cluster:
  817. cluster_env: app_config.yaml
  818. cluster_compute: tpl_100x2.yaml
  819. run:
  820. timeout: 900
  821. prepare_timeout: 1200
  822. script: python workloads/test_network_overhead.py
  823. wait_for_nodes:
  824. num_nodes: 100
  825. type: sdk_command
  826. file_manager: sdk
  827. smoke_test:
  828. frequency: nightly
  829. cluster:
  830. cluster_compute: tpl_20x2.yaml
  831. run:
  832. timeout: 400
  833. prepare_timeout: 600
  834. wait_for_nodes:
  835. num_nodes: 20
  836. alert: tune_tests
  837. - name: tune_scalability_result_throughput_cluster
  838. group: Tune scalability tests
  839. working_dir: tune_tests/scalability_tests
  840. legacy:
  841. test_name: result_throughput_cluster
  842. test_suite: tune_tests
  843. frequency: nightly
  844. team: ml
  845. cluster:
  846. cluster_env: app_config.yaml
  847. cluster_compute: tpl_16x64.yaml
  848. run:
  849. timeout: 600
  850. script: python workloads/test_result_throughput_cluster.py
  851. wait_for_nodes:
  852. num_nodes: 16
  853. type: sdk_command
  854. file_manager: sdk
  855. alert: tune_tests
  856. - name: tune_scalability_result_throughput_single_node
  857. group: Tune scalability tests
  858. working_dir: tune_tests/scalability_tests
  859. legacy:
  860. test_name: result_throughput_single_node
  861. test_suite: tune_tests
  862. frequency: nightly
  863. team: ml
  864. cluster:
  865. cluster_env: app_config.yaml
  866. cluster_compute: tpl_1x96.yaml
  867. run:
  868. timeout: 600
  869. script: python workloads/test_result_throughput_single_node.py
  870. type: sdk_command
  871. file_manager: sdk
  872. alert: tune_tests
  873. - name: tune_scalability_xgboost_sweep
  874. group: Tune scalability tests
  875. working_dir: tune_tests/scalability_tests
  876. legacy:
  877. test_name: xgboost_sweep
  878. test_suite: tune_tests
  879. frequency: weekly
  880. team: ml
  881. cluster:
  882. cluster_env: app_config_data.yaml
  883. cluster_compute: tpl_16x64.yaml
  884. run:
  885. timeout: 3600
  886. script: python workloads/test_xgboost_sweep.py
  887. wait_for_nodes:
  888. num_nodes: 16
  889. type: sdk_command
  890. file_manager: sdk
  891. alert: tune_tests
  892. ########################
  893. # Golden Notebook tests
  894. ########################
  895. - name: golden_notebook_dask_xgboost_test
  896. group: Golden Notebook tests
  897. working_dir: golden_notebook_tests
  898. legacy:
  899. test_name: dask_xgboost_test
  900. test_suite: golden_notebook_tests
  901. frequency: nightly
  902. team: ml
  903. cluster:
  904. cluster_env: dask_xgboost_app_config.yaml
  905. cluster_compute: compute_tpl.yaml
  906. run:
  907. timeout: 1800
  908. script: python workloads/dask_xgboost_test.py --num-actors 4 --cpus-per-actor 4 --num-actors-inference 16 --cpus-per-actor-inference 1
  909. type: client
  910. wait_for_nodes:
  911. num_nodes: 4
  912. alert: default
  913. - name: golden_notebook_modin_xgboost_test
  914. group: Golden Notebook tests
  915. working_dir: golden_notebook_tests
  916. legacy:
  917. test_name: modin_xgboost_test
  918. test_suite: golden_notebook_tests
  919. frequency: nightly
  920. team: ml
  921. cluster:
  922. cluster_env: modin_xgboost_app_config.yaml
  923. cluster_compute: compute_tpl.yaml
  924. run:
  925. timeout: 1800
  926. script: python workloads/modin_xgboost_test.py --num-actors 4 --cpus-per-actor 4 --num-actors-inference 16 --cpus-per-actor-inference 1
  927. type: client
  928. wait_for_nodes:
  929. num_nodes: 4
  930. alert: default
  931. - name: golden_notebook_torch_tune_serve_test
  932. group: Golden Notebook tests
  933. working_dir: golden_notebook_tests
  934. legacy:
  935. test_name: torch_tune_serve_test
  936. test_suite: golden_notebook_tests
  937. frequency: nightly
  938. team: ml
  939. cluster:
  940. cluster_env: torch_tune_serve_app_config.yaml
  941. cluster_compute: gpu_tpl.yaml
  942. run:
  943. timeout: 1800
  944. script: python workloads/torch_tune_serve_test.py
  945. type: client
  946. alert: default
  947. #######################
  948. # Long running tests
  949. #######################
  950. - name: long_running_actor_deaths
  951. group: Long running tests
  952. working_dir: long_running_tests
  953. legacy:
  954. test_name: actor_deaths
  955. test_suite: long_running_tests
  956. frequency: nightly
  957. team: core
  958. cluster:
  959. cluster_env: app_config.yaml
  960. cluster_compute: tpl_cpu_1.yaml
  961. run:
  962. timeout: 86400
  963. prepare: ray stop
  964. script: python workloads/actor_deaths.py
  965. long_running: true
  966. type: sdk_command
  967. file_manager: sdk
  968. smoke_test:
  969. frequency: disabled
  970. run:
  971. timeout: 3600
  972. alert: long_running_tests
  973. - name: long_running_apex
  974. group: Long running tests
  975. working_dir: long_running_tests
  976. legacy:
  977. test_name: apex
  978. test_suite: long_running_tests
  979. frequency: nightly
  980. team: ml
  981. cluster:
  982. cluster_env: ../rllib_tests/app_config.yaml
  983. cluster_compute: tpl_cpu_3.yaml
  984. run:
  985. timeout: 86400
  986. script: python workloads/apex.py
  987. long_running: true
  988. wait_for_nodes:
  989. num_nodes: 3
  990. type: sdk_command
  991. file_manager: sdk
  992. smoke_test:
  993. frequency: disabled
  994. run:
  995. timeout: 3600
  996. alert: long_running_tests
  997. - name: long_running_impala
  998. group: Long running tests
  999. working_dir: long_running_tests
  1000. legacy:
  1001. test_name: impala
  1002. test_suite: long_running_tests
  1003. frequency: nightly
  1004. team: ml
  1005. cluster:
  1006. cluster_env: app_config_np.yaml
  1007. cluster_compute: tpl_cpu_1_large.yaml
  1008. run:
  1009. timeout: 86400
  1010. script: python workloads/impala.py
  1011. long_running: true
  1012. type: sdk_command
  1013. file_manager: sdk
  1014. smoke_test:
  1015. frequency: disabled
  1016. run:
  1017. timeout: 3600
  1018. alert: long_running_tests
  1019. - name: long_running_many_actor_tasks
  1020. group: Long running tests
  1021. working_dir: long_running_tests
  1022. legacy:
  1023. test_name: many_actor_tasks
  1024. test_suite: long_running_tests
  1025. frequency: nightly
  1026. team: core
  1027. cluster:
  1028. cluster_env: app_config.yaml
  1029. cluster_compute: tpl_cpu_1.yaml
  1030. run:
  1031. timeout: 86400
  1032. prepare: ray stop
  1033. script: python workloads/many_actor_tasks.py
  1034. long_running: true
  1035. type: sdk_command
  1036. file_manager: sdk
  1037. smoke_test:
  1038. frequency: disabled
  1039. run:
  1040. timeout: 3600
  1041. alert: long_running_tests
  1042. - name: long_running_many_drivers
  1043. group: Long running tests
  1044. working_dir: long_running_tests
  1045. legacy:
  1046. test_name: many_drivers
  1047. test_suite: long_running_tests
  1048. frequency: nightly
  1049. team: core
  1050. cluster:
  1051. cluster_env: app_config.yaml
  1052. cluster_compute: tpl_cpu_1.yaml
  1053. run:
  1054. timeout: 86400
  1055. prepare: ray stop
  1056. script: python workloads/many_drivers.py --iteration-num=4000
  1057. long_running: true
  1058. type: sdk_command
  1059. file_manager: sdk
  1060. smoke_test:
  1061. frequency: disabled
  1062. run:
  1063. timeout: 3600
  1064. alert: long_running_tests
  1065. - name: long_running_many_ppo
  1066. group: Long running tests
  1067. working_dir: long_running_tests
  1068. legacy:
  1069. test_name: many_ppo
  1070. test_suite: long_running_tests
  1071. frequency: nightly
  1072. team: ml
  1073. cluster:
  1074. cluster_env: ../rllib_tests/app_config.yaml
  1075. cluster_compute: many_ppo.yaml
  1076. run:
  1077. timeout: 86400
  1078. script: python workloads/many_ppo.py
  1079. long_running: true
  1080. wait_for_nodes:
  1081. num_nodes: 1
  1082. type: sdk_command
  1083. file_manager: sdk
  1084. smoke_test:
  1085. frequency: disabled
  1086. run:
  1087. timeout: 3600
  1088. alert: long_running_tests
  1089. - name: long_running_many_tasks
  1090. group: Long running tests
  1091. working_dir: long_running_tests
  1092. legacy:
  1093. test_name: many_tasks
  1094. test_suite: long_running_tests
  1095. frequency: nightly
  1096. team: core
  1097. cluster:
  1098. cluster_env: app_config.yaml
  1099. cluster_compute: tpl_cpu_1.yaml
  1100. run:
  1101. timeout: 86400
  1102. prepare: ray stop
  1103. script: python workloads/many_tasks.py
  1104. long_running: true
  1105. type: sdk_command
  1106. file_manager: sdk
  1107. smoke_test:
  1108. frequency: disabled
  1109. run:
  1110. timeout: 3600
  1111. alert: long_running_tests
  1112. - name: long_running_many_tasks_serialized_ids
  1113. group: Long running tests
  1114. working_dir: long_running_tests
  1115. legacy:
  1116. test_name: many_tasks_serialized_ids
  1117. test_suite: long_running_tests
  1118. frequency: nightly
  1119. team: core
  1120. cluster:
  1121. cluster_env: app_config.yaml
  1122. cluster_compute: tpl_cpu_1.yaml
  1123. run:
  1124. timeout: 86400
  1125. prepare: ray stop
  1126. script: python workloads/many_tasks_serialized_ids.py
  1127. long_running: true
  1128. type: sdk_command
  1129. file_manager: sdk
  1130. smoke_test:
  1131. frequency: disabled
  1132. run:
  1133. timeout: 3600
  1134. alert: long_running_tests
  1135. - name: long_running_node_failures
  1136. group: Long running tests
  1137. working_dir: long_running_tests
  1138. legacy:
  1139. test_name: node_failures
  1140. test_suite: long_running_tests
  1141. frequency: nightly
  1142. team: core
  1143. cluster:
  1144. cluster_env: app_config.yaml
  1145. cluster_compute: tpl_cpu_1.yaml
  1146. run:
  1147. timeout: 86400
  1148. prepare: ray stop
  1149. script: python workloads/node_failures.py
  1150. long_running: true
  1151. type: sdk_command
  1152. file_manager: sdk
  1153. smoke_test:
  1154. frequency: disabled
  1155. run:
  1156. timeout: 3600
  1157. alert: long_running_tests
  1158. - name: long_running_pbt
  1159. group: Long running tests
  1160. working_dir: long_running_tests
  1161. legacy:
  1162. test_name: pbt
  1163. test_suite: long_running_tests
  1164. frequency: nightly
  1165. team: ml
  1166. cluster:
  1167. cluster_env: ../rllib_tests/app_config.yaml
  1168. cluster_compute: tpl_cpu_1.yaml
  1169. run:
  1170. timeout: 86400
  1171. prepare: ray stop
  1172. script: python workloads/pbt.py
  1173. long_running: true
  1174. type: sdk_command
  1175. file_manager: sdk
  1176. smoke_test:
  1177. frequency: disabled
  1178. run:
  1179. timeout: 3600
  1180. alert: long_running_tests
  1181. - name: long_running_serve
  1182. group: Long running tests
  1183. working_dir: long_running_tests
  1184. legacy:
  1185. test_name: serve
  1186. test_suite: long_running_tests
  1187. frequency: nightly
  1188. team: serve
  1189. cluster:
  1190. cluster_env: app_config.yaml
  1191. cluster_compute: tpl_cpu_1.yaml
  1192. run:
  1193. timeout: 86400
  1194. prepare: ray stop
  1195. script: python workloads/serve.py
  1196. long_running: true
  1197. type: sdk_command
  1198. file_manager: job
  1199. smoke_test:
  1200. frequency: disabled
  1201. run:
  1202. timeout: 3600
  1203. alert: long_running_tests
  1204. - name: long_running_serve_failure
  1205. group: Long running tests
  1206. working_dir: long_running_tests
  1207. stable: false
  1208. legacy:
  1209. test_name: serve_failure
  1210. test_suite: long_running_tests
  1211. frequency: nightly
  1212. team: serve
  1213. cluster:
  1214. cluster_env: app_config.yaml
  1215. cluster_compute: tpl_cpu_1.yaml
  1216. run:
  1217. timeout: 86400
  1218. prepare: ray stop
  1219. script: python workloads/serve_failure.py
  1220. long_running: true
  1221. type: sdk_command
  1222. file_manager: job
  1223. smoke_test:
  1224. frequency: disabled
  1225. run:
  1226. timeout: 600
  1227. alert: long_running_tests
  1228. - name: long_running_distributed_pytorch_pbt_failure
  1229. group: Long running tests
  1230. working_dir: long_running_distributed_tests
  1231. legacy:
  1232. test_name: pytorch_pbt_failure
  1233. test_suite: long_running_distributed
  1234. frequency: weekly
  1235. team: ml
  1236. cluster:
  1237. cluster_env: app_config.yaml
  1238. cluster_compute: compute_tpl.yaml
  1239. run:
  1240. timeout: 86400
  1241. script: python workloads/pytorch_pbt_failure.py
  1242. long_running: true
  1243. type: sdk_command
  1244. file_manager: job
  1245. smoke_test:
  1246. frequency: disabled
  1247. run:
  1248. timeout: 3600
  1249. alert: long_running_tests
  1250. ########################
  1251. # Jobs tests
  1252. ########################
  1253. - name: jobs_basic_local_working_dir
  1254. group: Jobs tests
  1255. working_dir: jobs_tests
  1256. legacy:
  1257. test_name: jobs_basic_local_working_dir
  1258. test_suite: jobs_tests
  1259. frequency: nightly
  1260. team: serve
  1261. cluster:
  1262. cluster_env: app_config.yaml
  1263. cluster_compute: compute_tpl_4_xlarge.yaml
  1264. run:
  1265. timeout: 600
  1266. script: python workloads/jobs_basic.py --working-dir "workloads"
  1267. wait_for_nodes:
  1268. num_nodes: 4
  1269. type: sdk_command
  1270. file_manager: job
  1271. alert: default
  1272. - name: jobs_basic_remote_working_dir
  1273. group: Jobs tests
  1274. working_dir: jobs_tests
  1275. legacy:
  1276. test_name: jobs_basic_remote_working_dir
  1277. test_suite: jobs_tests
  1278. frequency: nightly
  1279. team: serve
  1280. cluster:
  1281. cluster_env: app_config.yaml
  1282. cluster_compute: compute_tpl_4_xlarge.yaml
  1283. run:
  1284. timeout: 600
  1285. script: python workloads/jobs_basic.py --working-dir "https://github.com/anyscale/job-services-cuj-examples/archive/refs/heads/main.zip"
  1286. wait_for_nodes:
  1287. num_nodes: 4
  1288. type: sdk_command
  1289. file_manager: job
  1290. alert: default
  1291. ########################
  1292. # Runtime env tests
  1293. ########################
  1294. - name: runtime_env_rte_many_tasks_actors
  1295. group: Runtime env tests
  1296. working_dir: runtime_env_tests
  1297. legacy:
  1298. test_name: rte_many_tasks_actors
  1299. test_suite: runtime_env_tests
  1300. frequency: nightly
  1301. team: serve
  1302. cluster:
  1303. cluster_env: app_config.yaml
  1304. cluster_compute: rte_small.yaml
  1305. run:
  1306. timeout: 600
  1307. script: python workloads/rte_many_tasks_actors.py
  1308. wait_for_nodes:
  1309. num_nodes: 4
  1310. type: sdk_command
  1311. file_manager: job
  1312. alert: default
  1313. - name: runtime_env_wheel_urls
  1314. group: Runtime env tests
  1315. working_dir: runtime_env_tests
  1316. legacy:
  1317. test_name: wheel_urls
  1318. test_suite: runtime_env_tests
  1319. frequency: nightly
  1320. team: serve
  1321. cluster:
  1322. cluster_env: app_config.yaml
  1323. cluster_compute: rte_minimal.yaml
  1324. run:
  1325. timeout: 9000
  1326. script: python workloads/wheel_urls.py
  1327. wait_for_nodes:
  1328. num_nodes: 1
  1329. type: sdk_command
  1330. file_manager: job
  1331. alert: default
  1332. - name: runtime_env_rte_ray_client
  1333. group: Runtime env tests
  1334. working_dir: runtime_env_tests
  1335. legacy:
  1336. test_name: rte_ray_client
  1337. test_suite: runtime_env_tests
  1338. frequency: nightly
  1339. team: serve
  1340. cluster:
  1341. cluster_env: app_config.yaml
  1342. cluster_compute: rte_minimal.yaml
  1343. run:
  1344. timeout: 600
  1345. script: python workloads/rte_ray_client.py
  1346. wait_for_nodes:
  1347. num_nodes: 1
  1348. type: client
  1349. alert: default
  1350. ########################
  1351. # Serve tests
  1352. ########################
  1353. - name: serve_single_deployment_1k_noop_replica
  1354. group: Serve tests
  1355. working_dir: serve_tests
  1356. legacy:
  1357. test_name: single_deployment_1k_noop_replica
  1358. test_suite: serve_tests
  1359. frequency: nightly
  1360. team: serve
  1361. cluster:
  1362. cluster_env: app_config.yaml
  1363. cluster_compute: compute_tpl_32_cpu.yaml
  1364. run:
  1365. timeout: 7200
  1366. long_running: false
  1367. script: python workloads/single_deployment_1k_noop_replica.py
  1368. type: sdk_command
  1369. file_manager: job
  1370. alert: default
  1371. - name: serve_multi_deployment_1k_noop_replica
  1372. group: Serve tests
  1373. working_dir: serve_tests
  1374. legacy:
  1375. test_name: multi_deployment_1k_noop_replica
  1376. test_suite: serve_tests
  1377. frequency: nightly
  1378. team: serve
  1379. cluster:
  1380. cluster_env: app_config.yaml
  1381. cluster_compute: compute_tpl_32_cpu.yaml
  1382. run:
  1383. timeout: 7200
  1384. long_running: false
  1385. script: python workloads/multi_deployment_1k_noop_replica.py
  1386. type: sdk_command
  1387. file_manager: job
  1388. alert: default
  1389. - name: serve_autoscaling_single_deployment
  1390. group: Serve tests
  1391. working_dir: serve_tests
  1392. legacy:
  1393. test_name: autoscaling_single_deployment
  1394. test_suite: serve_tests
  1395. frequency: nightly
  1396. team: serve
  1397. cluster:
  1398. cluster_env: app_config.yaml
  1399. cluster_compute: compute_tpl_8_cpu_autoscaling.yaml
  1400. run:
  1401. timeout: 7200
  1402. long_running: false
  1403. script: python workloads/autoscaling_single_deployment.py
  1404. type: sdk_command
  1405. file_manager: job
  1406. alert: default
  1407. - name: serve_autoscaling_multi_deployment
  1408. group: Serve tests
  1409. working_dir: serve_tests
  1410. legacy:
  1411. test_name: autoscaling_multi_deployment
  1412. test_suite: serve_tests
  1413. frequency: nightly
  1414. team: serve
  1415. cluster:
  1416. cluster_env: app_config.yaml
  1417. cluster_compute: compute_tpl_8_cpu_autoscaling.yaml
  1418. run:
  1419. timeout: 7200
  1420. long_running: false
  1421. script: python workloads/autoscaling_multi_deployment.py
  1422. type: sdk_command
  1423. file_manager: job
  1424. alert: default
  1425. - name: serve_serve_micro_benchmark
  1426. group: Serve tests
  1427. working_dir: serve_tests
  1428. legacy:
  1429. test_name: serve_micro_benchmark
  1430. test_suite: serve_tests
  1431. frequency: nightly
  1432. team: serve
  1433. cluster:
  1434. cluster_env: app_config.yaml
  1435. cluster_compute: compute_tpl_single_node.yaml
  1436. run:
  1437. timeout: 7200
  1438. long_running: false
  1439. script: python workloads/serve_micro_benchmark.py
  1440. type: sdk_command
  1441. file_manager: job
  1442. alert: default
  1443. - name: serve_serve_micro_benchmark_k8s
  1444. group: Serve tests
  1445. working_dir: serve_tests
  1446. legacy:
  1447. test_name: serve_micro_benchmark_k8s
  1448. test_suite: serve_tests
  1449. # TODO(architkulkarni) Reenable after K8s migration. Currently failing
  1450. frequency: disabled
  1451. team: serve
  1452. cluster:
  1453. cluster_env: app_config.yaml
  1454. cluster_compute: compute_tpl_single_node_k8s.yaml
  1455. run:
  1456. timeout: 7200
  1457. long_running: false
  1458. script: python workloads/serve_micro_benchmark.py
  1459. type: sdk_command
  1460. file_manager: job
  1461. alert: default
  1462. - name: serve_serve_cluster_fault_tolerance
  1463. group: Serve tests
  1464. working_dir: serve_tests
  1465. legacy:
  1466. test_name: serve_cluster_fault_tolerance
  1467. test_suite: serve_tests
  1468. frequency: nightly
  1469. team: serve
  1470. cluster:
  1471. cluster_env: app_config.yaml
  1472. cluster_compute: compute_tpl_single_node.yaml
  1473. run:
  1474. timeout: 7200
  1475. long_running: false
  1476. script: python workloads/serve_cluster_fault_tolerance.py
  1477. type: sdk_command
  1478. file_manager: job
  1479. alert: default
  1480. - name: deployment_graph_long_chain
  1481. group: Serve tests
  1482. working_dir: serve_tests
  1483. legacy:
  1484. test_name: deployment_graph_long_chain
  1485. test_suite: serve_tests
  1486. frequency: nightly
  1487. team: serve
  1488. cluster:
  1489. cluster_env: app_config.yaml
  1490. cluster_compute: compute_tpl_single_node_32_cpu.yaml
  1491. run:
  1492. timeout: 3600
  1493. long_running: false
  1494. script: python workloads/deployment_graph_long_chain.py --chain-length=10 --num-clients=4 --local-test=False
  1495. type: sdk_command
  1496. file_manager: job
  1497. alert: default
  1498. stable: False
  1499. - name: deployment_graph_wide_ensemble
  1500. group: Serve tests
  1501. working_dir: serve_tests
  1502. legacy:
  1503. test_name: deployment_graph_wide_ensemble
  1504. test_suite: serve_tests
  1505. frequency: nightly
  1506. team: serve
  1507. cluster:
  1508. cluster_env: app_config.yaml
  1509. cluster_compute: compute_tpl_single_node_32_cpu.yaml
  1510. run:
  1511. timeout: 3600
  1512. long_running: false
  1513. script: python workloads/deployment_graph_wide_ensemble.py --fanout-degree=10 --num-clients=4 --local-test=False
  1514. type: sdk_command
  1515. file_manager: job
  1516. alert: default
  1517. stable: False
  1518. - name: serve_handle_long_chain
  1519. group: Serve tests
  1520. working_dir: serve_tests
  1521. legacy:
  1522. test_name: serve_handle_long_chain
  1523. test_suite: serve_tests
  1524. frequency: nightly
  1525. team: serve
  1526. cluster:
  1527. cluster_env: app_config.yaml
  1528. cluster_compute: compute_tpl_single_node_32_cpu.yaml
  1529. run:
  1530. timeout: 3600
  1531. long_running: false
  1532. script: python workloads/serve_handle_long_chain.py --chain-length=10 --num-clients=4 --local-test=False
  1533. type: sdk_command
  1534. file_manager: job
  1535. alert: default
  1536. stable: False
  1537. - name: serve_handle_wide_ensemble
  1538. group: Serve tests
  1539. working_dir: serve_tests
  1540. legacy:
  1541. test_name: serve_handle_wide_ensemble
  1542. test_suite: serve_tests
  1543. frequency: nightly
  1544. team: serve
  1545. cluster:
  1546. cluster_env: app_config.yaml
  1547. cluster_compute: compute_tpl_single_node_32_cpu.yaml
  1548. run:
  1549. timeout: 3600
  1550. long_running: false
  1551. script: python workloads/serve_handle_wide_ensemble.py --fanout-degree=10 --num-clients=4 --local-test=False
  1552. type: sdk_command
  1553. file_manager: job
  1554. alert: default
  1555. stable: False
  1556. ########################
  1557. # Train tests
  1558. ########################
  1559. - name: train_horovod_multi_node_test
  1560. group: Train tests
  1561. working_dir: train_tests/horovod
  1562. frequency: nightly
  1563. team: ml
  1564. cluster:
  1565. cluster_env: app_config.yaml
  1566. cluster_compute: compute_tpl.yaml
  1567. run:
  1568. timeout: 3000
  1569. script: python train_horovod_multi_node_test.py
  1570. wait_for_nodes:
  1571. num_nodes: 2
  1572. type: sdk_command
  1573. file_manager: job
  1574. alert: default
  1575. ########################
  1576. # RLlib tests
  1577. ########################
  1578. - name: rllib_learning_tests
  1579. group: RLlib tests
  1580. working_dir: rllib_tests
  1581. legacy:
  1582. test_name: learning_tests
  1583. test_suite: rllib_tests
  1584. frequency: nightly
  1585. team: ml
  1586. cluster:
  1587. cluster_env: app_config.yaml
  1588. cluster_compute: 8gpus_64cpus.yaml
  1589. run:
  1590. timeout: 14400
  1591. script: python learning_tests/run.py
  1592. type: sdk_command
  1593. file_manager: job
  1594. alert: default
  1595. - name: rllib_multi_gpu_learning_tests
  1596. group: RLlib tests
  1597. working_dir: rllib_tests
  1598. legacy:
  1599. test_name: multi_gpu_learning_tests
  1600. test_suite: rllib_tests
  1601. frequency: nightly
  1602. team: ml
  1603. cluster:
  1604. cluster_env: app_config.yaml
  1605. cluster_compute: 8gpus_96cpus.yaml
  1606. run:
  1607. timeout: 7200
  1608. script: python multi_gpu_learning_tests/run.py
  1609. type: sdk_command
  1610. file_manager: job
  1611. alert: default
  1612. - name: rllib_multi_gpu_with_lstm_learning_tests
  1613. group: RLlib tests
  1614. working_dir: rllib_tests
  1615. legacy:
  1616. test_name: multi_gpu_with_lstm_learning_tests
  1617. test_suite: rllib_tests
  1618. frequency: nightly
  1619. team: ml
  1620. cluster:
  1621. cluster_env: app_config.yaml
  1622. cluster_compute: 8gpus_96cpus.yaml
  1623. run:
  1624. timeout: 7200
  1625. script: python multi_gpu_with_lstm_learning_tests/run.py
  1626. type: sdk_command
  1627. file_manager: job
  1628. alert: default
  1629. - name: rllib_multi_gpu_with_attention_learning_tests
  1630. group: RLlib tests
  1631. working_dir: rllib_tests
  1632. legacy:
  1633. test_name: multi_gpu_with_attention_learning_tests
  1634. test_suite: rllib_tests
  1635. frequency: nightly
  1636. team: ml
  1637. cluster:
  1638. cluster_env: app_config.yaml
  1639. cluster_compute: 8gpus_96cpus.yaml
  1640. run:
  1641. timeout: 7200
  1642. script: python multi_gpu_with_attention_learning_tests/run.py
  1643. type: sdk_command
  1644. file_manager: job
  1645. alert: default
  1646. - name: rllib_stress_tests
  1647. group: RLlib tests
  1648. working_dir: rllib_tests
  1649. legacy:
  1650. test_name: stress_tests
  1651. test_suite: rllib_tests
  1652. frequency: weekly
  1653. team: ml
  1654. cluster:
  1655. cluster_env: app_config.yaml
  1656. cluster_compute: 4gpus_544_cpus.yaml
  1657. run:
  1658. timeout: 5400
  1659. script: python stress_tests/run_stress_tests.py
  1660. wait_for_nodes:
  1661. num_nodes: 6
  1662. type: sdk_command
  1663. file_manager: job
  1664. smoke_test:
  1665. frequency: nightly
  1666. run:
  1667. timeout: 2000
  1668. alert: default
  1669. ########################
  1670. # Core Nightly Tests
  1671. ########################
  1672. - name: shuffle_10gb
  1673. group: core-multi-test
  1674. team: core
  1675. frequency: multi
  1676. working_dir: nightly_tests
  1677. legacy:
  1678. test_name: shuffle_10gb
  1679. test_suite: nightly_tests
  1680. cluster:
  1681. cluster_env: shuffle/shuffle_app_config.yaml
  1682. cluster_compute: shuffle/shuffle_compute_single.yaml
  1683. run:
  1684. timeout: 3000
  1685. script: python shuffle/shuffle_test.py --num-partitions=50 --partition-size=200e6
  1686. type: sdk_command
  1687. file_manager: sdk
  1688. - name: shuffle_50gb
  1689. group: core-multi-test
  1690. working_dir: nightly_tests
  1691. legacy:
  1692. test_name: shuffle_50gb
  1693. test_suite: nightly_tests
  1694. frequency: multi
  1695. team: core
  1696. cluster:
  1697. cluster_env: shuffle/shuffle_app_config.yaml
  1698. cluster_compute: shuffle/shuffle_compute_single.yaml
  1699. run:
  1700. timeout: 3000
  1701. script: python shuffle/shuffle_test.py --num-partitions=50 --partition-size=1e9
  1702. type: sdk_command
  1703. file_manager: sdk
  1704. - name: shuffle_50gb_large_partition
  1705. group: core-multi-test
  1706. working_dir: nightly_tests
  1707. legacy:
  1708. test_name: shuffle_50gb_large_partition
  1709. test_suite: nightly_tests
  1710. frequency: multi
  1711. team: core
  1712. cluster:
  1713. cluster_env: shuffle/shuffle_app_config.yaml
  1714. cluster_compute: shuffle/shuffle_compute_single.yaml
  1715. run:
  1716. timeout: 3000
  1717. script: python shuffle/shuffle_test.py --num-partitions=500 --partition-size=100e6
  1718. type: sdk_command
  1719. file_manager: sdk
  1720. - name: shuffle_100gb
  1721. group: core-multi-test
  1722. working_dir: nightly_tests
  1723. legacy:
  1724. test_name: shuffle_100gb
  1725. test_suite: nightly_tests
  1726. frequency: multi
  1727. team: core
  1728. cluster:
  1729. cluster_env: shuffle/shuffle_app_config.yaml
  1730. cluster_compute: shuffle/shuffle_compute_multi.yaml
  1731. run:
  1732. timeout: 3000
  1733. script: python shuffle/shuffle_test.py --num-partitions=200 --partition-size=500e6
  1734. wait_for_nodes:
  1735. num_nodes: 4
  1736. type: sdk_command
  1737. file_manager: sdk
  1738. - name: non_streaming_shuffle_100gb
  1739. group: core-multi-test
  1740. working_dir: nightly_tests
  1741. legacy:
  1742. test_name: non_streaming_shuffle_100gb
  1743. test_suite: nightly_tests
  1744. frequency: multi
  1745. team: core
  1746. cluster:
  1747. cluster_env: shuffle/shuffle_app_config.yaml
  1748. cluster_compute: shuffle/shuffle_compute_multi.yaml
  1749. run:
  1750. timeout: 3000
  1751. script: python shuffle/shuffle_test.py --num-partitions=200 --partition-size=500e6
  1752. --no-streaming
  1753. wait_for_nodes:
  1754. num_nodes: 4
  1755. type: sdk_command
  1756. file_manager: sdk
  1757. - name: non_streaming_shuffle_50gb_large_partition
  1758. group: core-multi-test
  1759. working_dir: nightly_tests
  1760. legacy:
  1761. test_name: non_streaming_shuffle_50gb_large_partition
  1762. test_suite: nightly_tests
  1763. frequency: multi
  1764. team: core
  1765. cluster:
  1766. cluster_env: shuffle/shuffle_app_config.yaml
  1767. cluster_compute: shuffle/shuffle_compute_single.yaml
  1768. run:
  1769. timeout: 3000
  1770. script: python shuffle/shuffle_test.py --num-partitions=500 --partition-size=100e6
  1771. --no-streaming
  1772. type: sdk_command
  1773. file_manager: sdk
  1774. - name: non_streaming_shuffle_50gb
  1775. group: core-multi-test
  1776. working_dir: nightly_tests
  1777. legacy:
  1778. test_name: non_streaming_shuffle_50gb
  1779. test_suite: nightly_tests
  1780. frequency: multi
  1781. team: core
  1782. cluster:
  1783. cluster_env: shuffle/shuffle_app_config.yaml
  1784. cluster_compute: shuffle/shuffle_compute_single.yaml
  1785. run:
  1786. timeout: 3000
  1787. script: python shuffle/shuffle_test.py --num-partitions=50 --partition-size=1e9
  1788. --no-streaming
  1789. type: sdk_command
  1790. file_manager: sdk
  1791. - name: stress_test_placement_group
  1792. group: core-multi-test
  1793. working_dir: nightly_tests
  1794. legacy:
  1795. test_name: stress_test_placement_group
  1796. test_suite: nightly_tests
  1797. frequency: multi
  1798. team: core
  1799. cluster:
  1800. cluster_env: stress_tests/stress_tests_app_config.yaml
  1801. cluster_compute: stress_tests/placement_group_tests_compute.yaml
  1802. run:
  1803. timeout: 7200
  1804. script: python stress_tests/test_placement_group.py
  1805. type: sdk_command
  1806. file_manager: sdk
  1807. - name: shuffle_1tb_1000_partition
  1808. group: core-multi-test
  1809. working_dir: nightly_tests
  1810. legacy:
  1811. test_name: shuffle_1tb_1000_partition
  1812. test_suite: nightly_tests
  1813. frequency: nightly
  1814. team: core
  1815. cluster:
  1816. cluster_env: shuffle/shuffle_app_config.yaml
  1817. cluster_compute: shuffle/shuffle_compute_large_scale.yaml
  1818. run:
  1819. timeout: 3000
  1820. script: python shuffle/shuffle_test.py --num-partitions=1000 --partition-size=1e9
  1821. wait_for_nodes:
  1822. num_nodes: 20
  1823. type: sdk_command
  1824. file_manager: sdk
  1825. - name: non_streaming_shuffle_1tb_1000_partition
  1826. group: core-multi-test
  1827. working_dir: nightly_tests
  1828. legacy:
  1829. test_name: non_streaming_shuffle_1tb_1000_partition
  1830. test_suite: nightly_tests
  1831. frequency: nightly
  1832. team: core
  1833. cluster:
  1834. cluster_env: shuffle/shuffle_app_config.yaml
  1835. cluster_compute: shuffle/shuffle_compute_large_scale.yaml
  1836. run:
  1837. timeout: 3000
  1838. script: python shuffle/shuffle_test.py --num-partitions=1000 --partition-size=1e9
  1839. --no-streaming
  1840. wait_for_nodes:
  1841. num_nodes: 20
  1842. type: sdk_command
  1843. file_manager: sdk
  1844. - name: shuffle_1tb_5000_partitions
  1845. group: core-multi-test
  1846. working_dir: nightly_tests
  1847. legacy:
  1848. test_name: shuffle_1tb_5000_partitions
  1849. test_suite: nightly_tests
  1850. frequency: nightly
  1851. team: core
  1852. cluster:
  1853. cluster_env: shuffle/shuffle_app_config.yaml
  1854. cluster_compute: shuffle/shuffle_compute_large_scale.yaml
  1855. run:
  1856. timeout: 9000
  1857. script: python shuffle/shuffle_test.py --num-partitions=5000 --partition-size=200e6
  1858. wait_for_nodes:
  1859. num_nodes: 20
  1860. type: sdk_command
  1861. file_manager: sdk
  1862. - name: decision_tree_autoscaling
  1863. group: core-multi-test
  1864. working_dir: nightly_tests
  1865. legacy:
  1866. test_name: decision_tree_autoscaling
  1867. test_suite: nightly_tests
  1868. frequency: multi
  1869. team: core
  1870. cluster:
  1871. cluster_env: decision_tree/decision_tree_app_config.yaml
  1872. cluster_compute: decision_tree/autoscaling_compute.yaml
  1873. run:
  1874. timeout: 3000
  1875. script: python decision_tree/cart_with_tree.py
  1876. type: sdk_command
  1877. file_manager: sdk
  1878. - name: decision_tree_autoscaling_20_runs
  1879. group: core-multi-test
  1880. working_dir: nightly_tests
  1881. legacy:
  1882. test_name: decision_tree_autoscaling_20_runs
  1883. test_suite: nightly_tests
  1884. frequency: multi
  1885. team: core
  1886. cluster:
  1887. cluster_env: decision_tree/decision_tree_app_config.yaml
  1888. cluster_compute: decision_tree/autoscaling_compute.yaml
  1889. run:
  1890. timeout: 9600
  1891. script: python decision_tree/cart_with_tree.py --concurrency=20
  1892. type: sdk_command
  1893. file_manager: sdk
  1894. - name: autoscaling_shuffle_1tb_1000_partitions
  1895. group: core-multi-test
  1896. working_dir: nightly_tests
  1897. legacy:
  1898. test_name: autoscaling_shuffle_1tb_1000_partitions
  1899. test_suite: nightly_tests
  1900. frequency: multi
  1901. team: core
  1902. cluster:
  1903. cluster_env: shuffle/shuffle_app_config.yaml
  1904. cluster_compute: shuffle/shuffle_compute_autoscaling.yaml
  1905. run:
  1906. timeout: 4000
  1907. script: python shuffle/shuffle_test.py --num-partitions=1000 --partition-size=1e9
  1908. --no-streaming
  1909. type: sdk_command
  1910. file_manager: sdk
  1911. - name: pg_long_running_performance_test
  1912. group: core-multi-test
  1913. working_dir: nightly_tests
  1914. legacy:
  1915. test_name: pg_long_running_performance_test
  1916. test_suite: nightly_tests
  1917. frequency: multi
  1918. team: core
  1919. cluster:
  1920. cluster_env: placement_group_tests/app_config.yaml
  1921. cluster_compute: placement_group_tests/long_running_test_compute.yaml
  1922. run:
  1923. timeout: 3600
  1924. script: python placement_group_tests/long_running_performance_test.py --num-stages
  1925. 2000
  1926. wait_for_nodes:
  1927. num_nodes: 2
  1928. type: sdk_command
  1929. file_manager: sdk
  1930. - name: microbenchmark
  1931. group: core-daily-test
  1932. team: core
  1933. frequency: nightly
  1934. working_dir: microbenchmark
  1935. python: "3.7"
  1936. legacy:
  1937. test_name: microbenchmark
  1938. test_suite: microbenchmark
  1939. cluster:
  1940. cluster_env: app_config.yaml
  1941. cluster_compute: tpl_64.yaml
  1942. run:
  1943. timeout: 1800
  1944. script: OMP_NUM_THREADS=64 RAY_ADDRESS= python run_microbenchmark.py
  1945. - name: microbenchmark_38
  1946. group: core-daily-test
  1947. team: core
  1948. frequency: nightly
  1949. working_dir: microbenchmark
  1950. python: "3.8"
  1951. cluster:
  1952. cluster_env: app_config.yaml
  1953. cluster_compute: tpl_64.yaml
  1954. run:
  1955. timeout: 1800
  1956. script: OMP_NUM_THREADS=64 RAY_ADDRESS= python run_microbenchmark.py
  1957. - name: dask_on_ray_10gb_sort
  1958. group: core-daily-test
  1959. working_dir: nightly_tests
  1960. legacy:
  1961. test_name: dask_on_ray_10gb_sort
  1962. test_suite: nightly_tests
  1963. frequency: nightly
  1964. team: core
  1965. cluster:
  1966. cluster_env: dask_on_ray/dask_on_ray_app_config.yaml
  1967. cluster_compute: dask_on_ray/dask_on_ray_sort_compute_template.yaml
  1968. run:
  1969. timeout: 7200
  1970. script: python dask_on_ray/dask_on_ray_sort.py --nbytes 10_000_000_000 --npartitions
  1971. 50 --num-nodes 1 --ray --data-dir /tmp/ray --file-path /tmp/ray
  1972. type: sdk_command
  1973. file_manager: sdk
  1974. - name: dask_on_ray_100gb_sort
  1975. group: core-daily-test
  1976. working_dir: nightly_tests
  1977. legacy:
  1978. test_name: dask_on_ray_100gb_sort
  1979. test_suite: nightly_tests
  1980. frequency: nightly
  1981. team: core
  1982. cluster:
  1983. cluster_env: dask_on_ray/dask_on_ray_app_config.yaml
  1984. cluster_compute: dask_on_ray/dask_on_ray_sort_compute_template.yaml
  1985. run:
  1986. timeout: 7200
  1987. script: python dask_on_ray/dask_on_ray_sort.py --nbytes 100_000_000_000 --npartitions
  1988. 200 --num-nodes 1 --ray --data-dir /tmp/ray --file-path /tmp/ray
  1989. type: sdk_command
  1990. file_manager: sdk
  1991. - name: dask_on_ray_large_scale_test_no_spilling
  1992. group: core-daily-test
  1993. working_dir: nightly_tests
  1994. legacy:
  1995. test_name: dask_on_ray_large_scale_test_no_spilling
  1996. test_suite: nightly_tests
  1997. frequency: nightly
  1998. team: core
  1999. cluster:
  2000. cluster_env: dask_on_ray/large_scale_dask_on_ray_app_config.yaml
  2001. cluster_compute: dask_on_ray/dask_on_ray_stress_compute.yaml
  2002. run:
  2003. timeout: 7200
  2004. script: python dask_on_ray/large_scale_test.py --num_workers 20 --worker_obj_store_size_in_gb
  2005. 20 --error_rate 0 --data_save_path /tmp/ray
  2006. wait_for_nodes:
  2007. num_nodes: 21
  2008. type: sdk_command
  2009. file_manager: sdk
  2010. smoke_test:
  2011. frequency: multi
  2012. cluster:
  2013. app_config: dask_on_ray/large_scale_dask_on_ray_app_config.yaml
  2014. cluster_compute: dask_on_ray/large_scale_dask_on_ray_compute_template.yaml
  2015. run:
  2016. timeout: 7200
  2017. script: python dask_on_ray/large_scale_test.py --num_workers 4 --worker_obj_store_size_in_gb
  2018. 20 --error_rate 0 --data_save_path /tmp/ray
  2019. wait_for_nodes:
  2020. num_nodes: 5
  2021. - name: dask_on_ray_large_scale_test_spilling
  2022. group: core-daily-test
  2023. working_dir: nightly_tests
  2024. legacy:
  2025. test_name: dask_on_ray_large_scale_test_spilling
  2026. test_suite: nightly_tests
  2027. frequency: nightly
  2028. team: core
  2029. cluster:
  2030. cluster_env: dask_on_ray/large_scale_dask_on_ray_app_config.yaml
  2031. cluster_compute: dask_on_ray/dask_on_ray_stress_compute.yaml
  2032. run:
  2033. timeout: 7200
  2034. script: python dask_on_ray/large_scale_test.py --num_workers 150 --worker_obj_store_size_in_gb
  2035. 70 --error_rate 0 --data_save_path /tmp/ray
  2036. wait_for_nodes:
  2037. num_nodes: 21
  2038. type: sdk_command
  2039. file_manager: sdk
  2040. smoke_test:
  2041. frequency: multi
  2042. cluster:
  2043. app_config: dask_on_ray/large_scale_dask_on_ray_app_config.yaml
  2044. cluster_compute: dask_on_ray/large_scale_dask_on_ray_compute_template.yaml
  2045. run:
  2046. timeout: 7200
  2047. script: python dask_on_ray/large_scale_test.py --num_workers 32 --worker_obj_store_size_in_gb
  2048. 70 --error_rate 0 --data_save_path /tmp/ray
  2049. wait_for_nodes:
  2050. num_nodes: 5
  2051. - name: stress_test_many_tasks
  2052. group: core-daily-test
  2053. working_dir: nightly_tests
  2054. legacy:
  2055. test_name: stress_test_many_tasks
  2056. test_suite: nightly_tests
  2057. frequency: nightly
  2058. team: core
  2059. cluster:
  2060. cluster_env: stress_tests/stress_tests_app_config.yaml
  2061. cluster_compute: stress_tests/stress_tests_compute.yaml
  2062. run:
  2063. timeout: 7200
  2064. script: python stress_tests/test_many_tasks.py
  2065. type: sdk_command
  2066. file_manager: sdk
  2067. smoke_test:
  2068. frequency: multi
  2069. cluster:
  2070. app_config: stress_tests/stress_tests_app_config.yaml
  2071. cluster_compute: stress_tests/smoke_test_compute.yaml
  2072. run:
  2073. timeout: 3600
  2074. script: python stress_tests/test_many_tasks.py --num-nodes=4 --smoke-test
  2075. - name: stress_test_dead_actors
  2076. group: core-daily-test
  2077. working_dir: nightly_tests
  2078. legacy:
  2079. test_name: stress_test_dead_actors
  2080. test_suite: nightly_tests
  2081. frequency: nightly
  2082. team: core
  2083. cluster:
  2084. cluster_env: stress_tests/stress_tests_app_config.yaml
  2085. cluster_compute: stress_tests/stress_tests_compute.yaml
  2086. run:
  2087. timeout: 7200
  2088. script: python stress_tests/test_dead_actors.py
  2089. type: sdk_command
  2090. file_manager: sdk
  2091. smoke_test:
  2092. frequency: multi
  2093. cluster:
  2094. app_config: stress_tests/stress_tests_app_config.yaml
  2095. cluster_compute: stress_tests/smoke_test_compute.yaml
  2096. run:
  2097. timeout: 3600
  2098. script: python stress_tests/test_dead_actors.py --num-nodes=4 --num-parents=3
  2099. --num-children=3
  2100. # The full test is not stable, so run the smoke test only.
  2101. # See https://github.com/ray-project/ray/issues/23244.
  2102. - name: threaded_actors_stress_test
  2103. group: core-daily-test
  2104. working_dir: nightly_tests
  2105. legacy:
  2106. test_name: threaded_actors_stress_test
  2107. test_suite: nightly_tests
  2108. frequency: nightly
  2109. team: core
  2110. cluster:
  2111. cluster_env: stress_tests/stress_tests_app_config.yaml
  2112. cluster_compute: stress_tests/smoke_test_compute.yaml
  2113. run:
  2114. timeout: 3600
  2115. script: python stress_tests/test_threaded_actors.py --test-runtime 1800 --kill-interval_s
  2116. 30
  2117. wait_for_nodes:
  2118. num_nodes: 5
  2119. # - name: threaded_actors_stress_test
  2120. # group: core-daily-test
  2121. # working_dir: nightly_tests
  2122. # legacy:
  2123. # test_name: threaded_actors_stress_test
  2124. # test_suite: nightly_tests
  2125. #
  2126. # frequency: nightly
  2127. # team: core
  2128. # cluster:
  2129. # cluster_env: stress_tests/stress_tests_app_config.yaml
  2130. # cluster_compute: stress_tests/stress_test_threaded_actor_compute.yaml
  2131. #
  2132. # run:
  2133. # timeout: 7200
  2134. # script: python stress_tests/test_threaded_actors.py --test-runtime 3600 --kill-interval_s
  2135. # 60
  2136. #
  2137. # wait_for_nodes:
  2138. # num_nodes: 201
  2139. # timeout: 600
  2140. #
  2141. # type: sdk_command
  2142. # file_manager: sdk
  2143. #
  2144. # smoke_test:
  2145. # frequency: nightly
  2146. # cluster:
  2147. # app_config: stress_tests/stress_tests_app_config.yaml
  2148. # cluster_compute: stress_tests/smoke_test_compute.yaml
  2149. #
  2150. # run:
  2151. # timeout: 3600
  2152. # script: python stress_tests/test_threaded_actors.py --test-runtime 1800 --kill-interval_s
  2153. # 30
  2154. #
  2155. # wait_for_nodes:
  2156. # num_nodes: 5
  2157. # timeout: 600
  2158. - name: dask_on_ray_1tb_sort
  2159. group: core-daily-test
  2160. working_dir: nightly_tests
  2161. legacy:
  2162. test_name: dask_on_ray_1tb_sort
  2163. test_suite: nightly_tests
  2164. frequency: nightly
  2165. team: core
  2166. cluster:
  2167. cluster_env: dask_on_ray/dask_on_ray_app_config.yaml
  2168. cluster_compute: dask_on_ray/1tb_sort_compute.yaml
  2169. run:
  2170. timeout: 7200
  2171. script: python dask_on_ray/dask_on_ray_sort.py --nbytes 1_000_000_000_000 --npartitions
  2172. 1000 --num-nodes 31 --ray --data-dir /tmp/ray --s3-bucket core-nightly-test
  2173. wait_for_nodes:
  2174. num_nodes: 32
  2175. type: sdk_command
  2176. file_manager: sdk
  2177. - name: many_nodes_actor_test
  2178. group: core-daily-test
  2179. working_dir: nightly_tests
  2180. legacy:
  2181. test_name: many_nodes_actor_test
  2182. test_suite: nightly_tests
  2183. frequency: nightly
  2184. team: core
  2185. cluster:
  2186. cluster_env: many_nodes_tests/app_config.yaml
  2187. cluster_compute: many_nodes_tests/compute_config.yaml
  2188. run:
  2189. timeout: 7200
  2190. script: python many_nodes_tests/actor_test.py
  2191. wait_for_nodes:
  2192. num_nodes: 251
  2193. type: sdk_command
  2194. file_manager: sdk
  2195. - name: pg_autoscaling_regression_test
  2196. group: core-daily-test
  2197. working_dir: nightly_tests
  2198. legacy:
  2199. test_name: pg_autoscaling_regression_test
  2200. test_suite: nightly_tests
  2201. frequency: nightly
  2202. team: core
  2203. cluster:
  2204. cluster_env: placement_group_tests/app_config.yaml
  2205. cluster_compute: placement_group_tests/compute.yaml
  2206. run:
  2207. timeout: 1200
  2208. script: python placement_group_tests/pg_run.py
  2209. type: sdk_command
  2210. file_manager: sdk
  2211. - name: placement_group_performance_test
  2212. group: core-daily-test
  2213. working_dir: nightly_tests
  2214. legacy:
  2215. test_name: placement_group_performance_test
  2216. test_suite: nightly_tests
  2217. frequency: nightly
  2218. team: core
  2219. cluster:
  2220. cluster_env: placement_group_tests/app_config.yaml
  2221. cluster_compute: placement_group_tests/pg_perf_test_compute.yaml
  2222. run:
  2223. timeout: 1200
  2224. script: python placement_group_tests/placement_group_performance_test.py
  2225. wait_for_nodes:
  2226. num_nodes: 5
  2227. type: sdk_command
  2228. file_manager: sdk
  2229. #########################
  2230. # Core Scalability Tests
  2231. #########################
  2232. - name: single_node
  2233. group: core-scalability-test
  2234. working_dir: benchmarks
  2235. legacy:
  2236. test_name: single_node
  2237. test_suite: benchmark_tests
  2238. frequency: multi
  2239. team: core
  2240. cluster:
  2241. cluster_env: app_config.yaml
  2242. cluster_compute: single_node.yaml
  2243. run:
  2244. timeout: 12000
  2245. prepare: sleep 0
  2246. script: python single_node/test_single_node.py
  2247. type: sdk_command
  2248. file_manager: sdk
  2249. - name: object_store
  2250. group: core-scalability-test
  2251. working_dir: benchmarks
  2252. legacy:
  2253. test_name: object_store
  2254. test_suite: benchmark_tests
  2255. frequency: multi
  2256. team: core
  2257. cluster:
  2258. cluster_env: app_config.yaml
  2259. cluster_compute: object_store.yaml
  2260. run:
  2261. timeout: 3600
  2262. script: python object_store/test_object_store.py
  2263. wait_for_nodes:
  2264. num_nodes: 50
  2265. type: sdk_command
  2266. file_manager: sdk
  2267. - name: many_actors
  2268. group: core-scalability-test
  2269. working_dir: benchmarks
  2270. legacy:
  2271. test_name: many_actors
  2272. test_suite: benchmark_tests
  2273. frequency: nightly
  2274. team: core
  2275. cluster:
  2276. cluster_env: app_config.yaml
  2277. cluster_compute: distributed.yaml
  2278. run:
  2279. timeout: 3600
  2280. script: python distributed/test_many_actors.py
  2281. wait_for_nodes:
  2282. num_nodes: 65
  2283. type: sdk_command
  2284. file_manager: sdk
  2285. - name: many_actors_smoke_test
  2286. group: core-scalability-test
  2287. working_dir: benchmarks
  2288. legacy:
  2289. test_name: many_actors_smoke_test
  2290. test_suite: benchmark_tests
  2291. frequency: multi
  2292. team: core
  2293. cluster:
  2294. cluster_env: app_config.yaml
  2295. cluster_compute: distributed_smoke_test.yaml
  2296. run:
  2297. timeout: 3600
  2298. script: SMOKE_TEST=1 python distributed/test_many_actors.py
  2299. wait_for_nodes:
  2300. num_nodes: 2
  2301. type: sdk_command
  2302. file_manager: sdk
  2303. - name: many_tasks
  2304. group: core-scalability-test
  2305. working_dir: benchmarks
  2306. legacy:
  2307. test_name: many_tasks
  2308. test_suite: benchmark_tests
  2309. frequency: nightly
  2310. team: core
  2311. cluster:
  2312. cluster_env: app_config.yaml
  2313. cluster_compute: distributed.yaml
  2314. run:
  2315. timeout: 3600
  2316. script: python distributed/test_many_tasks.py --num-tasks=10000
  2317. wait_for_nodes:
  2318. num_nodes: 65
  2319. type: sdk_command
  2320. file_manager: sdk
  2321. smoke_test:
  2322. frequency: multi
  2323. cluster:
  2324. cluster_env: app_config.yaml
  2325. cluster_compute: distributed_smoke_test.yaml
  2326. run:
  2327. timeout: 3600
  2328. script: python distributed/test_many_tasks.py --num-tasks=100
  2329. wait_for_nodes:
  2330. num_nodes: 2
  2331. - name: many_pgs
  2332. group: core-scalability-test
  2333. working_dir: benchmarks
  2334. legacy:
  2335. test_name: many_pgs
  2336. test_suite: benchmark_tests
  2337. frequency: nightly
  2338. team: core
  2339. cluster:
  2340. cluster_env: app_config.yaml
  2341. cluster_compute: distributed.yaml
  2342. run:
  2343. timeout: 3600
  2344. script: python distributed/test_many_pgs.py
  2345. wait_for_nodes:
  2346. num_nodes: 65
  2347. type: sdk_command
  2348. file_manager: sdk
  2349. - name: many_pgs_smoke_test
  2350. group: core-scalability-test
  2351. working_dir: benchmarks
  2352. legacy:
  2353. test_name: many_pgs_smoke_test
  2354. test_suite: benchmark_tests
  2355. frequency: multi
  2356. team: core
  2357. cluster:
  2358. cluster_env: app_config.yaml
  2359. cluster_compute: distributed_smoke_test.yaml
  2360. run:
  2361. timeout: 3600
  2362. script: SMOKE_TEST=1 python distributed/test_many_pgs.py
  2363. wait_for_nodes:
  2364. num_nodes: 2
  2365. type: sdk_command
  2366. file_manager: sdk
  2367. - name: many_nodes
  2368. group: core-scalability-test
  2369. working_dir: benchmarks
  2370. legacy:
  2371. test_name: many_nodes
  2372. test_suite: benchmark_tests
  2373. frequency: nightly
  2374. team: core
  2375. cluster:
  2376. cluster_env: app_config.yaml
  2377. cluster_compute: many_nodes.yaml
  2378. run:
  2379. timeout: 3600
  2380. script: python distributed/test_many_tasks.py --num-tasks=1000
  2381. wait_for_nodes:
  2382. num_nodes: 250
  2383. type: sdk_command
  2384. file_manager: sdk
  2385. - name: scheduling_test_many_0s_tasks_single_node
  2386. group: core-scalability-test
  2387. working_dir: benchmarks
  2388. legacy:
  2389. test_name: scheduling_test_many_0s_tasks_single_node
  2390. test_suite: benchmark_tests
  2391. frequency: nightly
  2392. team: core
  2393. cluster:
  2394. cluster_env: app_config.yaml
  2395. cluster_compute: scheduling.yaml
  2396. run:
  2397. timeout: 3600
  2398. script: python distributed/test_scheduling.py --total-num-task=1984000 --num-cpu-per-task=1
  2399. --task-duration-s=0 --total-num-actors=1 --num-actors-per-nodes=1
  2400. wait_for_nodes:
  2401. num_nodes: 32
  2402. type: sdk_command
  2403. file_manager: sdk
  2404. - name: scheduling_test_many_0s_tasks_many_nodes
  2405. group: core-scalability-test
  2406. working_dir: benchmarks
  2407. legacy:
  2408. test_name: scheduling_test_many_0s_tasks_many_nodes
  2409. test_suite: benchmark_tests
  2410. frequency: nightly
  2411. team: core
  2412. cluster:
  2413. cluster_env: app_config.yaml
  2414. cluster_compute: scheduling.yaml
  2415. run:
  2416. timeout: 3600
  2417. script: python distributed/test_scheduling.py --total-num-task=1984000 --num-cpu-per-task=1
  2418. --task-duration-s=0 --total-num-actors=32 --num-actors-per-nodes=1
  2419. wait_for_nodes:
  2420. num_nodes: 32
  2421. type: sdk_command
  2422. file_manager: sdk
  2423. # - name: scheduling_test_many_5s_tasks_single_node
  2424. # group: core-scalability-test
  2425. # working_dir: benchmarks
  2426. # legacy:
  2427. # test_name: scheduling_test_many_5s_tasks_single_node
  2428. # test_suite: benchmark_tests
  2429. # frequency: nightly
  2430. # team: core
  2431. # cluster:
  2432. # cluster_env: app_config.yaml
  2433. # cluster_compute: scheduling.yaml
  2434. # run:
  2435. # timeout: 3600
  2436. # script: python distributed/test_scheduling.py --total-num-task=1984000 --num-cpu-per-task=1
  2437. # --task-duration-s=5 --total-num-actors=1 --num-actors-per-nodes=1
  2438. # wait_for_nodes:
  2439. # num_nodes: 32
  2440. # timeout: 600
  2441. # type: sdk_command
  2442. # file_manager: sdk
  2443. # stable: false
  2444. # - name: scheduling_test_many_5s_tasks_many_nodes
  2445. # group: core-scalability-test
  2446. # working_dir: benchmarks
  2447. # legacy:
  2448. # test_name: scheduling_test_many_5s_tasks_many_nodes
  2449. # test_suite: benchmark_tests
  2450. # frequency: nightly
  2451. # team: core
  2452. # cluster:
  2453. # cluster_env: app_config.yaml
  2454. # cluster_compute: scheduling.yaml
  2455. # run:
  2456. # timeout: 3600
  2457. # script: python distributed/test_scheduling.py --total-num-task=1984000 --num-cpu-per-task=1
  2458. # --task-duration-s=5 --total-num-actors=32 --num-actors-per-nodes=1
  2459. # wait_for_nodes:
  2460. # num_nodes: 32
  2461. # timeout: 600
  2462. # type: sdk_command
  2463. # file_manager: sdk
  2464. # stable: false
  2465. ###############
  2466. # Dataset tests
  2467. ###############
  2468. - name: inference
  2469. group: core-dataset-tests
  2470. working_dir: nightly_tests/dataset
  2471. legacy:
  2472. test_name: inference
  2473. test_suite: dataset_test
  2474. frequency: multi
  2475. team: core
  2476. cluster:
  2477. cluster_env: app_config.yaml
  2478. cluster_compute: inference.yaml
  2479. run:
  2480. timeout: 600
  2481. script: python inference.py
  2482. wait_for_nodes:
  2483. num_nodes: 2
  2484. type: sdk_command
  2485. file_manager: sdk
  2486. - name: shuffle_data_loader
  2487. group: core-dataset-tests
  2488. working_dir: nightly_tests/dataset
  2489. legacy:
  2490. test_name: shuffle_data_loader
  2491. test_suite: dataset_test
  2492. frequency: multi
  2493. team: core
  2494. cluster:
  2495. cluster_env: shuffle_app_config.yaml
  2496. cluster_compute: shuffle_compute.yaml
  2497. run:
  2498. timeout: 1800
  2499. script: python dataset_shuffle_data_loader.py
  2500. type: sdk_command
  2501. file_manager: sdk
  2502. - name: parquet_metadata_resolution
  2503. group: core-dataset-tests
  2504. working_dir: nightly_tests/dataset
  2505. legacy:
  2506. test_name: parquet_metadata_resolution
  2507. test_suite: dataset_test
  2508. frequency: multi
  2509. team: core
  2510. cluster:
  2511. cluster_env: pipelined_training_app.yaml
  2512. cluster_compute: pipelined_training_compute.yaml
  2513. run:
  2514. timeout: 1200
  2515. script: python parquet_metadata_resolution.py --num-files 915
  2516. wait_for_nodes:
  2517. num_nodes: 15
  2518. type: sdk_command
  2519. file_manager: sdk
  2520. - name: dataset_random_access
  2521. group: core-dataset-tests
  2522. working_dir: nightly_tests/dataset
  2523. stable: false
  2524. frequency: multi
  2525. team: core
  2526. cluster:
  2527. cluster_env: pipelined_training_app.yaml
  2528. cluster_compute: pipelined_training_compute.yaml
  2529. run:
  2530. timeout: 1200
  2531. script: python dataset_random_access.py
  2532. wait_for_nodes:
  2533. num_nodes: 15
  2534. type: sdk_command
  2535. file_manager: sdk
  2536. - name: pipelined_training_50_gb
  2537. group: core-dataset-tests
  2538. working_dir: nightly_tests/dataset
  2539. legacy:
  2540. test_name: pipelined_training_50_gb
  2541. test_suite: dataset_test
  2542. frequency: multi
  2543. team: core
  2544. cluster:
  2545. cluster_env: pipelined_training_app.yaml
  2546. cluster_compute: pipelined_training_compute.yaml
  2547. run:
  2548. timeout: 4800
  2549. script: python pipelined_training.py --epochs 1
  2550. wait_for_nodes:
  2551. num_nodes: 15
  2552. type: sdk_command
  2553. file_manager: sdk
  2554. - name: pipelined_ingestion_1500_gb
  2555. group: core-dataset-tests
  2556. working_dir: nightly_tests/dataset
  2557. legacy:
  2558. test_name: pipelined_ingestion_1500_gb
  2559. test_suite: dataset_test
  2560. frequency: nightly
  2561. team: core
  2562. cluster:
  2563. cluster_env: pipelined_ingestion_app.yaml
  2564. cluster_compute: pipelined_ingestion_compute.yaml
  2565. run:
  2566. timeout: 9600
  2567. script: python pipelined_training.py --epochs 2 --num-windows 2 --num-files 915
  2568. --debug
  2569. wait_for_nodes:
  2570. num_nodes: 21
  2571. type: sdk_command
  2572. file_manager: sdk
  2573. - name: datasets_ingest_train_infer
  2574. group: core-dataset-tests
  2575. working_dir: nightly_tests/dataset
  2576. legacy:
  2577. test_name: datasets_ingest_train_infer
  2578. test_suite: dataset_test
  2579. frequency: multi
  2580. team: core
  2581. cluster:
  2582. cluster_env: ray_sgd_training_app.yaml
  2583. cluster_compute: ray_sgd_training_compute.yaml
  2584. run:
  2585. timeout: 14400
  2586. script: python ray_sgd_training.py --address auto --use-s3 --num-workers 16 --use-gpu
  2587. --large-dataset
  2588. wait_for_nodes:
  2589. num_nodes: 66
  2590. type: sdk_command
  2591. file_manager: sdk
  2592. smoke_test:
  2593. frequency: multi
  2594. cluster:
  2595. app_config: ray_sgd_training_app.yaml
  2596. cluster_compute: ray_sgd_training_smoke_compute.yaml
  2597. run:
  2598. timeout: 3600
  2599. script: python ray_sgd_training.py --address auto --use-s3 --num-workers 8 --use-gpu
  2600. wait_for_nodes:
  2601. num_nodes: 8
  2602. - name: datasets_preprocess_ingest
  2603. group: core-dataset-tests
  2604. working_dir: nightly_tests/dataset
  2605. legacy:
  2606. test_name: datasets_preprocess_ingest
  2607. test_suite: dataset_test
  2608. frequency: nightly
  2609. team: core
  2610. cluster:
  2611. cluster_env: ray_sgd_training_app.yaml
  2612. cluster_compute: ray_sgd_training_compute_no_gpu.yaml
  2613. run:
  2614. timeout: 7200
  2615. script: python ray_sgd_training.py --address auto --use-s3 --num-workers 16 --use-gpu
  2616. --large-dataset --debug
  2617. wait_for_nodes:
  2618. num_nodes: 21
  2619. type: sdk_command
  2620. file_manager: sdk
  2621. - name: datasets_ingest_400G
  2622. group: core-dataset-tests
  2623. working_dir: nightly_tests/dataset
  2624. legacy:
  2625. test_name: datasets_ingest_400G
  2626. test_suite: dataset_test
  2627. frequency: multi
  2628. team: core
  2629. cluster:
  2630. cluster_env: ray_sgd_training_app.yaml
  2631. cluster_compute: dataset_ingest_400G_compute.yaml
  2632. run:
  2633. timeout: 7200
  2634. script: python ray_sgd_runner.py --address auto --use-gpu --num-epochs 1
  2635. type: sdk_command
  2636. file_manager: sdk
  2637. - name: dataset_shuffle_random_shuffle_1tb
  2638. group: core-dataset-tests
  2639. working_dir: nightly_tests
  2640. legacy:
  2641. test_name: dataset_shuffle_random_shuffle_1tb
  2642. test_suite: dataset_test
  2643. stable: true
  2644. frequency: nightly
  2645. team: core
  2646. cluster:
  2647. cluster_env: shuffle/shuffle_app_config.yaml
  2648. cluster_compute: shuffle/shuffle_compute_large_scale.yaml
  2649. run:
  2650. timeout: 7200
  2651. script: python dataset/sort.py --num-partitions=1000 --partition-size=1e9 --shuffle
  2652. wait_for_nodes:
  2653. num_nodes: 20
  2654. type: sdk_command
  2655. file_manager: sdk
  2656. - name: dataset_shuffle_sort_1tb
  2657. group: core-dataset-tests
  2658. working_dir: nightly_tests
  2659. legacy:
  2660. test_name: dataset_shuffle_sort_1tb
  2661. test_suite: dataset_test
  2662. stable: true
  2663. frequency: nightly
  2664. team: core
  2665. cluster:
  2666. cluster_env: shuffle/shuffle_app_config.yaml
  2667. cluster_compute: shuffle/shuffle_compute_large_scale.yaml
  2668. run:
  2669. timeout: 7200
  2670. script: python dataset/sort.py --num-partitions=1000 --partition-size=1e9
  2671. wait_for_nodes:
  2672. num_nodes: 20
  2673. type: sdk_command
  2674. file_manager: sdk
  2675. - name: dataset_shuffle_random_shuffle_1tb_small_instances
  2676. group: core-dataset-tests
  2677. working_dir: nightly_tests
  2678. legacy:
  2679. test_name: dataset_shuffle_random_shuffle_1tb_small_instances
  2680. test_suite: dataset_test
  2681. frequency: nightly
  2682. team: core
  2683. cluster:
  2684. cluster_env: shuffle/shuffle_app_config.yaml
  2685. cluster_compute: shuffle/datasets_large_scale_compute_small_instances.yaml
  2686. run:
  2687. timeout: 7200
  2688. script: python dataset/sort.py --num-partitions=1000 --partition-size=1e9 --shuffle
  2689. wait_for_nodes:
  2690. num_nodes: 20
  2691. type: sdk_command
  2692. file_manager: sdk
  2693. - name: dataset_shuffle_sort_1tb_small_instances
  2694. group: core-dataset-tests
  2695. working_dir: nightly_tests
  2696. legacy:
  2697. test_name: dataset_shuffle_sort_1tb_small_instances
  2698. test_suite: dataset_test
  2699. frequency: nightly
  2700. team: core
  2701. cluster:
  2702. cluster_env: shuffle/shuffle_app_config.yaml
  2703. cluster_compute: shuffle/datasets_large_scale_compute_small_instances.yaml
  2704. run:
  2705. timeout: 7200
  2706. script: python dataset/sort.py --num-partitions=1000 --partition-size=1e9
  2707. wait_for_nodes:
  2708. num_nodes: 20
  2709. type: sdk_command
  2710. file_manager: sdk
  2711. - name: dataset_shuffle_push_based_random_shuffle_1tb
  2712. group: core-dataset-tests
  2713. working_dir: nightly_tests
  2714. legacy:
  2715. test_name: dataset_shuffle_push_based_random_shuffle_1tb
  2716. test_suite: dataset_test
  2717. stable: false
  2718. frequency: nightly
  2719. team: core
  2720. cluster:
  2721. cluster_env: shuffle/shuffle_app_config.yaml
  2722. cluster_compute: shuffle/datasets_large_scale_compute_small_instances.yaml
  2723. run:
  2724. timeout: 7200
  2725. script: RAY_DATASET_PUSH_BASED_SHUFFLE=1 python dataset/sort.py --num-partitions=1000 --partition-size=1e9 --shuffle
  2726. wait_for_nodes:
  2727. num_nodes: 20
  2728. type: sdk_command
  2729. file_manager: sdk
  2730. - name: dataset_shuffle_push_based_sort_1tb
  2731. group: core-dataset-tests
  2732. working_dir: nightly_tests
  2733. legacy:
  2734. test_name: dataset_shuffle_push_based_sort_1tb
  2735. test_suite: dataset_test
  2736. stable: false
  2737. frequency: nightly
  2738. team: core
  2739. cluster:
  2740. cluster_env: shuffle/shuffle_app_config.yaml
  2741. cluster_compute: shuffle/datasets_large_scale_compute_small_instances.yaml
  2742. run:
  2743. timeout: 7200
  2744. script: RAY_DATASET_PUSH_BASED_SHUFFLE=1 python dataset/sort.py --num-partitions=1000 --partition-size=1e9
  2745. wait_for_nodes:
  2746. num_nodes: 20
  2747. type: sdk_command
  2748. file_manager: sdk
  2749. ##################
  2750. # Core Chaos tests
  2751. ##################
  2752. - name: chaos_many_tasks_no_object_store
  2753. group: core-dataset-tests
  2754. working_dir: nightly_tests
  2755. legacy:
  2756. test_name: chaos_many_tasks_no_object_store
  2757. test_suite: chaos_test
  2758. frequency: multi
  2759. team: core
  2760. cluster:
  2761. cluster_env: chaos_test/app_config.yaml
  2762. cluster_compute: chaos_test/compute_template.yaml
  2763. run:
  2764. timeout: 3600
  2765. wait_for_nodes:
  2766. num_nodes: 10
  2767. prepare: python setup_chaos.py --no-start
  2768. script: python chaos_test/test_chaos_basic.py --workload=tasks
  2769. type: sdk_command
  2770. file_manager: sdk
  2771. - name: chaos_many_actors
  2772. group: core-dataset-tests
  2773. working_dir: nightly_tests
  2774. legacy:
  2775. test_name: chaos_many_actors
  2776. test_suite: chaos_test
  2777. frequency: multi
  2778. team: core
  2779. cluster:
  2780. cluster_env: chaos_test/app_config.yaml
  2781. cluster_compute: chaos_test/compute_template.yaml
  2782. run:
  2783. timeout: 3600
  2784. wait_for_nodes:
  2785. num_nodes: 10
  2786. prepare: python setup_chaos.py --no-start
  2787. script: python chaos_test/test_chaos_basic.py --workload=actors
  2788. type: sdk_command
  2789. file_manager: sdk
  2790. - name: chaos_dask_on_ray_large_scale_test_no_spilling
  2791. group: core-dataset-tests
  2792. working_dir: nightly_tests
  2793. legacy:
  2794. test_name: chaos_dask_on_ray_large_scale_test_no_spilling
  2795. test_suite: chaos_test
  2796. frequency: nightly
  2797. team: core
  2798. cluster:
  2799. cluster_env: chaos_test/dask_on_ray_app_config_reconstruction.yaml
  2800. cluster_compute: dask_on_ray/chaos_dask_on_ray_stress_compute.yaml
  2801. run:
  2802. timeout: 7200
  2803. wait_for_nodes:
  2804. num_nodes: 21
  2805. prepare: python setup_chaos.py --node-kill-interval 100
  2806. script: python dask_on_ray/large_scale_test.py --num_workers 20 --worker_obj_store_size_in_gb
  2807. 20 --error_rate 0 --data_save_path /tmp/ray
  2808. type: sdk_command
  2809. file_manager: sdk
  2810. - name: chaos_dask_on_ray_large_scale_test_spilling
  2811. group: core-dataset-tests
  2812. working_dir: nightly_tests
  2813. legacy:
  2814. test_name: chaos_dask_on_ray_large_scale_test_spilling
  2815. test_suite: chaos_test
  2816. frequency: nightly
  2817. team: core
  2818. cluster:
  2819. cluster_env: chaos_test/dask_on_ray_app_config_reconstruction.yaml
  2820. cluster_compute: dask_on_ray/dask_on_ray_stress_compute.yaml
  2821. run:
  2822. timeout: 7200
  2823. wait_for_nodes:
  2824. num_nodes: 21
  2825. prepare: python setup_chaos.py --node-kill-interval 100
  2826. script: python dask_on_ray/large_scale_test.py --num_workers 150 --worker_obj_store_size_in_gb
  2827. 70 --error_rate 0 --data_save_path /tmp/ray
  2828. type: sdk_command
  2829. file_manager: sdk
  2830. - name: chaos_pipelined_ingestion_1500_gb_15_windows
  2831. group: core-dataset-tests
  2832. working_dir: nightly_tests
  2833. legacy:
  2834. test_name: chaos_pipelined_ingestion_1500_gb_15_windows
  2835. test_suite: chaos_test
  2836. frequency: nightly
  2837. team: core
  2838. cluster:
  2839. cluster_env: dataset/pipelined_ingestion_app.yaml
  2840. cluster_compute: dataset/pipelined_ingestion_compute.yaml
  2841. run:
  2842. timeout: 7200
  2843. wait_for_nodes:
  2844. num_nodes: 21
  2845. prepare: ' python setup_chaos.py --node-kill-interval 300'
  2846. script: python dataset/pipelined_training.py --epochs 1 --num-windows 15 --num-files
  2847. 915 --debug
  2848. type: sdk_command
  2849. file_manager: sdk