1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
package mobvista.dmp.datasource.rtdmp
import com.alibaba.fastjson.{JSONArray, JSONObject}
import mobvista.dmp.common.{CommonSparkJob, MobvistaConstant}
import mobvista.dmp.format.RDDMultipleOutputFormat
import mobvista.dmp.util.{DateUtil, PropertyUtil}
import org.apache.commons.cli.{BasicParser, Options}
import org.apache.commons.lang.StringUtils
import org.apache.hadoop.fs.{FileSystem, Path}
import org.apache.hadoop.io.SequenceFile.CompressionType
import org.apache.hadoop.io.Text
import org.apache.hadoop.io.compress.{CompressionCodec, GzipCodec}
import org.apache.spark.storage.StorageLevel
import java.net.URI
import scala.collection.mutable
/**
* @package: mobvista.dmp.datasource.rtdmp
* @author: wangjf
* @date: 2020/7/13
* @time: 11:25 上午
* @email: jinfeng.wang@mobvista.com
* @phone: 152-1062-7698
*/
class RTDmpRequest extends CommonSparkJob with Serializable {
def commandOptions(): Options = {
val options = new Options()
options.addOption("date", true, "date")
options.addOption("output", true, "output")
options.addOption("coalesce", true, "coalesce")
options.addOption("table", true, "table")
options.addOption("business", true, "business")
options.addOption("hh", true, "hh")
options
}
val package_name_set = new mutable.HashSet[String]()
def check_package(package_name: String): Boolean = {
package_name_set.contains(package_name)
}
override protected def run(args: Array[String]): Int = {
val parser = new BasicParser()
val options = commandOptions()
val commandLine = parser.parse(options, args)
val date = commandLine.getOptionValue("date")
val output = commandLine.getOptionValue("output")
val business = commandLine.getOptionValue("business")
val table = commandLine.getOptionValue("table")
val hh = commandLine.getOptionValue("hh")
val coalesce = Integer.parseInt(commandLine.getOptionValue("coalesce"))
val spark = MobvistaConstant.createSparkSession(s"RTDmpRequest.$date.$business")
val update_date = DateUtil.format(DateUtil.parse(date, "yyyyMMdd"), "yyyy-MM-dd")
val sc = spark.sparkContext
try {
val conf = spark.sparkContext.hadoopConfiguration
conf.set("mapreduce.output.compress", "true")
conf.set("mapreduce.output.compression.codec", "org.apache.hadoop.io.compress.GzipCodec")
conf.setBoolean("mapreduce.output.fileoutputformat.compress", true)
conf.set("mapreduce.output.fileoutputformat.compress.type", CompressionType.BLOCK.toString)
conf.setClass("mapreduce.output.fileoutputformat.compress.codec", classOf[GzipCodec], classOf[CompressionCodec])
spark.udf.register("check_package", check_package _)
val auto_business = PropertyUtil.getProperty("config.properties", s"rtdmp.auto.business").split(",", -1).toSet[String]
// val noauto_business = PropertyUtil.getProperty("config.properties", s"rtdmp.noauto.business").split(",", -1).toSet[String]
var device_sql = if (auto_business.contains(business)) {
Constant.device_sql
.replace("@dt", date)
.replace("@business", business)
.replace("@check_package", "")
.replace("@table", table)
} else if (business.equals("tencent")) {
PropertyUtil.getProperty("config.properties", s"$business.package_name").split(",", -1).foreach(p => {
package_name_set.add(p)
})
Constant.tencent_device_sql
.replace("@dt", date)
.replace("@check_package", "AND check_package(package_name)")
.replace("@table", table)
.replace("@update_date",update_date)
} else {
PropertyUtil.getProperty("config.properties", s"$business.package_name").split(",", -1).foreach(p => {
package_name_set.add(p)
})
Constant.device_sql
.replace("@dt", date)
.replace("@business", business)
.replace("@check_package", "AND check_package(package_name)")
.replace("@table", table)
}
if (!hh.equals("00")) {
device_sql = device_sql.replace("@check_hr", s"AND hh = '$hh'")
} else {
device_sql = device_sql.replace("@check_hr", "")
}
println(s"package_name_set.size -->> ${package_name_set.size}")
FileSystem.get(new URI(s"s3://mob-emr-test"), sc.hadoopConfiguration).delete(new Path(output), true)
// 停掉 audience
val stopAudience = PropertyUtil.getProperty("config.properties",
s"rtdmp.stop.audience").split(",", -1).toSet[String]
.map(r => {
Integer.valueOf(r)
})
val filterMap: mutable.Map[String, Int] = new mutable.HashMap[String, Int]()
PropertyUtil.getProperty("config.properties", "define.package_name.update_date").split(",", -1)
.foreach(str => {
val kv = str.split(":", -1)
filterMap.put(kv(0), Integer.valueOf(kv(1)))
})
val rdd = spark.sql(device_sql).rdd
.filter(r => {
val package_name = r.getAs[String]("package_name")
val update_date = r.getAs[String]("update_date")
val days: Int = filterMap.getOrElse(package_name, 0)
val filterDate = DateUtil.getDay(DateUtil.parse(date, "yyyyMMdd"), "yyyy-MM-dd", -days)
update_date.compareTo(filterDate) >= 0
}).map(r => {
val device_id = r.getAs[String]("device_id")
var device_type = r.getAs[String]("device_type")
val platform = r.getAs[String]("platform")
val package_name = r.getAs[String]("package_name")
device_type = {
device_type match {
case "imeimd5" => "imei_md5"
case "gaidmd5" => "gaid_md5"
case "oaidmd5" => "oaid_md5"
case "idfamd5" => "idfa_md5"
case _ => device_type
}
}
(device_id, device_type, platform, package_name)
}).repartition(coalesce)
rdd.persist(StorageLevel.MEMORY_AND_DISK_SER)
rdd.map(t => {
(new Text(s"$output/${t._4}/${t._2}"), new Text(t._1))
}).saveAsNewAPIHadoopFile(output, classOf[Text], classOf[Text], classOf[RDDMultipleOutputFormat[_, _]], conf)
val mapRdd = rdd.map(t => {
(t._4, (t._2, t._3))
}).distinct(10)
.cache()
val pkgTypeCount = mapRdd.map(r => {
val deviceType = r._2._1
val platform = r._2._2
val packageName = {
if (business.equals("btop") && !r._1.contains("_btop")) {
r._1 + "_btop"
} else {
r._1
}
}
(packageName, (deviceType, platform))
}).countByKey()
val portalMap = mapRdd
.collectAsMap()
val uploadPkgSet = new mutable.HashSet[String]()
val uploadJsonArray = new JSONArray()
val updateJsonArray = new JSONArray()
portalMap.foreach(m => {
val jsonObject = new JSONObject()
val package_name = {
if (business.equals("btop") && !m._1.contains("_btop")) {
m._1 + "_btop"
} else {
m._1
}
}
var platform = if (StringUtils.isBlank(m._2._2)) {
0
} else if (m._2._2.equals("ios")) {
2
} else {
1
}
if (platform == 0) {
platform = if (MobvistaConstant.iosPkgPtn.matcher(m._1).matches()) {
2
} else {
1
}
}
val match_device_type = Logic.match_device_type(m._2._1)
val map = Logic.getAudienceInfo(business)
if (map.contains(package_name)) {
if (!stopAudience.contains(map(package_name))) {
jsonObject.put("id", map(package_name))
// jsonObject.put("audience_name", package_name)
if (pkgTypeCount(package_name) == 1) {
jsonObject.put("s3_path", s"$output/${m._1}/${m._2._1}/")
} else {
jsonObject.put("s3_path", s"$output/${m._1}/*/")
}
jsonObject.put("status", 1)
jsonObject.put("audience_data_status", 1)
updateJsonArray.add(jsonObject)
}
} else {
if (pkgTypeCount(package_name) == 1) {
jsonObject.put("s3_path", s"$output/${m._1}/${m._2._1}/")
} else {
jsonObject.put("s3_path", s"$output/${m._1}/*/")
}
jsonObject.put("platform", platform)
jsonObject.put("match_device_type", match_device_type)
jsonObject.put("audience_type", 2)
jsonObject.put("data_update_method", 1)
jsonObject.put("audience_name", package_name)
jsonObject.put("status", 1)
jsonObject.put("audience_gender", 3)
jsonObject.put("audience_count", 1)
jsonObject.put("is_sync_dmpserver", 1)
jsonObject.put("audience_data_status", 1)
uploadPkgSet.add(package_name)
uploadJsonArray.add(jsonObject)
}
})
val uploadJsonObject = ServerUtil.upload(uploadJsonArray)
if (uploadJsonObject.getInteger("code") == 200) {
println("RTDmp Upload OK,AudienceId -->> " + uploadJsonObject.getJSONArray("data"))
}
Logic.writeAudienceInfo(business, Logic.getAudienceMap(uploadPkgSet))
// 每次更新一个
for (i <- 0 until updateJsonArray.size()) {
val updateObject = new JSONArray()
updateObject.add(updateJsonArray.getJSONObject(i))
var flag = true
while (flag) {
val updateJsonObject = ServerUtil.update(updateObject)
if (updateJsonObject.getInteger("code") == 200) {
println("RTDmp Update OK,updateJson -->> " + updateObject)
flag = false
}
}
}
} finally {
if (sc != null) {
sc.stop()
}
if (spark != null) {
spark.stop()
}
}
0
}
}
object RTDmpRequest {
def main(args: Array[String]): Unit = {
new RTDmpRequest().run(args)
}
}