IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changes between Version 1 and Version 2 of DistribDestinations


Ignore:
Timestamp:
Apr 9, 2009, 10:46:05 AM (17 years ago)
Author:
bills
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DistribDestinations

    v1 v2  
    11== Destinations ==
    22
     3Destinations for ipp data are described in a database table.
    34
    45{{{
     
    2021status_uri is the uri of the status page. The ipp distribution server queries this site to determine whether the destination has successfully downloaded a fileset.
    2122
     23Each destination expresses zero or more interests in data it would like to get. This is described by the table rcInterest
     24
    2225state is either 'enabled' or 'disabled' which controls whether the site is queried for status updates and whether the destination's 'interests' are considered when the system decides which data to bundle.
    2326
     27
     28{{{
     29mysql> describe  rcInterest;
     30+-----------+-------------+------+-----+---------+----------------+
     31| Field     | Type        | Null | Key | Default | Extra          |
     32+-----------+-------------+------+-----+---------+----------------+
     33| int_id    | bigint(20)  | NO   | PRI | NULL    | auto_increment |
     34| dest_id   | bigint(20)  | YES  | MUL | NULL    |                |
     35| target_id | bigint(20)  | YES  | MUL | NULL    |                |
     36| state     | varchar(64) | YES  |     | NULL    |                |
     37+-----------+-------------+------+-----+---------+----------------+
     384 rows in set (0.00 sec)
     39}}}
     40