TestInsert.java.svn-base 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. import java.io.FileInputStream;
  2. import org.apache.hadoop.conf.Configuration;
  3. import org.zillion.util.log.LogUtil;
  4. import com.saga.compute.util.DB.DBOperate;
  5. import com.saga.compute.util.common.Constant;
  6. import com.sagacloud.json.JSONObject;
  7. import com.zillion.database.agent.ZillionAgent;
  8. public class TestInsert {
  9. public static void main(String[] arsg) throws Exception {
  10. String resource = "/hbase-site.xml";
  11. Configuration configuration = new Configuration();
  12. LogUtil.info(LogUtil.GetPath());
  13. configuration.addResource(new FileInputStream(LogUtil.GetPath() + resource));
  14. String zookeeper_connectionAddress = "zookeeper1:2181,zookeeper2:2181,zookeeper3:2181";
  15. int zookeeper_sessionTimeout = 300000;
  16. Constant.agent = new ZillionAgent(configuration, zookeeper_connectionAddress, zookeeper_sessionTimeout);
  17. Constant.agent.Start();
  18. // JSONObject InsertObject_detail = new JSONObject();
  19. // InsertObject_detail.put("building", "4301050001");
  20. // InsertObject_detail.put("compute_round", 1l);
  21. // InsertObject_detail.put("meter", "1001");
  22. // InsertObject_detail.put("funcid", 0l);
  23. // InsertObject_detail.put("data_time", "20170102000000");
  24. // InsertObject_detail.put("label2", 0l);
  25. // InsertObject_detail.put("meter_cleaned2", 1111.22);
  26. //
  27. // JSONObject wrapperObject = new JSONObject();
  28. // wrapperObject.put("QueryType", "insert");
  29. // wrapperObject.put("Database", "db_wanda");
  30. // wrapperObject.put("Datatable", "fjd_1_computedetail");
  31. // wrapperObject.put("InsertObject", InsertObject_detail);
  32. // Constant.agent.Query(wrapperObject);
  33. JSONObject deleteObject = new JSONObject();
  34. deleteObject.put("building", "4301050001");
  35. deleteObject.put("meter", "1001");
  36. deleteObject.put("funcid", 0l);
  37. String[] time_periods = { "5min", "15min", "1h", "1d" };
  38. for (String timePeriod : time_periods) {
  39. deleteObject.put("time_period", timePeriod);
  40. JSONObject range = new JSONObject();
  41. range.put("$gte", "20170105000000");
  42. range.put("$lte", "20170106000000");
  43. deleteObject.put("data_time", range);
  44. DBOperate.Instance().deleteData(deleteObject, "fjd_0_near");
  45. }
  46. System.exit(0);
  47. }
  48. }