diff --git a/runhouse/constants.py b/runhouse/constants.py index 29d366ae3..416d06b4a 100644 --- a/runhouse/constants.py +++ b/runhouse/constants.py @@ -26,7 +26,7 @@ DEFAULT_SERVER_HOST = "0.0.0.0" -LOGGING_WAIT_TIME = 1 +LOGGING_WAIT_TIME = 0.5 # Commands SERVER_START_CMD = f"{sys.executable} -m runhouse.servers.http.http_server" diff --git a/runhouse/servers/http/http_server.py b/runhouse/servers/http/http_server.py index 5500ac86d..937c57d2a 100644 --- a/runhouse/servers/http/http_server.py +++ b/runhouse/servers/http/http_server.py @@ -471,7 +471,6 @@ async def get_call( } params.data = serialize_data(data, serialization) - logger.info(f"GET call with params: {dict(params)}") return await HTTPServer._call(key, method_name, params) except Exception as e: logger.exception(e) diff --git a/runhouse/servers/obj_store.py b/runhouse/servers/obj_store.py index 6090d42eb..bf8ed15bd 100644 --- a/runhouse/servers/obj_store.py +++ b/runhouse/servers/obj_store.py @@ -70,7 +70,7 @@ def get_cluster_servlet(create_if_not_exists: bool = False): get_if_exists=True, lifetime="detached", namespace="runhouse", - max_concurrency=1000, + max_concurrency=10000, resources={f"node:{current_ip}": 0.001}, ) .remote() @@ -316,7 +316,7 @@ def get_env_servlet( resources=resources, lifetime="detached", namespace="runhouse", - max_concurrency=1000, + max_concurrency=10000, ) .remote(env_name=env_name) )