1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
|
<?xml version="1.0" encoding="ISO-8859-1"?>
<!--
-
- This file is part of the OpenLink Software Virtuoso Open-Source (VOS)
- project.
-
- Copyright (C) 1998-2018 OpenLink Software
-
- This project is free software; you can redistribute it and/or modify it
- under the terms of the GNU General Public License as published by the
- Free Software Foundation; only version 2 of the License, dated June 1991.
-
- This program is distributed in the hope that it will be useful, but
- WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- General Public License for more details.
-
- You should have received a copy of the GNU General Public License along
- with this program; if not, write to the Free Software Foundation, Inc.,
- 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
-
-
-->
<refentry id="fn_xper_right_sibling">
<refmeta>
<refentrytitle>XPER navigation</refentrytitle>
<refmiscinfo>xml</refmiscinfo>
</refmeta>
<refnamediv>
<refname>xper_right_sibling</refname>
<refname>xper_left_sibling</refname>
<refname>xper_parent</refname>
<refname>xper_root_entity</refname>
<refname>xper_tell</refname>
<refname>xper_length</refname>
<refpurpose>low-level navigation functions for persistent XMLs, useful for import of huge amounts of XML data</refpurpose>
</refnamediv>
<refsynopsisdiv>
<funcsynopsis id="fsyn_xper_right_sibling">
<funcprototype id="fproto_xper_right_sibling">
<funcdef><function>xper_right_sibling</function></funcdef>
<paramdef>in <parameter>xper_entity</parameter>XML_entity</paramdef>
</funcprototype>
</funcsynopsis>
<funcsynopsis id="fsyn_xper_left_sibling">
<funcprototype id="fproto_xper_left_sibling">
<funcdef><function>xper_left_sibling</function></funcdef>
<paramdef>in <parameter>xper_entity</parameter>XML_entity</paramdef>
</funcprototype>
</funcsynopsis>
<funcsynopsis id="fsyn_xper_parent">
<funcprototype id="fproto_xper_parent">
<funcdef><function>xper_parent</function></funcdef>
<paramdef>in <parameter>xper_entity</parameter>XML_entity</paramdef>
</funcprototype>
</funcsynopsis>
<funcsynopsis id="fsyn_xper_root_entity">
<funcprototype id="fproto_xper_root_entity">
<funcdef><function>xper_root_entity</function></funcdef>
<paramdef>in <parameter>xper_entity</parameter>XML_entity</paramdef>
</funcprototype>
</funcsynopsis>
<funcsynopsis id="fsyn_xper_tell">
<funcprototype id="fproto_xper_tell">
<funcdef><function>xper_tell</function></funcdef>
<paramdef>in <parameter>xper_entity</parameter>XML_entity</paramdef>
</funcprototype>
</funcsynopsis>
<funcsynopsis id="fsyn_xper_length">
<funcprototype id="fproto_xper_length">
<funcdef><function>xper_length</function></funcdef>
<paramdef>in <parameter>xper_entity</parameter>XML_entity</paramdef>
</funcprototype>
</funcsynopsis>
</refsynopsisdiv>
<refsect1 id="desc"><title>Description</title>
<para>
All these functions work with "persistent XML" (XPER) entities only, signalling errors if
given entity points to "XML tree". They are useful when applications need to read a
huge XML document, especially something like a datasheet dump or event log with a large number
of uniform records, and is required to process all records of the document, e.g. import them into
the database.
</para>
<para>
Consider a real sample of import all data from ODP's content.xml dump which contains more than
2,000,000 descriptions of various Web-sites, and the length of the file is more than 600Mb. The
file has root element named 'RDF' and all descriptions are their children named either 'Topic' or
'ExternalPage'. This code looks suitable for importing these children:</para>
<programlisting>
create procedure
import_content_xml ()
{
for select _frag, xpath_eval('local_name()', _frag) as _tag from SOURCE_XML
where NAME='content.xml' and xpath_contains(XPER,'/RDF/*',_frag)
do
{
if (_tag='Topic') import_topic (_frag);
else
{
if (_tag='ExternalPage') import_external (_frag);
else log_import_error (_frag, "Unknown type of record");
}
}
};
-- This should load files like content.xml, and place XPERs into SOURCE_XML table
read_source_xmls();
-- Now SOURCE_XML is filled and data should be imported.
import_content_xml();
import_structure_xml();
import_profiles_xml();
...
</programlisting>
<para>
It looks fine and it passes small tests but it will not work on real data!</para>
<para>
First problem is regular checkpoints (every 1 hour by default),
so import_content_xml has no chance to be completed if it takes 1.5 hours of CPU time;
the function checkpoint_interval should be used to temporarily disable these checkpoints.
Then, the length of transaction log become extremely large after switching checkpoints off,
and it is better to insert explicit checkpoints between calls of these functions.
Finally, import_content_xml will change more than 4 gigabytes of data in one transaction.
This would be impossible on any 32-bit platform, because both memory available and address space
become insufficient. Adding intermediate 'commit work' statements inside the loop's body
will not help because both 'commit work' and 'rollback work' statements will close all opened cursors.
Loop 'for select ... from ... do' uses an implicit cursor to iterate the resultset, but the
'commit work' operator will close this cursor and abort the loop.</para>
<para>
Function xper_right_sibling is designed specially to solve the last problem. It allows you
to iterate children of some element without using any cursor at all.
It returns the right child of the entity passed as its argument. If the given entity
is the last child of its parent, the function will return NULL. Similarly, xper_left_sibling will
return the previous child or NULL for the first child, xper_parent will return parent of
entity or NULL for the document's root and xper_root_entity will return the root for any
entity. Using these functions, it is possible to scan the document forward (from left
to right), backward and to "climb up" toward the root of the elements' tree. These
functions are called <emphasis>XML Navigation Functions</emphasis> because they are like
the statements "next record", "prev record" etc., used in cursor
like navigation of databases.</para>
<para>
There are no special functions to "go down", e.g. to find first children of
given element, because xpath_eval can do any such movement very quickly.</para>
<para>
Sometimes data import is controlled from some client application. If one operation takes
hours, some sort of "progress bar" becomes very useful, at least to see whether
application works or hangs. xper_length takes an XPER entity and returns whole length of
XPER disk image in bytes. xper_tell takes an XPER entity and returns something like entity's offset
inside the document. Their results may be used by the client application to monitor the progress
and estimate the time until completion. They may be especially useful for debugging purposes,
e.g. to report position of error. Unfortunately "xper_seek" is not possible for
XPERs, unlike typical random access to files.</para>
<para>
Ultimately, the working version of the procedure described above will look like this:</para>
<programlisting>
create procedure
import_content_xml ()
{
declare _frag any;
declare _tag any;
declare _nodeid any;
declare _r_id varchar;
declare _about, _title, _description varchar;
declare CurTime varchar;
declare Frags, Inserts, Pos, Length integer;
select _frag1 into _frag from SOURCE_XML
where NAME = 'content.xml' and xpath_contains (XPER, '/RDF/*', _frag1);
if (not isentity(_frag)) signal('42ODP', 'XML source "Content" is empty');
Frags := 0;
Inserts := 0;
Length := xper_length(_frag);
result_names (CurTime, Frags, Pos, Length);
-- It's not the best way to process deadlocks, but it may be better than nothing.
whenever sqlstate '40001' goto next_frag;
next_frag:
-- Server will inform client application about progress after every 10000 records.
if (mod(Frags,10000) = 0)
{
-- Note that if it needs to estimate the time to completion, time should be measured
-- on server side, because results may be returned on batches to reduce network
-- traffic, and it may be a significant delay between call of result function on
-- server and fetch on client side.
CurTime := cast(now() as varchar);
Pos := xper_tell(_frag);
result (CurTime, Frags, Inserts, Pos, Length);
}
_tag := xpath_eval('local-name()', _frag);
if (_tag = 'Topic')
{
import_topic(_frag);
goto advance;
}
if (_tag = 'ExternalPage')
{
import_external(_frag);
goto advance;
}
log_import_error (_frag, "Unknown type of record");
goto nocommit_advance;
advance:
Inserts := Inserts + 1;
-- Note that it may be faster to have 1 commit per 100 or 1000 records in some cases.
commit work;
nocommit_advance:
Frags := Frags + 1;
_frag := xper_right_sibling(_frag);
if (isentity(_frag)) goto next_frag; -- If _frag is NULL, we've completed the import.
CurTime := cast(now() as varchar);
result (CurTime, Frags, Inserts, Length, Length);
};
checkpoint_interval(0);
checkpoint;
read_source_xmls();
checkpoint;
import_content_xml();
checkpoint;
import_structure_xml();
checkpoint;
import_profiles_xml();
checkpoint;
...
checkpoint_interval(60);
</programlisting>
</refsect1>
<refsect1 id="params"><title>Parameters</title>
<refsect2><title>xper_entity</title>
<para>Persistent XML entity to operate on.</para></refsect2>
</refsect1>
<refsect1 id="seealso"><title>See Also</title>
<para><link linkend="fn_xper_doc">xper_doc()</link></para>
<para><link linkend="fn_xper_cut">xper_cut()</link></para>
</refsect1>
</refentry>
|