-
Notifications
You must be signed in to change notification settings - Fork 5.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make execution plan/blocklist aware of the memory ownership and who runs the plan #26650
Commits on Jul 17, 2022
-
Make execution stage/blocklist aware if it's run by Dataset or Datase…
…tPipeline
Ubuntu committedJul 17, 2022 Configuration menu - View commit details
-
Copy full SHA for 6414e58 - Browse repository at this point
Copy the full SHA 6414e58View commit details
Commits on Jul 18, 2022
-
Merge branch 'master' of https://github.com/ray-project/ray into pipe…
…lineplan
Ubuntu committedJul 18, 2022 Configuration menu - View commit details
-
Copy full SHA for 103ebde - Browse repository at this point
Copy the full SHA 103ebdeView commit details -
Ubuntu committed
Jul 18, 2022 Configuration menu - View commit details
-
Copy full SHA for 9a8081c - Browse repository at this point
Copy the full SHA 9a8081cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 65b7aeb - Browse repository at this point
Copy the full SHA 65b7aebView commit details -
[AIR/Docs] Add Predictor Docs (ray-project#25833)
Signed-off-by: Ubuntu <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 445d38d - Browse repository at this point
Copy the full SHA 445d38dView commit details -
spread-split-tasks (ray-project#26638)
My experiments (the script ) showed that dataset.split_at_indices() with SPREAD tasks have more predictable performance Concretely: on 10 m5.4xlarge nodes with 5000 iops disk calling ds.split_at_indices(81) on 200GB dataset with 400 blocks: the split_at_indices without this PR takes 7-19 seconds, split_at_indices with SPREAD takes 7-12 seconds. Signed-off-by: Ubuntu <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 18f46d6 - Browse repository at this point
Copy the full SHA 18f46d6View commit details -
[air] Add _max_cpu_fraction_per_node to ScalingConfig and documentati…
…on (ray-project#26634) Signed-off-by: Ubuntu <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 41295f4 - Browse repository at this point
Copy the full SHA 41295f4View commit details -
[RLlib] improved unittests for dataset_reader and fixed bugs (ray-pro…
…ject#26458) Signed-off-by: Ubuntu <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 3d4af4a - Browse repository at this point
Copy the full SHA 3d4af4aView commit details -
[RLlib]: Fix OPE trainables (ray-project#26279)
Co-authored-by: Kourosh Hakhamaneshi <[email protected]> Signed-off-by: Ubuntu <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for e999300 - Browse repository at this point
Copy the full SHA e999300View commit details -
[Datasets] [Local Shuffle - 1/N] Add local shuffling option. (ray-pro…
…ject#26094) Co-authored-by: Eric Liang <[email protected]> Co-authored-by: matthewdeng <[email protected]> Co-authored-by: Matthew Deng <[email protected]> Co-authored-by: Richard Liaw <[email protected]> Signed-off-by: Ubuntu <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 215d928 - Browse repository at this point
Copy the full SHA 215d928View commit details -
[air] Add a warning if no CPUs are reserved for dataset execution (ra…
…y-project#26643) Signed-off-by: Ubuntu <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 9faca47 - Browse repository at this point
Copy the full SHA 9faca47View commit details -
added summary why and when to use bulk vs streaming data ingest (ray-…
…project#26637) Signed-off-by: Ubuntu <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for d71114c - Browse repository at this point
Copy the full SHA d71114cView commit details -
[AIR][CUJ] Make distributing training benchmark at silver tier (ray-p…
…roject#26640) Signed-off-by: Ubuntu <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 8594d20 - Browse repository at this point
Copy the full SHA 8594d20View commit details -
[Data][split] use split_at_indices for equal split without locality h…
…ints (ray-project#26641) This PR replaces dataset.split(.., equal=True) implementation by dataset.split_at_indices() . My experiments (the script ) showed that dataset.split_at_indices() have more predictable performance than the dataset.split(…) Concretely: on 10 m5.4xlarge nodes with 5000 iops disk calling ds.split(81) on 200GB dataset with 400 blocks: the split takes 20-40 seconds, split_at_indices takes ~12 seconds. calling ds.split(163) on 200GB dataset with 400 blocks, the split takes 40-100 seconds, split_at_indices takes ~24 seconds. I don’t have much insight of dataset.split implementation, but with dataset.split_at_indices() we are just doing SPREAD to num_split_at_indices tasks, which yield much stable performance. Note: clean up the usage of experimental locality_hints in ray-project#26647 Signed-off-by: Ubuntu <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 95cfc7d - Browse repository at this point
Copy the full SHA 95cfc7dView commit details -
[Air][Data] Don't promote locality_hints for split (ray-project#26647)
Why are these changes needed? Since locality_hints is an experimental feature, we stop promoting it in doc and don't enable it in AIR. See ray-project#26641 for more context Signed-off-by: Ubuntu <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 78783dc - Browse repository at this point
Copy the full SHA 78783dcView commit details -
Add Tao as Java worker code owner. (ray-project#26596)
Signed-off-by: Ubuntu <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 3bb72c1 - Browse repository at this point
Copy the full SHA 3bb72c1View commit details -
[RLlib] Add/reorder Args of Prioritized/MixIn MultiAgentReplayBuffer. (…
…ray-project#26428) Signed-off-by: Ubuntu <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 0d9216c - Browse repository at this point
Copy the full SHA 0d9216cView commit details -
[Serve] Remove EXPERIMENTAL inside the comments for user config (ray-…
…project#26521) Signed-off-by: Ubuntu <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 5608c82 - Browse repository at this point
Copy the full SHA 5608c82View commit details -
Fix windows buildkite (ray-project#26615)
- Stop using dot command to run ci.sh script: it doesn't fail the build if the command fails for windows and is generally dangerous since it will make unexpected changes to the current shell. - Fix uncovered windows build issues. Signed-off-by: Ubuntu <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 16322fa - Browse repository at this point
Copy the full SHA 16322faView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2d92130 - Browse repository at this point
Copy the full SHA 2d92130View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9e71304 - Browse repository at this point
Copy the full SHA 9e71304View commit details -
Merge branch 'master' of https://github.com/ray-project/ray into pipe…
…lineplan
Ubuntu committedJul 18, 2022 Configuration menu - View commit details
-
Copy full SHA for 5f8b8fd - Browse repository at this point
Copy the full SHA 5f8b8fdView commit details -
Merge branch 'pipelineplan' of https://github.com/jianoaix/ray into p…
…ipelineplan
Ubuntu committedJul 18, 2022 Configuration menu - View commit details
-
Copy full SHA for 060d7f7 - Browse repository at this point
Copy the full SHA 060d7f7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 28ccc5e - Browse repository at this point
Copy the full SHA 28ccc5eView commit details
Commits on Jul 19, 2022
-
consumable v.s. non-consumable blocklist
Signed-off-by: jianoaix <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 9c32ae0 - Browse repository at this point
Copy the full SHA 9c32ae0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4b83ac1 - Browse repository at this point
Copy the full SHA 4b83ac1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 84faf33 - Browse repository at this point
Copy the full SHA 84faf33View commit details -
Configuration menu - View commit details
-
Copy full SHA for 397308f - Browse repository at this point
Copy the full SHA 397308fView commit details
Commits on Jul 20, 2022
-
Configuration menu - View commit details
-
Copy full SHA for b4db0e6 - Browse repository at this point
Copy the full SHA b4db0e6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9c41a71 - Browse repository at this point
Copy the full SHA 9c41a71View commit details
Commits on Jul 21, 2022
-
feedback: make run_by_consumer required keyword-only arg; and make th…
…is arg in ExecutionPlan instead of Stage
Configuration menu - View commit details
-
Copy full SHA for 13c9ed6 - Browse repository at this point
Copy the full SHA 13c9ed6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5d1ca73 - Browse repository at this point
Copy the full SHA 5d1ca73View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0942498 - Browse repository at this point
Copy the full SHA 0942498View commit details -
Configuration menu - View commit details
-
Copy full SHA for 91b0b2f - Browse repository at this point
Copy the full SHA 91b0b2fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6d3e9aa - Browse repository at this point
Copy the full SHA 6d3e9aaView commit details
Commits on Jul 22, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 01f3da9 - Browse repository at this point
Copy the full SHA 01f3da9View commit details