| | 1 | The table distTarget describes a collection of like data to be distributed. |
| | 2 | |
| | 3 | {{{ |
| | 4 | mysql> select * from distTarget where dist_group = 'MD01' and stage = 'warp'; |
| | 5 | +-----------+------------+---------+-------+-------+---------+---------+ |
| | 6 | | target_id | dist_group | filter | stage | clean | state | comment | |
| | 7 | +-----------+------------+---------+-------+-------+---------+---------+ |
| | 8 | | 742 | MD01 | g.00000 | warp | 0 | enabled | NULL | |
| | 9 | | 744 | MD01 | i.00000 | warp | 0 | enabled | NULL | |
| | 10 | | 743 | MD01 | r.00000 | warp | 0 | enabled | NULL | |
| | 11 | | 746 | MD01 | y.00000 | warp | 0 | enabled | NULL | |
| | 12 | | 745 | MD01 | z.00000 | warp | 0 | enabled | NULL | |
| | 13 | +-----------+------------+---------+-------+-------+---------+---------+ |
| | 14 | 5 rows in set (0.00 sec) |
| | 15 | }}} |
| | 16 | |
| | 17 | Targets are created by the disttool. For example the first target in the list above might have been created by the command |
| | 18 | |
| | 19 | {{{ |
| | 20 | disttool -definetarget -dist_group MD01 -filter g.00000 -stage warp |
| | 21 | }}} |
| | 22 | |
| | 23 | Note: Until recently (2009-10-14) targets were specified by label. We decided that labels were too plentiful and wanted the flexibility to change them (for cleanup and update processing). |