Skip to content

Commit 8feb136

Browse files
authored
Prepare for 0.2.0 release (#49)
1 parent 2eb8c1a commit 8feb136

File tree

3 files changed

+124
-11
lines changed

3 files changed

+124
-11
lines changed

docs/cluster/cluster.html

+119-7
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ <h1 class="title">Module <code>codeflare_sdk.cluster.cluster</code></h1>
5454
from typing import List, Optional, Tuple
5555

5656
import openshift as oc
57+
from ray.job_submission import JobSubmissionClient
5758

5859
from ..utils import pretty_print
5960
from ..utils.generate_yaml import generate_appwrapper
@@ -172,9 +173,11 @@ <h1 class="title">Module <code>codeflare_sdk.cluster.cluster</code></h1>
172173
try:
173174
with oc.project(namespace):
174175
route = oc.invoke(
175-
&#34;get&#34;, [&#34;route&#34;, &#34;-o&#34;, &#34;jsonpath=&#39;{$.items[0].spec.host}&#39;&#34;]
176+
&#34;get&#34;, [&#34;route&#34;, &#34;-o&#34;, &#34;jsonpath=&#39;{$.items[*].spec.host}&#39;&#34;]
176177
)
177-
route = route.out().strip().strip(&#34;&#39;&#34;)
178+
route = route.out().split(&#34; &#34;)
179+
route = [x for x in route if f&#34;ray-dashboard-{self.config.name}&#34; in x]
180+
route = route[0].strip().strip(&#34;&#39;&#34;)
178181
return f&#34;http://{route}&#34;
179182
except:
180183
return &#34;Dashboard route not available yet. Did you run cluster.up()?&#34;
@@ -232,6 +235,30 @@ <h1 class="title">Module <code>codeflare_sdk.cluster.cluster</code></h1>
232235
pretty_print.print_clusters([cluster])
233236
return status, ready
234237

238+
def list_jobs(self) -&gt; List:
239+
&#34;&#34;&#34;
240+
This method accesses the head ray node in your cluster and lists the running jobs.
241+
&#34;&#34;&#34;
242+
dashboard_route = self.cluster_dashboard_uri(namespace=self.config.namespace)
243+
client = JobSubmissionClient(dashboard_route)
244+
return client.list_jobs()
245+
246+
def job_status(self, job_id: str) -&gt; str:
247+
&#34;&#34;&#34;
248+
This method accesses the head ray node in your cluster and returns the job status for the provided job id.
249+
&#34;&#34;&#34;
250+
dashboard_route = self.cluster_dashboard_uri(namespace=self.config.namespace)
251+
client = JobSubmissionClient(dashboard_route)
252+
return client.get_job_status(job_id)
253+
254+
def job_logs(self, job_id: str) -&gt; str:
255+
&#34;&#34;&#34;
256+
This method accesses the head ray node in your cluster and returns the logs for the provided job id.
257+
&#34;&#34;&#34;
258+
dashboard_route = self.cluster_dashboard_uri(namespace=self.config.namespace)
259+
client = JobSubmissionClient(dashboard_route)
260+
return client.get_job_logs(job_id)
261+
235262

236263
def get_current_namespace() -&gt; str:
237264
&#34;&#34;&#34;
@@ -549,9 +576,11 @@ <h2 class="section-title" id="header-classes">Classes</h2>
549576
try:
550577
with oc.project(namespace):
551578
route = oc.invoke(
552-
&#34;get&#34;, [&#34;route&#34;, &#34;-o&#34;, &#34;jsonpath=&#39;{$.items[0].spec.host}&#39;&#34;]
579+
&#34;get&#34;, [&#34;route&#34;, &#34;-o&#34;, &#34;jsonpath=&#39;{$.items[*].spec.host}&#39;&#34;]
553580
)
554-
route = route.out().strip().strip(&#34;&#39;&#34;)
581+
route = route.out().split(&#34; &#34;)
582+
route = [x for x in route if f&#34;ray-dashboard-{self.config.name}&#34; in x]
583+
route = route[0].strip().strip(&#34;&#39;&#34;)
555584
return f&#34;http://{route}&#34;
556585
except:
557586
return &#34;Dashboard route not available yet. Did you run cluster.up()?&#34;
@@ -607,7 +636,31 @@ <h2 class="section-title" id="header-classes">Classes</h2>
607636
# overriding the number of gpus with requested
608637
cluster.worker_gpu = self.config.gpu
609638
pretty_print.print_clusters([cluster])
610-
return status, ready</code></pre>
639+
return status, ready
640+
641+
def list_jobs(self) -&gt; List:
642+
&#34;&#34;&#34;
643+
This method accesses the head ray node in your cluster and lists the running jobs.
644+
&#34;&#34;&#34;
645+
dashboard_route = self.cluster_dashboard_uri(namespace=self.config.namespace)
646+
client = JobSubmissionClient(dashboard_route)
647+
return client.list_jobs()
648+
649+
def job_status(self, job_id: str) -&gt; str:
650+
&#34;&#34;&#34;
651+
This method accesses the head ray node in your cluster and returns the job status for the provided job id.
652+
&#34;&#34;&#34;
653+
dashboard_route = self.cluster_dashboard_uri(namespace=self.config.namespace)
654+
client = JobSubmissionClient(dashboard_route)
655+
return client.get_job_status(job_id)
656+
657+
def job_logs(self, job_id: str) -&gt; str:
658+
&#34;&#34;&#34;
659+
This method accesses the head ray node in your cluster and returns the logs for the provided job id.
660+
&#34;&#34;&#34;
661+
dashboard_route = self.cluster_dashboard_uri(namespace=self.config.namespace)
662+
client = JobSubmissionClient(dashboard_route)
663+
return client.get_job_logs(job_id)</code></pre>
611664
</details>
612665
<h3>Methods</h3>
613666
<dl>
@@ -627,9 +680,11 @@ <h3>Methods</h3>
627680
try:
628681
with oc.project(namespace):
629682
route = oc.invoke(
630-
&#34;get&#34;, [&#34;route&#34;, &#34;-o&#34;, &#34;jsonpath=&#39;{$.items[0].spec.host}&#39;&#34;]
683+
&#34;get&#34;, [&#34;route&#34;, &#34;-o&#34;, &#34;jsonpath=&#39;{$.items[*].spec.host}&#39;&#34;]
631684
)
632-
route = route.out().strip().strip(&#34;&#39;&#34;)
685+
route = route.out().split(&#34; &#34;)
686+
route = [x for x in route if f&#34;ray-dashboard-{self.config.name}&#34; in x]
687+
route = route[0].strip().strip(&#34;&#39;&#34;)
633688
return f&#34;http://{route}&#34;
634689
except:
635690
return &#34;Dashboard route not available yet. Did you run cluster.up()?&#34;</code></pre>
@@ -779,6 +834,60 @@ <h3>Methods</h3>
779834
return status, ready</code></pre>
780835
</details>
781836
</dd>
837+
<dt id="codeflare_sdk.cluster.cluster.Cluster.job_logs"><code class="name flex">
838+
<span>def <span class="ident">job_logs</span></span>(<span>self, job_id: str) ‑> str</span>
839+
</code></dt>
840+
<dd>
841+
<div class="desc"><p>This method accesses the head ray node in your cluster and returns the logs for the provided job id.</p></div>
842+
<details class="source">
843+
<summary>
844+
<span>Expand source code</span>
845+
</summary>
846+
<pre><code class="python">def job_logs(self, job_id: str) -&gt; str:
847+
&#34;&#34;&#34;
848+
This method accesses the head ray node in your cluster and returns the logs for the provided job id.
849+
&#34;&#34;&#34;
850+
dashboard_route = self.cluster_dashboard_uri(namespace=self.config.namespace)
851+
client = JobSubmissionClient(dashboard_route)
852+
return client.get_job_logs(job_id)</code></pre>
853+
</details>
854+
</dd>
855+
<dt id="codeflare_sdk.cluster.cluster.Cluster.job_status"><code class="name flex">
856+
<span>def <span class="ident">job_status</span></span>(<span>self, job_id: str) ‑> str</span>
857+
</code></dt>
858+
<dd>
859+
<div class="desc"><p>This method accesses the head ray node in your cluster and returns the job status for the provided job id.</p></div>
860+
<details class="source">
861+
<summary>
862+
<span>Expand source code</span>
863+
</summary>
864+
<pre><code class="python">def job_status(self, job_id: str) -&gt; str:
865+
&#34;&#34;&#34;
866+
This method accesses the head ray node in your cluster and returns the job status for the provided job id.
867+
&#34;&#34;&#34;
868+
dashboard_route = self.cluster_dashboard_uri(namespace=self.config.namespace)
869+
client = JobSubmissionClient(dashboard_route)
870+
return client.get_job_status(job_id)</code></pre>
871+
</details>
872+
</dd>
873+
<dt id="codeflare_sdk.cluster.cluster.Cluster.list_jobs"><code class="name flex">
874+
<span>def <span class="ident">list_jobs</span></span>(<span>self) ‑> List</span>
875+
</code></dt>
876+
<dd>
877+
<div class="desc"><p>This method accesses the head ray node in your cluster and lists the running jobs.</p></div>
878+
<details class="source">
879+
<summary>
880+
<span>Expand source code</span>
881+
</summary>
882+
<pre><code class="python">def list_jobs(self) -&gt; List:
883+
&#34;&#34;&#34;
884+
This method accesses the head ray node in your cluster and lists the running jobs.
885+
&#34;&#34;&#34;
886+
dashboard_route = self.cluster_dashboard_uri(namespace=self.config.namespace)
887+
client = JobSubmissionClient(dashboard_route)
888+
return client.list_jobs()</code></pre>
889+
</details>
890+
</dd>
782891
<dt id="codeflare_sdk.cluster.cluster.Cluster.status"><code class="name flex">
783892
<span>def <span class="ident">status</span></span>(<span>self, print_to_console: bool = True)</span>
784893
</code></dt>
@@ -863,6 +972,9 @@ <h4><code><a title="codeflare_sdk.cluster.cluster.Cluster" href="#codeflare_sdk.
863972
<li><code><a title="codeflare_sdk.cluster.cluster.Cluster.create_app_wrapper" href="#codeflare_sdk.cluster.cluster.Cluster.create_app_wrapper">create_app_wrapper</a></code></li>
864973
<li><code><a title="codeflare_sdk.cluster.cluster.Cluster.down" href="#codeflare_sdk.cluster.cluster.Cluster.down">down</a></code></li>
865974
<li><code><a title="codeflare_sdk.cluster.cluster.Cluster.is_ready" href="#codeflare_sdk.cluster.cluster.Cluster.is_ready">is_ready</a></code></li>
975+
<li><code><a title="codeflare_sdk.cluster.cluster.Cluster.job_logs" href="#codeflare_sdk.cluster.cluster.Cluster.job_logs">job_logs</a></code></li>
976+
<li><code><a title="codeflare_sdk.cluster.cluster.Cluster.job_status" href="#codeflare_sdk.cluster.cluster.Cluster.job_status">job_status</a></code></li>
977+
<li><code><a title="codeflare_sdk.cluster.cluster.Cluster.list_jobs" href="#codeflare_sdk.cluster.cluster.Cluster.list_jobs">list_jobs</a></code></li>
866978
<li><code><a title="codeflare_sdk.cluster.cluster.Cluster.status" href="#codeflare_sdk.cluster.cluster.Cluster.status">status</a></code></li>
867979
<li><code><a title="codeflare_sdk.cluster.cluster.Cluster.up" href="#codeflare_sdk.cluster.cluster.Cluster.up">up</a></code></li>
868980
</ul>

docs/cluster/config.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ <h1 class="title">Module <code>codeflare_sdk.cluster.config</code></h1>
7878
template: str = f&#34;{dir}/templates/new-template.yaml&#34;
7979
instascale: bool = False
8080
envs: dict = field(default_factory=dict)
81-
image: str = &#34;ghcr.io/ibm-ai-foundation/base:ray1.13.0-py38-gpu-pytorch1.12.0cu116-20220826-202124&#34;
81+
image: str = &#34;ghcr.io/foundation-model-stack/base:ray2.1.0-py38-gpu-pytorch1.12.0cu116-20221213-193103&#34;
8282
auth: Authentication = Authentication()</code></pre>
8383
</details>
8484
</section>
@@ -93,7 +93,7 @@ <h2 class="section-title" id="header-classes">Classes</h2>
9393
<dl>
9494
<dt id="codeflare_sdk.cluster.config.ClusterConfiguration"><code class="flex name class">
9595
<span>class <span class="ident">ClusterConfiguration</span></span>
96-
<span>(</span><span>name: str, namespace: str = 'default', head_info: list = &lt;factory&gt;, machine_types: list = &lt;factory&gt;, min_cpus: int = 1, max_cpus: int = 1, min_worker: int = 1, max_worker: int = 1, min_memory: int = 2, max_memory: int = 2, gpu: int = 0, template: str = '/home/meyceoz/Documents/codeflare-sdk/src/codeflare_sdk/templates/new-template.yaml', instascale: bool = False, envs: dict = &lt;factory&gt;, image: str = 'ghcr.io/ibm-ai-foundation/base:ray1.13.0-py38-gpu-pytorch1.12.0cu116-20220826-202124', auth: <a title="codeflare_sdk.cluster.auth.Authentication" href="auth.html#codeflare_sdk.cluster.auth.Authentication">Authentication</a> = &lt;codeflare_sdk.cluster.auth.Authentication object&gt;)</span>
96+
<span>(</span><span>name: str, namespace: str = 'default', head_info: list = &lt;factory&gt;, machine_types: list = &lt;factory&gt;, min_cpus: int = 1, max_cpus: int = 1, min_worker: int = 1, max_worker: int = 1, min_memory: int = 2, max_memory: int = 2, gpu: int = 0, template: str = '/home/meyceoz/Documents/codeflare-sdk/src/codeflare_sdk/templates/new-template.yaml', instascale: bool = False, envs: dict = &lt;factory&gt;, image: str = 'ghcr.io/foundation-model-stack/base:ray2.1.0-py38-gpu-pytorch1.12.0cu116-20221213-193103', auth: <a title="codeflare_sdk.cluster.auth.Authentication" href="auth.html#codeflare_sdk.cluster.auth.Authentication">Authentication</a> = &lt;codeflare_sdk.cluster.auth.Authentication object&gt;)</span>
9797
</code></dt>
9898
<dd>
9999
<div class="desc"><p>This dataclass is used to specify resource requirements and other details, and
@@ -122,7 +122,7 @@ <h2 class="section-title" id="header-classes">Classes</h2>
122122
template: str = f&#34;{dir}/templates/new-template.yaml&#34;
123123
instascale: bool = False
124124
envs: dict = field(default_factory=dict)
125-
image: str = &#34;ghcr.io/ibm-ai-foundation/base:ray1.13.0-py38-gpu-pytorch1.12.0cu116-20220826-202124&#34;
125+
image: str = &#34;ghcr.io/foundation-model-stack/base:ray2.1.0-py38-gpu-pytorch1.12.0cu116-20221213-193103&#34;
126126
auth: Authentication = Authentication()</code></pre>
127127
</details>
128128
<h3>Class variables</h3>

pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "codeflare-sdk"
3-
version = "0.1.7"
3+
version = "0.2.0"
44
description = "Python SDK for codeflare client"
55

66
license = "Apache-2.0"
@@ -23,3 +23,4 @@ keywords = ['codeflare', 'python', 'sdk', 'client', 'batch', 'scale']
2323
python = "^3.6"
2424
openshift-client = "1.0.18"
2525
rich = "^12.5"
26+
ray = "2.1.0"

0 commit comments

Comments
 (0)