Skip to content
Merged
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
6 changes: 6 additions & 0 deletions historyserver/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# KubeRay History Server

This project is under active development.
See [#ray-history-server](https://app.slack.com/client/TN4768NRM/C09QLLU8HTL) channel to provide feedback.

<!-- TODO: Add docs for local development -->
Empty file.
1 change: 1 addition & 0 deletions historyserver/cmd/collector/main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package main
Empty file.
1 change: 1 addition & 0 deletions historyserver/cmd/historyserver/main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package main
3 changes: 3 additions & 0 deletions historyserver/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module github.com/ray-project/kuberay/historyserver

go 1.24.8
1 change: 1 addition & 0 deletions historyserver/pkg/eventserver/events.go
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package eventserver
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

will event collector be a better name?
I am ok with both

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

maybe we can merge this first, and @KunWuLuan can change the directory and project structure if they want?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

eventserver is different from collector. @chiayi is working on a POC of how to process events from storage into server-side state

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thank you!

1 change: 1 addition & 0 deletions historyserver/pkg/storage/storage.go
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package storage
1 change: 1 addition & 0 deletions historyserver/test/e2e/collector_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package e2e_test
1 change: 1 addition & 0 deletions historyserver/test/e2e/historyserver_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package e2e_test
3 changes: 3 additions & 0 deletions kuberay.code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@
{
"path": "kubectl-plugin"
},
{
"path": "historyserver"
},
{
"path": "proto"
},
Expand Down
Loading