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

[core] spdlog newliner sink #50333

Merged
merged 2 commits into from
Feb 10, 2025

Conversation

dentiny
Copy link
Contributor

@dentiny dentiny commented Feb 8, 2025

Implement a new sink, which logs and flushes on newliner basis.
I plan to use it as a wrapper for rotation file sink around rotation file sink.

@dentiny dentiny added the go add ONLY when ready to merge, run all tests label Feb 8, 2025
@dentiny dentiny requested a review from jjyao February 8, 2025 01:44
@dentiny dentiny force-pushed the hjiang/spdlog-newliner-sink branch 3 times, most recently from c322959 to 918d520 Compare February 8, 2025 05:31
Signed-off-by: dentiny <[email protected]>
@dentiny dentiny force-pushed the hjiang/spdlog-newliner-sink branch from 918d520 to d123679 Compare February 8, 2025 05:32
return;
}
std::vector<std::string_view> segments = absl::StrSplit(new_content, '\n');
for (int idx = 0; idx < static_cast<int>(segments.size()) - 1; ++idx) {
Copy link
Collaborator

Choose a reason for hiding this comment

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

int -> size_t ?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

It's safer to use int, because segment could be empty, then possible to suffer underflow.

Copy link
Collaborator

Choose a reason for hiding this comment

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

I don't think it can be empty in our case but ok.

std::vector<std::string_view> segments = absl::StrSplit(new_content, '\n');
for (int idx = 0; idx < static_cast<int>(segments.size()) - 1; ++idx) {
std::string cur_message = std::move(buffer_);
buffer_.clear();
Copy link
Collaborator

Choose a reason for hiding this comment

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

is it safe to call clear on a moved string and use it later? Should we do buffer_ = "" instead?

Copy link
Contributor Author

@dentiny dentiny Feb 9, 2025

Choose a reason for hiding this comment

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

is it safe to call clear on a moved string and use it later?

What do you mean? I didn't access its value. clear is a well-defined function.

Signed-off-by: dentiny <[email protected]>
@dentiny dentiny requested a review from jjyao February 9, 2025 06:06
return;
}
std::vector<std::string_view> segments = absl::StrSplit(new_content, '\n');
for (int idx = 0; idx < static_cast<int>(segments.size()) - 1; ++idx) {
Copy link
Collaborator

Choose a reason for hiding this comment

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

I don't think it can be empty in our case but ok.

@jjyao jjyao merged commit b6e02cc into ray-project:master Feb 10, 2025
5 checks passed
xsuler pushed a commit to antgroup/ant-ray that referenced this pull request Mar 4, 2025
xsuler pushed a commit to antgroup/ant-ray that referenced this pull request Mar 4, 2025
park12sj pushed a commit to park12sj/ray that referenced this pull request Mar 18, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
go add ONLY when ready to merge, run all tests
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants