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

release observability improvements #18

Open
wants to merge 1 commit into
base: pinterest/main-2.10.0
Choose a base branch
from
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion ci/ray_ci/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@


POSTMERGE_PIPELINE = "0189e759-8c96-4302-b6b5-b4274406bf89"
RAY_VERSION = "2.10.0"
RAY_VERSION = "2.10.0+pinterest2"


def chunk_into_n(list: List[str], n: int) -> List[List[str]]:
Expand Down
2 changes: 1 addition & 1 deletion dashboard/modules/reporter/tests/test_reporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def test_fix_grpc_metrics():
'"Version" } label_keys { key: "NodeAddress" } label_keys { key: "SessionName" '
"} } timeseries { start_timestamp { seconds: 1693693592 } label_values { value:"
' "ray.rpc.NodeInfoGcsService/RegisterNode" } label_values { value: '
'"gcs_server" } label_values { } label_values { value: "3.0.0.dev0" } '
'"gcs_server" } label_values { } label_values { value: "2.10.0+pinterest2" } '
'label_values { value: "127.0.0.1" } label_values { value: '
'"session_2023-09-02_15-26-32_589652_23265" } points { timestamp { seconds: '
"1693693602 } distribution_value { count: 1 sum: 0.266 bucket_options { "
Expand Down
2 changes: 1 addition & 1 deletion java/api/pom_template.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>io.ray</groupId>
<artifactId>ray-superpom</artifactId>
<version>2.10.0</version>
<version>2.10.0+pinterest2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion java/performance_test/pom_template.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>io.ray</groupId>
<artifactId>ray-superpom</artifactId>
<version>2.10.0</version>
<version>2.10.0+pinterest2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.ray</groupId>
<artifactId>ray-superpom</artifactId>
<version>2.10.0</version>
<version>2.10.0+pinterest2</version>
<packaging>pom</packaging>
<name>Ray Project Parent POM</name>
<description>An open source framework that provides a simple, universal API for building distributed applications.
Expand Down
2 changes: 1 addition & 1 deletion java/runtime/pom_template.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>io.ray</groupId>
<artifactId>ray-superpom</artifactId>
<version>2.10.0</version>
<version>2.10.0+pinterest2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion java/serve/pom_template.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>io.ray</groupId>
<artifactId>ray-superpom</artifactId>
<version>2.10.0</version>
<version>2.10.0+pinterest2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion java/test/pom_template.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>io.ray</groupId>
<artifactId>ray-superpom</artifactId>
<version>2.10.0</version>
<version>2.10.0+pinterest2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion python/ray/_version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Replaced with the current commit when building the wheels.
commit = "{{RAY_COMMIT_SHA}}"
version = "2.10.0"
version = "2.10.0+pinterest2"

if __name__ == "__main__":
print("%s %s" % (version, commit))
2 changes: 1 addition & 1 deletion src/ray/common/constants.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ constexpr int kMessagePackOffset = 9;
constexpr char kSetupWorkerFilename[] = "setup_worker.py";

/// The version of Ray
constexpr char kRayVersion[] = "2.10.0";
constexpr char kRayVersion[] = "2.10.0+pinterest2";

/*****************************/
/* ENV labels for autoscaler */
Expand Down
Loading