dayhoff-tools 1.13.3__py3-none-any.whl → 1.13.5__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -116,11 +116,22 @@ class StudioManagerClient:
116
116
  Response JSON
117
117
 
118
118
  Raises:
119
- requests.HTTPError: If request fails
119
+ RuntimeError: If request fails with error message from API
120
120
  """
121
121
  url = f"{self.api_url}{path}"
122
122
  response = requests.request(method, url, **kwargs)
123
- response.raise_for_status()
123
+
124
+ # Parse error body if request failed
125
+ if not response.ok:
126
+ try:
127
+ error_body = response.json()
128
+ error_message = error_body.get("error", response.text)
129
+ except Exception:
130
+ error_message = response.text or f"HTTP {response.status_code}"
131
+
132
+ # Raise exception with the actual error message from API
133
+ raise RuntimeError(error_message)
134
+
124
135
  return response.json()
125
136
 
126
137
  # Engine operations
@@ -212,6 +212,48 @@ def launch_engine(
212
212
  click.echo(f" dh engine status {name}")
213
213
 
214
214
  except Exception as e:
215
+ error_msg = str(e)
216
+
217
+ # Check for quota/limit errors
218
+ if "VcpuLimitExceeded" in error_msg or "vCPU limit" in error_msg:
219
+ click.echo(f"✗ Failed to launch engine: vCPU quota exceeded", err=True)
220
+ click.echo("", err=True)
221
+ click.echo(f"The {env} AWS account has insufficient vCPU quota for {engine_type} instances.", err=True)
222
+ click.echo("", err=True)
223
+ click.echo("Solutions:", err=True)
224
+ click.echo(" 1. Use a different instance type (e.g., --type cpu)", err=True)
225
+ click.echo(" 2. Request a quota increase:", err=True)
226
+ click.echo(" • AWS Console → Service Quotas → Amazon EC2", err=True)
227
+ click.echo(" • Find quota for the instance family", err=True)
228
+ click.echo(" • Request increase (typically approved within 24h)", err=True)
229
+ click.echo("", err=True)
230
+ click.echo("For testing infrastructure, use CPU instances instead of GPU.", err=True)
231
+ raise click.Abort()
232
+
233
+ # Check for insufficient capacity errors
234
+ if "InsufficientInstanceCapacity" in error_msg:
235
+ click.echo(f"✗ Failed to launch engine: insufficient EC2 capacity", err=True)
236
+ click.echo("", err=True)
237
+ click.echo(f"AWS does not have available {engine_type} capacity in your region/AZ.", err=True)
238
+ click.echo("", err=True)
239
+ click.echo("Solutions:", err=True)
240
+ click.echo(" 1. Try again in a few minutes (capacity fluctuates)", err=True)
241
+ click.echo(" 2. Use a different instance type", err=True)
242
+ click.echo(" 3. Contact AWS support for capacity reservations", err=True)
243
+ raise click.Abort()
244
+
245
+ # Check for instance limit errors
246
+ if "InstanceLimitExceeded" in error_msg or "instance limit" in error_msg.lower():
247
+ click.echo(f"✗ Failed to launch engine: instance limit exceeded", err=True)
248
+ click.echo("", err=True)
249
+ click.echo(f"You have reached the maximum number of running instances in {env}.", err=True)
250
+ click.echo("", err=True)
251
+ click.echo("Solutions:", err=True)
252
+ click.echo(" 1. Terminate unused engines: dh engine2 list --env {env}", err=True)
253
+ click.echo(" 2. Request a limit increase via AWS Service Quotas", err=True)
254
+ raise click.Abort()
255
+
256
+ # Generic error
215
257
  click.echo(f"✗ Failed to launch engine: {e}", err=True)
216
258
  raise click.Abort()
217
259
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dayhoff-tools
3
- Version: 1.13.3
3
+ Version: 1.13.5
4
4
  Summary: Common tools for all the repos at Dayhoff Labs
5
5
  Author: Daniel Martin-Alarcon
6
6
  Author-email: dma@dayhofflabs.com
@@ -11,10 +11,10 @@ dayhoff_tools/cli/engine1/engine_management.py,sha256=s_H3FtMlKsdfzR8pwV-j2W2QX-
11
11
  dayhoff_tools/cli/engine1/shared.py,sha256=Ecx6I1jtzmxQDn3BezKpgpQ4SJeZf4SZjUCLg-67p80,16844
12
12
  dayhoff_tools/cli/engine1/studio_commands.py,sha256=VwTQujz32-uMcYusDRE73SdzRpgvIkv7ZAF4zRv6AzA,30266
13
13
  dayhoff_tools/cli/engines_studios/__init__.py,sha256=E6aG0C6qjJnJuClemSKRFlYvLUL49MQZOvfqNQ7SDKs,159
14
- dayhoff_tools/cli/engines_studios/api_client.py,sha256=9I55_Ns8VHxndGjvSt_c5ZohSqMOeywQlLjyuoDEqCQ,13039
14
+ dayhoff_tools/cli/engines_studios/api_client.py,sha256=McZyyh5H36gkrK6s6Z7s9hl7yLLSLrHjsBtR4Opg6Ko,13491
15
15
  dayhoff_tools/cli/engines_studios/auth.py,sha256=rwetV5hp4jSvK8FyvKgXCnezLOZx1aW8oiSDc6U83iE,5189
16
16
  dayhoff_tools/cli/engines_studios/engine-studio-cli.md,sha256=or4k7ZZKPMTkvu67PdcUTE2_cxjnj0HQxxTuJZR1uiA,29924
17
- dayhoff_tools/cli/engines_studios/engine_commands.py,sha256=GWXUPSR0PXozfaqNN-G3vSXzCyRMdL5cOxyUZAdkH5A,34850
17
+ dayhoff_tools/cli/engines_studios/engine_commands.py,sha256=ZvUt9Gfl1-mhTu-jWAP3w6C_JVcrwOqfJV_jG0-_YGA,37330
18
18
  dayhoff_tools/cli/engines_studios/progress.py,sha256=SMahdG2YmO5bEPSONrfAXVTdS6m_69Ep02t3hc2DdKQ,9264
19
19
  dayhoff_tools/cli/engines_studios/simulators/cli-simulators.md,sha256=FZJl6nehdr2Duht2cx3yijcak0yKyOaHTrTzvFTAfZs,4976
20
20
  dayhoff_tools/cli/engines_studios/simulators/demo.sh,sha256=8tYABSCxLNXqGs-4r071V9mpKNZ5DTQ34WZ-v3d5s94,5364
@@ -48,7 +48,7 @@ dayhoff_tools/intake/uniprot.py,sha256=BZYJQF63OtPcBBnQ7_P9gulxzJtqyorgyuDiPeOJq
48
48
  dayhoff_tools/logs.py,sha256=DKdeP0k0kliRcilwvX0mUB2eipO5BdWUeHwh-VnsICs,838
49
49
  dayhoff_tools/sqlite.py,sha256=jV55ikF8VpTfeQqqlHSbY8OgfyfHj8zgHNpZjBLos_E,18672
50
50
  dayhoff_tools/warehouse.py,sha256=UETBtZD3r7WgvURqfGbyHlT7cxoiVq8isjzMuerKw8I,24475
51
- dayhoff_tools-1.13.3.dist-info/METADATA,sha256=v-DVAop2QmUMTKAKkM-kG5r0dOqpHn89hXVYKwzy97I,2980
52
- dayhoff_tools-1.13.3.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
53
- dayhoff_tools-1.13.3.dist-info/entry_points.txt,sha256=iAf4jteNqW3cJm6CO6czLxjW3vxYKsyGLZ8WGmxamSc,49
54
- dayhoff_tools-1.13.3.dist-info/RECORD,,
51
+ dayhoff_tools-1.13.5.dist-info/METADATA,sha256=KZfqGPGjAPOX9-anxbiPQ1pMh04iS9YhCBU5e-cs2aE,2980
52
+ dayhoff_tools-1.13.5.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
53
+ dayhoff_tools-1.13.5.dist-info/entry_points.txt,sha256=iAf4jteNqW3cJm6CO6czLxjW3vxYKsyGLZ8WGmxamSc,49
54
+ dayhoff_tools-1.13.5.dist-info/RECORD,,