mirror of
https://github.com/wassname/ray.git
synced 2026-06-28 19:49:04 +08:00
Upgrade arrow to include more detailed flushing message (#2706)
This commit is contained in:
committed by
Robert Nishihara
parent
e467f546b5
commit
b4c47a5861
@@ -65,7 +65,7 @@ def start_plasma_store(plasma_store_memory=DEFAULT_PLASMA_STORE_MEMORY,
|
||||
|
||||
plasma_store_executable = os.path.join(
|
||||
os.path.abspath(os.path.dirname(__file__)),
|
||||
"../core/src/plasma/plasma_store")
|
||||
"../core/src/plasma/plasma_store_server")
|
||||
plasma_store_name = "/tmp/plasma_store{}".format(random_name())
|
||||
command = [
|
||||
plasma_store_executable, "-s", plasma_store_name, "-m",
|
||||
|
||||
@@ -87,7 +87,8 @@ def start_plasma_store(plasma_store_memory=DEFAULT_PLASMA_STORE_MEMORY,
|
||||
"""
|
||||
if use_valgrind and use_profiler:
|
||||
raise Exception("Cannot use valgrind and profiler at the same time.")
|
||||
plasma_store_executable = os.path.join(pa.__path__[0], "plasma_store")
|
||||
plasma_store_executable = os.path.join(pa.__path__[0],
|
||||
"plasma_store_server")
|
||||
plasma_store_name = "/tmp/plasma_store{}".format(random_name())
|
||||
command = [
|
||||
plasma_store_executable, "-s", plasma_store_name, "-m",
|
||||
|
||||
+2
-1
@@ -21,7 +21,8 @@ import setuptools.command.build_ext as _build_ext
|
||||
ray_files = [
|
||||
"ray/core/src/common/thirdparty/redis/src/redis-server",
|
||||
"ray/core/src/common/redis_module/libray_redis_module.so",
|
||||
"ray/core/src/plasma/plasma_store", "ray/core/src/plasma/plasma_manager",
|
||||
"ray/core/src/plasma/plasma_store_server",
|
||||
"ray/core/src/plasma/plasma_manager",
|
||||
"ray/core/src/local_scheduler/local_scheduler",
|
||||
"ray/core/src/local_scheduler/liblocal_scheduler_library_python.so",
|
||||
"ray/core/src/global_scheduler/global_scheduler",
|
||||
|
||||
Reference in New Issue
Block a user