added a lot of info about attribute sets, PQF query structure, and string use attributes
[idzebra-moved-to-github.git] / doc / server.xml
1 <chapter id="server">
2  <!-- $Id: server.xml,v 1.24 2006-06-13 13:45:08 marc Exp $ -->
3  <title>The Z39.50 Server</title>
4  
5  <sect1 id="zebrasrv">
6   <title>Running the Z39.50 Server (zebrasrv)</title>
7
8   <!--
9    FIXME - We need to be consistent here, zebraidx had the options at the
10            end, and lots of explaining text before them. Same for zebrasvr! -H
11    FIXME - At least we need a small intro, what is zebrasvr, and how it
12            can be run (inetd, nt service, stand-alone program, daemon...) -H
13   -->
14
15   <!-- re-write by MC, using the newly created input files for the 
16    zebrasrv manpage -->
17
18
19  <sect2><title>Description</title>
20     <para>Zebra is a high-performance, general-purpose structured text indexing
21    and retrieval engine. It reads structured records in a variety of input
22    formats (eg. email, XML, MARC) and allows access to them through exact
23    boolean search expressions and relevance-ranked free-text queries. 
24    </para>
25    <para>
26     <command>zebrasrv</command> is the Z39.50 and  <ulink url="http://www.loc.gov/standards/sru/srw/">SRW</ulink>/U frontend
27     server for the <command>Zebra</command> indexer.
28    </para> 
29    <para> 
30     On Unix you can run the <command>zebrasrv</command>
31     server from the command line - and put it
32     in the background. It may also operate under the inet daemon.
33     On WIN32 you can run the server as a console application or
34     as a WIN32 Service.
35    </para>
36   </sect2>
37
38  <sect2>
39    <title>Synopsis</title>
40     &zebrasrv-synopsis;
41  </sect2>
42
43  <sect2>
44    <title>Options</title>
45     
46    <para>
47     The options for <command>zebrasrv</command> are the same
48     as those for YAZ' <command>yaz-ztest</command>.
49     Option <literal>-c</literal> specifies a Zebra configuration
50     file - if omitted <filename>zebra.cfg</filename> is read.
51    </para>
52    
53   &zebrasrv-options;
54   </sect2>
55
56   <sect2><title>Files</title>
57    <para>
58     <filename>zebra.cfg</filename>
59    </para>
60   </sect2>
61   <sect2><title>See Also</title>
62    <para>
63     <citerefentry>
64      <refentrytitle>zebraidx</refentrytitle>
65      <manvolnum>1</manvolnum>
66     </citerefentry>,
67     <citerefentry>
68      <refentrytitle>yaz-ztest</refentrytitle>
69      <manvolnum>8</manvolnum>
70     </citerefentry>
71    </para>
72    <para>
73     The Zebra software is Copyright <command>Index Data</command> 
74     <filename>http://www.indexdata.dk</filename>
75     and distributed under the
76     GPLv2 license.
77    </para> 
78   </sect2>
79
80   <!--
81   <para>
82    <emphasis remap="bf">Syntax</emphasis>
83
84    <screen>
85     zebrasrv [options] [listener-address ...]
86    </screen>
87
88   </para>
89
90   <para>
91    <emphasis remap="bf">Options</emphasis>
92    <variablelist>
93
94     <varlistentry>
95      <term>-a <replaceable>APDU file</replaceable></term>
96      <listitem>
97       <para>
98        Specify a file for dumping PDUs (for diagnostic purposes).
99        The special name "-" sends output to <literal>stderr</literal>.
100       </para>
101      </listitem>
102     </varlistentry>
103     <varlistentry>
104      <term>-c <replaceable>config-file</replaceable></term>
105      <listitem>
106       <para>
107        Read configuration information from
108        <replaceable>config-file</replaceable>.
109        The default configuration is <literal>./zebra.cfg</literal>.
110       </para>
111      </listitem>
112     </varlistentry>
113     <varlistentry>
114      <term>-S</term>
115      <listitem>
116       <para>
117        Don't fork on connection requests. This can be useful for
118        symbolic-level debugging. The server can only accept a single
119        connection in this mode.
120       </para>
121      </listitem>
122     </varlistentry>
123     <varlistentry>
124      <term>-z</term>
125      <listitem>
126       <para>
127        Use the Z39.50 protocol. Currently the only protocol supported.
128        The option is retained for historical reasons, and for future
129        extensions.
130       </para>
131      </listitem>
132     </varlistentry>
133     <varlistentry>
134      <term>-l <replaceable>logfile</replaceable></term>
135      <listitem>
136       <para>
137        Specify an output file for the diagnostic messages.
138        The default is to write this information to <literal>stderr</literal>.
139       </para>
140      </listitem>
141     </varlistentry>
142     <varlistentry>
143      <term>-v <replaceable>log-level</replaceable></term>
144      <listitem>
145       <para>
146        The log level. Use a comma-separated list of members of the set
147        {fatal,debug,warn,log,all,none}.
148       </para>
149      </listitem>
150     </varlistentry>
151     <varlistentry>
152      <term>-u <replaceable>username</replaceable></term>
153      <listitem>
154       <para>
155        Set user ID. Sets the real UID of the server process to that of the
156        given <replaceable>username</replaceable>.
157        It's useful if you aren't comfortable with having the
158        server run as root, but you need to start it as such to bind a
159        privileged port.
160       </para>
161      </listitem>
162     </varlistentry>
163     <varlistentry>
164      <term>-w <replaceable>working-directory</replaceable></term>
165      <listitem>
166       <para>
167        Change working directory.
168       </para>
169      </listitem>
170     </varlistentry>
171     <varlistentry>
172      <term>-i</term>
173      <listitem>
174       <para>
175        Run under the Internet superserver, <literal>inetd</literal>.
176        Make sure you use the logfile option <literal>-l</literal> in
177        conjunction with this mode and specify the <literal>-l</literal>
178        option before any other options.
179       </para>
180      </listitem>
181     </varlistentry>
182     <varlistentry>
183      <term>-t <replaceable>timeout</replaceable></term>
184      <listitem>
185       <para>
186        Set the idle session timeout (default 60 minutes).
187       </para>
188      </listitem>
189     </varlistentry>
190     <varlistentry>
191      <term>-k <replaceable>kilobytes</replaceable></term>
192      <listitem>
193       <para>
194        Set the (approximate) maximum size of
195        present response messages. Default is 1024 KB (1 MB).
196       </para>
197      </listitem>
198     </varlistentry>
199    </variablelist>
200   </para>
201   -->
202  </sect1>
203
204
205  <sect1 id="protocol-support">
206   <title>Z39.50 Protocol Support and Behavior</title>
207
208   <sect2>
209    <title>Initialization</title>
210
211    <para>
212     During initialization, the server will negotiate to version 3 of the
213     Z39.50 protocol, and the option bits for Search, Present, Scan,
214     NamedResultSets, and concurrentOperations will be set, if requested by
215     the client. The maximum PDU size is negotiated down to a maximum of
216     1 MB by default.
217    </para>
218
219   </sect2>
220
221   <sect2 id="search">
222    <title>Search</title>
223
224    <!--
225     FIXME - Need to explain the string tag stuff before people get bogged 
226             down with all these attribute numbers. Perhaps in its own
227             chapter? -H
228    -->
229
230    <para>
231     The supported query type are 1 and 101. All operators are currently
232     supported with the restriction that only proximity units of type "word"
233     are supported for the proximity operator.
234     Queries can be arbitrarily complex.
235     Named result sets are supported, and result sets can be used as operands
236     without limitations.
237     Searches may span multiple databases.
238    </para>
239
240    <para>
241     The server has full support for piggy-backed retrieval (see
242     also the following section).
243    </para>
244
245    </sect2>
246    
247   <sect2>
248    <title>Present</title>
249    <para>
250     The present facility is supported in a standard fashion. The requested
251     record syntax is matched against the ones supported by the profile of
252     each record retrieved. If no record syntax is given, SUTRS is the
253     default. The requested element set name, again, is matched against any
254     provided by the relevant record profiles.
255    </para>
256   </sect2>
257   <sect2>
258    <title>Scan</title>
259    <para>
260     The attribute combinations provided with the termListAndStartPoint are
261     processed in the same way as operands in a query (see above).
262     Currently, only the term and the globalOccurrences are returned with
263     the termInfo structure.
264    </para>
265   </sect2>
266   <sect2>
267    <title>Sort</title>
268
269    <para>
270     Z39.50 specifies three different types of sort criteria.
271     Of these Zebra supports the attribute specification type in which
272     case the use attribute specifies the "Sort register".
273     Sort registers are created for those fields that are of type "sort" in
274     the default.idx file. 
275     The corresponding character mapping file in default.idx specifies the
276     ordinal of each character used in the actual sort.
277    </para>
278
279    <para>
280     Z39.50 allows the client to specify sorting on one or more input
281     result sets and one output result set.
282     Zebra supports sorting on one result set only which may or may not
283     be the same as the output result set.
284    </para>
285   </sect2>
286   <sect2>
287    <title>Close</title>
288    <para>
289     If a Close PDU is received, the server will respond with a Close PDU
290     with reason=FINISHED, no matter which protocol version was negotiated
291     during initialization. If the protocol version is 3 or more, the
292     server will generate a Close PDU under certain circumstances,
293     including a session timeout (60 minutes by default), and certain kinds of
294     protocol errors. Once a Close PDU has been sent, the protocol
295     association is considered broken, and the transport connection will be
296     closed immediately upon receipt of further data, or following a short
297     timeout.
298    </para>
299   </sect2>
300    
301    <sect2>
302     <title>Explain</title>
303     <para>
304      Zebra maintains a "classic" 
305      <ulink url="&url.z39.50.explain;">Explain</ulink> database
306      on the side. 
307      This database is called <literal>IR-Explain-1</literal> and can be
308      searched using the attribute set <literal>exp-1</literal>.
309     </para>
310     <para>
311      The records in the explain database are of type 
312      <literal>grs.sgml</literal>.
313      The root element for the Explain grs.sgml records is 
314      <literal>explain</literal>, thus 
315      <filename>explain.abs</filename> is used for indexing.
316     </para>
317     <note>
318      <para>
319       Zebra <emphasis>must</emphasis> be able to locate
320       <filename>explain.abs</filename> in order to index the Explain
321       records properly. Zebra will work without it but the information
322       will not be searchable.
323      </para>
324     </note>
325    </sect2>
326  </sect1>
327 </chapter>
328
329
330 <chapter id="server-sru">
331  <title>The SRU/SRW Server</title>
332  <para>
333   In addition to Z39.50, Zebra supports the more recent and
334   web-friendly IR protocol SRU, described at
335   <ulink url="http://www.loc.gov/sru"/>.
336   SRU is ``Search/Retrieve via URL'', a simple, REST-like protocol
337   that uses HTTP GET to request search responses.  The request
338   itself is made of parameters such as
339   <literal>query</literal>,
340   <literal>startRecord</literal>,
341   <literal>maximumRecords</literal>
342   and
343   <literal>recordSchema</literal>;
344   the response is an XML document containing hit-count, result-set
345   records, diagnostics, etc.  SRU can be thought of as a re-casting
346   of Z39.50 semantics in web-friendly terms; or as a standardisation
347   of the ad-hoc query parameters used by search engines such as Google
348   and AltaVista; or as a superset of A9's OpenSearch (which it
349   predates).
350  </para>
351  <para>
352   Zebra further supports SRW, described at
353   <ulink url="http://www.loc.gov/srw"/>.
354   SRW is the ``Search/Retrieve Web Service'', a SOAP-based alternative
355   implementation of the abstract protocol that SRU implements as HTTP
356   GET requests.  In SRW, requests are encoded as XML documents which
357   are posted to the server.  The responses are identical to those
358   returned by SRU servers, except that they are wrapped in a several
359   layers of SOAP envelope.
360  </para>
361  <para>
362   Zebra supports all three protocols - Z39.50, SRU and SRW - on the
363   same port, recognising what protocol is used by each incoming
364   requests and handling them accordingly.  This is a achieved through
365   the use of Deep Magic; civilians are warned not to stand too close.
366  </para>
367  <para>
368   From here on, ``SRU'' is used to indicate both the SRU and SRW
369   protocols, as they are identical except for the transport used for
370   the protocol packets and Zebra's support for them is equivalent.
371  </para>
372
373  <sect1 id="server-sru-run">
374   <title>Running the SRU Server (zebrasrv)</title>
375   <para>
376    Because Zebra supports all three protocols on one port, it would
377    seem to follow that the SRU server is run in the same way as
378    the Z39.50 server, as described above.  This is true, but only in
379    an uninterestingly vacuous way: a Zebra server run in this manner
380    will indeed recognise and accept SRU requests; but since it
381    doesn't know how to handle the CQL queries that these protocols
382    use, all it can do is send failure responses.
383   </para>
384   <note>
385    <para>
386     It is possible to cheat, by having SRU search Zebra with
387     a PQF query instead of CQL, using the
388     <literal>x-pquery</literal>
389     parameter instead of
390     <literal>query</literal>.
391     This is a
392     <emphasis role="strong">non-standard extension</emphasis>
393     of CQL, and a
394     <emphasis role="strong">very naughty</emphasis>
395     thing to do, but it does give you a way to see Zebra serving SRU
396     ``right out of the box''.  If you start your favourite Zebra
397     server in the usual way, on port 9999, then you can send your web
398     browser to:
399   </para>
400   <screen>
401         http://localhost:9999/Default?version=1.1
402                 &amp;operation=searchRetrieve
403                 &amp;x-pquery=mineral
404                 &amp;startRecord=1
405                 &amp;maximumRecords=1
406   </screen>
407   <para>
408     This will display the XML-formatted SRU response that includes the
409     first record in the result-set found by the query
410     <literal>mineral</literal>.  (For clarity, the SRU URL is shown
411     here broken across lines, but the lines should be joined to gether
412     to make single-line URL for the browser to submit.)
413    </para>
414   </note>
415   <para>
416    In order to turn on Zebra's support for CQL queries, it's necessary
417    to have the YAZ generic front-end (which Zebra uses) translate them
418    into the Z39.50 Type-1 query format that is used internally.  And
419    to do this, the generic front-end's own configuration file must be
420    used.  This file is described
421    <link linkend="gfs-config">elsewhere</link>;
422    the salient point for SRU support is that
423    <command>zebrasrv</command>
424    must be started with the
425    <literal>-f&nbsp;frontendConfigFile</literal>
426    option rather than the
427    <literal>-c&nbsp;zebraConfigFile</literal>
428    option,
429    and that the front-end configuration file must include both a
430    reference to the Zebra configuration file and the CQL-to-PQF
431    translator configuration file.
432   </para>
433   <para>
434    A minimal front-end configuration file that does this would read as
435    follows:
436   </para>
437   <screen><![CDATA[
438         <yazgfs>
439           <server>
440             <config>zebra.cfg</config>
441             <cql2rpn>../../tab/pqf.properties</cql2rpn>
442           </server>
443         </yazgfs>
444 ]]></screen>
445   <para>
446    The
447    <literal>&lt;config&gt;</literal>
448    element contains the name of the Zebra configuration file that was
449    previously specified by the
450    <literal>-c</literal>
451    command-line argument, and the
452    <literal>&lt;cql2rpn&gt;</literal>
453    element contains the name of the CQL properties file specifying how
454    various CQL indexes, relations, etc. are translated into Type-1
455    queries.
456   </para>
457   <para>
458    A zebra server running with such a configuration can then be
459    queried using proper, conformant SRU URLs with CQL queries:
460   </para>
461   <screen>
462         http://localhost:9999/Default?version=1.1
463                 &amp;operation=searchRetrieve
464                 &amp;query=title=utah and description=epicent*
465                 &amp;startRecord=1
466                 &amp;maximumRecords=1
467   </screen>
468  </sect1>
469
470  <sect1 id="server-sru-support">
471   <title>SRU and SRW Protocol Support and Behavior</title>
472   <para>
473    Zebra running as an SRU server supports SRU version 1.1, including
474    CQL version 1.1.  In particular, it provides support for the
475    following elements of the protocol.
476   </para>
477
478   <sect2>
479    <title>Search and Retrieval</title>
480    <para>
481     Zebra fully supports SRU's core
482     <literal>searchRetrieve</literal>
483     operation, as described at
484     <ulink url="http://www.loc.gov/standards/sru/sru-spec.html"/>
485    </para>
486    <para>
487     One of the great strengths of SRU is that it mandates a standard
488     query language, CQL, and that all conforming implementations can
489     therefore be trusted to correctly interpret the same queries.  It
490     is with some shame, then, that we admit that Zebra also supports
491     an additional query language, our own Prefix Query Format (PQF,
492     <ulink url="http://indexdata.com/yaz/doc/tools.tkl#PQF"/>).
493     A PQF query is submitted by using the extension parameter
494     <literal>x-pquery</literal>,
495     in which case the
496     <literal>query</literal>
497     parameter must be omitted, which makes the request not valid SRU.
498     Please don't do this.
499    </para>
500   </sect2>
501
502   <sect2>
503    <title>Scan</title>
504    <para>
505     Zebra does <emphasis>not</emphasis> support SRU's
506     <literal>scan</literal>
507     operation, as described at
508     <ulink url="http://www.loc.gov/standards/sru/scan/"/>
509    </para>
510    <para>
511     This is a rather embarrassing surprise as the pieces are all
512     there: Z39.50 scan is supported, and SRU scan requests are
513     recognised and diagnosed.  To add further to the embarrassment, a
514     mutant form of SRU scan <emphasis>is</emphasis> supported, using
515     the non-standard <literal>x-pScanClause</literal> parameter in
516     place of the standard <literal>scanClause</literal> to scan on a
517     PQF query clause.
518    </para>
519   </sect2>
520
521   <sect2>
522    <title>Explain</title>
523    <para>
524     Zebra fully supports SRU's core
525     <literal>explain</literal>
526     operation, as described at
527     <ulink url="http://www.loc.gov/standards/sru/explain/index.html"/>
528    </para>
529    <para>
530     The ZeeRex record explaining a database may be requested either
531     with a fully fledged SRU request (with
532     <literal>operation</literal>=<literal>explain</literal>
533     and version-number specified)
534     or with a simple HTTP GET at the server's basename.
535     The ZeeRex record returned in response is the one embedded
536     in the YAZ Frontend Server configuration file that is described in the
537     <link linkend="gfs-config">Virtual Hosts</link> documentation.
538    </para>
539     <para>
540      Unfortunately, the data found in the 
541      CQL-to-PQF text file must be added by hand-craft into the explain
542      section of the YAZ Frontend Server configuration file to be able
543      to provide a suitable explain record. 
544      Too bad, but this is all extreme
545      new alpha stuff, and a lot of work has yet to be done ..
546     </para>
547     <para>
548      There is no linkeage whatsoever between the Z39.50 explain model
549      and the SRU/SRW explain response (well, at least not implemented
550      in Zebra, that is ..).  Zebra does not provide a means using
551      Z39.50 to obtain the ZeeRex record.
552      </para>
553   </sect2>
554
555   <sect2>
556    <title>Some SRU Examples</title>
557     <para>
558      Surf into <literal>http://localhost:9999</literal>
559      to get an explain response, or use
560      <screen><![CDATA[
561       http://localhost:9999/?version=1.1&operation=explain
562      ]]></screen>
563     </para>
564     <para>
565      See number of hits for a query
566      <screen><![CDATA[
567        http://localhost:9999/?version=1.1&operation=searchRetrieve
568                        &query=text=(plant%20and%20soil)
569      ]]></screen>
570     </para>
571     <para>
572       Fetch record 5-7 in Dublin Core format
573      <screen><![CDATA[
574        http://localhost:9999/?version=1.1&operation=searchRetrieve
575                        &query=text=(plant%20and%20soil)
576                        &startRecord=5&maximumRecords=2&recordSchema=dc
577      ]]></screen>
578     </para>
579     <para>
580      Even search using PQF queries using the <emphasis>extended naughty 
581      verb</emphasis> <literal>x-pquery</literal>
582      <screen><![CDATA[
583       http://localhost:9999/?version=1.1&operation=searchRetrieve
584                        &x-pquery=@attr%201=text%20@and%20plant%20soil
585      ]]></screen>
586     </para>
587     <para>
588      Or scan indexes using the <emphasis>extended extremely naughty 
589      verb</emphasis> <literal>x-pScanClause</literal>
590      <screen><![CDATA[
591       http://localhost:9999/?version=1.1&operation=scan
592                        &x-pScanClause=@attr%201=text%20something
593      ]]></screen>
594      <emphasis>Don't do this in production code!</emphasis>
595      But it's a great fast debugging aid.
596     </para>
597   </sect2>
598
599   <sect2>
600    <title>Initialization, Present, Sort, Close</title>
601    <para>
602     In the Z39.50 protocol, Initialization, Present, Sort and Close
603     are separate operations.  In SRU, however, these operations do not
604     exist.
605    </para>
606    <itemizedlist>
607     <listitem>
608      <para>
609       SRU has no explicit initialization handshake phase, but
610       commences immediately with searching, scanning and explain
611       operations.
612      </para>
613     </listitem>
614     <listitem>
615      <para>
616       Neither does SRU have a close operation, since the protocol is
617       stateless and each request is self-contained.  (It is true that
618       multiple SRU request/response pairs may be implemented as
619       multiple HTTP request/response pairs over a single persistent
620       TCP/IP connection; but the closure of that connection is not a
621       protocol-level operation.)
622      </para>
623     </listitem>
624     <listitem>
625      <para>
626       Retrieval in SRU is part of the
627       <literal>searchRetrieve</literal> operation, in which a search
628       is submitted and the response includes a subset of the records
629       in the result set.  There is no direct analogue of Z39.50's
630       Present operation which requests records from an established
631       result set.  In SRU, this is achieved by sending a subsequent
632       <literal>searchRetrieve</literal> request with the query
633       <literal>cql.resultSetId=</literal><emphasis>id</emphasis> where 
634       <emphasis>id</emphasis> is the identifier of the previously
635       generated result-set.
636      </para>
637     </listitem>
638     <listitem>
639      <para>
640       Sorting in CQL is done within the
641       <literal>searchRetrieve</literal> operation - in v1.1, by an
642       explicit <literal>sort</literal> parameter, but the forthcoming
643       v1.2 or v2.0 will most likely use an extension of the query
644       language, CQL for sorting: see
645       <ulink url="http://zing.z3950.org/cql/sorting.html"/>
646      </para>
647     </listitem>
648    </itemizedlist>
649    <para>
650     It can be seen, then, that while Zebra operating as an SRU server
651     does not provide the same set of operations as when operating as a
652     Z39.50 server, it does provide equivalent functionality.
653    </para>
654   </sect2>
655  </sect1>
656 </chapter>
657
658  <!-- Keep this comment at the end of the file
659  Local variables:
660  mode: sgml
661  sgml-omittag:t
662  sgml-shorttag:t
663  sgml-minimize-attributes:nil
664  sgml-always-quote-attributes:t
665  sgml-indent-step:1
666  sgml-indent-data:t
667  sgml-parent-document: "zebra.xml"
668  sgml-local-catalogs: nil
669  sgml-namecase-general:t
670  End:
671  -->