-
Notifications
You must be signed in to change notification settings - Fork 3.7k
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
Publish segment schema from MSQ engine #16463
Conversation
import java.util.Map; | ||
import java.util.Objects; | ||
|
||
public class DataSegmentExtendedWithSchema extends DataSegment |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is already a class DataSegmentWithMetadata
, why not reuse that?
@@ -57,7 +57,7 @@ public RemoteTaskActionClient( | |||
@Override | |||
public <RetType> RetType submit(TaskAction<RetType> taskAction) throws IOException | |||
{ | |||
log.debug("Performing action for task[%s]: %s", task.getId(), taskAction); | |||
log.info("Performing action for task[%s]: %s", task.getId(), taskAction); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this really needed? This can cause a lot of noise in task logs.
This pull request has been marked as stale due to 60 days of inactivity. |
This pull request/issue has been closed due to lack of activity. If you think that |
Parent issue: #14989