IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 24, 2017, 2:55:55 PM (9 years ago)
Author:
watersc1
Message:

Update to czartool to populate summit/download/new/raw Exp tables, and plot those results with the other stages. Fixes bug that allowed plot temp files to remain undeleted

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippMonitor/czartool/czarDbSchema.sql

    r38261 r40055  
    520520) ENGINE=InnoDB DEFAULT CHARSET=latin1;
    521521SET character_set_client = @saved_cs_client;
     522
     523
     524--
     525-- Table structure for table `summitExp`
     526--
     527
     528DROP TABLE IF EXISTS `summitExp`;
     529SET @saved_cs_client     = @@character_set_client;
     530SET character_set_client = utf8;
     531CREATE TABLE `summitExp` (
     532  `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP,
     533  `label` varchar(128) default 'NONE',
     534  `dbname` varchar(128) default 'NONE',
     535  `pending` bigint(20) NOT NULL,
     536  `faults` bigint(20) NOT NULL,
     537  `processed` bigint(20) NOT NULL default '0',
     538  KEY `summitExpIndex` (`timestamp`,`label`, `dbname`)
     539) ENGINE=InnoDB DEFAULT CHARSET=latin1;
     540SET character_set_client = @saved_cs_client;
     541
     542--
     543-- Table structure for table `downloadExp`
     544--
     545
     546DROP TABLE IF EXISTS `downloadExp`;
     547SET @saved_cs_client     = @@character_set_client;
     548SET character_set_client = utf8;
     549CREATE TABLE `downloadExp` (
     550  `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP,
     551  `label` varchar(128) default 'NONE',
     552  `dbname` varchar(128) default 'NONE',
     553  `pending` bigint(20) NOT NULL,
     554  `faults` bigint(20) NOT NULL,
     555  `processed` bigint(20) NOT NULL default '0',
     556  KEY `downloadExpIndex` (`timestamp`,`label`, `dbname`)
     557) ENGINE=InnoDB DEFAULT CHARSET=latin1;
     558SET character_set_client = @saved_cs_client;
     559
     560--
     561-- Table structure for table `newExp`
     562--
     563
     564DROP TABLE IF EXISTS `newExp`;
     565SET @saved_cs_client     = @@character_set_client;
     566SET character_set_client = utf8;
     567CREATE TABLE `newExp` (
     568  `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP,
     569  `label` varchar(128) default 'NONE',
     570  `dbname` varchar(128) default 'NONE',
     571  `pending` bigint(20) NOT NULL,
     572  `faults` bigint(20) NOT NULL,
     573  `processed` bigint(20) NOT NULL default '0',
     574  KEY `newExpIndex` (`timestamp`,`label`, `dbname`)
     575) ENGINE=InnoDB DEFAULT CHARSET=latin1;
     576SET character_set_client = @saved_cs_client;
     577
     578--
     579-- Table structure for table `rawExp`
     580--
     581
     582DROP TABLE IF EXISTS `rawExp`;
     583SET @saved_cs_client     = @@character_set_client;
     584SET character_set_client = utf8;
     585CREATE TABLE `rawExp` (
     586  `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP,
     587  `label` varchar(128) default 'NONE',
     588  `dbname` varchar(128) default 'NONE',
     589  `pending` bigint(20) NOT NULL,
     590  `faults` bigint(20) NOT NULL,
     591  `processed` bigint(20) NOT NULL default '0',
     592  KEY `rawExpIndex` (`timestamp`,`label`, `dbname`)
     593) ENGINE=InnoDB DEFAULT CHARSET=latin1;
     594SET character_set_client = @saved_cs_client;
     595
     596
     597
    522598/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
    523599
     
    529605/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
    530606/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
     607
Note: See TracChangeset for help on using the changeset viewer.