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

Refactored data clumps with the help of LLMs (research project) #5119

Merged
merged 1 commit into from
May 24, 2024
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,215 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.apache.linkis.common.utils;

import java.util.Date;

public class JobHistoryInfo {
private String jobReqId;
private String submitUser;
private String executeUser;
private String source;
private String labels;
private String params;
private String progress;
private String status;
private String logPath;
private Integer errorCode;
private String errorDesc;
private Date createdTime;
private Date updatedTime;
private String instances;
private String metrics;
private String engineType;
private String executionCode;

public String getJobReqId() {
return jobReqId;
}

public void setJobReqId(String jobReqId) {
this.jobReqId = jobReqId;
}

public String getSubmitUser() {
return submitUser;
}

public void setSubmitUser(String submitUser) {
this.submitUser = submitUser;
}

public String getExecuteUser() {
return executeUser;
}

public void setExecuteUser(String executeUser) {
this.executeUser = executeUser;
}

public String getSource() {
return source;
}

public void setSource(String source) {
this.source = source;
}

public String getLabels() {
return labels;
}

public void setLabels(String labels) {
this.labels = labels;
}

public String getParams() {
return params;
}

public void setParams(String params) {
this.params = params;
}

public String getProgress() {
return progress;
}

public void setProgress(String progress) {
this.progress = progress;
}

public String getStatus() {
return status;
}

public void setStatus(String status) {
this.status = status;
}

public String getLogPath() {
return logPath;
}

public void setLogPath(String logPath) {
this.logPath = logPath;
}

public Integer getErrorCode() {
return errorCode;
}

public void setErrorCode(Integer errorCode) {
this.errorCode = errorCode;
}

public String getErrorDesc() {
return errorDesc;
}

public void setErrorDesc(String errorDesc) {
this.errorDesc = errorDesc;
}

public Date getCreatedTime() {
return createdTime;
}

public void setCreatedTime(Date createdTime) {
this.createdTime = createdTime;
}

public Date getUpdatedTime() {
return updatedTime;
}

public void setUpdatedTime(Date updatedTime) {
this.updatedTime = updatedTime;
}

public String getInstances() {
return instances;
}

public void setInstances(String instances) {
this.instances = instances;
}

public String getMetrics() {
return metrics;
}

public void setMetrics(String metrics) {
this.metrics = metrics;
}

public String getEngineType() {
return engineType;
}

public void setEngineType(String engineType) {
this.engineType = engineType;
}

public String getExecutionCode() {
return executionCode;
}

public void setExecutionCode(String executionCode) {
this.executionCode = executionCode;
}

public JobHistoryInfo(
String jobReqId,
String submitUser,
String executeUser,
String source,
String labels,
String params,
String progress,
String status,
String logPath,
Integer errorCode,
String errorDesc,
Date createdTime,
Date updatedTime,
String instances,
String metrics,
String engineType,
String executionCode) {
this.jobReqId = jobReqId;
this.submitUser = submitUser;
this.executeUser = executeUser;
this.source = source;
this.labels = labels;
this.params = params;
this.progress = progress;
this.status = status;
this.logPath = logPath;
this.errorCode = errorCode;
this.errorDesc = errorDesc;
this.createdTime = createdTime;
this.updatedTime = updatedTime;
this.instances = instances;
this.metrics = metrics;
this.engineType = engineType;
this.executionCode = executionCode;
}

public JobHistoryInfo() {}
}
Loading
Loading