diff --git a/runhouse/constants.py b/runhouse/constants.py index 29d366ae3..c95c8cd39 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.25 # 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 09d0eede2..27b281769 100644 --- a/runhouse/servers/http/http_server.py +++ b/runhouse/servers/http/http_server.py @@ -470,7 +470,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 5ab5efdb7..69ffe26f5 100644 --- a/runhouse/servers/obj_store.py +++ b/runhouse/servers/obj_store.py @@ -68,7 +68,7 @@ def get_cluster_servlet(create_if_not_exists: bool = False): get_if_exists=True, lifetime="detached", namespace="runhouse", - max_concurrency=1000, + max_concurrency=100000, resources={f"node:{current_ip}": 0.001}, ) .remote() @@ -308,7 +308,7 @@ def get_env_servlet( resources=resources, lifetime="detached", namespace="runhouse", - max_concurrency=1000, + max_concurrency=100000, ) .remote(env_name=env_name) )