idatasing-wangwei opened a new issue, #5805: URL: https://github.com/apache/seatunnel/issues/5805
### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct) ### Search before asking - [X] I had searched in the [issues](https://github.com/apache/seatunnel/issues?q=is%3Aissue+label%3A%22bug%22) and found no similar issues. ### Describe the proposal I was recently looking at the seatunenl-zeta engine source code interpretation, and there was a question that bothered me org.apache.seatunnel.engine.core.protocol.codec.SeaTunnelSubmitJobCodec public static ClientMessage encodeRequest( long jobId, com.hazelcast.internal.serialization.Data jobImmutableInformation) { ClientMessage clientMessage = ClientMessage.createForEncode(); clientMessage.setRetryable(false); clientMessage.setOperationName("SeaTunnel.SubmitJob"); ClientMessage.Frame initialFrame = new ClientMessage.Frame(new byte[REQUEST_INITIAL_FRAME_SIZE], UNFRAGMENTED_MESSAGE); encodeInt(initialFrame.content, TYPE_FIELD_OFFSET, REQUEST_MESSAGE_TYPE); encodeInt(initialFrame.content, PARTITION_ID_FIELD_OFFSET, -1); encodeLong(initialFrame.content, REQUEST_JOB_ID_FIELD_OFFSET, jobId); clientMessage.add(initialFrame); DataCodec.encode(clientMessage, jobImmutableInformation); return clientMessage; } org.apache.seatunnel.engine.server.protocol.task.SubmitJobTask public String getMethodName() { return "submitJob"; } For this line clientMessage.setOperationName("SeaTunnel.SubmitJob"); I can't understand why "SeaTunnel.SubmitJob" is different from "submitJob" ### Task list Nothing to preview ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
