IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 6, 2013, 3:16:35 PM (13 years ago)
Author:
eugene
Message:

upgrade to ippToPsps (see doc/upgrade.txt): adds native dvo to mysql ingest operations, adds autogen configuration & installation, splits out global config information from new "skychunk" information (current region on the sky being processed), adds test suites

Location:
trunk/ippToPsps
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippToPsps

  • trunk/ippToPsps/config

    • Property svn:ignore set to
      Makefile
      Makefile.in
  • trunk/ippToPsps/config/ippToPspsDbSchema.sql

    r33753 r35097  
    5858  `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP,
    5959  `id` bigint(20) unsigned NOT NULL auto_increment,
    60   `config` varchar(30) default NULL,
     60  `skychunk` varchar(30) default NULL,
    6161  `ra_center` float default NULL,
    6262  `dec_center` float default NULL,
    6363  `box_side` float default NULL,
     64  `ingested` tinyint(1) default '0',
    6465  PRIMARY KEY  (`id`),
    65   KEY `fk_config` (`config`),
    66   CONSTRAINT `fk_config` FOREIGN KEY (`config`) REFERENCES `config` (`name`) ON DELETE CASCADE
     66  KEY `fk_skychunk` (`skychunk`),
     67  CONSTRAINT `fk_skychunk` FOREIGN KEY (`skychunk`) REFERENCES `skychunk` (`name`) ON DELETE CASCADE
    6768) ENGINE=InnoDB AUTO_INCREMENT=44588 DEFAULT CHARSET=latin1;
    6869SET character_set_client = @saved_cs_client;
     
    8081  `pid` bigint(20) unsigned NOT NULL,
    8182  `host` varchar(20) NOT NULL,
    82   `config` varchar(30) default NULL,
     83  `skychunk` varchar(30) default NULL,
    8384  `paused` tinyint(1) default '0',
    8485  `killed` tinyint(1) default '0',
     
    9192
    9293--
    93 -- Table structure for table `config`
    94 --
    95 
    96 DROP TABLE IF EXISTS `config`;
    97 SET @saved_cs_client     = @@character_set_client;
    98 SET character_set_client = utf8;
    99 CREATE TABLE `config` (
     94-- Table structure for table `skychunk`
     95--
     96
     97DROP TABLE IF EXISTS `skychunk`;
     98SET @saved_cs_client     = @@character_set_client;
     99SET character_set_client = utf8;
     100CREATE TABLE `skychunk` (
    100101  `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP,
    101102  `name` varchar(30) NOT NULL,
     
    122123  `queue_OB` tinyint(1) default '0',
    123124  `active` tinyint(1) default '1',
     125  `parallel` tinyint(1) default '0',
    124126  UNIQUE KEY `name` (`name`)
    125127) ENGINE=InnoDB DEFAULT CHARSET=latin1;
     
    199201CREATE TABLE `stripe` (
    200202  `client_id` bigint(20) unsigned default NULL,
    201   `config` varchar(30) default NULL,
     203  `skychunk` varchar(30) default NULL,
    202204  `ra_center` float default NULL,
    203205  UNIQUE KEY `unique_key` (`client_id`),
Note: See TracChangeset for help on using the changeset viewer.