Skip to content

Commit

Permalink
Fix JVM index (#230)
Browse files Browse the repository at this point in the history
  • Loading branch information
lgruen authored Sep 29, 2022
1 parent 04a1e5d commit b8adfff
Showing 1 changed file with 5 additions and 4 deletions.
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

0 comments on commit b8adfff

Please sign in to comment.