Commit 300d7914 authored by 赵建伟's avatar 赵建伟

update codes

parent 49246988
...@@ -27,7 +27,7 @@ $JAR_DIR/ctr-estimate-1.0-SNAPSHOT.jar \ ...@@ -27,7 +27,7 @@ $JAR_DIR/ctr-estimate-1.0-SNAPSHOT.jar \
--retryInteral 3000 \ --retryInteral 3000 \
--checkpointPath 'hdfs://bj-gmei-hdfs/user/data/flink/ctr-estimate-tag/checkpoint' \ --checkpointPath 'hdfs://bj-gmei-hdfs/user/data/flink/ctr-estimate-tag/checkpoint' \
--parallelism 6 \ --parallelism 6 \
--startTime '2020-04-04 11:42:00' \ --startTime '2020-04-04 11:53:00' \
>> /data/log/ctr-estimate/ctr-estimate-tag.out 2>&1 & >> /data/log/ctr-estimate/ctr-estimate-tag.out 2>&1 &
tail -f /data/log/ctr-estimate/ctr-estimate-tag.out tail -f /data/log/ctr-estimate/ctr-estimate-tag.out
......
...@@ -11,13 +11,13 @@ public class CtrEstimateTagEtl { ...@@ -11,13 +11,13 @@ public class CtrEstimateTagEtl {
private String estimateType; private String estimateType;
private Integer count; private Integer count;
private String cardContentType; private String cardContentType;
private Long cardId; private String cardId;
private String partitionDate; private String partitionDate;
private String lastUpdateTime; private String lastUpdateTime;
private String type; private String type;
private String keyWord; private String keyWord;
public CtrEstimateTagEtl(String deviceId, String cardContentType, Long cardId, String estimateType, Integer count, String partitionDate, String lastUpdateTime,String type,String keyWord) { public CtrEstimateTagEtl(String deviceId, String cardContentType, String cardId, String estimateType, Integer count, String partitionDate, String lastUpdateTime,String type,String keyWord) {
this.deviceId = deviceId; this.deviceId = deviceId;
this.cardContentType = cardContentType; this.cardContentType = cardContentType;
this.cardId = cardId; this.cardId = cardId;
...@@ -48,11 +48,11 @@ public class CtrEstimateTagEtl { ...@@ -48,11 +48,11 @@ public class CtrEstimateTagEtl {
this.cardContentType = cardContentType; this.cardContentType = cardContentType;
} }
public Long getCardId() { public String getCardId() {
return cardId; return cardId;
} }
public void setCardId(Long cardId) { public void setCardId(String cardId) {
this.cardId = cardId; this.cardId = cardId;
} }
......
...@@ -82,7 +82,7 @@ public class CtrEstimateTagOperator implements BaseOperator{ ...@@ -82,7 +82,7 @@ public class CtrEstimateTagOperator implements BaseOperator{
} }
if (StringUtils.isNotBlank(clId)) { if (StringUtils.isNotBlank(clId)) {
String cardContentType = paramsObject.getString("card_content_type"); String cardContentType = paramsObject.getString("card_content_type");
Long cardId = paramsObject.getLong("card_id"); String cardId = paramsObject.getString("card_id");
if (null != cardContentType && null != cardId) { if (null != cardContentType && null != cardId) {
if ("service".equals(cardContentType) || "diary".equals(cardContentType) || if ("service".equals(cardContentType) || "diary".equals(cardContentType) ||
"tractate".equals(cardContentType) || "answer".equals(cardContentType)) { "tractate".equals(cardContentType) || "answer".equals(cardContentType)) {
...@@ -121,7 +121,7 @@ public class CtrEstimateTagOperator implements BaseOperator{ ...@@ -121,7 +121,7 @@ public class CtrEstimateTagOperator implements BaseOperator{
} }
if (StringUtils.isNotBlank(clId)) { if (StringUtils.isNotBlank(clId)) {
String cardContentType = paramsObject.getString("card_content_type"); String cardContentType = paramsObject.getString("card_content_type");
Long cardId = paramsObject.getLong("card_id"); String cardId = paramsObject.getString("card_id");
ctrEstimateTagEtl.setDeviceId(deviceId); ctrEstimateTagEtl.setDeviceId(deviceId);
if (null != cardContentType && null != cardId) { if (null != cardContentType && null != cardId) {
ctrEstimateTagEtl.setCardId(cardId); ctrEstimateTagEtl.setCardId(cardId);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment