temp_analysis.scala 24.9 KB
Newer Older
王志伟's avatar
王志伟 committed
1 2 3 4
package com.gmei

import java.io.Serializable

王志伟's avatar
王志伟 committed
5
import com.gmei
王志伟's avatar
王志伟 committed
6
import com.gmei.WeafareStat.{defaultParams, parser}
王志伟's avatar
王志伟 committed
7
import org.apache.spark.sql.SaveMode
王志伟's avatar
王志伟 committed
8
//import org.apache.spark.sql.{SaveMode, TiContext}
王志伟's avatar
王志伟 committed
9 10 11
import org.apache.log4j.{Level, Logger}
import scopt.OptionParser
import com.gmei.lib.AbstractParams
王志伟's avatar
王志伟 committed
12
import java.io._
王志伟's avatar
王志伟 committed
13 14
import scala.util.parsing.json._

王志伟's avatar
王志伟 committed
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

object temp_analysis {

  Logger.getLogger("org.apache.spark").setLevel(Level.WARN)
  Logger.getLogger("org.apache.eclipse.jetty.server").setLevel(Level.OFF)

  case class Params(env: String = "dev",
                    date: String = "2018-08-01"
                   ) extends AbstractParams[Params] with Serializable

  val defaultParams = Params()

  val parser = new OptionParser[Params]("Feed_EDA") {
    head("WeafareStat")
    opt[String]("env")
      .text(s"the databases environment you used")
      .action((x, c) => c.copy(env = x))
    opt[String] ("date")
      .text(s"the date you used")
      .action((x,c) => c.copy(date = x))
    note(
      """
        |For example, the following command runs this app on a tidb dataset:
        |
        | spark-submit --class com.gmei.WeafareStat ./target/scala-2.11/feededa-assembly-0.1.jar \
      """.stripMargin +
        s"|   --env ${defaultParams.env}"
    )
  }

  def main(args: Array[String]): Unit = {
    parser.parse(args, defaultParams).map { param =>
      GmeiConfig.setup(param.env)
      val spark_env = GmeiConfig.getSparkSession()
      val sc = spark_env._2

51
      //      val ti = new TiContext(sc)
王志伟's avatar
王志伟 committed
52
      sc.sql("use jerry_prod")
王志伟's avatar
王志伟 committed
53 54

      import sc.implicits._
王志伟's avatar
王志伟 committed
55 56
//      val stat_date = GmeiConfig.getMinusNDate(1)
      val stat_date=param.date
王志伟's avatar
王志伟 committed
57
      //println(param.date)
王志伟's avatar
王志伟 committed
58
      val partition_date = stat_date.replace("-","")
王志伟's avatar
王志伟 committed
59

60
      val agency_id = sc.sql(
王志伟's avatar
王志伟 committed
61
        s"""
62 63 64 65 66 67 68 69 70 71 72
           |SELECT DISTINCT(cl_id) as device_id
           |FROM online.ml_hospital_spam_pv_day
           |WHERE partition_date >= '20180402'
           |AND partition_date <= '20181203'
           |AND pv_ratio >= 0.95
           |UNION ALL
           |SELECT DISTINCT(cl_id) as device_id
           |FROM online.ml_hospital_spam_pv_month
           |WHERE partition_date >= '20171101'
           |AND partition_date <= '20181203'
           |AND pv_ratio >= 0.95
王志伟's avatar
王志伟 committed
73 74
         """.stripMargin
      )
75
      agency_id.createOrReplaceTempView("agency_id")
王志伟's avatar
王志伟 committed
76

77
      val blacklist_id = sc.sql(
王志伟's avatar
王志伟 committed
78
        s"""
79 80
           |SELECT device_id
           |from blacklist
王志伟's avatar
王志伟 committed
81 82
         """.stripMargin
      )
83
      blacklist_id.createOrReplaceTempView("blacklist_id")
王志伟's avatar
王志伟 committed
84

85 86 87 88 89 90 91 92 93 94 95
      val final_id = sc.sql(
        s"""
           |select device_id
           |from agency_id
           |UNION ALL
           |select device_id
           |from blacklist_id
         """.stripMargin
      )
      final_id.createOrReplaceTempView("final_id")

96

王志伟's avatar
王志伟 committed
97 98
      //      //每日新用户
      val device_id_newUser = sc.sql(
99
        s"""
王志伟's avatar
王志伟 committed
100 101 102
           |select distinct(oms.device_id) as device_id
           |from online.ml_device_day_active_status oms left join final_id
           |on oms.device_id=final_id.device_id
王志伟's avatar
王志伟 committed
103
           |where (oms.active_type = '2' or oms.active_type='1')
王志伟's avatar
王志伟 committed
104 105 106 107 108 109
           |and oms.first_channel_source_type not in ('yqxiu1','yqxiu2','yqxiu3','yqxiu4','yqxiu5','mxyc1','mxyc2','mxyc3'
           |        ,'wanpu','jinshan','jx','maimai','zhuoyi','huatian','suopingjingling','mocha','mizhe','meika','lamabang'
           |        ,'js-az1','js-az2','js-az3','js-az4','js-az5','jfq-az1','jfq-az2','jfq-az3','jfq-az4','jfq-az5','toufang1'
           |        ,'toufang2','toufang3','toufang4','toufang5','toufang6','TF-toufang1','TF-toufang2','TF-toufang3','TF-toufang4'
           |        ,'TF-toufang5','tf-toufang1','tf-toufang2','tf-toufang3','tf-toufang4','tf-toufang5','benzhan','promotion_aso100'
           |        ,'promotion_qianka','promotion_xiaoyu','promotion_dianru','promotion_malioaso','promotion_malioaso-shequ'
王志伟's avatar
王志伟 committed
110
           |        ,'promotion_shike','promotion_julang_jl03','promotion_zuimei')
王志伟's avatar
王志伟 committed
111
           |and oms.partition_date ='${partition_date}'
112
           |and final_id.device_id is  null
王志伟's avatar
王志伟 committed
113
         """.stripMargin
114
      )
王志伟's avatar
王志伟 committed
115 116 117 118 119 120 121
      device_id_newUser.createOrReplaceTempView("device_id_new")




      val diary_clk_new = sc.sql(
        s"""
王志伟's avatar
王志伟 committed
122
           |select ov.partition_date,ov.cl_id as device_id,ov.params['diary_id'] as diary_id
王志伟's avatar
王志伟 committed
123 124 125 126 127 128
           |from online.tl_hdfs_maidian_view ov inner join device_id_new
           |on ov.cl_id = device_id_new.device_id
           |where ov.action = 'on_click_diary_card'
           |and ov.params['tab_name'] = '精选'
           |and ov.params['page_name'] = 'home'
           |and ov.partition_date='${partition_date}'
129
       """.stripMargin
王志伟's avatar
王志伟 committed
130 131 132 133 134
      )
      diary_clk_new.show(80)
      GmeiConfig.writeToJDBCTable("jdbc:mysql://172.16.40.158:4000/jerry_prod?user=root&password=3SYz54LS9#^9sBvC&rewriteBatchedStatements=true",diary_clk_new, table="temp",SaveMode.Append)
      println("写入完成")

135 136 137

      }

138

王志伟's avatar
王志伟 committed
139 140 141 142
    }


}
王志伟's avatar
王志伟 committed
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






object ARPU_COM {

  Logger.getLogger("org.apache.spark").setLevel(Level.WARN)
  Logger.getLogger("org.apache.eclipse.jetty.server").setLevel(Level.OFF)

  case class Params(env: String = "dev",
                    date: String = "2018-08-01"
                   ) extends AbstractParams[Params] with Serializable

  val defaultParams = Params()

  val parser = new OptionParser[Params]("Feed_EDA") {
    head("WeafareStat")
    opt[String]("env")
      .text(s"the databases environment you used")
      .action((x, c) => c.copy(env = x))
    opt[String] ("date")
      .text(s"the date you used")
      .action((x,c) => c.copy(date = x))
    note(
      """
        |For example, the following command runs this app on a tidb dataset:
        |
        | spark-submit --class com.gmei.WeafareStat ./target/scala-2.11/feededa-assembly-0.1.jar \
      """.stripMargin +
        s"|   --env ${defaultParams.env}"
    )
  }

  def main(args: Array[String]): Unit = {
    parser.parse(args, defaultParams).map { param =>
      GmeiConfig.setup(param.env)
      val spark_env = GmeiConfig.getSparkSession()
      val sc = spark_env._2

184
      //      val ti = new TiContext(sc)
王志伟's avatar
王志伟 committed
185
      sc.sql("use jerry_prod")
186 187 188 189 190 191
      //      ti.tidbMapTable(dbName = "jerry_prod", tableName = "diary_video")
      //      ti.tidbMapTable(dbName = "jerry_prod", tableName = "data_feed_click")
      //      ti.tidbMapTable(dbName = "jerry_prod", tableName = "blacklist")
      //      ti.tidbMapTable(dbName = "jerry_test", tableName = "bl_device_list")
      //      ti.tidbMapTable(dbName = "jerry_prod", tableName = "data_feed_exposure")
      //      ti.tidbMapTable(dbName = "jerry_prod", tableName = "merge_queue_table")
王志伟's avatar
王志伟 committed
192 193 194 195 196 197 198 199 200 201 202 203


      import sc.implicits._
      val stat_date = GmeiConfig.getMinusNDate(1)
      //println(param.date)
      val partition_date = stat_date.replace("-","")

      val agency_id = sc.sql(
        s"""
           |SELECT DISTINCT(cl_id) as device_id
           |FROM online.ml_hospital_spam_pv_day
           |WHERE partition_date >= '20180402'
王志伟's avatar
王志伟 committed
204
           |AND partition_date <= '${partition_date}'
王志伟's avatar
王志伟 committed
205 206 207 208 209
           |AND pv_ratio >= 0.95
           |UNION ALL
           |SELECT DISTINCT(cl_id) as device_id
           |FROM online.ml_hospital_spam_pv_month
           |WHERE partition_date >= '20171101'
王志伟's avatar
王志伟 committed
210
           |AND partition_date <= '${partition_date}'
王志伟's avatar
王志伟 committed
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
           |AND pv_ratio >= 0.95
         """.stripMargin
      )
      agency_id.createOrReplaceTempView("agency_id")

      val blacklist_id = sc.sql(
        s"""
           |SELECT device_id
           |from blacklist
         """.stripMargin
      )
      blacklist_id.createOrReplaceTempView("blacklist_id")

      val final_id = sc.sql(
        s"""
           |select device_id
           |from agency_id
           |UNION ALL
           |select device_id
           |from blacklist_id
         """.stripMargin
      )
      final_id.createOrReplaceTempView("final_id")


      val diary_clk_all = sc.sql(
        s"""
王志伟's avatar
王志伟 committed
238
           |select sum(md.gengmei_price) as pay_all,count(distinct(md.device_id)) as consum_num
王志伟's avatar
王志伟 committed
239 240
           |from online.ml_meigou_order_detail md left join final_id
           |on md.device_id = final_id.device_id
王志伟's avatar
王志伟 committed
241
           |where md.status= 2
王志伟's avatar
王志伟 committed
242
           |and final_id.device_id is  null
王志伟's avatar
王志伟 committed
243 244
           |and md.partition_date = '20181218'
           |and  md.pay_time  is  not  null
王志伟's avatar
王志伟 committed
245 246
           |and  md.pay_time  >=  '2018-11-01'
           |and md.pay_time  <=  '2018-11-30'
王志伟's avatar
王志伟 committed
247 248 249 250 251 252 253
       """.stripMargin
      )
      diary_clk_all.show(80)


      val active_num = sc.sql(
        s"""
王志伟's avatar
王志伟 committed
254
           |select count(distinct(device_id)) as active_num
王志伟's avatar
王志伟 committed
255
           |from online.ml_device_month_active_status
王志伟's avatar
王志伟 committed
256
           |where partition_date = '20181130'
王志伟's avatar
王志伟 committed
257
           |and first_channel_source_type not in ('yqxiu1','yqxiu2','yqxiu3','yqxiu4','yqxiu5','mxyc1','mxyc2','mxyc3','wanpu','jinshan','jx','maimai','zhuoyi','huatian','suopingjingling','mocha','mizhe','meika','lamabang','js-az1','js-az2','js-az3','js-az4','js-az5','jfq-az1','jfq-az2','jfq-az3','jfq-az4','jfq-az5','toufang1' ,'toufang2','toufang3','toufang4','toufang5','toufang6','TF-toufang1','TF-toufang2','TF-toufang3','TF-toufang4','TF-toufang5','tf-toufang1','tf-toufang2','tf-toufang3','tf-toufang4','tf-toufang5','benzhan','promotion_aso100' ,'promotion_qianka','promotion_xiaoyu','promotion_dianru','promotion_malioaso','promotion_malioaso-shequ' ,'promotion_shike','promotion_julang_jl03')
王志伟's avatar
王志伟 committed
258 259
       """.stripMargin
      )
王志伟's avatar
王志伟 committed
260
      active_num.show(80)
王志伟's avatar
王志伟 committed
261

262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306
    }


  }

}




object hospital_gengmei {

  Logger.getLogger("org.apache.spark").setLevel(Level.WARN)
  Logger.getLogger("org.apache.eclipse.jetty.server").setLevel(Level.OFF)

  case class Params(env: String = "dev",
                    date: String = "2018-08-01"
                   ) extends AbstractParams[Params] with Serializable

  val defaultParams = Params()

  val parser = new OptionParser[Params]("Feed_EDA") {
    head("WeafareStat")
    opt[String]("env")
      .text(s"the databases environment you used")
      .action((x, c) => c.copy(env = x))
    opt[String] ("date")
      .text(s"the date you used")
      .action((x,c) => c.copy(date = x))
    note(
      """
        |For example, the following command runs this app on a tidb dataset:
        |
        | spark-submit --class com.gmei.WeafareStat ./target/scala-2.11/feededa-assembly-0.1.jar \
      """.stripMargin +
        s"|   --env ${defaultParams.env}"
    )
  }

  def main(args: Array[String]): Unit = {
    parser.parse(args, defaultParams).map { param =>
      GmeiConfig.setup(param.env)
      val spark_env = GmeiConfig.getSparkSession()
      val sc = spark_env._2

307
      //      val ti = new TiContext(sc)
王志伟's avatar
王志伟 committed
308
      sc.sql("use jerry_prod")
309 310 311 312 313 314
      //      ti.tidbMapTable(dbName = "jerry_prod", tableName = "diary_video")
      //      ti.tidbMapTable(dbName = "jerry_prod", tableName = "data_feed_click")
      //      ti.tidbMapTable(dbName = "jerry_prod", tableName = "blacklist")
      //      ti.tidbMapTable(dbName = "jerry_test", tableName = "bl_device_list")
      //      ti.tidbMapTable(dbName = "jerry_prod", tableName = "data_feed_exposure")
      //      ti.tidbMapTable(dbName = "jerry_prod", tableName = "merge_queue_table")
王志伟's avatar
王志伟 committed
315 316


317 318 319 320 321 322 323 324 325 326 327 328
      import sc.implicits._
      val stat_date = GmeiConfig.getMinusNDate(1)
      //println(param.date)
      val partition_date = stat_date.replace("-","")

      val hospital_gengmei = sc.sql(
        s"""
           |SELECT id,name,location,city_id
           |FROM online.tl_hdfs_hospital_view
           |WHERE partition_date = '20181219'
         """.stripMargin
      )
329
      hospital_gengmei.show()
330 331
      GmeiConfig.writeToJDBCTable(hospital_gengmei, "hospital_gengmei", SaveMode.Append)

王志伟's avatar
王志伟 committed
332 333 334 335 336 337 338
    }


  }

}

339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378





object meigou_xiaofei_renshu {

  Logger.getLogger("org.apache.spark").setLevel(Level.WARN)
  Logger.getLogger("org.apache.eclipse.jetty.server").setLevel(Level.OFF)

  case class Params(env: String = "dev",
                    date: String = "2018-08-01"
                   ) extends AbstractParams[Params] with Serializable

  val defaultParams = Params()

  val parser = new OptionParser[Params]("Feed_EDA") {
    head("WeafareStat")
    opt[String]("env")
      .text(s"the databases environment you used")
      .action((x, c) => c.copy(env = x))
    opt[String] ("date")
      .text(s"the date you used")
      .action((x,c) => c.copy(date = x))
    note(
      """
        |For example, the following command runs this app on a tidb dataset:
        |
        | spark-submit --class com.gmei.WeafareStat ./target/scala-2.11/feededa-assembly-0.1.jar \
      """.stripMargin +
        s"|   --env ${defaultParams.env}"
    )
  }

  def main(args: Array[String]): Unit = {
    parser.parse(args, defaultParams).map { param =>
      GmeiConfig.setup(param.env)
      val spark_env = GmeiConfig.getSparkSession()
      val sc = spark_env._2

379
      //      val ti = new TiContext(sc)
王志伟's avatar
王志伟 committed
380
      sc.sql("use jerry_prod")
381 382 383 384 385 386
      //      ti.tidbMapTable(dbName = "jerry_prod", tableName = "diary_video")
      //      ti.tidbMapTable(dbName = "jerry_prod", tableName = "data_feed_click")
      //      ti.tidbMapTable(dbName = "jerry_prod", tableName = "blacklist")
      //      ti.tidbMapTable(dbName = "jerry_test", tableName = "bl_device_list")
      //      ti.tidbMapTable(dbName = "jerry_prod", tableName = "data_feed_exposure")
      //      ti.tidbMapTable(dbName = "jerry_prod", tableName = "merge_queue_table")
387 388


389

390
      import sc.implicits._
391
      //      val stat_date = GmeiConfig.getMinusNDate(1)
王志伟's avatar
王志伟 committed
392
      val stat_date=param.date
393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432
      //println(param.date)
      val partition_date = stat_date.replace("-","")

      val agency_id = sc.sql(
        s"""
           |SELECT DISTINCT(cl_id) as device_id
           |FROM online.ml_hospital_spam_pv_day
           |WHERE partition_date >= '20180402'
           |AND partition_date <= '${partition_date}'
           |AND pv_ratio >= 0.95
           |UNION ALL
           |SELECT DISTINCT(cl_id) as device_id
           |FROM online.ml_hospital_spam_pv_month
           |WHERE partition_date >= '20171101'
           |AND partition_date <= '${partition_date}'
           |AND pv_ratio >= 0.95
         """.stripMargin
      )
      agency_id.createOrReplaceTempView("agency_id")

      val blacklist_id = sc.sql(
        s"""
           |SELECT device_id
           |from blacklist
         """.stripMargin
      )
      blacklist_id.createOrReplaceTempView("blacklist_id")

      val final_id = sc.sql(
        s"""
           |select device_id
           |from agency_id
           |UNION ALL
           |select device_id
           |from blacklist_id
         """.stripMargin
      )
      final_id.createOrReplaceTempView("final_id")


433 434 435 436 437 438 439 440 441 442 443 444 445 446 447
      //      val meigou_price = sc.sql(
      //        s"""
      //           |select  md.user_id,sum(md.gengmei_price) as pay_all
      //           |from online.ml_meigou_order_detail md left join final_id
      //           |on md.device_id = final_id.device_id
      //           |where md.status= 2
      //           |and final_id.device_id is  null
      //           |and md.partition_date = '20181223'
      //           |and  md.pay_time  is  not  null
      //           |and  md.validate_time>'2017-01-01 00:00:00.0'
      //           |group by md.user_id
      //           |order by sum(md.gengmei_price)
      //       """.stripMargin
      //      )
      //      meigou_price.show(80)
448 449


450 451 452
      val meigou_price = sc.sql(
        s"""
           |select  md.user_id,sum(md.gengmei_price) as pay_all
453 454 455 456 457 458 459 460 461 462
           |from online.ml_meigou_order_detail md
           |left join
           |(
           |        SELECT
           |        order_id
           |        FROM mining.ml_order_spam_recognize
           |        WHERE partition_date='20181223' AND
           |        self_support=0 AND dayBitsGetW1(predict_result,'20181223')=0
           |)spam
           |on md.order_id = spam.order_id
463
           |where md.status= 2
464
           |and  spam.order_id is null
465 466
           |and md.partition_date = '20181223'
           |and  md.pay_time  is  not  null
467
           |and  md.validate_time>'2017-01-01 00:00:00.0'
468 469 470 471
           |group by md.user_id
           |order by sum(md.gengmei_price)
       """.stripMargin
      )
472
      //      meigou_price.show(80)
473

474
      //      GmeiConfig.writeToJDBCTable(meigou_price, "meigou_price", SaveMode.Overwrite)
475 476 477 478 479 480 481 482

    }


  }

}

483 484 485



王志伟's avatar
王志伟 committed
486
object alpha_ctr {
487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520

  Logger.getLogger("org.apache.spark").setLevel(Level.WARN)
  Logger.getLogger("org.apache.eclipse.jetty.server").setLevel(Level.OFF)

  case class Params(env: String = "dev",
                    date: String = "2018-08-01"
                   ) extends AbstractParams[Params] with Serializable

  val defaultParams = Params()

  val parser = new OptionParser[Params]("Feed_EDA") {
    head("WeafareStat")
    opt[String]("env")
      .text(s"the databases environment you used")
      .action((x, c) => c.copy(env = x))
    opt[String] ("date")
      .text(s"the date you used")
      .action((x,c) => c.copy(date = x))
    note(
      """
        |For example, the following command runs this app on a tidb dataset:
        |
        | spark-submit --class com.gmei.WeafareStat ./target/scala-2.11/feededa-assembly-0.1.jar \
      """.stripMargin +
        s"|   --env ${defaultParams.env}"
    )
  }

  def main(args: Array[String]): Unit = {
    parser.parse(args, defaultParams).map { param =>
      GmeiConfig.setup(param.env)
      val spark_env = GmeiConfig.getSparkSession()
      val sc = spark_env._2

521
      //      val ti = new TiContext(sc)
王志伟's avatar
王志伟 committed
522
      sc.sql("use jerry_prod")
523 524 525 526 527 528
      //      ti.tidbMapTable(dbName = "jerry_prod", tableName = "diary_video")
      //      ti.tidbMapTable(dbName = "jerry_prod", tableName = "data_feed_click")
      //      ti.tidbMapTable(dbName = "jerry_prod", tableName = "blacklist")
      //      ti.tidbMapTable(dbName = "jerry_test", tableName = "bl_device_list")
      //      ti.tidbMapTable(dbName = "jerry_prod", tableName = "data_feed_exposure")
      //      ti.tidbMapTable(dbName = "jerry_prod", tableName = "merge_queue_table")
529 530 531


      import sc.implicits._
王志伟's avatar
王志伟 committed
532 533
      val stat_date = GmeiConfig.getMinusNDate(1)
//      val stat_date = param.date
534 535 536
      //println(param.date)
      val partition_date = stat_date.replace("-","")

王志伟's avatar
王志伟 committed
537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609
      val click_count_recommend = sc.sql(
        s"""
           |select '${stat_date}' as stat_date,count(*) as click_count_recommend
           |from bl.bl_alpha_et_mg_maidianlog_inc_d
           |where params['tab_name']='recommend'
           |and params['page_name']='home'
           |and type='on_click_feed_topic_card'
           |and partition_day='${partition_date}'
       """.stripMargin
      )
      click_count_recommend.show()

      val click_count_focus = sc.sql(
        s"""
           |select '${stat_date}' as stat_date,count(*) as click_count_focus
           |from bl.bl_alpha_et_mg_maidianlog_inc_d
           |where params['tab_name']='focus'
           |and params['page_name']='home'
           |and type='on_click_feed_topic_card'
           |and partition_day='${partition_date}'
       """.stripMargin
      )
      click_count_focus.show()


      def parse_json(str:String): Int ={
        var t = List[Map[String, Any]]()
        val result = JSON.parseFull(str)
        result match {
          case Some(b: List[Map[String, Any]]) => t = t ++ b
          case None => println("Parsing failed")
          case other => println("Unknown data structure: " + other)
        }
        t.size

      }

      val expoure_cards=sc.sql(
        s"""
           |select params['exposure_cards'] as exposure_cards
           |from bl.bl_alpha_et_mg_maidianlog_inc_d
           |where params['tab_name'] = 'recommend'
           |and params['page_name'] = 'home'
           |and type = 'page_precise_exposure'
           |and partition_day='${partition_date}'
       """.stripMargin
      )
      val a =expoure_cards.rdd.map(row => row(0).toString).map(row=>parse_json(row)).collect().sum
      val result1=List((stat_date,a))
      val df1 = sc.createDataFrame(result1).toDF("stat_date","expoure_count_recommend")

      val expoure_cards2=sc.sql(
        s"""
           |select params['exposure_cards'] as exposure_cards
           |from bl.bl_alpha_et_mg_maidianlog_inc_d
           |where params['tab_name'] = 'focus'
           |and params['page_name'] = 'home'
           |and type = 'page_precise_exposure'
           |and partition_day='${partition_date}'
       """.stripMargin
      )
      val b =expoure_cards2.rdd.map(row => row(0).toString).map(row=>parse_json(row)).collect().sum
      val result2=List((stat_date,b))
      val df2 = sc.createDataFrame(result2).toDF("stat_date","expoure_count_focus")



      val result=click_count_recommend.join(click_count_focus,"stat_date")
        .join(df1,"stat_date")
        .join(df2,"stat_date")



王志伟's avatar
王志伟 committed
610
//      GmeiConfig.writeToJDBCTable(result, "alpha_ctr", SaveMode.Append)
王志伟's avatar
王志伟 committed
611 612 613
//      GmeiConfig.writeToJDBCTable("jdbc:mysql://152.136.44.138:4000/jerry_prod?user=root&password=3SYz54LS9#^9sBvC&rewriteBatchedStatements=true",result, table="alpha_ctr",SaveMode.Append)

      println("开始写入")
王志伟's avatar
王志伟 committed
614
//      GmeiConfig.writeToJDBCTable("jerry.jdbcuri",result, table="alpha_ctr",SaveMode.Append)
王志伟's avatar
王志伟 committed
615

616
      //      GmeiConfig.writeToJDBCTable(result, "alpha_ctr", SaveMode.Append)
王志伟's avatar
王志伟 committed
617 618
      GmeiConfig.writeToJDBCTable("jdbc:mysql://172.16.40.158:4000/jerry_prod?user=root&password=3SYz54LS9#^9sBvC&rewriteBatchedStatements=true",result, table="alpha_ctr",SaveMode.Append)
      println("写入完成")
王志伟's avatar
王志伟 committed
619

王志伟's avatar
王志伟 committed
620 621


王志伟's avatar
王志伟 committed
622
      val device_num_count = sc.sql(
王志伟's avatar
王志伟 committed
623
        s"""
王志伟's avatar
王志伟 committed
624
           |select '${stat_date}' as stat_date,count(DISTINCT(device_id)) as device_num
王志伟's avatar
王志伟 committed
625
           |from ml.ML_ALPHA_C_CT_DV_DEVICE_DIMEN_D
王志伟's avatar
王志伟 committed
626
           |where partition_day='${partition_date}'
王志伟's avatar
王志伟 committed
627
           |and is_today_active='true'
王志伟's avatar
王志伟 committed
628
       """.stripMargin
王志伟's avatar
王志伟 committed
629
      )
王志伟's avatar
王志伟 committed
630
      device_num_count.show()
王志伟's avatar
王志伟 committed
631

王志伟's avatar
王志伟 committed
632
      val duration_device=sc.sql(
王志伟's avatar
王志伟 committed
633
        s"""
王志伟's avatar
王志伟 committed
634
           |select '${stat_date}' as stat_date,sum(user_duration)/count(DISTINCT(device_id)) as device_duration
王志伟's avatar
王志伟 committed
635
           |from ml.ML_ALPHA_C_CT_DV_DEVICE_INDIC_INC_D
王志伟's avatar
王志伟 committed
636 637
           |WHERE partition_day='${partition_date}'
           |and open_times!="0"
王志伟's avatar
王志伟 committed
638 639
       """.stripMargin
      )
王志伟's avatar
王志伟 committed
640

王志伟's avatar
王志伟 committed
641
      val result3=device_num_count.join(duration_device,"stat_date")
王志伟's avatar
王志伟 committed
642

王志伟's avatar
王志伟 committed
643
//      GmeiConfig.writeToJDBCTable(result3, "alpha_duration", SaveMode.Append)
王志伟's avatar
王志伟 committed
644 645
      GmeiConfig.writeToJDBCTable("jdbc:mysql://172.16.40.158:4000/jerry_prod?user=root&password=3SYz54LS9#^9sBvC&rewriteBatchedStatements=true",result3, table="alpha_duration",SaveMode.Append)
      println("写入完成")
646

647 648 649 650 651 652 653 654 655
    }


  }

}



王志伟's avatar
王志伟 committed
656
//话题相关问题统计
657 658


659
object copy_database {
王志伟's avatar
王志伟 committed
660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693

  Logger.getLogger("org.apache.spark").setLevel(Level.WARN)
  Logger.getLogger("org.apache.eclipse.jetty.server").setLevel(Level.OFF)

  case class Params(env: String = "dev",
                    date: String = "2018-08-01"
                   ) extends AbstractParams[Params] with Serializable

  val defaultParams = Params()

  val parser = new OptionParser[Params]("Feed_EDA") {
    head("WeafareStat")
    opt[String]("env")
      .text(s"the databases environment you used")
      .action((x, c) => c.copy(env = x))
    opt[String] ("date")
      .text(s"the date you used")
      .action((x,c) => c.copy(date = x))
    note(
      """
        |For example, the following command runs this app on a tidb dataset:
        |
        | spark-submit --class com.gmei.WeafareStat ./target/scala-2.11/feededa-assembly-0.1.jar \
      """.stripMargin +
        s"|   --env ${defaultParams.env}"
    )
  }

  def main(args: Array[String]): Unit = {
    parser.parse(args, defaultParams).map { param =>
      GmeiConfig.setup(param.env)
      val spark_env = GmeiConfig.getSparkSession()
      val sc = spark_env._2

694
      //      val ti = new TiContext(sc)
王志伟's avatar
王志伟 committed
695
      sc.sql("use jerry_prod")
696 697 698 699 700 701
      //      ti.tidbMapTable(dbName = "jerry_prod", tableName = "diary_video")
      //      ti.tidbMapTable(dbName = "jerry_prod", tableName = "data_feed_click")
      //      ti.tidbMapTable(dbName = "jerry_prod", tableName = "blacklist")
      //      ti.tidbMapTable(dbName = "jerry_test", tableName = "tl_hdfs_wiki_item_tag_view")
      //      ti.tidbMapTable(dbName = "jerry_test", tableName = "Knowledge_network")
      //      ti.tidbMapTable(dbName = "eagle", tableName = "src_mimas_prod_api_diary")
王志伟's avatar
王志伟 committed
702 703 704


      import sc.implicits._
705
      val stat_date = GmeiConfig.getMinusNDate(1)
706
      //      val stat_date=param.date
707
      val partition_date = stat_date.replace("-","")
王志伟's avatar
王志伟 committed
708

王志伟's avatar
王志伟 committed
709 710
      val new_data = sc.sql(
        s"""
王志伟's avatar
王志伟 committed
711 712 713 714 715
           |select d.level2_id,d.level2_name,c.item_id,c.tag_id,c.id,c.name,c.treatment_method,c.price_min,c.price_max,c.treatment_time,c.maintain_time,c.recover_time
           |from online.bl_tag_hierarchy_detail d
           |inner join
           |(select a.item_id,a.tag_id,b.id,b.name,b.treatment_method,b.price_min,b.price_max,b.treatment_time,b.maintain_time,b.recover_time
           |from online.tl_hdfs_wiki_item_tag_view a
王志伟's avatar
王志伟 committed
716 717
           |inner join Knowledge_network b
           |on a.item_id=b.id
王志伟's avatar
王志伟 committed
718 719 720
           |where a.partition_date='${partition_date}') c
           |on d.id=c.tag_id
           |where d.partition_date='${partition_date}'
王志伟's avatar
王志伟 committed
721 722 723
       """.stripMargin
      )

724
      GmeiConfig.writeToJDBCTable("jdbc:mysql://152.136.44.138:4000/jerry_test?user=root&password=3SYz54LS9#^9sBvC&rewriteBatchedStatements=true",new_data, "train_Knowledge_network_data", SaveMode.Overwrite)
王志伟's avatar
王志伟 committed
725 726


王志伟's avatar
王志伟 committed
727 728 729 730 731 732
    }


  }

}
733