Remove comment about XML only being support in record update
[idzebra-moved-to-github.git] / doc / administration.xml
1 <chapter id="administration">
2  <!-- $Id: administration.xml,v 1.52 2007-06-27 13:46:43 adam Exp $ -->
3  <title>Administrating &zebra;</title>
4  <!-- ### It's a bit daft that this chapter (which describes half of
5           the configuration-file formats) is separated from
6           "recordmodel-grs.xml" (which describes the other half) by the
7           instructions on running zebraidx and zebrasrv.  Some careful
8           re-ordering is required here.
9  -->
10
11  <para>
12   Unlike many simpler retrieval systems, &zebra; supports safe, incremental
13   updates to an existing index.
14  </para>
15  
16  <para>
17   Normally, when &zebra; modifies the index it reads a number of records
18   that you specify.
19   Depending on your specifications and on the contents of each record
20   one the following events take place for each record:
21   <variablelist>
22    
23    <varlistentry>
24     <term>Insert</term>
25     <listitem>
26      <para>
27       The record is indexed as if it never occurred before.
28       Either the &zebra; system doesn't know how to identify the record or
29       &zebra; can identify the record but didn't find it to be already indexed.
30      </para>
31     </listitem>
32    </varlistentry>
33    <varlistentry>
34     <term>Modify</term>
35     <listitem>
36      <para>
37       The record has already been indexed.
38       In this case either the contents of the record or the location
39       (file) of the record indicates that it has been indexed before.
40      </para>
41     </listitem>
42    </varlistentry>
43    <varlistentry>
44     <term>Delete</term>
45     <listitem>
46      <para>
47       The record is deleted from the index. As in the
48       update-case it must be able to identify the record.
49      </para>
50     </listitem>
51    </varlistentry>
52   </variablelist>
53  </para>
54  
55  <para>
56   Please note that in both the modify- and delete- case the &zebra;
57   indexer must be able to generate a unique key that identifies the record 
58   in question (more on this below).
59  </para>
60  
61  <para>
62   To administrate the &zebra; retrieval system, you run the
63   <literal>zebraidx</literal> program.
64   This program supports a number of options which are preceded by a dash,
65   and a few commands (not preceded by dash).
66 </para>
67  
68  <para>
69   Both the &zebra; administrative tool and the &acro.z3950; server share a
70   set of index files and a global configuration file.
71   The name of the configuration file defaults to
72   <literal>zebra.cfg</literal>.
73   The configuration file includes specifications on how to index
74   various kinds of records and where the other configuration files
75   are located. <literal>zebrasrv</literal> and <literal>zebraidx</literal>
76   <emphasis>must</emphasis> be run in the directory where the
77   configuration file lives unless you indicate the location of the 
78   configuration file by option <literal>-c</literal>.
79  </para>
80  
81  <sect1 id="record-types">
82   <title>Record Types</title>
83   
84   <para>
85    Indexing is a per-record process, in which either insert/modify/delete
86    will occur. Before a record is indexed search keys are extracted from
87    whatever might be the layout the original record (sgml,html,text, etc..).
88    The &zebra; system currently supports two fundamental types of records:
89    structured and simple text.
90    To specify a particular extraction process, use either the
91    command line option <literal>-t</literal> or specify a
92    <literal>recordType</literal> setting in the configuration file.
93   </para>
94   
95  </sect1>
96  
97  <sect1 id="zebra-cfg">
98   <title>The &zebra; Configuration File</title>
99   
100   <para>
101    The &zebra; configuration file, read by <literal>zebraidx</literal> and
102    <literal>zebrasrv</literal> defaults to <literal>zebra.cfg</literal>
103    unless specified by <literal>-c</literal> option.
104   </para>
105   
106   <para>
107    You can edit the configuration file with a normal text editor.
108    parameter names and values are separated by colons in the file. Lines
109    starting with a hash sign (<literal>#</literal>) are
110    treated as comments.
111   </para>
112   
113   <para>
114    If you manage different sets of records that share common
115    characteristics, you can organize the configuration settings for each
116    type into "groups".
117    When <literal>zebraidx</literal> is run and you wish to address a
118    given group you specify the group name with the <literal>-g</literal>
119    option.
120    In this case settings that have the group name as their prefix 
121    will be used by <literal>zebraidx</literal>.
122    If no <literal>-g</literal> option is specified, the settings
123    without prefix are used.
124   </para>
125   
126   <para>
127    In the configuration file, the group name is placed before the option
128    name itself, separated by a dot (.). For instance, to set the record type
129    for group <literal>public</literal> to <literal>grs.sgml</literal>
130    (the &acro.sgml;-like format for structured records) you would write:
131   </para>
132   
133   <para>
134    <screen>
135     public.recordType: grs.sgml
136    </screen>   
137   </para>
138   
139   <para>
140    To set the default value of the record type to <literal>text</literal>
141    write:
142   </para>
143   
144   <para>
145    <screen>
146     recordType: text
147    </screen>
148   </para>
149   
150   <para>
151    The available configuration settings are summarized below. They will be
152    explained further in the following sections.
153   </para>
154   
155   <!--
156    FIXME - Didn't Adam make something to have multiple databases in multiple dirs...
157   -->
158   
159   <para>
160    <variablelist>
161     
162     <varlistentry>
163      <term>
164       <emphasis>group</emphasis>
165       .recordType[<emphasis>.name</emphasis>]:
166       <replaceable>type</replaceable>
167      </term>
168      <listitem>
169       <para>
170        Specifies how records with the file extension
171        <emphasis>name</emphasis> should be handled by the indexer.
172        This option may also be specified as a command line option
173        (<literal>-t</literal>). Note that if you do not specify a
174        <emphasis>name</emphasis>, the setting applies to all files.
175        In general, the record type specifier consists of the elements (each
176        element separated by dot), <emphasis>fundamental-type</emphasis>,
177        <emphasis>file-read-type</emphasis> and arguments. Currently, two
178        fundamental types exist, <literal>text</literal> and
179        <literal>grs</literal>.
180       </para>
181      </listitem>
182     </varlistentry>
183     <varlistentry>
184      <term><emphasis>group</emphasis>.recordId: 
185      <replaceable>record-id-spec</replaceable></term>
186      <listitem>
187       <para>
188        Specifies how the records are to be identified when updated. See
189        <xref linkend="locating-records"/>.
190       </para>
191      </listitem>
192     </varlistentry>
193     <varlistentry>
194      <term><emphasis>group</emphasis>.database:
195      <replaceable>database</replaceable></term>
196      <listitem>
197       <para>
198        Specifies the &acro.z3950; database name.
199        <!-- FIXME - now we can have multiple databases in one server. -H -->
200       </para>
201      </listitem>
202     </varlistentry>
203     <varlistentry>
204      <term><emphasis>group</emphasis>.storeKeys:
205      <replaceable>boolean</replaceable></term>
206      <listitem>
207       <para>
208        Specifies whether key information should be saved for a given
209        group of records. If you plan to update/delete this type of
210        records later this should be specified as 1; otherwise it
211        should be 0 (default), to save register space.
212        <!-- ### this is the first mention of "register" -->
213        See <xref linkend="file-ids"/>.
214       </para>
215      </listitem>
216     </varlistentry>
217     <varlistentry>
218      <term><emphasis>group</emphasis>.storeData:
219       <replaceable>boolean</replaceable></term>
220      <listitem>
221       <para>
222        Specifies whether the records should be stored internally
223        in the &zebra; system files.
224        If you want to maintain the raw records yourself,
225        this option should be false (0).
226        If you want &zebra; to take care of the records for you, it
227        should be true(1).
228       </para>
229      </listitem>
230     </varlistentry>
231     <varlistentry>
232      <!-- ### probably a better place to define "register" -->
233      <term>register: <replaceable>register-location</replaceable></term>
234      <listitem>
235       <para>
236        Specifies the location of the various register files that &zebra; uses
237        to represent your databases.
238        See <xref linkend="register-location"/>.
239       </para>
240      </listitem>
241     </varlistentry>
242     <varlistentry>
243      <term>shadow: <replaceable>register-location</replaceable></term>
244      <listitem>
245       <para>
246        Enables the <emphasis>safe update</emphasis> facility of &zebra;, and
247        tells the system where to place the required, temporary files.
248        See <xref linkend="shadow-registers"/>.
249       </para>
250      </listitem>
251     </varlistentry>
252     <varlistentry>
253      <term>lockDir: <replaceable>directory</replaceable></term>
254      <listitem>
255       <para>
256        Directory in which various lock files are stored.
257       </para>
258      </listitem>
259     </varlistentry>
260     <varlistentry>
261      <term>keyTmpDir: <replaceable>directory</replaceable></term>
262      <listitem>
263       <para>
264        Directory in which temporary files used during zebraidx's update
265        phase are stored. 
266       </para>
267      </listitem>
268     </varlistentry>
269     <varlistentry>
270      <term>setTmpDir: <replaceable>directory</replaceable></term>
271      <listitem>
272       <para>
273        Specifies the directory that the server uses for temporary result sets.
274        If not specified <literal>/tmp</literal> will be used.
275       </para>
276      </listitem>
277     </varlistentry>
278     <varlistentry>
279      <term>profilePath: <replaceable>path</replaceable></term>
280      <listitem>
281       <para>
282        Specifies a path of profile specification files. 
283        The path is composed of one or more directories separated by
284        colon. Similar to <literal>PATH</literal> for UNIX systems.
285       </para>
286      </listitem>
287     </varlistentry>
288
289      <varlistentry>
290       <term>modulePath: <replaceable>path</replaceable></term>
291       <listitem>
292        <para>
293         Specifies a path of record filter modules.
294         The path is composed of one or more directories separated by
295         colon. Similar to <literal>PATH</literal> for UNIX systems.
296         The 'make install' procedure typically puts modules in
297         <filename>/usr/local/lib/idzebra-2.0/modules</filename>.
298        </para>
299       </listitem>
300      </varlistentry>
301
302      <varlistentry>
303       <term>staticrank: <replaceable>integer</replaceable></term>
304       <listitem>
305        <para>
306         Enables whether static ranking is to be enabled (1) or
307         disabled (0). If omitted, it is disabled - corresponding
308         to a value of 0.
309         Refer to <xref linkend="administration-ranking-static"/> .
310        </para>
311       </listitem>
312      </varlistentry>
313
314
315      <varlistentry>
316       <term>estimatehits:: <replaceable>integer</replaceable></term>
317       <listitem>
318        <para>
319         Controls whether &zebra; should calculate approximite hit counts and
320         at which hit count it is to be enabled.
321         A value of 0 disables approximiate hit counts.
322         For a positive value approximaite hit count is enabled
323         if it is known to be larger than <replaceable>integer</replaceable>.
324        </para>
325        <para>
326         Approximate hit counts can also be triggered by a particular
327         attribute in a query.
328         Refer to <xref linkend="querymodel-zebra-global-attr-limit"/>.
329        </para>
330       </listitem>
331      </varlistentry>
332
333     <varlistentry>
334      <term>attset: <replaceable>filename</replaceable></term>
335      <listitem>
336       <para>
337         Specifies the filename(s) of attribute set files for use in
338         searching. In many configurations <filename>bib1.att</filename>
339         is used, but that is not required. If Classic Explain
340         attributes is to be used for searching,
341         <filename>explain.att</filename> must be given.
342         The path to att-files in general can be given using 
343         <literal>profilePath</literal> setting.
344         See also <xref linkend="attset-files"/>.
345       </para>
346      </listitem>
347     </varlistentry>
348     <varlistentry>
349      <term>memMax: <replaceable>size</replaceable></term>
350      <listitem>
351       <para>
352        Specifies <replaceable>size</replaceable> of internal memory
353        to use for the zebraidx program.
354        The amount is given in megabytes - default is 4 (4 MB).
355        The more memory, the faster large updates happen, up to about
356        half the free memory available on the computer.
357       </para>
358      </listitem>
359     </varlistentry>
360     <varlistentry>
361      <term>tempfiles: <replaceable>Yes/Auto/No</replaceable></term>
362      <listitem>
363       <para>
364        Tells zebra if it should use temporary files when indexing. The
365        default is Auto, in which case zebra uses temporary files only
366        if it would need more that <replaceable>memMax</replaceable> 
367        megabytes of memory. This should be good for most uses.
368       </para>
369      </listitem>
370     </varlistentry>
371
372     <varlistentry>
373      <term>root: <replaceable>dir</replaceable></term>
374      <listitem>
375       <para>
376        Specifies a directory base for &zebra;. All relative paths
377        given (in profilePath, register, shadow) are based on this
378        directory. This setting is useful if your &zebra; server
379        is running in a different directory from where
380        <literal>zebra.cfg</literal> is located.
381       </para>
382      </listitem>
383     </varlistentry>
384
385     <varlistentry>
386      <term>passwd: <replaceable>file</replaceable></term>
387      <listitem>
388       <para>
389        Specifies a file with description of user accounts for &zebra;.
390        The format is similar to that known to Apache's htpasswd files
391        and UNIX' passwd files. Non-empty lines not beginning with
392        # are considered account lines. There is one account per-line.
393        A line consists of fields separate by a single colon character.
394        First field is username, second is password.
395       </para>
396      </listitem>
397     </varlistentry>
398
399     <varlistentry>
400      <term>passwd.c: <replaceable>file</replaceable></term>
401      <listitem>
402       <para>
403        Specifies a file with description of user accounts for &zebra;.
404        File format is similar to that used by the passwd directive except
405        that the password are encrypted. Use Apache's htpasswd or similar
406        for maintenance.
407       </para>
408      </listitem>
409     </varlistentry>
410
411     <varlistentry>
412      <term>perm.<replaceable>user</replaceable>:
413      <replaceable>permstring</replaceable></term>
414      <listitem>
415       <para>
416        Specifies permissions (priviledge) for a user that are allowed
417        to access &zebra; via the passwd system. There are two kinds
418        of permissions currently: read (r) and write(w). By default
419        users not listed in a permission directive are given the read
420        privilege. To specify permissions for a user with no
421        username, or &acro.z3950; anonymous style use
422         <literal>anonymous</literal>. The permstring consists of
423        a sequence of characters. Include character <literal>w</literal>
424        for write/update access, <literal>r</literal> for read access and
425        <literal>a</literal> to allow anonymous access through this account.
426       </para>
427      </listitem>
428     </varlistentry>
429
430     <varlistentry>
431       <term>dbaccess <replaceable>accessfile</replaceable></term>
432       <listitem>
433         <para>
434           Names a file which lists database subscriptions for individual users.
435           The access file should consists of lines of the form <literal>username:
436           dbnames</literal>, where dbnames is a list of database names, seprated by
437           '+'. No whitespace is allowed in the database list.
438         </para>
439       </listitem>
440     </varlistentry>
441
442    </variablelist>
443   </para>
444   
445  </sect1>
446  
447  <sect1 id="locating-records">
448   <title>Locating Records</title>
449   
450   <para>
451    The default behavior of the &zebra; system is to reference the
452    records from their original location, i.e. where they were found when you
453    run <literal>zebraidx</literal>.
454    That is, when a client wishes to retrieve a record
455    following a search operation, the files are accessed from the place
456    where you originally put them - if you remove the files (without
457    running <literal>zebraidx</literal> again, the server will return
458    diagnostic number 14 (``System error in presenting records'') to
459    the client.
460   </para>
461   
462   <para>
463    If your input files are not permanent - for example if you retrieve
464    your records from an outside source, or if they were temporarily
465    mounted on a CD-ROM drive,
466    you may want &zebra; to make an internal copy of them. To do this,
467    you specify 1 (true) in the <literal>storeData</literal> setting. When
468    the &acro.z3950; server retrieves the records they will be read from the
469    internal file structures of the system.
470   </para>
471   
472  </sect1>
473  
474  <sect1 id="simple-indexing">
475   <title>Indexing with no Record IDs (Simple Indexing)</title>
476   
477   <para>
478    If you have a set of records that are not expected to change over time
479    you may can build your database without record IDs.
480    This indexing method uses less space than the other methods and
481    is simple to use. 
482   </para>
483   
484   <para>
485    To use this method, you simply omit the <literal>recordId</literal> entry
486    for the group of files that you index. To add a set of records you use
487    <literal>zebraidx</literal> with the <literal>update</literal> command. The
488    <literal>update</literal> command will always add all of the records that it
489    encounters to the index - whether they have already been indexed or
490    not. If the set of indexed files change, you should delete all of the
491    index files, and build a new index from scratch.
492   </para>
493   
494   <para>
495    Consider a system in which you have a group of text files called
496    <literal>simple</literal>.
497    That group of records should belong to a &acro.z3950; database called
498    <literal>textbase</literal>.
499    The following <literal>zebra.cfg</literal> file will suffice:
500   </para>
501   <para>
502    
503    <screen>
504     profilePath: /usr/local/idzebra/tab
505     attset: bib1.att
506     simple.recordType: text
507     simple.database: textbase
508    </screen>
509
510   </para>
511   
512   <para>
513    Since the existing records in an index can not be addressed by their
514    IDs, it is impossible to delete or modify records when using this method.
515   </para>
516   
517  </sect1>
518  
519  <sect1 id="file-ids">
520   <title>Indexing with File Record IDs</title>
521   
522   <para>
523    If you have a set of files that regularly change over time: Old files
524    are deleted, new ones are added, or existing files are modified, you
525    can benefit from using the <emphasis>file ID</emphasis>
526    indexing methodology.
527    Examples of this type of database might include an index of WWW
528    resources, or a USENET news spool area.
529    Briefly speaking, the file key methodology uses the directory paths
530    of the individual records as a unique identifier for each record.
531    To perform indexing of a directory with file keys, again, you specify
532    the top-level directory after the <literal>update</literal> command.
533    The command will recursively traverse the directories and compare
534    each one with whatever have been indexed before in that same directory.
535    If a file is new (not in the previous version of the directory) it
536    is inserted into the registers; if a file was already indexed and
537    it has been modified since the last update, the index is also
538    modified; if a file has been removed since the last
539    visit, it is deleted from the index.
540   </para>
541   
542   <para>
543    The resulting system is easy to administrate. To delete a record you
544    simply have to delete the corresponding file (say, with the
545    <literal>rm</literal> command). And to add records you create new
546    files (or directories with files). For your changes to take effect
547    in the register you must run <literal>zebraidx update</literal> with
548    the same directory root again. This mode of operation requires more
549    disk space than simpler indexing methods, but it makes it easier for
550    you to keep the index in sync with a frequently changing set of data.
551    If you combine this system with the <emphasis>safe update</emphasis>
552    facility (see below), you never have to take your server off-line for
553    maintenance or register updating purposes.
554   </para>
555   
556   <para>
557    To enable indexing with pathname IDs, you must specify
558    <literal>file</literal> as the value of <literal>recordId</literal>
559    in the configuration file. In addition, you should set
560    <literal>storeKeys</literal> to <literal>1</literal>, since the &zebra;
561    indexer must save additional information about the contents of each record
562    in order to modify the indexes correctly at a later time.
563   </para>
564   
565    <!--
566     FIXME - There must be a simpler way to do this with Adams string tags -H
567      -->
568
569   <para>
570    For example, to update records of group <literal>esdd</literal>
571    located below
572    <literal>/data1/records/</literal> you should type:
573    <screen>
574     $ zebraidx -g esdd update /data1/records
575    </screen>
576   </para>
577   
578   <para>
579    The corresponding configuration file includes:
580    <screen>
581     esdd.recordId: file
582     esdd.recordType: grs.sgml
583     esdd.storeKeys: 1
584    </screen>
585   </para>
586   
587   <note>
588    <para>You cannot start out with a group of records with simple
589     indexing (no record IDs as in the previous section) and then later
590     enable file record Ids. &zebra; must know from the first time that you
591     index the group that
592     the files should be indexed with file record IDs.
593    </para>
594    </note>
595   
596   <para>
597    You cannot explicitly delete records when using this method (using the
598    <literal>delete</literal> command to <literal>zebraidx</literal>. Instead
599    you have to delete the files from the file system (or move them to a
600    different location)
601    and then run <literal>zebraidx</literal> with the
602    <literal>update</literal> command.
603   </para>
604   <!-- ### what happens if a file contains multiple records? -->
605 </sect1>
606  
607  <sect1 id="generic-ids">
608   <title>Indexing with General Record IDs</title>
609   
610   <para>
611    When using this method you construct an (almost) arbitrary, internal
612    record key based on the contents of the record itself and other system
613    information. If you have a group of records that explicitly associates
614    an ID with each record, this method is convenient. For example, the
615    record format may contain a title or a ID-number - unique within the group.
616    In either case you specify the &acro.z3950; attribute set and use-attribute
617    location in which this information is stored, and the system looks at
618    that field to determine the identity of the record.
619   </para>
620   
621   <para>
622    As before, the record ID is defined by the <literal>recordId</literal>
623    setting in the configuration file. The value of the record ID specification
624    consists of one or more tokens separated by whitespace. The resulting
625    ID is represented in the index by concatenating the tokens and
626    separating them by ASCII value (1).
627   </para>
628   
629   <para>
630    There are three kinds of tokens:
631    <variablelist>
632     
633     <varlistentry>
634      <term>Internal record info</term>
635      <listitem>
636       <para>
637        The token refers to a key that is
638        extracted from the record. The syntax of this token is
639        <literal>(</literal> <emphasis>set</emphasis> <literal>,</literal>
640        <emphasis>use</emphasis> <literal>)</literal>,
641        where <emphasis>set</emphasis> is the
642        attribute set name <emphasis>use</emphasis> is the
643        name or value of the attribute.
644       </para>
645      </listitem>
646     </varlistentry>
647     <varlistentry>
648      <term>System variable</term>
649      <listitem>
650       <para>
651        The system variables are preceded by
652        
653        <screen>
654         $
655        </screen>
656        and immediately followed by the system variable name, which
657        may one of
658        <variablelist>
659         
660         <varlistentry>
661          <term>group</term>
662          <listitem>
663           <para>
664            Group name.
665           </para>
666          </listitem>
667         </varlistentry>
668         <varlistentry>
669          <term>database</term>
670          <listitem>
671           <para>
672            Current database specified.
673           </para>
674          </listitem>
675         </varlistentry>
676         <varlistentry>
677          <term>type</term>
678          <listitem>
679           <para>
680            Record type.
681           </para>
682          </listitem>
683         </varlistentry>
684        </variablelist>
685       </para>
686      </listitem>
687     </varlistentry>
688     <varlistentry>
689      <term>Constant string</term>
690      <listitem>
691       <para>
692        A string used as part of the ID &mdash; surrounded
693        by single- or double quotes.
694       </para>
695      </listitem>
696     </varlistentry>
697    </variablelist>
698   </para>
699   
700   <para>
701    For instance, the sample GILS records that come with the &zebra;
702    distribution contain a unique ID in the data tagged Control-Identifier.
703    The data is mapped to the &acro.bib1; use attribute Identifier-standard
704    (code 1007). To use this field as a record id, specify
705    <literal>(bib1,Identifier-standard)</literal> as the value of the
706    <literal>recordId</literal> in the configuration file.
707    If you have other record types that uses the same field for a
708    different purpose, you might add the record type
709    (or group or database name) to the record id of the gils
710    records as well, to prevent matches with other types of records.
711    In this case the recordId might be set like this:
712    
713    <screen>
714     gils.recordId: $type (bib1,Identifier-standard)
715    </screen>
716    
717   </para>
718   
719   <para>
720    (see <xref linkend="grs"/>
721     for details of how the mapping between elements of your records and
722     searchable attributes is established).
723   </para>
724   
725   <para>
726    As for the file record ID case described in the previous section,
727    updating your system is simply a matter of running
728    <literal>zebraidx</literal>
729    with the <literal>update</literal> command. However, the update with general
730    keys is considerably slower than with file record IDs, since all files
731    visited must be (re)read to discover their IDs. 
732   </para>
733   
734   <para>
735    As you might expect, when using the general record IDs
736    method, you can only add or modify existing records with the
737    <literal>update</literal> command.
738    If you wish to delete records, you must use the,
739    <literal>delete</literal> command, with a directory as a parameter.
740    This will remove all records that match the files below that root
741    directory.
742   </para>
743   
744  </sect1>
745  
746  <sect1 id="register-location">
747   <title>Register Location</title>
748   
749   <para>
750    Normally, the index files that form dictionaries, inverted
751    files, record info, etc., are stored in the directory where you run
752    <literal>zebraidx</literal>. If you wish to store these, possibly large,
753    files somewhere else, you must add the <literal>register</literal>
754    entry to the <literal>zebra.cfg</literal> file.
755    Furthermore, the &zebra; system allows its file
756    structures to span multiple file systems, which is useful for
757    managing very large databases. 
758   </para>
759   
760   <para>
761    The value of the <literal>register</literal> setting is a sequence
762    of tokens. Each token takes the form:
763    
764    <screen>
765     <emphasis>dir</emphasis><literal>:</literal><emphasis>size</emphasis>. 
766    </screen>
767    
768    The <emphasis>dir</emphasis> specifies a directory in which index files
769    will be stored and the <emphasis>size</emphasis> specifies the maximum
770    size of all files in that directory. The &zebra; indexer system fills
771    each directory in the order specified and use the next specified
772    directories as needed.
773    The <emphasis>size</emphasis> is an integer followed by a qualifier
774    code, 
775    <literal>b</literal> for bytes,
776    <literal>k</literal> for kilobytes.
777    <literal>M</literal> for megabytes,
778    <literal>G</literal> for gigabytes.
779   </para>
780   
781   <para>
782    For instance, if you have allocated two disks for your register, and
783    the first disk is mounted
784    on <literal>/d1</literal> and has 2GB of free space and the
785    second, mounted on <literal>/d2</literal> has 3.6 GB, you could
786    put this entry in your configuration file:
787    
788    <screen>
789     register: /d1:2G /d2:3600M
790    </screen>
791    
792   </para>
793   
794   <para>
795    Note that &zebra; does not verify that the amount of space specified is
796    actually available on the directory (file system) specified - it is
797    your responsibility to ensure that enough space is available, and that
798    other applications do not attempt to use the free space. In a large
799    production system, it is recommended that you allocate one or more
800    file system exclusively to the &zebra; register files.
801   </para>
802   
803  </sect1>
804  
805  <sect1 id="shadow-registers">
806   <title>Safe Updating - Using Shadow Registers</title>
807   
808   <sect2 id="shadow-registers-description">
809    <title>Description</title>
810    
811    <para>
812     The &zebra; server supports <emphasis>updating</emphasis> of the index
813     structures. That is, you can add, modify, or remove records from
814     databases managed by &zebra; without rebuilding the entire index.
815     Since this process involves modifying structured files with various
816     references between blocks of data in the files, the update process
817     is inherently sensitive to system crashes, or to process interruptions:
818     Anything but a successfully completed update process will leave the
819     register files in an unknown state, and you will essentially have no
820     recourse but to re-index everything, or to restore the register files
821     from a backup medium.
822     Further, while the update process is active, users cannot be
823     allowed to access the system, as the contents of the register files
824     may change unpredictably.
825    </para>
826    
827    <para>
828     You can solve these problems by enabling the shadow register system in
829     &zebra;.
830     During the updating procedure, <literal>zebraidx</literal> will temporarily
831     write changes to the involved files in a set of "shadow
832     files", without modifying the files that are accessed by the
833     active server processes. If the update procedure is interrupted by a
834     system crash or a signal, you simply repeat the procedure - the
835     register files have not been changed or damaged, and the partially
836     written shadow files are automatically deleted before the new updating
837     procedure commences.
838    </para>
839    
840    <para>
841     At the end of the updating procedure (or in a separate operation, if
842     you so desire), the system enters a "commit mode". First,
843     any active server processes are forced to access those blocks that
844     have been changed from the shadow files rather than from the main
845     register files; the unmodified blocks are still accessed at their
846     normal location (the shadow files are not a complete copy of the
847     register files - they only contain those parts that have actually been
848     modified). If the commit process is interrupted at any point during the
849     commit process, the server processes will continue to access the
850     shadow files until you can repeat the commit procedure and complete
851     the writing of data to the main register files. You can perform
852     multiple update operations to the registers before you commit the
853     changes to the system files, or you can execute the commit operation
854     at the end of each update operation. When the commit phase has
855     completed successfully, any running server processes are instructed to
856     switch their operations to the new, operational register, and the
857     temporary shadow files are deleted.
858    </para>
859    
860   </sect2>
861   
862   <sect2 id="shadow-registers-how-to-use">
863    <title>How to Use Shadow Register Files</title>
864    
865    <para>
866     The first step is to allocate space on your system for the shadow
867     files.
868     You do this by adding a <literal>shadow</literal> entry to the
869     <literal>zebra.cfg</literal> file.
870     The syntax of the <literal>shadow</literal> entry is exactly the
871     same as for the <literal>register</literal> entry
872     (see <xref linkend="register-location"/>).
873      The location of the shadow area should be
874      <emphasis>different</emphasis> from the location of the main register
875      area (if you have specified one - remember that if you provide no
876      <literal>register</literal> setting, the default register area is the
877      working directory of the server and indexing processes).
878    </para>
879    
880    <para>
881     The following excerpt from a <literal>zebra.cfg</literal> file shows
882     one example of a setup that configures both the main register
883     location and the shadow file area.
884     Note that two directories or partitions have been set aside
885     for the shadow file area. You can specify any number of directories
886     for each of the file areas, but remember that there should be no
887     overlaps between the directories used for the main registers and the
888     shadow files, respectively.
889    </para>
890    <para>
891     
892     <screen>
893      register: /d1:500M
894      shadow: /scratch1:100M /scratch2:200M
895     </screen>
896     
897    </para>
898    
899    <para>
900     When shadow files are enabled, an extra command is available at the
901     <literal>zebraidx</literal> command line.
902     In order to make changes to the system take effect for the
903     users, you'll have to submit a "commit" command after a
904     (sequence of) update operation(s).
905    </para>
906    
907    <para>
908     
909     <screen>
910      $ zebraidx update /d1/records 
911      $ zebraidx commit
912     </screen>
913     
914    </para>
915    
916    <para>
917     Or you can execute multiple updates before committing the changes:
918    </para>
919    
920    <para>
921     
922     <screen>
923      $ zebraidx -g books update /d1/records  /d2/more-records
924      $ zebraidx -g fun update /d3/fun-records
925      $ zebraidx commit
926     </screen>
927     
928    </para>
929    
930    <para>
931     If one of the update operations above had been interrupted, the commit
932     operation on the last line would fail: <literal>zebraidx</literal>
933     will not let you commit changes that would destroy the running register.
934     You'll have to rerun all of the update operations since your last
935     commit operation, before you can commit the new changes.
936    </para>
937    
938    <para>
939     Similarly, if the commit operation fails, <literal>zebraidx</literal>
940     will not let you start a new update operation before you have
941     successfully repeated the commit operation.
942     The server processes will keep accessing the shadow files rather
943     than the (possibly damaged) blocks of the main register files
944     until the commit operation has successfully completed.
945    </para>
946    
947    <para>
948     You should be aware that update operations may take slightly longer
949     when the shadow register system is enabled, since more file access
950     operations are involved. Further, while the disk space required for
951     the shadow register data is modest for a small update operation, you
952     may prefer to disable the system if you are adding a very large number
953     of records to an already very large database (we use the terms
954     <emphasis>large</emphasis> and <emphasis>modest</emphasis>
955     very loosely here, since every application will have a
956     different perception of size).
957     To update the system without the use of the the shadow files,
958     simply run <literal>zebraidx</literal> with the <literal>-n</literal>
959     option (note that you do not have to execute the
960     <emphasis>commit</emphasis> command of <literal>zebraidx</literal>
961     when you temporarily disable the use of the shadow registers in
962     this fashion.
963     Note also that, just as when the shadow registers are not enabled,
964     server processes will be barred from accessing the main register
965     while the update procedure takes place.
966    </para>
967    
968   </sect2>
969   
970  </sect1>
971
972
973  <sect1 id="administration-ranking">
974   <title>Relevance Ranking and Sorting of Result Sets</title>
975
976   <sect2 id="administration-overview">
977    <title>Overview</title>
978    <para>
979     The default ordering of a result set is left up to the server,
980     which inside &zebra; means sorting in ascending document ID order. 
981     This is not always the order humans want to browse the sometimes
982     quite large hit sets. Ranking and sorting comes to the rescue.
983    </para>
984
985    <para> 
986     In cases where a good presentation ordering can be computed at
987     indexing time, we can use a fixed <literal>static ranking</literal>
988     scheme, which is provided for the <literal>alvis</literal>
989     indexing filter. This defines a fixed ordering of hit lists,
990     independently of the query issued. 
991    </para>
992
993    <para>
994     There are cases, however, where relevance of hit set documents is
995     highly dependent on the query processed.
996     Simply put, <literal>dynamic relevance ranking</literal> 
997     sorts a set of retrieved records such that those most likely to be
998     relevant to your request are retrieved first. 
999     Internally, &zebra; retrieves all documents that satisfy your
1000     query, and re-orders the hit list to arrange them based on
1001     a measurement of similarity between your query and the content of
1002     each record. 
1003    </para>
1004
1005    <para>
1006     Finally, there are situations where hit sets of documents should be
1007     <literal>sorted</literal> during query time according to the
1008     lexicographical ordering of certain sort indexes created at
1009     indexing time.
1010    </para>
1011   </sect2>
1012
1013
1014  <sect2 id="administration-ranking-static">
1015   <title>Static Ranking</title>
1016   
1017    <para>
1018     &zebra; uses internally inverted indexes to look up term occurencies
1019     in documents. Multiple queries from different indexes can be
1020     combined by the binary boolean operations <literal>AND</literal>, 
1021     <literal>OR</literal> and/or <literal>NOT</literal> (which
1022     is in fact a binary <literal>AND NOT</literal> operation). 
1023     To ensure fast query execution
1024     speed, all indexes have to be sorted in the same order.
1025    </para>
1026    <para>
1027     The indexes are normally sorted according to document 
1028     <literal>ID</literal> in
1029     ascending order, and any query which does not invoke a special
1030     re-ranking function will therefore retrieve the result set in
1031     document 
1032     <literal>ID</literal>
1033     order.
1034    </para>
1035    <para>
1036     If one defines the 
1037     <screen>
1038     staticrank: 1 
1039     </screen> 
1040     directive in the main core &zebra; configuration file, the internal document
1041     keys used for ordering are augmented by a preceding integer, which
1042     contains the static rank of a given document, and the index lists
1043     are ordered 
1044     first by ascending static rank,
1045     then by ascending document <literal>ID</literal>.
1046     Zero
1047     is the ``best'' rank, as it occurs at the
1048     beginning of the list; higher numbers represent worse scores.
1049    </para>
1050    <para>
1051     The experimental <literal>alvis</literal> filter provides a
1052     directive to fetch static rank information out of the indexed &acro.xml;
1053     records, thus making <emphasis>all</emphasis> hit sets ordered
1054     after <emphasis>ascending</emphasis> static
1055     rank, and for those doc's which have the same static rank, ordered
1056     after <emphasis>ascending</emphasis> doc <literal>ID</literal>.
1057     See <xref linkend="record-model-alvisxslt"/> for the gory details.
1058    </para>
1059     </sect2>
1060
1061
1062  <sect2 id="administration-ranking-dynamic">
1063   <title>Dynamic Ranking</title>
1064    <para>
1065     In order to fiddle with the static rank order, it is necessary to
1066     invoke additional re-ranking/re-ordering using dynamic
1067     ranking or score functions. These functions return positive
1068     integer scores, where <emphasis>highest</emphasis> score is 
1069     ``best'';
1070     hit sets are sorted according to <emphasis>descending</emphasis> 
1071     scores (in contrary
1072     to the index lists which are sorted according to
1073     ascending rank number and document ID).
1074    </para>
1075    <para>
1076     Dynamic ranking is enabled by a directive like one of the
1077     following in the zebra configuration file (use only one of these a time!):
1078     <screen> 
1079     rank: rank-1        # default TDF-IDF like
1080     rank: rank-static   # dummy do-nothing
1081     </screen>
1082    </para>
1083  
1084    <para>
1085     Dynamic ranking is done at query time rather than
1086     indexing time (this is why we
1087     call it ``dynamic ranking'' in the first place ...)
1088     It is invoked by adding
1089     the &acro.bib1; relation attribute with
1090     value ``relevance'' to the &acro.pqf; query (that is,
1091     <literal>@attr&nbsp;2=102</literal>, see also  
1092     <ulink url="&url.z39.50;bib1.html">
1093      The &acro.bib1; Attribute Set Semantics</ulink>, also in 
1094       <ulink url="&url.z39.50.attset.bib1;">HTML</ulink>). 
1095     To find all articles with the word <literal>Eoraptor</literal> in
1096     the title, and present them relevance ranked, issue the &acro.pqf; query:
1097     <screen>
1098      @attr 2=102 @attr 1=4 Eoraptor
1099     </screen>
1100    </para>
1101
1102     <sect3 id="administration-ranking-dynamic-rank1">
1103      <title>Dynamically ranking using &acro.pqf; queries with the 'rank-1' 
1104       algorithm</title>
1105
1106    <para>
1107      The default <literal>rank-1</literal> ranking module implements a 
1108      TF/IDF (Term Frequecy over Inverse Document Frequency) like
1109      algorithm. In contrast to the usual defintion of TF/IDF
1110      algorithms, which only considers searching in one full-text
1111      index, this one works on multiple indexes at the same time.
1112      More precisely, 
1113      &zebra; does boolean queries and searches in specific addressed
1114      indexes (there are inverted indexes pointing from terms in the
1115      dictionary to documents and term positions inside documents). 
1116      It works like this:
1117      <variablelist>
1118       <varlistentry>
1119        <term>Query Components</term>
1120        <listitem>
1121         <para>
1122          First, the boolean query is dismantled into its principal components,
1123          i.e. atomic queries where one term is looked up in one index.
1124          For example, the query
1125          <screen>
1126         @attr 2=102 @and @attr 1=1010 Utah @attr 1=1018 Springer
1127          </screen>
1128          is a boolean AND between the atomic parts
1129          <screen>
1130        @attr 2=102 @attr 1=1010 Utah
1131          </screen>
1132           and
1133          <screen>
1134        @attr 2=102 @attr 1=1018 Springer
1135          </screen>
1136          which gets processed each for itself.
1137         </para>
1138        </listitem>
1139       </varlistentry>
1140
1141       <varlistentry>
1142        <term>Atomic hit lists</term>
1143        <listitem>
1144         <para>
1145          Second, for each atomic query, the hit list of documents is
1146          computed.
1147         </para>
1148         <para>
1149          In this example, two hit lists for each index  
1150          <literal>@attr 1=1010</literal>  and  
1151          <literal>@attr 1=1018</literal> are computed.
1152         </para>
1153        </listitem>
1154       </varlistentry>
1155
1156       <varlistentry>
1157        <term>Atomic scores</term>
1158        <listitem>
1159         <para>
1160          Third, each document in the hit list is assigned a score (_if_ ranking
1161          is enabled and requested in the query)  using a TF/IDF scheme.
1162         </para>
1163         <para>
1164          In this example, both atomic parts of the query assign the magic
1165          <literal>@attr 2=102</literal> relevance attribute, and are
1166          to be used in the relevance ranking functions. 
1167         </para>
1168         <para>
1169          It is possible to apply dynamic ranking on only parts of the
1170          &acro.pqf; query: 
1171          <screen>
1172           @and @attr 2=102 @attr 1=1010 Utah @attr 1=1018 Springer
1173          </screen>
1174          searches for all documents which have the term 'Utah' on the
1175          body of text, and which have the term 'Springer' in the publisher
1176          field, and sort them in the order of the relevance ranking made on
1177          the body-of-text index only. 
1178         </para>
1179        </listitem>
1180       </varlistentry>
1181
1182       <varlistentry>
1183        <term>Hit list merging</term>
1184        <listitem>
1185         <para>
1186          Fourth, the atomic hit lists are merged according to the boolean
1187          conditions to a final hit list of documents to be returned.
1188         </para>
1189         <para>
1190         This step is always performed, independently of the fact that
1191         dynamic ranking is enabled or not.
1192         </para>
1193        </listitem>
1194       </varlistentry>
1195
1196       <varlistentry>
1197        <term>Document score computation</term>
1198        <listitem>
1199         <para>
1200          Fifth, the total score of a document is computed as a linear
1201          combination of the atomic scores of the atomic hit lists
1202         </para>
1203         <para>
1204          Ranking weights may be used to pass a value to a ranking
1205          algorithm, using the non-standard &acro.bib1; attribute type 9.
1206          This allows one branch of a query to use one value while
1207          another branch uses a different one.  For example, we can search
1208          for <literal>utah</literal> in the 
1209          <literal>@attr 1=4</literal> index with weight 30, as
1210          well as in the <literal>@attr 1=1010</literal> index with weight 20:
1211          <screen>
1212          @attr 2=102 @or @attr 9=30 @attr 1=4 utah @attr 9=20 @attr 1=1010 city
1213          </screen>
1214         </para>
1215         <para>
1216          The default weight is
1217          sqrt(1000) ~ 34 , as the &acro.z3950; standard prescribes that the top score
1218          is 1000 and the bottom score is 0, encoded in integers.
1219         </para>
1220         <warning>
1221          <para>
1222           The ranking-weight feature is experimental. It may change in future
1223           releases of zebra. 
1224          </para>
1225         </warning>
1226        </listitem>
1227       </varlistentry>
1228
1229       <varlistentry>
1230        <term>Re-sorting of hit list</term>
1231        <listitem>
1232         <para>
1233          Finally, the final hit list is re-ordered according to scores.
1234         </para>
1235        </listitem>
1236       </varlistentry>
1237      </variablelist>
1238  
1239
1240 <!--
1241 Still need to describe the exact TF/IDF formula. Here's the info, need -->
1242 <!--to extract it in human readable form .. MC
1243
1244 static int calc (void *set_handle, zint sysno, zint staticrank,
1245                  int *stop_flag)
1246 {
1247     int i, lo, divisor, score = 0;
1248     struct rank_set_info *si = (struct rank_set_info *) set_handle;
1249
1250     if (!si->no_rank_entries)
1251         return -1;   /* ranking not enabled for any terms */
1252
1253     for (i = 0; i < si->no_entries; i++)
1254     {
1255         yaz_log(log_level, "calc: i=%d rank_flag=%d lo=%d",
1256                 i, si->entries[i].rank_flag, si->entries[i].local_occur);
1257         if (si->entries[i].rank_flag && (lo = si->entries[i].local_occur))
1258             score += (8+log2_int (lo)) * si->entries[i].global_inv *
1259                 si->entries[i].rank_weight;
1260     }
1261     divisor = si->no_rank_entries * (8+log2_int (si->last_pos/si->no_entries));
1262     score = score / divisor;
1263     yaz_log(log_level, "calc sysno=" ZINT_FORMAT " score=%d", sysno, score);
1264     if (score > 1000)
1265         score = 1000;
1266     /* reset the counts for the next term */
1267     for (i = 0; i < si->no_entries; i++)
1268         si->entries[i].local_occur = 0;
1269     return score;
1270 }
1271
1272
1273 where lo = si->entries[i].local_occur is the local documents term-within-index frequency, si->entries[i].global_inv represents the IDF part (computed in static void *begin()), and
1274 si->entries[i].rank_weight is the weight assigner per index (default 34, or set in the @attr 9=xyz magic)
1275
1276 Finally, the IDF part is computed as:
1277
1278 static void *begin (struct zebra_register *reg,
1279                     void *class_handle, RSET rset, NMEM nmem,
1280                     TERMID *terms, int numterms)
1281 {
1282     struct rank_set_info *si =
1283         (struct rank_set_info *) nmem_malloc (nmem,sizeof(*si));
1284     int i;
1285
1286     yaz_log(log_level, "rank-1 begin");
1287     si->no_entries = numterms;
1288     si->no_rank_entries = 0;
1289     si->nmem=nmem;
1290     si->entries = (struct rank_term_info *)
1291         nmem_malloc (si->nmem, sizeof(*si->entries)*numterms);
1292     for (i = 0; i < numterms; i++)
1293     {
1294         zint g = rset_count(terms[i]->rset);
1295         yaz_log(log_level, "i=%d flags=%s '%s'", i,
1296                 terms[i]->flags, terms[i]->name );
1297         if  (!strncmp (terms[i]->flags, "rank,", 5))
1298         {
1299             const char *cp = strstr(terms[i]->flags+4, ",w=");
1300             si->entries[i].rank_flag = 1;
1301             if (cp)
1302                 si->entries[i].rank_weight = atoi (cp+3);
1303             else
1304               si->entries[i].rank_weight = 34; /* sqrroot of 1000 */
1305             yaz_log(log_level, " i=%d weight=%d g="ZINT_FORMAT, i,
1306                      si->entries[i].rank_weight, g);
1307             (si->no_rank_entries)++;
1308         }
1309         else
1310             si->entries[i].rank_flag = 0;
1311         si->entries[i].local_occur = 0;  /* FIXME */
1312         si->entries[i].global_occur = g;
1313         si->entries[i].global_inv = 32 - log2_int (g);
1314         yaz_log(log_level, " global_inv = %d g = " ZINT_FORMAT,
1315                 (int) (32-log2_int (g)), g);
1316         si->entries[i].term = terms[i];
1317         si->entries[i].term_index=i;
1318         terms[i]->rankpriv = &(si->entries[i]);
1319     }
1320     return si;
1321 }
1322
1323
1324 where g = rset_count(terms[i]->rset) is the count of all documents in this specific index hit list, and the IDF part then is
1325
1326  si->entries[i].global_inv = 32 - log2_int (g);
1327    -->
1328
1329    </para>
1330
1331
1332     <para>
1333     The <literal>rank-1</literal> algorithm
1334     does not use the static rank 
1335     information in the list keys, and will produce the same ordering
1336     with or without static ranking enabled.
1337     </para>
1338  
1339
1340     <!--
1341     <sect3 id="administration-ranking-dynamic-rank1">
1342      <title>Dynamically ranking &acro.pqf; queries with the 'rank-static' 
1343       algorithm</title>
1344     <para>
1345     The dummy <literal>rank-static</literal> reranking/scoring
1346     function returns just 
1347     <literal>score = max int - staticrank</literal>
1348     in order to preserve the static ordering of hit sets that would
1349     have been produced had it not been invoked.
1350     Obviously, to combine static and dynamic ranking usefully,
1351     it is necessary
1352     to make a new ranking 
1353     function; this is left
1354     as an exercise for the reader. 
1355    </para>
1356     </sect3>
1357     -->
1358  
1359    <warning>
1360      <para>
1361       <literal>Dynamic ranking</literal> is not compatible
1362       with <literal>estimated hit sizes</literal>, as all documents in
1363       a hit set must be accessed to compute the correct placing in a
1364       ranking sorted list. Therefore the use attribute setting
1365       <literal>@attr&nbsp;2=102</literal> clashes with 
1366       <literal>@attr&nbsp;9=integer</literal>. 
1367      </para>
1368    </warning>  
1369
1370    <!--
1371     we might want to add ranking like this:
1372     UNPUBLISHED:
1373     Simple BM25 Extension to Multiple Weighted Fields
1374     Stephen Robertson, Hugo Zaragoza and Michael Taylor
1375     Microsoft Research
1376     ser@microsoft.com
1377     hugoz@microsoft.com
1378     mitaylor2microsoft.com
1379    -->
1380
1381     </sect3>
1382
1383     <sect3 id="administration-ranking-dynamic-cql">
1384      <title>Dynamically ranking &acro.cql; queries</title>
1385      <para>
1386       Dynamic ranking can be enabled during sever side &acro.cql;
1387       query expansion by adding <literal>@attr&nbsp;2=102</literal>
1388       chunks to the &acro.cql; config file. For example
1389       <screen>
1390        relationModifier.relevant                = 2=102
1391       </screen>
1392       invokes dynamic ranking each time a &acro.cql; query of the form 
1393       <screen>
1394        Z> querytype cql
1395        Z> f alvis.text =/relevant house
1396       </screen>
1397       is issued. Dynamic ranking can also be automatically used on
1398       specific &acro.cql; indexes by (for example) setting
1399       <screen>
1400        index.alvis.text                        = 1=text 2=102
1401       </screen>
1402       which then invokes dynamic ranking each time a &acro.cql; query of the form 
1403       <screen>
1404        Z> querytype cql
1405        Z> f alvis.text = house
1406       </screen>
1407       is issued.
1408      </para>
1409      
1410     </sect3>
1411
1412     </sect2>
1413
1414
1415  <sect2 id="administration-ranking-sorting">
1416   <title>Sorting</title>
1417    <para>
1418      &zebra; sorts efficiently using special sorting indexes
1419      (type=<literal>s</literal>; so each sortable index must be known
1420      at indexing time, specified in the configuration of record
1421      indexing.  For example, to enable sorting according to the &acro.bib1;
1422      <literal>Date/time-added-to-db</literal> field, one could add the line
1423      <screen>
1424         xelm /*/@created               Date/time-added-to-db:s
1425      </screen>
1426      to any <literal>.abs</literal> record-indexing configuration file.
1427      Similarly, one could add an indexing element of the form
1428      <screen><![CDATA[       
1429       <z:index name="date-modified" type="s">
1430        <xsl:value-of select="some/xpath"/>
1431       </z:index>
1432       ]]></screen>
1433      to any <literal>alvis</literal>-filter indexing stylesheet.
1434      </para>
1435      <para>
1436       Indexing can be specified at searching time using a query term
1437       carrying the non-standard
1438       &acro.bib1; attribute-type <literal>7</literal>.  This removes the
1439       need to send a &acro.z3950; <literal>Sort Request</literal>
1440       separately, and can dramatically improve latency when the client
1441       and server are on separate networks.
1442       The sorting part of the query is separate from the rest of the
1443       query - the actual search specification - and must be combined
1444       with it using OR.
1445      </para>
1446      <para>
1447       A sorting subquery needs two attributes: an index (such as a
1448       &acro.bib1; type-1 attribute) specifying which index to sort on, and a
1449       type-7 attribute whose value is be <literal>1</literal> for
1450       ascending sorting, or <literal>2</literal> for descending.  The
1451       term associated with the sorting attribute is the priority of
1452       the sort key, where <literal>0</literal> specifies the primary
1453       sort key, <literal>1</literal> the secondary sort key, and so
1454       on.
1455      </para>
1456     <para>For example, a search for water, sort by title (ascending),
1457     is expressed by the &acro.pqf; query
1458      <screen>
1459      @or @attr 1=1016 water @attr 7=1 @attr 1=4 0
1460      </screen>
1461       whereas a search for water, sort by title ascending, 
1462      then date descending would be
1463      <screen>
1464      @or @or @attr 1=1016 water @attr 7=1 @attr 1=4 0 @attr 7=2 @attr 1=30 1
1465      </screen>
1466     </para>
1467     <para>
1468      Notice the fundamental differences between <literal>dynamic
1469      ranking</literal> and <literal>sorting</literal>: there can be
1470      only one ranking function defined and configured; but multiple
1471      sorting indexes can be specified dynamically at search
1472      time. Ranking does not need to use specific indexes, so
1473      dynamic ranking can be enabled and disabled without
1474      re-indexing; whereas, sorting indexes need to be
1475      defined before indexing.
1476      </para>
1477
1478  </sect2>
1479
1480
1481  </sect1>
1482
1483  <sect1 id="administration-extended-services">
1484   <title>Extended Services: Remote Insert, Update and Delete</title>
1485   
1486    <note>
1487     <para>
1488      Extended services are only supported when accessing the &zebra;
1489      server using the <ulink url="&url.z39.50;">&acro.z3950;</ulink>
1490      protocol. The <ulink url="&url.sru;">&acro.sru;</ulink> protocol does
1491      not support extended services.
1492     </para>
1493    </note>
1494    
1495   <para>
1496     The extended services are not enabled by default in zebra - due to the
1497     fact that they modify the system. &zebra; can be configured
1498     to allow anybody to
1499     search, and to allow only updates for a particular admin user
1500     in the main zebra configuration file <filename>zebra.cfg</filename>.
1501     For user <literal>admin</literal>, you could use:
1502     <screen>
1503      perm.anonymous: r
1504      perm.admin: rw
1505      passwd: passwordfile
1506     </screen>
1507     And in the password file 
1508     <filename>passwordfile</filename>, you have to specify users and
1509     encrypted passwords as colon separated strings. 
1510     Use a tool like <filename>htpasswd</filename> 
1511     to maintain the encrypted passwords. 
1512     <screen> 
1513      admin:secret
1514     </screen>
1515     It is essential to configure  &zebra; to store records internally, 
1516     and to support
1517     modifications and deletion of records:
1518     <screen>
1519      storeData: 1
1520      storeKeys: 1
1521     </screen>
1522     The general record type should be set to any record filter which
1523     is able to parse &acro.xml; records, you may use any of the two
1524     declarations (but not both simultaneously!)
1525     <screen>    
1526      recordType: grs.xml
1527      # recordType: alvis.filter_alvis_config.xml
1528     </screen>
1529     To enable transaction safe shadow indexing,
1530     which is extra important for this kind of operation, set
1531     <screen>
1532      shadow: directoryname: size (e.g. 1000M)
1533     </screen>
1534      See <xref linkend="zebra-cfg"/> for additional information on
1535      these configuration options.
1536    </para>
1537    <note>
1538     <para>
1539      It is not possible to carry information about record types or
1540      similar to &zebra; when using extended services, due to
1541      limitations of the <ulink url="&url.z39.50;">&acro.z3950;</ulink>
1542      protocol. Therefore, indexing filters can not be chosen on a
1543      per-record basis. One and only one general &acro.xml; indexing filter
1544      must be defined.  
1545      <!-- but because it is represented as an OID, we would need some
1546      form of proprietary mapping scheme between record type strings and
1547      OIDs. -->
1548      <!--
1549      However, as a minimum, it would be extremely useful to enable
1550      people to use &acro.marc21;, assuming grs.marcxml.marc21 as a record
1551      type.  
1552      -->
1553     </para>
1554    </note>
1555
1556
1557    <sect2 id="administration-extended-services-z3950">
1558     <title>Extended services in the &acro.z3950; protocol</title>
1559
1560     <para>
1561      The <ulink url="&url.z39.50;">&acro.z3950;</ulink> standard allows
1562      servers to accept special binary <emphasis>extended services</emphasis>
1563      protocol packages, which may be used to insert, update and delete
1564      records into servers. These carry  control and update
1565      information to the servers, which are encoded in seven package fields: 
1566     </para>
1567
1568     <table id="administration-extended-services-z3950-table" frame="top">
1569      <title>Extended services &acro.z3950; Package Fields</title>
1570       <tgroup cols="3">
1571        <thead>
1572        <row>
1573          <entry>Parameter</entry>
1574          <entry>Value</entry>
1575          <entry>Notes</entry>
1576         </row>
1577       </thead>
1578        <tbody>
1579         <row>
1580          <entry><literal>type</literal></entry>
1581          <entry><literal>'update'</literal></entry>
1582          <entry>Must be set to trigger extended services</entry>
1583         </row>
1584         <row>
1585          <entry><literal>action</literal></entry>
1586          <entry><literal>string</literal></entry>
1587         <entry>
1588          Extended service action type with 
1589          one of four possible values: <literal>recordInsert</literal>,
1590          <literal>recordReplace</literal>,
1591          <literal>recordDelete</literal>,
1592          and <literal>specialUpdate</literal>
1593         </entry>
1594         </row>
1595         <row>
1596          <entry><literal>record</literal></entry>
1597          <entry><literal>&acro.xml; string</literal></entry>
1598          <entry>An &acro.xml; formatted string containing the record</entry>
1599         </row>
1600        <row>
1601         <entry><literal>syntax</literal></entry>
1602         <entry><literal>'xml'</literal></entry>
1603         <entry>XML/SUTRS/MARC. GRS-1 not supported.
1604          The default filter (record type) as given by recordType in
1605          zebra.cfg is used to parse the record.</entry>
1606        </row>
1607         <row>
1608          <entry><literal>recordIdOpaque</literal></entry>
1609          <entry><literal>string</literal></entry>
1610          <entry>
1611          Optional client-supplied, opaque record
1612          identifier used under insert operations.
1613         </entry>
1614         </row>
1615         <row>
1616          <entry><literal>recordIdNumber </literal></entry>
1617          <entry><literal>positive number</literal></entry>
1618          <entry>&zebra;'s internal system number,
1619          not allowed for  <literal>recordInsert</literal> or 
1620          <literal>specialUpdate</literal> actions which result in fresh
1621          record inserts.
1622         </entry>
1623         </row>
1624         <row>
1625          <entry><literal>databaseName</literal></entry>
1626          <entry><literal>database identifier</literal></entry>
1627         <entry>
1628          The name of the database to which the extended services should be 
1629          applied.
1630         </entry>
1631         </row>
1632       </tbody>
1633       </tgroup>
1634      </table>
1635
1636
1637    <para>
1638     The <literal>action</literal> parameter can be any of 
1639     <literal>recordInsert</literal> (will fail if the record already exists),
1640     <literal>recordReplace</literal> (will fail if the record does not exist),
1641     <literal>recordDelete</literal> (will fail if the record does not
1642        exist), and
1643     <literal>specialUpdate</literal> (will insert or update the record
1644        as needed, record deletion is not possible).
1645    </para>
1646
1647     <para>
1648      During all actions, the
1649      usual rules for internal record ID generation apply, unless an
1650      optional <literal>recordIdNumber</literal> &zebra; internal ID or a
1651     <literal>recordIdOpaque</literal> string identifier is assigned. 
1652      The default ID generation is
1653      configured using the <literal>recordId:</literal> from
1654      <filename>zebra.cfg</filename>.  
1655      See <xref linkend="zebra-cfg"/>.   
1656     </para>
1657
1658    <para>
1659     Setting of the <literal>recordIdNumber</literal> parameter, 
1660     which must be an existing &zebra; internal system ID number, is not
1661     allowed during any  <literal>recordInsert</literal> or 
1662      <literal>specialUpdate</literal> action resulting in fresh record
1663     inserts.
1664     </para>
1665
1666     <para>
1667      When retrieving existing
1668      records indexed with &acro.grs1; indexing filters, the &zebra; internal 
1669      ID number is returned in the field
1670     <literal>/*/id:idzebra/localnumber</literal> in the namespace
1671     <literal>xmlns:id="http://www.indexdata.dk/zebra/"</literal>,
1672     where it can be picked up for later record updates or deletes. 
1673     </para>
1674  
1675     <para>
1676      A new element set for retrieval of internal record
1677      data has been added, which can be used to access minimal records
1678      containing only the <literal>recordIdNumber</literal> &zebra;
1679      internal ID, or the <literal>recordIdOpaque</literal> string
1680      identifier. This works for any indexing filter used.
1681      See <xref linkend="special-retrieval"/>.
1682     </para>
1683
1684    <para>
1685      The <literal>recordIdOpaque</literal> string parameter
1686      is an client-supplied, opaque record
1687      identifier, which may be  used under 
1688      insert, update and delete operations. The
1689      client software is responsible for assigning these to
1690      records.      This identifier will
1691      replace zebra's own automagic identifier generation with a unique
1692      mapping from <literal>recordIdOpaque</literal> to the 
1693      &zebra; internal <literal>recordIdNumber</literal>.
1694      <emphasis>The opaque <literal>recordIdOpaque</literal> string
1695      identifiers
1696       are not visible in retrieval records, nor are
1697       searchable, so the value of this parameter is
1698       questionable. It serves mostly as a convenient mapping from
1699       application domain string identifiers to &zebra; internal ID's.
1700      </emphasis> 
1701     </para>
1702    </sect2>
1703
1704    
1705  <sect2 id="administration-extended-services-yaz-client">
1706   <title>Extended services from yaz-client</title>
1707
1708    <para>
1709     We can now start a yaz-client admin session and create a database:
1710    <screen>
1711     <![CDATA[
1712      $ yaz-client localhost:9999 -u admin/secret
1713      Z> adm-create
1714      ]]>
1715    </screen>
1716     Now the <literal>Default</literal> database was created,
1717     we can insert an &acro.xml; file (esdd0006.grs
1718     from example/gils/records) and index it:
1719    <screen>  
1720     <![CDATA[
1721      Z> update insert id1234 esdd0006.grs
1722      ]]>
1723    </screen>
1724     The 3rd parameter - <literal>id1234</literal> here -
1725       is the  <literal>recordIdOpaque</literal> package field.
1726    </para>
1727    <para>
1728     Actually, we should have a way to specify "no opaque record id" for
1729     yaz-client's update command.. We'll fix that.
1730    </para>
1731    <para>
1732     The newly inserted record can be searched as usual:
1733     <screen>
1734     <![CDATA[
1735      Z> f utah
1736      Sent searchRequest.
1737      Received SearchResponse.
1738      Search was a success.
1739      Number of hits: 1, setno 1
1740      SearchResult-1: term=utah cnt=1
1741      records returned: 0
1742      Elapsed: 0.014179
1743      ]]>
1744     </screen>
1745    </para>
1746    <para>
1747      Let's delete the beast, using the same 
1748      <literal>recordIdOpaque</literal> string parameter:
1749     <screen>
1750     <![CDATA[
1751      Z> update delete id1234
1752      No last record (update ignored)
1753      Z> update delete 1 esdd0006.grs
1754      Got extended services response
1755      Status: done
1756      Elapsed: 0.072441
1757      Z> f utah
1758      Sent searchRequest.
1759      Received SearchResponse.
1760      Search was a success.
1761      Number of hits: 0, setno 2
1762      SearchResult-1: term=utah cnt=0
1763      records returned: 0
1764      Elapsed: 0.013610
1765      ]]>
1766      </screen>
1767     </para>
1768     <para>
1769     If shadow register is enabled in your
1770     <filename>zebra.cfg</filename>,
1771     you must run the adm-commit command
1772     <screen>
1773     <![CDATA[
1774      Z> adm-commit
1775      ]]>
1776     </screen>
1777      after each update session in order write your changes from the
1778      shadow to the life register space.
1779    </para>
1780  </sect2>
1781
1782   
1783  <sect2 id="administration-extended-services-yaz-php">
1784   <title>Extended services from yaz-php</title>
1785
1786    <para>
1787     Extended services are also available from the &yaz; &acro.php; client layer. An
1788     example of an &yaz;-&acro.php; extended service transaction is given here:
1789     <screen>
1790     <![CDATA[
1791      $record = '<record><title>A fine specimen of a record</title></record>';
1792
1793      $options = array('action' => 'recordInsert',
1794                       'syntax' => 'xml',
1795                       'record' => $record,
1796                       'databaseName' => 'mydatabase'
1797                      );
1798
1799      yaz_es($yaz, 'update', $options);
1800      yaz_es($yaz, 'commit', array());
1801      yaz_wait();
1802
1803      if ($error = yaz_error($yaz))
1804        echo "$error";
1805      ]]>
1806     </screen>  
1807     </para>
1808     </sect2>
1809  </sect1>
1810
1811 </chapter>
1812
1813  <!-- Keep this comment at the end of the file
1814  Local variables:
1815  mode: sgml
1816  sgml-omittag:t
1817  sgml-shorttag:t
1818  sgml-minimize-attributes:nil
1819  sgml-always-quote-attributes:t
1820  sgml-indent-step:1
1821  sgml-indent-data:t
1822  sgml-parent-document: "zebra.xml"
1823  sgml-local-catalogs: nil
1824  sgml-namecase-general:t
1825  End:
1826  -->