Skip to content
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

Fix JVM index #230

Merged
merged 1 commit into from
Sep 29, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions batch/batch/worker/worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -2308,10 +2308,11 @@ def __init__(self, client_session: httpx.ClientSession):

async def _initialize_jvms(self):
if instance_config.worker_type() in ('standard', 'D', 'highmem', 'E'):
jvms = await asyncio.gather(
*[JVM.create(i, jvm_cores, self) for jvm_cores in (1, 2, 4, 8) for i in range(CORES // jvm_cores)],
)
self._jvms.update(jvms)
jvms = []
for jvm_cores in (1, 2, 4, 8):
for _ in range(CORES // jvm_cores):
jvms.append(JVM.create(len(jvms), jvm_cores, self))
self._jvms.update(await asyncio.gather(*jvms))
log.info(f'JVMs initialized {self._jvms}')

async def borrow_jvm(self, n_cores: int) -> JVM:
Expand Down