krfricke
9f3570828a
[tune] move jenkins tests to travis ( #9609 )
...
Co-authored-by: Richard Liaw <rliaw@berkeley.edu>
Co-authored-by: Kai Fricke <kai@anyscale.com>
2020-07-24 21:22:54 -07:00
Justin Terry
0d67602051
Update rllib-algorithms.rst ( #9640 )
2020-07-24 19:35:28 -07:00
Maksim Smolin
d364afbd31
[Autoscaler] CLI Logger docs ( #9690 )
...
Co-authored-by: Richard Liaw <rliaw@berkeley.edu>
2020-07-24 16:59:25 -07:00
mehrdadn
56d2cf6479
Shellcheck rewrites ( #9597 )
...
* Fix SC2001: See if you can use ${variable//search/replace} instead.
* Fix SC2010: Don't use ls | grep. Use a glob or a for loop with a condition to allow non-alphanumeric filenames.
* Fix SC2012: Use find instead of ls to better handle non-alphanumeric filenames.
* Fix SC2015: Note that A && B || C is not if-then-else. C may run when A is true.
* Fix SC2028: echo may not expand escape sequences. Use printf.
* Fix SC2034: variable appears unused. Verify use (or export if used externally).
* Fix SC2035: Use ./*glob* or -- *glob* so names with dashes won't become options.
* Fix SC2071: > is for string comparisons. Use -gt instead.
* Fix SC2154: variable is referenced but not assigned
* Fix SC2164: Use 'cd ... || exit' or 'cd ... || return' in case cd fails.
* Fix SC2188: This redirection doesn't have a command. Move to its command (or use 'true' as no-op).
* Fix SC2236: Use -n instead of ! -z.
* Fix SC2242: Can only exit with status 0-255. Other data should be written to stdout/stderr.
* Fix SC2086: Double quote to prevent globbing and word splitting.
Co-authored-by: Mehrdad <noreply@github.com>
2020-07-24 17:24:19 -05:00
Simon Mo
678e238784
Add Ray Serve to README.rst ( #9688 )
2020-07-24 14:53:21 -07:00
mehrdadn
7344fb9858
Switch from GitHub checkout@v2 to checkout@v1 due to bugs in checkout ( #9697 )
...
Co-authored-by: Mehrdad <noreply@github.com>
2020-07-24 14:25:58 -07:00
Petros Christodoulou
46c64c90d0
fixed simplex initialisation seeding bug ( #9660 )
...
Co-authored-by: Petros Christodoulou <petrochr@amazon.com>
2020-07-24 14:22:41 -07:00
Bill Chambers
22d446bc2b
[Serve] Fix Formatting, stale docs ( #9617 )
2020-07-24 13:34:32 -07:00
Sven Mika
e4c5d3526f
Issue 9631: Tf1.14 does not have tf.config.list_physical_devices. ( #9681 )
2020-07-24 21:48:58 +02:00
Simon Mo
a078a21437
[Serve] Allow multiple HTTP servers. ( #9523 )
2020-07-24 12:41:20 -07:00
Eric Liang
590943a499
[rllib] Type annotations for model classes ( #9646 )
2020-07-24 12:01:46 -07:00
Amog Kamsetty
03709d67cb
[Tune Docs] Logging doc fix ( #9691 )
2020-07-24 11:20:52 -07:00
mehrdadn
6beed5a2df
Fix ERROR logging not being printed to standard error ( #9633 )
...
Co-authored-by: Mehrdad <noreply@github.com>
2020-07-24 11:15:00 -07:00
Richard Liaw
a49eb1d168
[tune] survey ( #9670 )
2020-07-24 11:08:05 -07:00
Dean Wampler
5242b3b1a2
Refinements to the Serve documentation ( #9587 )
...
Co-authored-by: Dean Wampler <dean@concurrentthought.com>
2020-07-24 10:46:28 -07:00
SangBin Cho
18981bad59
Update release information from 0.8.6. ( #9124 )
...
* [BRING BACK TO MASTER] Update release information.
* [MERGE TO MASTER] Add microbenchmark result.
* Update asan tests to the doc.
2020-07-24 10:04:07 -07:00
Lingxuan Zuo
58a38e81d1
use help proto-init-macro for streaming config ( #9272 )
2020-07-24 17:59:33 +08:00
fangfengbin
d4324a4a8f
fix java coreworker crash ( #9674 )
2020-07-24 15:36:49 +08:00
Stephanie Wang
f2705e2c73
[core] Enable object reconstruction for retryable actor tasks ( #9557 )
...
* Test actor plasma reconstruction
* Allow resubmission of actor tasks
* doc
* Test for actor constructor
* Kill PID before removing node
* Kill pid before node
2020-07-23 21:15:12 -07:00
Alex Wu
239196fffc
[Core] WorkerInterface refactor ( #9655 )
...
* .
* .
* refactor WorkerInterface
* .
* Basic unit test structure complete?
* .
* .
* .
* .
* Fixed tests
* Fixed tests
* .
2020-07-23 21:13:29 -07:00
Robert Nishihara
06c3518aa1
Drop support for Python 3.5. ( #9622 )
...
* Drop support for Python 3.5.
* Update setup.py
2020-07-23 19:26:06 -07:00
Simon Mo
3511b30283
Temporarily disable remote watcher ( #9669 )
2020-07-23 17:20:48 -07:00
Siyuan (Ryans) Zhuang
e4beffa49d
Remove unused windows shims ( #9583 )
2020-07-23 17:18:39 -07:00
Siyuan (Ryans) Zhuang
4594f7db2e
[Core] Remove unnecessary windows syscall in plasma store ( #9602 )
2020-07-23 17:14:25 -07:00
Simon Mo
8df25b239f
Fix lint in remote-watch.py ( #9668 )
2020-07-23 16:18:22 -07:00
mehrdadn
75b2fc4313
Auto-cancel build when a new commit is pushed ( #8043 )
...
Co-authored-by: Mehrdad <noreply@github.com>
2020-07-23 16:07:00 -07:00
Eric Liang
5acd3e66dd
[rllib] Fix torch TD error, IMPALA LR updates ( #9477 )
...
* update
* add test
* lint
* fix super call
* speed es test up
2020-07-23 12:50:25 -07:00
krfricke
ea4797bf38
[RaySGD] revised existing transformer example to work with transformers>=3.0 ( #9661 )
...
Co-authored-by: Kai Fricke <kai@anyscale.com>
2020-07-23 10:58:09 -07:00
Raphael Avalos
5303c3abe3
Fix TorchDeterministic ( #9241 )
2020-07-23 10:43:20 -07:00
Clark Zinzow
9f969260e8
[core] Fix Ray service startup when logging redirection is disabled. ( #9547 )
2020-07-23 11:26:24 -05:00
fangfengbin
01d6edae9c
fix named actor single process mode bug ( #9652 )
2020-07-23 20:28:50 +08:00
fangfengbin
5ab17e0dd8
Fix TestObjectTableResubscribe testcase bug ( #9650 )
2020-07-23 20:28:31 +08:00
Lingxuan Zuo
64b0f173c8
fix window jni unhappy compiler ( #9635 )
2020-07-23 19:43:53 +08:00
Siyuan (Ryans) Zhuang
993ff5fd81
[Core] Fix concurrency issues in plasma store runner ( #9642 )
2020-07-23 00:12:10 -07:00
SangBin Cho
ca391ed052
[Core] GCS Actor management on by default. ( #8845 )
...
* GCS Actor management on by default.
* Fix travis config.
* Change condition.
* Remove unnecessary CI.
2020-07-22 14:31:41 -07:00
Maksim Smolin
908c0c630a
[Autoscaler] Command Line Interface improvements ( #9322 )
...
Co-authored-by: Richard Liaw <rliaw@berkeley.edu>
2020-07-22 12:21:44 -07:00
Max Fitton
456e012029
Revert "Dashboard next-version API support in backend ( #9345 )" ( #9639 )
...
This reverts commit fca1fb18f3
.
2020-07-22 13:30:12 -05:00
Kai Yang
bfa0605282
[Java] Avoid data copy from C++ to Java for ByteBuffer type ( #9033 )
2020-07-22 16:25:32 +08:00
mehrdadn
6346c70792
Fix bug in Bazel version check ( #9626 )
...
Co-authored-by: Mehrdad <noreply@github.com>
2020-07-21 20:58:46 -07:00
mehrdadn
b14728d999
Shellcheck quoting ( #9596 )
...
* Fix SC2006: Use $(...) notation instead of legacy backticked `...`.
* Fix SC2016: Expressions don't expand in single quotes, use double quotes for that.
* Fix SC2046: Quote this to prevent word splitting.
* Fix SC2053: Quote the right-hand side of == in [[ ]] to prevent glob matching.
* Fix SC2068: Double quote array expansions to avoid re-splitting elements.
* Fix SC2086: Double quote to prevent globbing and word splitting.
* Fix SC2102: Ranges can only match single chars (mentioned due to duplicates).
* Fix SC2140: Word is of the form "A"B"C" (B indicated). Did you mean "ABC" or "A\"B\"C"?
* Fix SC2145: Argument mixes string and array. Use * or separate argument.
* Fix SC2209: warning: Use var=$(command) to assign output (or quote to assign string).
Co-authored-by: Mehrdad <noreply@github.com>
2020-07-21 21:56:41 -05:00
ZhuSenlin
382b314241
[GCS] fix the fault tolerance about gcs node manager ( #9380 )
2020-07-22 10:55:51 +08:00
Lingxuan Zuo
cd42450fc1
[Metrics] Java metric API ( #9377 )
2020-07-22 10:35:08 +08:00
Philipp Moritz
a5f4659d9f
Support ray task type checking ( #9574 )
2020-07-21 19:05:42 -07:00
Simon Mo
997d1162e3
[CI] Do not run jenkins test on GHA ( #9621 )
2020-07-21 17:05:52 -07:00
Simon Mo
d8fd74d528
[Serve] Document Metric Infrastructure ( #9389 )
2020-07-21 14:52:18 -07:00
mehrdadn
4f470c3fc1
Shellcheck comments ( #9595 )
2020-07-21 16:47:09 -05:00
mehrdadn
a2f31195c6
Fix Lint in setup.py ( #9618 )
...
Co-authored-by: Mehrdad <noreply@github.com>
2020-07-21 14:24:24 -07:00
mehrdadn
c5cde65bc6
Add bazel to the PATH in setup.py ( #9590 )
...
Co-authored-by: Mehrdad <noreply@github.com>
2020-07-21 13:35:29 -07:00
Arne Sachtler
4a36f72ce1
Use UTF-8 for encoding of python code for collision hashing ( #9586 )
...
Co-authored-by: Arne Sachtler <arne.sachtler@dlr.de>
Co-authored-by: simon-mo <simon.mo@hey.com>
2020-07-21 13:16:54 -07:00
Sven Mika
75592e664f
Issue 9568: rllib train
framework in config gets overridden with tf. ( #9572 )
2020-07-21 22:02:24 +02:00