You can use mlcp to insert content into a MarkLogic Server database from flat files, compressed ZIP and GZIP files, aggregate XML files, Hadoop sequence files, and MarkLogic Server database archives. The input data can be accessed from the native filesystem or HDFS.
For a list of import related options, see Import Command Line Options.
This chapter covers the following topics:
Use the -input_file_type
option to tell mlcp the format of the data in each input file (or each entry inside a compressed file). This option controls if/how mlcp converts the content into database documents.
The default input type is documents
, which means each input file or ZIP file entry creates one database document. All other input file types represent composite input formats which can yield multiple database documents per input file.
The following table provides a quick reference of the supported input file types, along with the allowed document types for each, and whether or not they can be passed to mlcp as compressed files.
-input_file_type |
Document Type | -input_compressed permitted |
---|---|---|
documents |
XML, JSON, text, or binary; controlled with -document_type . |
Yes |
archive |
As in the database: XML, JSON, text, and/or binary documents, plus metadata. The type is not under user control. | No (archives are already in compressed format) |
delimited_text |
XML or JSON | Yes |
delimited_json | JSON | Yes |
sequencefile |
XML, text or binary; controlled with these options: |
No. However, the contents can be compressed when you create the sequence file. Compression is bound up with the value class you use to generate and import the file. |
aggregates |
XML | Yes |
rdf | Serialized RDF triples, in one of several formats. For details, see Supported RDF Triple Formats in the Semantics Developer's Guide. RDF/JSON is not supported. | Yes |
forest | As in the database: XML, JSON, text, and/or binary documents. The type is not under user control. | No |
When the input file type is documents
or sequencefile
you must consider both the input format (-input_file_type
) and the output document format (-document_type
). In addition, for some input formats, input can come from either compressed or uncompressed files (-input_compressed
).
The -document_type
option controls the database document format when -input_file_type
is documents
or sequencefile
. MarkLogic Server supports text, JSON, XML, and binary documents. If the document type is not explicitly set with these input file types, mlcp uses the input file suffix to determine the type. For details, see How mlcp Determines Document Type.
You cannot use mlcp to perform document conversions. Your input data should match the stated document type. For example, you cannot convert XML input into a JSON document just by setting -document_type json
.
To illustrate how the -input_file_type
and -document_type
fit together, consider a Hadoop sequence file that contains binary values. You would set the following options:
If the sequence file contained text rather than binary values, then -input_file_type
is unchanged, but -document_type
becomes text
:
If you do not explicitly include a URI scheme prefix such as file:
or hdfs:
on the input file path, mlcp uses the following rules to locate the input path:
file
).fs.default.name
.In distributed mode, the file scheme (file:
) refers to the local filesystem of the Hadoop cluster nodes to which the job is distributed. For example, if you perform an import in distributed mode with an input file path that uses the file:
prefix, the input files must be reachable along that path from all nodes in your Hadoop cluster.
The following example loads files from the local filesystem directory /space/bill/data
:
# Windows users, see Modifying the Example Commands for Windows $ mlcp.sh import -host localhost -port 8000 -username user \ -password passwd -input_file_path /space/bill/data -mode local
The following example loads files from the native filesystem of each host in a Hadoop cluster, assuming /space/bill/data
is a shared network path on all hosts in the Hadoop cluster:
# Windows users, see Modifying the Example Commands for Windows $ mlcp.sh import -host localhost -port 8000 -username user \ -password passwd -input_file_path file:/space/bill/data \ -mode distributed
By default, the document URIs created by mlcp during ingestion are determined by the input source. The tool supports several command line options for modifying this default behavior.
The default database URI assigned to ingested documents depends on the input source. Loading content from the local filesystem or HDFS can create different URIs than loading the same content from a ZIP file or archive. Command line options are available for you to modify this behavior. You can use options to generate different URIs; for details, see Transforming the Default URI.
The following table summarizes the default behavior with several input sources:
For example, the following command loads all files from the file systemdirectory /space/bill/data
into the database attached to the App Server on port 8000. The documents inserted into the database have URIs of form /space/bill/data/
filename.
# Windows users, see Modifying the Example Commands for Windows $ mlcp.sh import -host localhost -port 8000 -username user \ -password passwd -input_file_path /space/bill/data -mode local
If the /space/bill/data
directory is zipped up into bill.zip
, such that bill/
is the root directory in zip file, then the following command inserts documents with URIs of the form bill/data/
filename:
# Windows users, see Modifying the Example Commands for Windows $ cd /space; zip -r bill.zip bill $ mlcp.sh import -host localhost -port 8000 -username user \ -password passwd -input_file_path /space/bill.zip \ -mode local -input_compressed true
When you use the -generate_uri
option to have mlcp generate URIs for you, the generated URIs follow the same pattern as for aggregate XML and line delimited JSON:
/path/filename-split_start-seqnum
The generated URIs are unique across a single import operation, but they are not globally unique. For example, if you repeatedly import data from some file /tmp/data.csv
, the generated URIs will be the same each time (modulo differences in the number of documents inserted by the job).
Use the following options to tailor the database URI of inserted documents:
-output_uri_replace
performs one or more string substitutions on the default URI.-output_uri_prefix
prepends a string to the URI after substitution.-output_uri_suffix
appends a string to the URI after substitution.The -output_uri_replace
option accepts a comma delimited list of regular expression and replacement string pairs. The string portion must be enclosed in single quotes:
-output_uri_replace pattern,'string',pattern,'string'
For details on the regular expression language supported by -output_uri_replace
, see Regular Expression Syntax.
These options are applied after the default URI is constructed and encoded, so if the option values contain characters not allowed in a URI, you must encode them yourself. See Character Encoding of URIs.
The following example loads documents from the filesystem directory /space/bill/data
. The default output URIs would be of the form /space/bill/data/
filename. The example uses -output_uri_replace
to replace bill/data with will and strip off /space/, and then adds a /plays prefix using -output_uri_prefix
. The end result is output URIs of the form /plays/will/
filename.
# Windows users, see Modifying the Example Commands for Windows $ mlcp.sh import -host localhost -port 8000 -username user \ -password passwd -input_file_path /space/bill/data -mode local \ -output_uri_replace "/space,'',/bill/data/,'/will/'" \ -output_uri_prefix /plays
If a URI constructed by mlcp contains special characters that are not allowed in URIs, mlcp automatically encodes them. This applies to the special characters (space), %, ? or #. For example, foo bar.xml becomes foo%20bar.xml.
If you supply a URI or URI component, you are responsible for ensuring the result is a legitimate URI. No automatic encoding takes place. This applies to -output_uri_replace
, -output_uri_prefix
, and -output_uri_suffix
. The changes implied by these options are applied after mlcp encodes the default URI.
When mlcp exports documents from the database to the file system (or HDFS) such that the output directory and/or file names are derived from the document URI, the special symbols are decoded. That is, foo%bar.xml becomes foo bar.xml when exported. For details, see How URI Decoding Affects Output File Names.
The document type determines what kind of database document mlcp inserts from input content: Text, XML, JSON, or binary. Document type is determined in the following ways:
aggregates
and rdf
input files always insert XML documents. For details, see Supported Input Format Summary.-document_type
. For example, to load documents as XML, use -input_file_type documents -document_type xml
. You cannot set an explicit type for all input file types.-input_file_type documents -document_type mixed
.If you set -document_type
to an explicit type such as -document_type json
, then mlcp inserts all documents as that type.
If you use -document_type mixed
, then mlcp determines the document type from the output URI suffix and the MIME type mapping configured into MarkLogic Server. Mixed is the default behavior for -input_file_type documents.
You can only use -document_type mixed
when the input file type is documents
.
If an unrecognized or unmapped file extension is encountered when loading mixed documents, mlcp creates a binary document.
The following table contains examples of applying the default MIME type mappings to output URIs with various file extensions, an unknown extension, and no extension. The default mapping includes many additional suffixes. You can examine and create MIME type mappings under the Mimetypes section of the Admin Interface. For more information, see Implicitly Setting the Format Based on the MIME Type in the Loading Content Into MarkLogic Server Guide.
URI | Document Type |
---|---|
/path/doc.xml |
XML |
/path/doc.json |
JSON |
/path/doc.jpg |
binary |
/path/doc.txt |
text |
/path/doc.unknown |
binary |
/path/doc-nosuffix |
binary |
The MIME type mapping is applied to the final output URI. That is, the URI that results from applying the URI transformation options described in Controlling Database URIs During Ingestion. The following table contains examples of how URI transformations can affect the output document type in mixed
mode, assuming the default MIME type mappings.
Input Filename | URI Options | Output URI | Doc Type |
---|---|---|---|
/path/doc.1 |
None | /path/file.1 |
binary |
/path/doc.1 |
/path/file.xml |
XML | |
/path/doc.1 |
/path/file.txt |
text |
Document type determination is completed prior to invoking server side transformations. If you change the document type in a transformation function, you are responsible for changing the output document to match. For details, see Transforming Content During Ingestion.
This section discusses importing documents stored as flat files on the native filesystem or HDFS. The following topics are covered:
Use the following procedure to load all the files in a native or HDFS directory and its sub-directories. To load selected files, see Filtering Documents Loaded From a Directory.
-input_file_path
to the path to the input file.-input_file_type
if your input files are not documents. For example, if loading from delimited text files, sequence files, aggregate XML files, RDF triples files, or database archives.-document_type
if -input_file_type
is not documents
and the content type cannot be accurately deduced from the file suffixes as described in How mlcp Determines Document Type.-mode
:-mode
to distributed
. -mode
to local
. (This is the default mode unless you set the HADOOP_CONF_DIR
variable).If you are loading from the native filesystem in distributed mode or from HDFS in local mode, you might need to qualify the input file path with a URI scheme of file:
or hdfs:
. See Understanding Input File Path Resolution.
By default, the imported document has a database URI based on the input file path. For details, see Controlling Database URIs During Ingestion.
The following example command loads a single XML file:
# Windows users, see Modifying the Example Commands for Windows $ mlcp.sh import -host localhost -port 8000 -username user \ -password password -input_file_path /space/bill/data/hamlet.xml
Use the following procedure to load all the files in a native or HDFS directory and its sub-directories. To load selected files, see Filtering Documents Loaded From a Directory.
-input_file_path
to the input directory.-input_file_type
if your input files are not documents. For example, if loading from delimited text files, sequence files, aggregate XML files, or database archives.-document_type
if -input_file_type
is not documents
and the content type cannot be accurately deduced from the file suffixes as described in How mlcp Determines Document Type.-mode
:-mode
to distributed
. -mode
to local
. (This is the default mode unless you set the HADOOP_CONF_DIR
variable).If you are loading from the native filesystem in distributed mode or from HDFS in local mode, you might need to qualify the input file path with a URI scheme of file:
or hdfs:
. See Understanding Input File Path Resolution.
By default, the imported documents have database URIs based on the input file path. For details, see Controlling Database URIs During Ingestion.
The following example command loads all the files in /space/bill/data
:
# Windows users, see Modifying the Example Commands for Windows $ mlcp.sh import -host localhost -port 8000 -username user \ -password password -input_file_path /space/bill/data
If -input_file_path
names a directory, mlcp loads all the documents in the input directory and subdirectories by default. Use the -input_file_pattern
option to filter the loaded documents based on a regular expression.
Input document filtering is handled differently for -input_file_type forest
. For details, see Filtering Forest Contents.
For example, the following command loads only files with a .xml suffix from the directory /space/bill/data
:
# Windows users, see Modifying the Example Commands for Windows $ mlcp.sh import -host localhost -port 8000 -username user \ -password password -input_file_path /space/bill/data \ -mode local -input_file_pattern '.*\.xml'
The mlcp tool uses Java regular expression syntax. For details, see Regular Expression Syntax.
You can load content from one or more compressed files. Filtering of compressed file content is not supported; mlcp loads all documents in a compressed file.
Follow this procedure to load content from one or more ZIP or GZIP compressed files.
-input_file_path
:-document_type
appropriately.-input_compressed
to true
.-input_compression_codec
to zip
or gzip
.If you set -document_type
to anything but mixed
, then the contents of the compressed file must be homogeneous. For example, all XML, all JSON, or all binary.
The following example command loads binary documents from the compressed file /space/images.zip
on the local filesystem.
# Windows users, see Modifying the Example Commands for Windows $ mlcp.sh import -host localhost -port 8000 -username user \ -password password -mode local -document_type binary \ -input_file_path /space/images.zip -input_compressed
The following example loads all the files in the compressed file /space/example.jar
, using -input_compression_codec
to tell mlcp the compression format because of the .jar suffix:
# Windows users, see Modifying the Example Commands for Windows $ mlcp.sh import -host localhost -port 8000 -username user \ -password passwd -mode local -input_file_path /space/example.jar \ -input_compressed true -input_compression_codec zip
If -input_file_path
is a directory, mlcp loads contents from all compressed files in the input directory, recursing through subdirectories. The input directory must not contain other kinds of files.
By default, the URI prefix on documents loaded from a compressed file includes the full path to the input compressed file and mirrors the directory hierarchy inside the compressed file. For example, if a ZIP file /space/shakespeare.zip
contains bill/data/dream.xml
then the ingested document URI is /space/shakespeare.zip/bill/data/dream.xml
. To override this behavior, see Controlling Database URIs During Ingestion.
Follow this procedure to import content and metadata from a database archive created by the mlcp export
command. A database archive is stored in one or more compressed files that contain documents and metadata.
-input_file_path
:-document_type
to mixed
, or leave it unset since mixed
is the default setting. -input_compressed
to true
.-input_file_type
to archive
.-archive_metadata_optional
to true. If this is not set, an exception is thrown if the archive contains no metadata.-copy_collections
to false
to exclude document collections metadata.-copy_permissions
to false
to exclude document permissions metadata.-copy_properties
to false
to exclude document properties.-copy_quality
to false
to exclude document quality metadata.-copy_metadata
to false to exclude key-value metadata.An archive is assumed to contain metadata. However, it is possible to create archives without metadata by setting all the metadata copying options (-copy_collections
, -copy_permissions
, etc.) to false during export. If an archive does not contain metadata, you must set -archive_metadata_optional
to tell mlcp to proceed in the absence of metadata.
When you import properties from an archive, you should disable the maintain last modified configuration option on the destination database during the import. Otherwise, you can get an XDMP-SPECIALPROP
error if the import operation tries to update the last modified property. To disable this setting, use the Admin Interface or the library function admin:set-maintain-last-modified
.
The following example command loads the database archive in /space/archive_dir
:
# Windows users, see Modifying the Example Commands for Windows $ mlcp.sh import -host localhost -port 8000 -username user \ -password password -mode local -input_file_type archive \ -input_file_path /space/archive_dir
Very large XML files often contain aggregate data that can be disaggregated by splitting it into multiple smaller documents rooted at a recurring element. Disaggregating large XML files consumes fewer resources during loading and improves performance when searching and retrieving content. For aggregate JSON handling, see Creating Documents from Line-Delimited JSON Files.
The following mlcp options support creating multiple documents from aggregate data:
You can disaggregate XML when loading from either flat or compressed files. For more information about working with compressed files, see Loading Documents From Compressed Files.
Follow this procedure to create documents from aggregate XML input:
-input_file_path
:-input_compressed
.-input_file_type
to aggregates
.-aggregate_record_element
to the element QName of the node to use as the root for all inserted documents. See the example below. The default is the first child element under the root element.The element QName should appear at only one level. You cannot specify the element name using a path, so disaggregation occurs everywhere that name is found.
-uri_id
to the name of the element from which to derive the document URI. -aggregate_record_namespace
to the input namespace.The default URI is hashcode-
seqnum in local mode and taskid-seqnum in distributed mode. If there are multiple matching elements, the first match is used.
If your aggregate URI id's are not unique, you can overwrite one document in your input set with another. Importing documents with non-unique URI id's from multiple threads can also cause deadlocks.
The example below uses the following input data:
$ cat > example.xml <?xml version="1.0" encoding="UTF-8"?> <people> <person> <first>George</first> <last>Washington</last> </person> <person> <first>Betsy</first> <last>Ross</last> </person> </people>
The following command breaks the input data into a document for each <person>
element. The -uri_id
and other URI options give the inserted documents meaningful names. The command creates URIs of the form /people/lastname.xml by using the <last/>
element as the aggregate URI id, along with an output prefix and suffix:
# Windows users, see Modifying the Example Commands for Windows $ mlcp.sh import -host localhost -port 8000 -username user \ -password password -mode local -input_file_path example.xml \ -input_file_type aggregates -aggregate_record_element person \ -uri_id last -output_uri_prefix /people/ \ -output_uri_suffix .xml
The command creates two documents: /people/Washington.xml
and /people/Ross.xml
. For example, /people/Washington.xml
contains:
<?xml version="1.0" encoding="UTF-8"?> <person> <first>George</first> <last>Washington</last> </person>
If the input data is in a namespace, set -aggregate_record_namespace
to that namespace. For example, if the input data is modified to include a namespace:
$ cat > example.xml <?xml version="1.0" encoding="UTF-8"?> <people xmlns="http://marklogic.com/examples">...</people>
Then mlcp ingests no documents unless you set -aggregate_record_namespace
. Setting the namespace creates two documents in the namespace http://marklogic.com/examples. For example, after running the following command:
# Windows users, see Modifying the Example Commands for Windows $ mlcp.sh import -host localhost -port 8000 -username user \ -password password -mode local -input_file_path example.xml \ -input_file_type aggregates -aggregate_record_element person \ -uri_id last -output_uri_prefix /people/ \ -output_uri_suffix .xml \ -aggregate_record_namespace "http://marklogic.com/examples"
The document with URI /people/Washington.xml contains :
<?xml version="1.0" encoding="UTF-8"?> <person xmlns="http://marklogic.com/examples"> <first>George</first> <last>Washington</last> </person>
Use the delimited_text
input file type to import content from a delimited text file and create an XML or JSON document corresponding to each line. For line-delimited JSON data, see Creating Documents from Line-Delimited JSON Files.
The following options are commonly used in the generation of documents from delimited text files:
-input_file_type delimited_text
-document_type xml
or -document_type json
-delimiter
-uri_id
-delimited_root_name
(XML output only)-data_type
(JSON output only)The use of these and other supporting options is covered in the following topics:
When you import content from delimited text files, mlcp creates an XML or JSON document for each line of input after the initial header line.
The default document type is XML. To create JSON documents, use -document_type json
.
When creating XML documents, each document has a root node of <root>
and child elements with names corresponding to each column title. You can override the default root element name using the -delimited_root_name
option; for details, see Customizing XML Output.
When creating JSON documents, each document is rooted at an unnamed object containing JSON properties with names corresponding to each column title. By default, the values for JSON are always strings. Use -data_type
to override this behavior; for details, see Controlling Data Type in JSON Output.
For example, if you have the following data and mlcp command:
# Windows users, see Modifying the Example Commands for Windows $ cat example.csv first,last george,washington betsy,ross $ mlcp.sh ... -mode local -input_file_path /space/mlcp/data \ -input_file_type delimited_text ...
Then mlcp creates the XML output shown in the table below. To generate the JSON output, add -document_type json
to the mlcp command line.
A delimited text input file must have the following characteristics:
-delimiter
to override it; for details, see Specifying the Field Delimiter.For example, the following data meets the input format requirements:
first,last george,washington betsy,ross
This data produces documents with XML elements or JSON properties named first and last.
When creating XML documents, each document has a root node of <root>
and child elements with names corresponding to each column title. You can override the default root element name using the -delimited_root_name
option. You can use the -namespace
option to specify a root namespace.
The following example produces documents with root element <person>
in the namespace http://my.namespace
.
$ mlcp.sh ... -mode local -input_file_path /space/mlcp/data \ -input_file_type delimited_text -namespace http://my.namespace \ -delimited_root_name person ... <person xmlns="http://my.namespace"> <first>george</first> <last>washington</last> </person> ...
When creating JSON documents, the default value type is string. You can use the -data_type
option to specify explicit data types for some or all columns. The options accepts comma-separated list of columnName,typeName pairs, where the typeName can be one of number
, boolean
, or string
.
For example, if you have an input file called catalog.csv that looks like the following:
id, price, in-stock 12345, 8.99, true 67890, 2.00,false
Then the default output documents look similar to the following. Notice that all the property values are strings.
{ "id": "12345", "price": "8.99", "in-stock: "true" }
The following example command uses the -data_type
option to make the price property a number value and the in-stock property a boolean value. Since the id field is not specified in the -data_type
option, it remains a string.
$ mlcp.sh ... -mode local -input_file_path catalog.csv \ -input_file_type delimited_text -document_type json \ -data_type "price,number,in-stock,boolean" ... { "id": "12345", "price": 8.99, "in-stock: true }
By default, the document URIs use the value in the first column. For example, if your input data looks like the following:
first,last george,washington betsy,ross
Then importing this data with no URI related options creates two documents with name corresponding to the first value. The URI will be george and betsy.
Use -uri_id
to choose a different column or -generate_uri
to have MarkLogic Server automatically generate a unique URI for each document. For example, the following command creates the documents washington and ross:
# Windows users, see Modifying the Example Commands for Windows $ mlcp.sh ... -mode local -input_file_path /space/mlcp/data \ -input_file_type delimited_text -uri_id last
Note that URIs generated with -generate_uri
are only guaranteed to be unique across your import operation. For details, see Default Document URI Construction.
You can further tailor the URIs using -output_uri_prefix
and -output_uri_suffix
. These options apply even when you use -generate_uri
. For details, see Controlling Database URIs During Ingestion.
If your URI id's are not unique, you can overwrite one document in your input set with another. Importing documents with non-unique URI id's from multiple threads can also cause deadlocks.
The default delimiter between fields is a comma (,). You can override this using the -delimiter
option. If the delimiter is a character that is difficult to specify on the command line, specify the delimiter in an options file instead. For details, see Options File Syntax.
For example, the Linux bash shell parser makes it difficult to specify a tab delimiter on the command line, so you can put the options in a file instead. In the example options file below, the string literal after -delimiter
should contain a tab character.
$ cat delim.opt -input_file_type delimited_text -delimiter "tab" $ mlcp.sh import ... -mode local -input_file_path /space/mlcp/data \ -options_file delim.opt
If your delimited text files are very large, consider using the -split_input
option. When this option is true, mlcp attempts to break each input file into multiple splits, enabling more documents to be loaded in parallel. For details, see Improving Throughput with -split_input.
Use the delimited_json
input file type to import content from a line-delimited JSON file and create a JSON document corresponding to each line.
This section covers the following topics:
To create JSON documents from delimited text files such as CSV files, see Creating Documents from Delimited Text Files. For aggregate XML input, see Splitting Large XML Files Into Multiple Documents.
A line-delimited JSON file is a type of aggregate file where each line is a self-contained piece of JSON data, such as an object or array.
Usually, each line of input has similar structure, such as the following:
{"id": "12345","price":8.99, "in-stock": true} {"id": "67890","price":2.00, "in-stock": false}
However, the JSON data on each line is independent of the other lines, so the lines do not have to contain JSON data of the same shape. For example, the following is a valid input file:
{"first": "george", "last": "washington"} {"id": 12345, "price": 8.99, "in-stock": true}
Given the input shown below, the following command creates 2 JSON documents. Each document contains the data from a single line of input.
$ cat example.json {"id": "12345","price":8.99, "in-stock": true} {"id": "67890","price":2.00, "in-stock": false} # Windows users, see Modifying the Example Commands for Windows $ mlcp.sh import -host localhost -port 8000 -username user \ -password password -mode local -input_file_path example.json \ -input_file_type delimited_json
The example command creates documents whose contents precisely mirror each of input:
{"id": "12345","price":8.99, "in-stock": true} {"id": "67890","price":2.00, "in-stock": false}
The default document URI is generated from the input file name, the split number, and a sequence number within the split, as described in Default Document URI Construction. For example, if the input file absolute path is /space/data/example.json
, then the default output document URIs have the following form:
/space/data/example.json-0-1 /space/data/example.json-0-2 ...
You can base the URI on values in the content instead by using the -uri_id
option to specify the name of a property found in the data. You can further tailor the URIs using -output_uri_prefix
and -output_uri_suffix
. For details, see Controlling Database URIs During Ingestion.
For example, the following command uses the value in the id field as the base of the URI and uses -output_uri_suffix
to add a .json suffix to the URIs:
# Windows users, see Modifying the Example Commands for Windows $ mlcp.sh ... -mode local -input_file_path /space/data/example.json \ -input_file_type delimited_json -uri_id id -output_uri_suffix ".json"
Given these options, an input line of the form shown below produces a document with the URI 12345.json instead of /space/data/example.json-0-1.
{"id": "12345","price":8.99, "in-stock": true}
If the property name specified with -uri_id is not unique in your data, mlcp will use the first occurrence found in a breadth first search. The value of the specified property should be a valid number or string.
If you use -uri_id
, any records (lines) that do not contain the named property are skipped. If the property is found but the value is null or not a number or string, the record is skipped.
A Hadoop sequence file is a flat binary file of key-value pairs. You can use mlcp to create a document from each key-value pair. The only supported value types are Text
and BytesWritable
. This section covers the following topics:
You must implement a Hadoop SequenceFile
reader and writer that also implements 2 special mlcp interfaces. To learn more about Apache Hadoop SequenceFile
, see http://wiki.apache.org/hadoop/SequenceFile/.
com.marklogic.contentpump.SequenceFileKey
and com.marklogic.contentpump.SequenceFileValu
e./lib
.The source distribution of mlcp, available from http://developer.marklogic.com, includes an example in com.marklogic.contentpump.examples
.
You must read and write your sequence files using classes that implement com.marklogic.contentpump.SequenceFileKey
and com.marklogic.contentpump.SequenceFileValue
. These interfaces are included in the mlcp jar file:
mlcp_install_dir/lib/mlcp-version.jar
Where version is your mlcp version. For example, if you install mlcp version 1.3 to /opt/mlcp-1.3
, then the jar file is:
/opt/mlcp-1.3/lib/mlcp-1.3.jar
Source and an example implementation are available in the mlcp source distribution on developer.marklogic.com.
Your key class must implement the following interface:
package com.marklogic.contentpump; import com.marklogic.mapreduce.DocumentURI; public interface SequenceFileKey { DocumentURI getDocumentURI(); }
Your value class must implement the following interface:
package com.marklogic.contentpump; public interface SequenceFileValue<T> { T getValue(); }
For an example, see com.marklogic.contentpump.example.SimpleSequenceFileKey
and com.marklogic.contentpump.example.SimpleSequenceFileValue
.
These interfaces depend on Hadoop and the MarkLogic Connector for Hadoop. The connector library is included in the mlcp distribution as:
mlcp_install_dir/lib/marklogic-mapreduceN-version.jar
where N is the Hadoop major version and version is the connector version. The Hadoop major version will correspond to the Hadoop major version of your mlcp distribution. For example, if you install the Hadoop v2 compatible version of mlcp, then the connector jar file name might be:
marklogic-mapreduce2-2.1.jar
For details, see the MarkLogic Connector for Hadoop Developer's Guide and the MarkLogic Hadoop MapReduce Connector API.
You must implement a sequence file creator. You can find an example in com.marklogic.contentpump.examples.SimpleSequenceFileCreator
.
When compiling your classes, include the following on the Java class path:
/lib/mlcp-
version.jar
/lib/marklogic-mapreduce
N-
version.jar
/lib/hadoop-common-
version.jar
$ javac -cp $MLCP_DIR/lib/mlcp-1.3.jar:$MLCP_DIR/lib/marklogic-mapreduce2-2.1.jar:$MLCP_DIR/lib/hadoop-mapreduce-client-core-2.6.0.jar \ MyKey.java MyValue.java $ jar -cf myseqfile.jar *.class
Once you compile your SequenceFileKey
and SequenceFileValue
implementations into a JAR file, copy your JAR file and any dependent libraries into the mlcp lib/
directory so that mlcp can find your classes at runtime. For example:
$ cp myseqfile.jar /space/mlcp-1.3/lib
Once you have created one or more sequence files using your implementation, you can create a document from each key-value pair using the following procedure:
-input_file_path
:-sequencefile_key_class
to the name of your SequenceFileKey
implementation.-sequencefile_value_class
to the name of your SequeneFileValue
implementation.-sequencefile_value_type
to either Text
or BytesWritable
, depending on the contents of your sequence files.-input_file_type
to sequencefile
.By default, the key in each key-value pair is used as the document URI. You can further tailor the URI using command line options, as described in Controlling Database URIs During Ingestion.
For an example, see Running the SequenceFile Example.
This section walks you through creating a sequence file and loading its contents as documents.
Create an input text file from which to create a sequence file. The file should contain pairs of lines where the first line is a URI that acts as the key, and the second line is the value. For example:
$ cat > seq_input.txt /doc/foo.xml <foo/> /doc/bar.xml <bar/>
To use the example classes provided with mlcp, put the following libraries on your Java classpath:
/lib/mlcp-
version.jar
/lib/hadoop-mapreduce-client-core-
version.jar
/lib/commons-logging-1.1.3.jar
/lib/marklogic-mapreduce
N-
version.jar
/lib/mlcp
-1.3.jar
/lib/hadoop-mapreduce-client-core-2.6.0.jar
/lib/commons-logging-1.1.3.jar
/lib/marklogic-mapreduce
2-2.1.jar
Generate a sequence file from your test data using com.marklogic.contentpump.examples.SimpleSequenceFileCreator
. The first argument to program is the output sequence file name. The second argument is the input data file name. The following command generates seq_output
from seq_input.txt
.
$ java com.marklogic.contentpump.examples.SimpleSequenceFileCreator seq_output seq_input.txt
Load the contents of the sequence file into MarkLogic Server:
# Windows users, see Modifying the Example Commands for Windows $ mlcp.sh import -username user -password password -host localhost \ -port 8000 -input_file_path seq_output -mode local \ -input_file_type sequencefile -sequencefile_key_class \ com.marklogic.contentpump.examples.SimpleSequenceFileKey \ -sequencefile_value_class \ com.marklogic.contentpump.examples.SimpleSequenceFileValue \ -sequencefile_value_type Text -document_type xml
Two documents are created in the database with URIs /doc/foo.xml
and /doc/bar.xml
.
This section provides a brief overview of loading semantic data into MarkLogic Server. For more details, see the Semantics Developer's Guide. The following topics are covered in this section:
To load semantic triples, use -input_file_type rdf
and follow the instructions for loading a single file, all files in a directory, or a compressed file. For example, the following command loads triples files from the directory /my/data
.
# Windows users, see Modifying the Example Commands for Windows $ mlcp.sh import -username user -password password -host localhost \ -port 8000 -input_file_path /my/data -mode local \ -input_file_type rdf
You can use mlcp to load triples files in several formats, including RDF/XML, Turtle, and N-Quads. For a full list of supported formats, see Supported RDF Triple Formats in Semantics Developer's Guide.
Each time you load triples from a file, mlcp inserts new documents into the database. That is, multiple loads of the same input inserts new triples each time, rather than overwriting. Only the XQuery and REST API allow you replace triples.
Load triples data embedded within other content according to the instructions for the enclosing input file type, rather than with -input_file_type rdf
. For example, if you have an XML input document that happens to have some triples embedded in it, load the document using -input_file_type documents
.
You cannot combine loading triples files with other input file types.
If you do not include any graph selection options in your mlcp command, Quads are loaded into the graph specified in the data. Quads with no explicit graph specification and other kinds of triple data are loaded into the default graph. You can change this behavior with options. For details, see Graph Selection When Loading Quads or Graph Selection for Other Triple Types.
For details, see Loading Triples with mlcp in Semantics Developer's Guide.
When loading quads, you can use the following command line options to control the graph into which your quads are loaded:
You can use -output_collections
by itself or with the other two options. You cannot use -output_graph
and -output_override_graph
together.
If your semantic data is not in a quad format like N-Quads, see Graph Selection for Other Triple Types.
Quads interact with these options differently than other triple formats because quads can include a graph IRI in each quad. The following table summarizes the affect of various option combinations when importing quads with mlcp:
For more details, see Loading Triples with mlcp in the Semantics Developer's Guide.
For example, suppose you load the following N-Quad data with mlcp. There are 3 quads in the data set. The first and last quad include a graph IRI, the second quad does not.
<http://one.example/subject1> <http://one.example/predicate1> <http://one.example/object1> <http://example.org/graph3> . _:subject1 <http://an.example/predicate1> "object1" . _:subject2 <http://an.example/predicate2> "object2" <http://example.org/graph5> .
If you use a command similar to the following load the data:
# Windows users, see Modifying the Example Commands for Windows $ mlcp.sh import -username user -password password -host localhost \ -port 8000 -input_file_path /my/data.nq -mode local \ -input_file_type rdf
Then the table below illustrates how the various graph related options affect how the triples are loaded into the database:
When loading triples (rather than quads), you can use the following command line options to control the graph into which your triples are loaded:
The following table summarizes the affect of various option combinations when importing triples with mlcp. For quads, see Graph Selection When Loading Quads.
For more details, see Loading Triples with mlcp in the Semantics Developer's Guide.
For example, if you use a command similar to the following load triples data:
# Windows users, see Modifying the Example Commands for Windows $ mlcp.sh import -username user -password password -host localhost \ -port 8000 -input_file_path /my/data.nt -mode local \ -input_file_type rdf
Then the table below illustrates how the various graph related options affect how the triples are loaded into the database:
Direct Access enables you to extract documents directly from an offline or read-only forest without using MarkLogic Server instance for input. Direct Access is primarily intended for accessing archived data that is part of a tiered storage deployment.
For details, see Importing Documents from a Forest into a Database.
MarkLogic Content Pump comes configured with defaults that should provide good performance under most circumstances. This section presents some performance tradeoffs to consider if you want to try to optimize throughput for your workload.
This section covers the following topics:
You can tune the document insertion throughput and memory requirements of your job by configuring the batch size and transaction size of the job.
-batch_size
controls the number of updates per request to the server.-transaction_size
controls the number of requests to the server per transaction.The default batch size is 100 and the maximum batch size is 200. (However, some options can affect the default). The default transaction size is 10 and the maximum transaction size is 4000/actualBatchSize. This means that the default maximum number of updates per transaction is 1000, and updates per transaction can range from 20 to 4000.
Selecting a batch size is a speed vs. memory tradeoff. Each request to the server introduces overhead because extra work must be done. However, unless you use -streaming
or -document_type mixed,
all the updates in a batch stay in memory until a request is sent, so larger batches consume more more memory.
Transactions introduce overhead on MarkLogic Server, so performing multiple updates per transaction can improve insertion throughput. However, an open transaction holds locks on fragments with pending updates, potentially increasing lock contention and affecting overall application performance.
It is also possible to overwhelm MarkLogic Server if you have too many concurrent sessions active.
The -fastload
option can significantly speed up ingestion during import
and copy
operations, but it can also cause problems if not used properly. This section describes how -fastload
affects the behavior of mlcp and some of the tradeoffs associated with enabling it.
The optimizations described by this section are only enabled if you explicitly specify the -fastload
or -output_directory
options. (The -output_directory
option implies -fastload
).
The -fastload
option work slightly different when used with -restrict_hosts
. For details, see How -restrict_hosts Affects -fastload. The limitations of -fastload
described in this section still apply.
By default, mlcp inserts documents into the database by distributing work across the e-nodes in your MarkLogic cluster. Each e-node inserts documents into the database according to the configured document assignment policy.
This means the default insertion process for a document is similar to the following:
When you use -fastload
(or -output_directory
), mlcp attempts to cut out the middle step by applying the document assignment policy on the client. The interaction becomes similar to the following:
Pre-determining the destination host and forest can always be done safely and consistently if the all of the following conditions are met:
To make forest assignment decisions locally, mlcp gathers information about the database assignment policy and forest topology at the beginning of a job. If you change the assignment policy or forest topology while an mlcp import
or copy
operation is running, mlcp might make forest placement decisions inconsistent with those MarkLogic Server would make. This can cause problems such as duplicate document URIs and unbalanced forests.
Similar problems can occur if mlcp attempts to update a document already in the database, and the forest topology or assignment policy changes between the time the document was originally inserted and the time mlcp updates the document. Using user-specified forest placement when initially inserting a document creates the same conflict.
Therefore, it is not safe to enable -fastload
optimizations in the following situations:
Assignment policy is a database configuration setting that affects how MarkLogic Server selects what forest to insert a document into or move a document into during rebalancing. For details, see Rebalancer Document Assignment Policies in Administrator's Guide.
Assignment policy was introduced with MarkLogic 7 and mlcp v1.2. If you use an earlier version of mlcp with MarkLogic 7 or later, the database you import data into with -fastload
or -output_directory
must be using the legacy assignment policy.
Any operation that changes the forests available for updates changes your forest topology, including the following:
updates-allowed
state of forest. For example, calling admin:forest-set-updates-allowedIn most cases, it is your responsibility to determine whether or not you can safely use -fastload
(or -output_directory
, which implies -fastload
). In cases where mlcp can detect -fastload
is unsafe, it will disable it or give you an error.
This section describes how your choice of document assignment policy can introduce additional limitations and risks. Assignment policy is a database configuration setting that affects how MarkLogic Server selects what forest to insert a document into or move a document into during rebalancing. For details, see Rebalancer Document Assignment Policies in Administrator's Guide.
Assignment policy was introduced with MarkLogic 7 and mlcp v1.2. If you use an earlier version of mlcp with MarkLogic 7 or later, the database you import data into with -fastload
or -output_directory
must be using the legacy assignment policy.
The following table summarizes the limitations imposed by each assignment policy. If you do not explicitly set assignment policy, the default is Legacy or Bucket.
You can tune split size only when importing documents in local mode from one of the following input file types:
-input_file_type documents
), whether from flat or compressed files.-split_inpu
t, such as delimited_text
.You cannot tune split size when creating documents from composite files that do not support -split_input
, such as sequence files and aggregate XML files.
You can tune thread count for both whole documents and all composite files types. Thread count and split size can interact to affect job performance.
In local mode, a split defines the unit of work per thread devoted to a session with MarkLogic Server. The ideal split size is one that keeps all mlcp's session threads busy. The default split size is 32M for local mode. Use the -max_split_size
, -thread_count
, and -thread_count_per_split
options to tune your load.
By default, threads are assigned to splits in a round-robin fashion. For example, consider a loading 120 small documents of length 1M. Since the default split size is 32M, the load is broken into 4 splits. If -thread_count
is 10, each split is assigned to at least 2 threads (10 / 4 = 2
). The remaining 2 threads are each assigned to a split, so the number of threads per split are distributed as follows:
Split 1: 3 threads Split 2: 3 threads Split 3: 2 threads Split 4: 2 threads
This distribution could result in two of the splits completing faster, leaving some threads idle. If you set -max_split_size
to 12M, the loads has 10 splits, which can be evenly distributed across the threads and may result in better thread utilization.
If -thread_count
is less than the number of splits, the default behavior is one thread per split, up to the total number of threads. The remaining splits must wait until a thread becomes available.
If MarkLogic Server is not I/O bound, then raising the thread count, and possibly threads per split, can improve throughput when the number of splits is small but each split is very large. This is often applicable to loading from zip files, aggregate files, and delimited text files. Note that if MarkLogic Server is already I/O bound in your environment, increasing the concurrency of writes will not necessarily improve performance.
This topic applies only to importing documents in distributed mode using one of of the following input file types:
-input_file_type documents
), whether from flat or compressed files.-split_input
, such as delimited_text
.This topic does not apply to creating documents from composite files that do not support -split_input
, such as sequence files and aggregate XML files. Split size for such composite files is not tunable.
Distributed mode uses Hadoop to import documents from multiple tasks, running on the nodes of a Hadoop cluster. A split is a unit of work for one Hadoop task.
Tuning Hadoop performance, including split size, is a complex topic outside the scope of this document. However, for best performance, tune split size to maximize parallelism across your Hadoop cluster, with each task taking at least a couple minutes. If your split size is too small and each task only runs for a very short time, the task overhead can degrade overall performance.
In distributed mode, split size is determined by the following formula:
max(min_split_size, min(max_split_size, block_size))
The default min_split_size
is 0 and the default max_split_size
is Long.MAX
(the maximum signed long integer). The block_size
depends on your Hadoop configuration, but the default is 64M. You can configure the min and max split size using the mlcp options -min_split_size
and -max_split_size
. You can only tune block size through Hadoop configuration settings.
The Hadoop configuration parameter mapred.tasktracker.map.tasks.maximum
controls the maximum number of map tasks assigned to each worker node in your Hadoop cluster. You can use the mlcp option -thread_count_per_split
to tune the maximum number of threads assigned to each task. If you set the value so high that the JVM running a task runs out of memory, the task will fail and can end up in a re-try loop.
In addition to balancing the workload across MapReduce tasks, you must also consider the load on MarkLogic Server. Too many concurrent sessions can overtax CPU and memory resources.
The streaming protocol allows you to insert a large document into the database without holding the entire document in memory. Streaming uploads documents to MarkLogic Server in 128k chunks.
Streaming content into the database usually requires less memory on the host running mlcp, but ingestion can be slower because it introduces additional network overhead. Streaming also does not take advantage of mlcp's builtin retry mechanism. If an error occurs that is normally retryable, the job will fail.
Streaming is only usable when -input_file_type
is documents
. You cannot use streaming with delimited text files, sequence files, or archives.
To use streaming, enable the -streaming
option. For example:
# Windows users, see Modifying the Example Commands for Windows $ mlcp.sh import -username user -password password -host localhost \ -port 8000 -input_file_path /my/dir -streaming
If you are loading documents from very large files, you might be able to improve throughput using the -split_input
option. When -split_input
is true, mlcp attempts to break large input files that would otherwise by processed in a single split into multiple splits. This enables portions of the input file to be loaded by multiple tasks (distributed mode) or threads (local mode). You will usually see more benefit from using -split_input
in distributed mode than local mode.
This option can only be applied to composite input file types that logically produce multiple documents and for which mlcp can efficiently identify document boundaries, such as delimited_text
. Not all composite file types are supported; for details, see Import Command Line Options.
In local mode, -split_input
is false by default. In distribute mode, -split_input
is true by default.
The -split_input
option affects local mode as follows: Suppose you are importing a very large delimited text file in local mode with -split_input
set to false and the data processed as a single split. The work might be performed by multiple threads (depending on the job configuration), but these threads read records from the input file synchronously. This can cause some read contention. If you set -split_input
to true, then each thread is assigned its own chunk of input, resulting in less contention and greater concurrency.
The -split_input
option affects distributed mode as follows: Suppose you are importing a very large delimited text file in distributed mode with -split_input
set to false. By default, your file gets assigned to a single Hadoop task. If you set -split_input
to true, then your file can be split among multiple tasks and distributed across your Hadoop cluster. This can result in better utilization of your Hadoop cluster and improved throughput.
The number of subdivisions is determined by the formula file-size /
max-split-size, so you should also consider tuning split size to match your input data characteristics. For example, if your data consists 1 delimited text file containing 16M of data, you can observe the following interactions between -split_input
and -max_split_size
:
Input File Size | -split_input |
Split Size | Number of Splits |
---|---|---|---|
16M | false | 32M | 1 |
16M | true | 32M | 1 |
16M | true | 1M | 16 |
Tuning the split size in this case potentially enables greater concurrency because the multiple splits can be assigned to different threads or tasks.
Split size is tunable using -max_split_size
, -min_split_size
, and block size. For details, see Tuning Split Size and Thread Count for Local Mode and Tuning Split Size for Distributed Mode.
You can create an XQuery or Server-Side JavaScript function and install it on MarkLogic Server to transform and enrich content before inserting it into the database. Your function runs on MarkLogic Server. You can use such functions with the mlcp import
and copy
commands.
The following topics describe how to implement a server-side content transformation function in XQuery:
A custom transformation is an XQuery function module that conforms to the following interface. Your function receives a single input document, described by $content
, and can generate zero, one, or many output documents.
declare function yourNamespace:transform( $content as map:map, $context as map:map) as map:map*
The table below describes the input parameters to a transform function:
The type of node your function receives in the value property of $content
depends on the input document type, as determined by mlcp from the -document_type
option or URI extension. For details, see How mlcp Determines Document Type. The type of node your function returns in the value property should follow the same guidelines.
The table below outlines the relationship between document type and the node type your transform function should expect.
Document Type | value node type |
---|---|
XML | document-node |
JSON | document-node |
BINARY | binary-node |
TEXT | text-node |
The collections, permissions, quality, and temporal collection metadata from the mlcp command line is made available to your function so that you can modify or replace the values. If a given metadata category is not specified on the command line, the key will not be present in the input map.
Your function can produce more than one output document. For each document, your function should return a map:map. The map:map for an output document must use the same keys as the $content
map (uri
and value
).
Modifying the document URI in a transformation can cause duplicate URIs when combined with the -fastload
option, so you should not use -fastload
or -output_directory
with a transformation module that changes URIs. For details, see Time vs. Correctness: Understanding -fastload Tradeoffs.
The documents returned by your transformation should be exactly as you want to insert them into the database. No further transformations are applied by the mlcp infrastructure. For example, a transform function cannot affect document type just by changing the URI. Instead, it must convert the document node. For details, see Example: Changing the URI and Document Type.
You can use the context
parameter to specify collections, permissions, quality, and values metadata for the documents returned by your transform. Use the following keys and data formats for specifying various categories of metadata:
For a description of the meaning of the keys, see Input Parameters.
If your function returns multiple documents, they will all share the metadata settings from the context
parameter.
The following example adds an attribute to incoming XML documents and leaves non-XML documents unmodified. The attribute value is specified on the mlcp command line, using the -transform_param
option.
declare function example:transform( $content as map:map, $context as map:map ) as map:map* { let $attr-value := (map:get($context, "transform_param"), "UNDEFINED")[1] let $the-doc := map:get($content, "value") return if (fn:empty($the-doc/element())) then $content else let $root := $the-doc/* return ( map:put($content, "value", document { $root/preceding-sibling::node(), element {fn:name($root)} { attribute { fn:QName("", "NEWATTR") } {$attr-value}, $root/@*, $root/node() }, $root/following-sibling::node() } ), $content ) };
For an end-to-end example of using this transform, see Example: Server-Side Content Transformation.
The following topics describe how to implement a server-side content transformation function in Server-Side JavaScript:
A custom transformation is a JavaScript function module that conforms to the following interface. Your function receives a single input document, described by $content
, and can generate zero, one, or many output documents.
function yourTransform(content, context)
The content
parameter is an object containing data about the original input document. The content
parameter has the following form:
{ uri: string, value: node }
The type of node your function receives in content.value
depends on the input document type, as determined by mlcp from the -document_type
option or URI extension. For details, see How mlcp Determines Document Type. The type of node your function returns in the value
property should follow the same guidelines.
The table below outlines the relationship between document type and the node type your transform function should expect (or return).
Document Type | value node type |
---|---|
XML | document-node |
JSON | document-node |
BINARY | binary-node |
TEXT | text-node |
The context
parameter can contain context information about the insertion, such as any transform-specific parameters passed on the mlcp command line. The context
parameter has the following form:
{ transform_param: string, collections: [ string, ... ], permissions: [ object, ... ], quality: number, temporalCollection: string}
The following table describes the properties of the input parameters in more detail:
The collections, permissions, quality, and temporal collection metadata from the mlcp command line is made available to your function so that you can modify or replace the values. If a given metadata category is not specified on the command line, the property will not be present in the context
object.
Your function can produce more than one output document. For each document, your function should return a JavaScript object containing the same properties as the content input parameter (uri
and value
). When returning multiple document objects, put them in a Sequence.
The document content returned by your transformation should be exactly as you want to insert them into the database. No further transformations are applied by the mlcp infrastructure. For example, a transform function cannot affect document type just by changing the URI. Instead, it must convert the document node. For details, see Example: Changing the URI and Document Type.
You can modify the context
input parameter to specify collections, permissions, quality, and values metadata for the documents returned by your transform. Use the following property names and data formats for specifying various categories of metadata:
For a description of the meaning of the keys, see Input Parameters.
If your function returns multiple documents, they will all share the metadata settings from the context
parameter.
The following example adds a property named NEWPROP to incoming JSON documents and leaves non-JSON documents unmodified. The property value is specified on the mlcp command line, using the -transform_param
option.
// Add a property named "NEWPROP" to any JSON input document. // Otherwise, input passes through unchanged. function addProp(content, context) { const propVal = (context.transform_param == undefined) ? "UNDEFINED" : context.transform_param; if (xdmp.nodeKind(content.value) == 'document' && content.value.documentFormat == 'JSON') { // Convert input to mutable object and add new property const newDoc = content.value.toObject(); newDoc.NEWPROP = propVal; // Convert result back into a document content.value = xdmp.unquote(xdmp.quote(newDoc)); } return content; }; exports.addProp = addProp;
You should be aware of the following guidelines and limitations when implementing your transformation function:
-fastload
(or -output_directory
, which enables -fastload
), your transformation function only has access to database content in the same forest as the input document. If your transformation function needs general access to the database, do not use -fastload
or -output_directory
.Install the XQuery library module containing your function into the modules database or modules root directory of the XDBC App Server associated with the destination database. For import
operations, this is the App Server identified by -host
and -port
mlcp command line options. For copy
operations, this is the App Server identified by -output_host
and -output_port
mlcp command line options.
Best practice is to install your libraries into the modules database of your XDBC App Server. If you install your module into the modules database, MarkLogic Server automatically makes the implementation available throughout your MarkLogic Server cluster. If you choose to install dependent libraries into the Modules directory of your MarkLogic Server installation, you must manually do so on each node in your cluster.
MarkLogic Server supports several methods for loading modules into the modules database:
xquery version "1.0-ml"; xdmp:document-load("/space/mlcp/transform.xqy", <options xmlns="xdmp:document-load"> <uri>/example/mlcp-transform.xqy</uri> <repair>none</repair> <permissions>{xdmp:default-permissions()}</permissions> </options>)
ResourceExtensionsManager.write
. For details, see Managing Dependent Libraries and Other Assets in the Java Application Developer's Guide.DatabaseClient.config.extlibs
. For details, see Managing Assets in the Modules Database in the Node.js Application Developer's Guide.PUT /v1/ext/{directories}/{asset}
. For details, see Managing Dependent Libraries and Other Assets in the REST Application Developer's Guide.If you use the filesystem instead of a modules database, you can manually install your module into the Modules directory. Copy the module into MARKLOGIC_INSTALL_DIR/Modules
or into a subdirectory of this directory. The default location of this directory is:
If your transformation function requires other modules, you should also install the dependent libraries in the modules database or the modules directory.
For a complete example, see Example: Server-Side Content Transformation.
Once you install a custom transformation function on MarkLogic Server, you can apply it to your mlcp import
or copy
job using the following options:
-transform_module
- The path to the module containing your transformation. Required.-transform_namespace
- The namespace of your transformation function. If omitted, no namespace is assumed.-transform_function
- The local name of your transformation function. If omitted, the name transform
is assumed.-transform_param
- Optional additional string data to be passed through to your transformation function.Take note of the following limitations:
-fastload
is in effect, your transform function runs in the scope of a single forest (the forest mlcp determines is the appropriate destination for the file being inserted). This means if you change the document URI as part of your transform, you can end up creating documents with duplicate URIs.XDMP-CONFLICTINGUPDATES
error. The following example command assumes you previously installed a transform module with path /example/mlcp-transform.xqy
, and that the function implements a transform
function (the default function) in the namespace http://marklogic.com/example
. The function expects a user-defined parameter value, supplied using the -transform_param
option.
# Windows users, see Modifying the Example Commands for Windows $ mlcp.sh import -mode local -host mlhost -port 8000 \ -username user -password password \ -input_file_path /space/mlcp-test/data \ -transform_module /example/mlcp-transform.xqy \ -transform_namespace "http://marklogic.com/example" \ -transform_param "my-value"
For a complete example, see Example: Server-Side Content Transformation.
This example walks you through installing and using an XQuery or Server-Side JavaScript transform function to modify content ingested with mlcp. The example XQuery transform function modifies XML documents by adding an attribute named NEWATTR
, with an attribute value specified on the mlcp command line. The example JavaScript transform function modifies JSON documents by adding a new property named NEWPROP
, with a value specified on the mlcp command line.
This example assumes you have already created an XDBC App Server, configured to use "/" as the root and a modules database of Modules.
This section walks you through creating sample input data to be ingested by mlcp. You can use other data.
$ mkdir /space/mlcp/txform/data
txform.xml
in the sample data directory with the following contents:<parent><child/></parent>
txform.json
in the sample data directory with the following contents:{ "key": "value" }
If you prefer to work with a Server-Side JavaScript transform function, skip this section and go to Create the JavaScript transform module.
This example module modifies XML input documents by adding an attribute named NEWATTR
. Other input document types pass through the transform unmodified.
In a location other than the sample input data directory, create a file named transform.xqy
with the following contents. For example, copy the following into /space/mlcp/txform/transform.xqy
.
xquery version "1.0-ml"; module namespace example = "http://marklogic.com/example"; (: If the input document is XML, insert @NEWATTR, with the value : specified in the input parameter. If the input document is not : XML, leave it as-is. :) declare function example:transform( $content as map:map, $context as map:map ) as map:map* { let $attr-value := (map:get($context, "transform_param"), "UNDEFINED")[1] let $the-doc := map:get($content, "value") return if (fn:empty($the-doc/element())) then $content else let $root := $the-doc/* return ( map:put($content, "value", document { $root/preceding-sibling::node(), element {fn:name($root)} { attribute { fn:QName("", "NEWATTR") } {$attr-value}, $root/@*, $root/node() }, $root/following-sibling::node() } ), $content ) };
If you prefer to work with an XQuery transform function, skip this section and go to Create the XQuery transform module.
This example module modifies JSON input documents by adding an attribute named NEWPROP
. Other input document types pass through the transform unmodified.
In a location other than the sample input data directory, create a file named transform.xqy
with the following contents. For example, copy the following into /space/mlcp/txform/transform.sjs
.
// Add a property named "NEWPROP" to any JSON input document. // Otherwise, input passes through unchanged. function addProp(content, context) { var propVal = (context.transform_param == undefined) ? "UNDEFINED" : context.transform_param; var docType = xdmp.nodeKind(content.value); if (xdmp.nodeKind(content.value) == 'document' && content.value.documentFormat == 'JSON') { // Convert input to mutable object and add new property var newDoc = content.value.toObject(); newDoc.NEWPROP = propVal; // Convert result back into a document content.value = xdmp.unquote(xdmp.quote(newDoc)); } return content; }; exports.transform = addProp;
This section walks you through installing the transform module(s) created in Create the XQuery transform module or Create the JavaScript transform module.
These instructions assume you use the XDBC App Server and Documents database pre-configured on port 8000. This procedure installs the module using Query Console. You can use another method.
For more detailed instructions on using Query Console, see Query Console User Guide.
http://yourhost:8000/qconsole/
xquery version "1.0-ml"; xdmp:document-load("/space/mlcp/txform/transform.xqy", <options xmlns="xdmp:document-load"> <uri>/example/mlcp-transform.xqy</uri> <repair>none</repair> <permissions>{xdmp:default-permissions()}</permissions> </options>)
xquery version "1.0-ml"; xdmp:document-load("/space/mlcp/txform/transform.sjs", <options xmlns="xdmp:document-load"> <uri>/example/mlcp-transform.sjs</uri> <repair>none</repair> <permissions>{xdmp:default-permissions()}</permissions> </options>)
/example/mlcp-transform.xqy
or /example/mlcp-transform.sjs
.To ingest the sample documents and apply the previously installed transformation, use a command similar to the following. Change the username
, password
, host
, port
, and input_file_path
options to match your environment.
Use a command similar to the following if you installed the XQuery transform module:
# Windows users, see Modifying the Example Commands for Windows $ mlcp.sh import -mode local -host mlhost -port 8000 \ -username user -password password \ -input_file_path /space/mlcp/txform/data \ -transform_module /example/mlcp-transform.xqy \ -transform_namespace "http://marklogic.com/example" \ -transform_param "my-value"
Use a command similar to the following if you installed the JavaScript transform module:
# Windows users, see Modifying the Example Commands for Windows $ mlcp.sh import -mode local -host mlhost -port 8000 \ -username user -password password \ -input_file_path /space/mlcp/txform/data \ -transform_module /example/mlcp-transform.sjs \ -transform_function transform \ -transform_param "my-value"
mlcp should report creating two documents. Near the end of the mlcp output, you should see lines similar to the following:
... INFO contentpump.LocalJobRunner: OUTPUT_RECORDS: 2 ... INFO contentpump.LocalJobRunner: Total execution time: 1 sec
Use Query Console to explore the content database associated with your XDBC App Server. Confirm that mlcp created 2 documents. If your input was in the directory /space/mlcp/txform/data
, then the document URIs will be:
If you use the XQuery transform, then exploring the contents of txform.xml
in the database should show a NEWATTR attribute was inserted by the transform, with the value from -transform_param
. The document contents should be as follows:
<parent NEWATTR="my-value"> <child/> </parent>
If you use the JavaScript transform, then exploring the contents of txform.json in the database should show a NEWPROP property was inserted by the transform, with the value from -transform_param
. The document contents should be as follows:
{ "key": "value", "NEWPROP": "my-value"}
This example demonstrates changing the type of a document from binary to XML and changing the document URI to match.
Transforms that change the document URI should not be combined with the -fastload
or -output_directory
options as they can cause duplicate document URIs. For details, see Time vs. Correctness: Understanding -fastload Tradeoffs.
As described in How mlcp Determines Document Type, the URI extension and MIME type mapping are used to determine document type when you use -document_type mixed
. However, transform functions do not run until after document type selection is completed. Therefore, if you want to affect document type in a transform, you must convert the document node, as well as optionally changing the output URI.
Suppose your input document set generates an output document URI with the unmapped extension .1, such as /path/doc.1
. Since 1 is not a recognized URI extension, mlcp creates a binary document node from this input file by default. The example transform function in this section intercepts such a document and transforms it into an XML document.
Note that if you define a MIME type mapping that maps the extension 1 to XML (or JSON) in your MarkLogic Server configuration, then mlcp creates a document of the appropriate type to begin with, and this conversion becomes unnecessary.
This module detects input documents with URI suffixes of the form .1 and converts them into XML documents with a .xml URI extension. Note that the transform does not snoop the content to ensure it is actually XML.
xquery version "1.0-ml"; module namespace example = "http://marklogic.com/example"; declare function example:mod_doc_type( $content as map:map, $context as map:map ) as map:map* { let $orig-uri := map:get($content, "uri") return if (fn:substring-after($orig-uri, ".") = "1") then let $doc-type := xdmp:node-kind(map:get($content, "value")) return ( (: change the URI to an xml suffix :) map:put($content, "uri", fn:concat(fn:substring-before($orig-uri, "."), ".xml") ), (: convert the input from binary node to xml document node :) if ($doc-type = "binary") then map:put( $content, "value", xdmp:unquote(xdmp:quote(map:get($content, "value"))) ) else (), $content ) else $content };
This module detects input documents with URI suffixes of the form .1 and converts them into JSON documents with a .json URI extension. Note that the transform does not snoop the content to ensure it is actually JSON.
function modDocType(content, context) { var uri = String(content.uri); var dot = uri.lastIndexOf('.'); if (dot > 0) { var suffix = uri.slice(dot); if (suffix == '.1') { content.uri = uri.substring(0,dot+1) + 'json'; if (xdmp.nodeKind(content.value) == 'binary') { // convert the content to a JSON document content.value = xdmp.unquote(xdmp.quote(content.value)); } } } return content; }; exports.transform = modDocType;
This section describes how mlcp connects to MarkLogic by default, and options you can use to modify this behavior. For example, you can force mlcp to only connect to MarkLogic through a load balancer host.
See the following topics for more details:
You must specify at least one host with -host
command line option. You can specify multiple hosts.
If any hostname listed in the value of the -host
option is not resolvable by mlcp at the beginning of a job, then mlcp will abort the job with an IllegalArgumentException
.
Assuming all hostnames are resolvable, mlcp uses the first of these hosts to gather information about the target database. If mlcp is unable to connect to the first host in the -host
list, then mlcp will move on to the next host in the list. If mlcp cannot connect to any of the listed hosts, then the job will fail with an IOException
.
If mlcp successfully retrieves a list of forest hosts, then mlcp subsequently connects directly to these hosts when distributing work across the cluster, whether or not these hosts are specified in the -host
option. In this way, your job does not need to be aware cluster topology.
This behavior applies to the import
, export
, and copy
commands. (For a copy job, you specify hosts through -input_host
and -output_host
, rather than -host
.)
You can also restrict mlcp to just the hosts listed by the -host
option. For details, see Restricting the Hosts mlcp Uses to Connect to MarkLogic.
You can restrict the hosts to which mlcp distributes work using the -restrict_hosts
and -host
command line options. You might find this option combination useful in situations such as the following:
MarkLogic automatically sets -restrict_hosts
to true when it detects the presence of a load balancer.
When -restrict_hosts
is set to true, mlcp will only connect to the hosts listed in the -host
option, rather than using the approach described in How mlcp Uses the Host List.
Using -restrict_hosts
will usually degrade the performance of an mlcp job because mlcp cannot distribute work as efficiently.
For example, if you're using mlcp with a load balancer between your client and your MarkLogic cluster, you can specify the load balancer with -host
and set -restrict_hosts
to true to prevent mlcp from attempting to bypass the load balancer and connect directly to the forest hosts.
You can restrict mlcp's host list when using the import
, export
, and copy
commands. For import and export, use the -host
and -restrict_hosts options
. For copy, use -input_host
and -restrict_input_hosts
and/or -output_host
and -restrict_output_hosts
.
You can use -fastload
with -restrict_hosts
. The performance improvement from -fastload
will be less than if you did not use -restrict_hosts
, but better than if you do not use -fastload
. The usual cautions about -fastload
apply; see Time vs. Correctness: Understanding -fastload Tradeoffs.
The -fastload
and -restrict_hosts
options interact as follows:
Without -restrict_hosts
, mlcp figures out which hosts contains the destination forest for a document, and then connects directly to that host. When -restrict_hosts
is true, a connection to the forest host might not possible. In this case, mlcp connects to an allowed e-node, and includes the detailed destination information along with the document. The destination details makes an insertion faster than it would otherwise be.
Failover occurs when a forest or a host in a cluster becomes unavailable, due to events such as a forest restart or a host becoming unreachable. You can configure a database to use local or shared disk failover to attempt automatic recovery; for details see see High Availability of Data Nodes With Failover in the Scalability, Availability, and Failover Guide.
Failover support in mlcp is only available when running mlcp against MarkLogic 9 or later. With older MarkLogic versions, the job will fail if mlcp is connected to a host that becomes unavailable.
mlcp can potentially recover from failover event in the following cases:
If mlcp is able to re-establish a connection in these cases, then the job can continue. It is possible for some documents not to be imported, depending on the configuration of the job. mlcp can only retry the current batch.
-transaction_size
is 1, then mlcp only needs to retry the current document. In most cases, a successful failover will not cause any insertions to fail.-transaction_size
is greater than 1, then mlcp can only retry the current batch. Other batches in the same transaction cannot be retried. Some documents might not be inserted. mlcp reports any documents that could not be inserted due to the failover.
The following messages are an example of mlcp output during a failover event. Timestamps have been elided.
...INFO contentpump.LocalJobRunner: completed 41% ...WARNING [29] (AbstractRequestController.runRequest): Error parsing HTTP headers: Premature EOF, partial header line read: '' ...ERROR mapreduce.ContentWriter: Exception:Error parsing HTTP headers: Premature EOF, partial header line read: '' ...WARNING [29] (AbstractRequestController.runRequest): Error parsing HTTP headers: Premature EOF, partial header line read: '' ...ERROR mapreduce.ContentWriter: Error rolling back transaction Error parsing HTTP headers: Premature EOF, partial header line read: '' ...WARNING [29] (AbstractRequestController.runRequest): Error parsing HTTP headers: Premature EOF, partial header line read: '' ...ERROR mapreduce.ContentWriter: RetryableQueryException:XDMP-XDQPDISC: XDQP connection disconnected, server=somehost ...ERROR mapreduce.ContentWriter: RetryableQueryException:XDMP-XDQPDISC: XDQP connection disconnected, server=somehost ...ERROR mapreduce.ContentWriter: RetryableQueryException:XDMP-XDQPDISC: XDQP connection disconnected, server=somehost
...INFO mapreduce.ContentWriter: Retrying document insert ...ERROR mapreduce.ContentWriter: RetryableQueryException:SVC-SOCCONN: Socket connect error: connect 172.18.130.117:7999: Connection refused ...INFO mapreduce.ContentWriter: Retrying document insert ...INFO mapreduce.ContentWriter: Retrying document insert ...INFO mapreduce.ContentWriter: Retrying document insert ...ERROR mapreduce.ContentWriter: Exception:Connection refused ...ERROR mapreduce.ContentWriter: Exception:Connection refused ...ERROR mapreduce.ContentWriter: RetryableQueryException:SVC-SOCCONN: Socket connect error: connect 172.18.130.117:7999: Connection refused ...ERROR mapreduce.ContentWriter: RetryableQueryException:SVC-SOCCONN: Socket connect error: connect 172.18.130.117:7999: Connection refused ...ERROR mapreduce.ContentWriter: RetryableQueryException:SVC-SOCCONN: Socket connect error: connect 172.18.130.117:7999: Connection refused ...ERROR mapreduce.ContentWriter: RetryableQueryException:SVC-SOCCONN: Socket connect error: connect 172.18.130.117:7999: Connection refused
This section summarizes the command line options available with the mlcp import
command. The following command line options define your connection to MarkLogic:
Option | Description |
---|---|
-host comma-list |
Required. A comma separated list of hosts through which mlcp can connect to the destination MarkLogic Server. You must specify at least one host. For more details, see How mlcp Uses the Host List. |
-port number |
Port number of the destination MarkLogic Server. There should be an XDBC App Server on this port. Default: 8000. |
-username string |
MarkLogic Server user with which to import documents. Required, unless using Kerberos authentication. |
-password string |
Password for the MarkLogic Server user specified with -username . Required, unless using Kerberos authentication. |
The following table lists command line options that define the characteristics of the import operation:
Option | Description |
---|---|
-aggregate_record_element string |
When splitting an aggregate input file into multiple documents, the name of the element to use as the output document root. Default: The first child element under the root element. |
-aggregate_record_namespace string |
The namespace of the element specificed by -aggregate_record_element_name . Default: No namespace. |
-aggregate_uri_id string |
Deprecated. Use -uri_id instead.
When splitting an aggregate input file into multiple documents, the element or attribute name within the document root to use as the document URI. Default: In local mode, hashcode-seqnum, where the hashcode is derived from the split number; in distribute mode, taskid-seqnum. |
-batch_size number |
The number of documents to process in a single request to MarkLogic Server. Default: 100. Maximum: 200. |
-collection_filter comma-list |
A comma-separated list of collection URIs. Only usable with -input_file_type forest . mlcp extracts only documents in these collections. This option can be combined with other filter options. Default: Import all documents. |
-conf filename |
Pass extra setting to Hadoop when using distributed mode. For details, see Setting Custom Hadoop Options and Properties. This option must appear before mlcp-specific options. |
-content_encoding string |
The character encoding of input documents when -input_file_type is documents , aggregates , delimited_text , or rdf . The option value must be a character set name accepted by your JVM; see java.nio.charset.Charset . Default: UTF-8 . Set to system to use the platform default encoding for the host on which mlcp runs. |
-copy_collections boolean |
When importing documents from an archive, whether to copy document collections from the source archive to the destination. Only applies when -input_file_type is archive or forest . Default: true. |
-copy_metadata boolean |
When importing documents from an archive, whether to copy document key-value metadata from the source archive to the destination. Only applies when -input_file_type is archive or forest . Default: true. |
-copy_permissions boolean |
When importing documents from an archive, whether to copy document permissions from the source archive to the destination. Only applies with -input_file_type archive . Default: true. |
-copy_properties boolean |
When importing documents from an archive, whether to copy document properties from the source archive to the destination. Only applies with -input_file_type archive . Default: true. |
-copy_quality boolean |
When importing documents from an archive, whether to copy document quality from the source archive to the destination. Only applies when -input_file_type is archive or forest . Default: true. |
-D property=value |
Pass a configuration property setting to Hadoop when using distributed mode. For details, see Setting Custom Hadoop Options and Properties. This option must appear before mlcp-specific options. |
-data_type comma-list |
When importing content with -input_file_type delimited_text and -document_type json , use this option to specify the data type (string, number, or boolean) to give to specific fields. The option value must be a comma separated list of name, datatype pairs, such as a,number,b,boolean. Default: All fields have string type. For details, see Controlling Data Type in JSON Output. |
-database string |
The name of the destination database. Default: The database associated with the destination App Server identified by -host and -port . |
-delimiter character |
When importing content with -input_file_type delimited_text , the delimiting character. Default: comma (,). |
-delimited_root_name string |
When importing content with -input_file_type delimited_text , the local name of the document root element. Default: root . |
-delimited_uri_id string |
Deprecated. use When importing content - |
-directory_filter comma-list |
A comma-separated list of database directory names. Only usable with -input_file_type forest . mlcp extracts only documents from these directories, plus related metadata. Directory names should usually end with /. This option can be combined with other filter options. Default: Import all documents. |
-document_type string |
The type of document to create when -input_file_type is documents , sequencefile or delimited_text . Accepted values: mixed (documents only), xml , json , text , binary . Default: mixed for documents , xml for sequencefile, and xml for delimited_text . |
-fastload boolean |
Whether or not to force optimal performance, even at the risk of creating duplicate document URIs. See Time vs. Correctness: Understanding -fastload Tradeoffs. Default: false . |
-filename_as_collection boolean |
Add each loaded document to a collection corresponding to the name of the input file. You cannot use this option when -input_file_type is rdf or forest . Useful when splitting an input file into multiple documents. If the filename contains characters not permitted in a URI, those characters are URI encoded. Default: false . |
-generate_uri boolean |
When importing content with -input_file_type delimited_text , or -input_file_type delimited_json , whether or not MarkLogic Server should automatically generate document URIs. Default: false for delimited_text , true for delimited_json . For details, see Default Document URI Construction. |
-hadoop_conf_dir string |
When using distributed mode, the Hadoop config directory. For details, see Configuring Distributed Mode. |
-archive_metadata_optional boolean |
When importing documents from a database archive, whether or not to ignore missing metadata files. If this is false and the archive contains no metadata, an error occurs. Default: false . |
-input_compressed boolean |
Whether or not the source data is compressed. Default: false. |
-input_compression_codec string |
When -input_compressed is true, the code used for compression. Accepted values: zip , gzip . |
-input_file_path string |
A regular expression describing the filesystem location(s) to use for input. For details, see Regular Expression Syntax. |
-input_file_pattern string |
Load only input files that match this regular expression from the path(s) matched by -input_file_path . For details, see Regular Expression Syntax. Default: Load all files. This option is ignored when -input_file_type is forest . |
-input_file_type type |
The input file type. Accepted value: aggregates , archive , delimited_text , delimited_json , documents , forest , rdf , sequencefile . Default: documents . |
-sequencefile_key_class string |
When importing Hadoop sequence files, the name of the Java class to use as the input key. Required when using -input_file_type sequencefile . |
-sequencefile_value_class string |
When importing Hadoop sequence files, the name of the Java class to use as the input value. Required when using -input_file_type sequencefile . |
-sequencefile_value_type string |
When importing Hadoop sequence files, the type of the value data returned by the class named by -sequencefile_value_class . Accepted values: Text , BytesWritable . (Values are case-insensitive). Default: Text . |
-max_split_size number |
When importing from files, the maximum number of bytes in one input split. Default: The maximum Long value (Long.MAX_VALUE ). |
-min_split_size number |
When importing from files, the minimum number of bytes in one input split. Default: 0. |
-mode string |
Ingestion mode. Accepted values: distributed , local . Distributed mode requires Hadoop. Default: local , unless you set the HADOOP_CONF_DIR variable; for details, see Configuring Distributed Mode. |
-modules string |
Specify the name of the modules database to use when applying a server-side transformation. Accepted values: filesystem or a modules database name. Default: The modules database associated with the App Server. |
-modules_root string |
The modules root path to use when applying a server-side transformation. Default: The modules root configured for the App Server. If you also use -modules , then this path specifies the modules root for that modules database. |
-namespace string |
The default namespace for all XML documents created during loading. |
-options_file string |
Specify an options file pathname from which to read additional command line options. If you use an options file, this option must appear first. For details, see Options File Syntax. |
-output_cleandir boolean |
Whether or not to delete all content in the output database directory prior to loading. Default: false . |
-output_collections comma-list |
A comma separated list of collection URIs. Loaded documents are added to these collections. |
-output_directory string |
The destination database directory in which to create the loaded documents. If the directory exists, its contents are removed prior to ingesting new documents. Using this option enables -fastload by default, which can cause duplicate URIs to be created. See Time vs. Correctness: Understanding -fastload Tradeoffs. |
-output_graph string |
Only usable with -input_file_type rdf . For quad data, specifies the default graph for quads that do not include an explicit graph label. For other triple formats, specifies the graph into which to load all triples. For details, see Loading Triples. |
-output_language string |
The xml:lang to associate with loaded documents. |
-output_partition string |
The name of the database partition in which to create documents. For details, see How Assignment Policy Affects Optimization, and Range Partitions or Query Partitions in the Administrator's Guide. |
-output_override_graph string |
Only usable with -input_file_type rdf . The graph into which to load all triples. For quads, overrides any graph label in the quads. For details, see Loading Triples. |
-output_permissions comma-list |
A comma separated list of (role,capability) pairs to apply to loaded documents. Default: The default permissions associated with the user inserting the document. Example: -output_permissions role1,read,role2,update |
-output_quality string |
The quality of loaded documents. Default: 0. |
-output_uri_prefix string |
Specify a prefix to prepend to the default URI. Used to construct output document URIs. For details, see Controlling Database URIs During Ingestion. |
-output_uri_replace comma-list |
A comma separated list of (regex,string ) pairs that define string replacements to apply to the URIs of documents added to the database. The replacement strings must be enclosed in single quotes. For example, -output_uri_replace "regex1,'string1',regext2,'string2'" |
-output_uri_suffix string |
Specify a suffix to append to the default URI Used to construct output document URIs. For details, see Controlling Database URIs During Ingestion. |
-restrict_hosts boolean |
Restrict mlcp to connect to MarkLogic only through the hosts listed in the -host option. For more details, see Restricting the Hosts mlcp Uses to Connect to MarkLogic. |
-split_input boolean |
Whether or not to divide input data into logical chunks to support more concurrency. Only supported when -input_file_type is one of the following: delimited_text . Default: false for local mode, true for distributed mode. For details, see Improving Throughput with -split_input. |
-ssl boolean |
Enable/disable SSL secured communication with MarkLogic. Default: false. If you set this option to true, your App Server must be SSL enabled. For details, see Connecting to MarkLogic Using SSL. |
-ssl_protocol string |
Specify the protocol mlcp should use when creating an SSL connection to MarkLogic. You must include this option if you use the -ssl option to connect to an App Server configured to disable MarkLogic's default protocol (TLS). Allowed values: tls , tlsv1 , tlsv1.1 , tlsv1.2 . Default: tls . This option is ignored if you use a Hadoop Connector conf file for SSL configuration; for details, see Advanced SSL Configuration. |
-streaming boolean |
Whether or not to stream documents to MarkLogic Server. Applies only when -input_file_type is documents . |
-temporal_collection string |
The temporal collection into which the temporal documents are to be loaded. For details on loading temporal documents into MarkLogic, see Using MarkLogic Content Pump (MLCP) to Load Temporal Documents in the Temporal Developer's Guide. |
-thread_count number |
The number of threads to spawn for concurrent loading. The total number of threads spawned by the process can be larger than this number, but this option caps the number of concurrent sessions with MarkLogic Server. Only available in local mode. Default: 4. |
-thread_count_per_split number |
The maximum number of threads that can be assigned to each split. In local mode, the default behavior is a round-robin allocation of threads to each split, which results in one thread per split if there are more splits than threads. The total number of available threads is controlled by In distributed mode, each split is assigned the number of threads specified by this option. For details, see Tuning Split Size for Distributed Mode. |
-tolerate_errors boolean |
NOTE: This option is deprecated, ignored, and will be removed in a future release. mlcp always behaves as if Applicable only when |
-transform_function string |
The local name of a custom content transformation function installed on MarkLogic Server. Ignored if -transform_module is not specified. Default: transform . For details, see Transforming Content During Ingestion. |
-transform_module string |
The path in the modules database or modules directory of a custom content transformation function installed on MarkLogic Server. This option is required to enable a custom transformation. For details, see Transforming Content During Ingestion. |
-transform_namespace string |
The namespace URI of the custom content transformation function named by -transform_function . Ignored if -transform_module is not specified. Default: no namespace. For details, see Transforming Content During Ingestion. |
-transform_param string |
Optional extra data to pass through to a custom transformation function. Ignored if -transform_module is not specified. Default: no namespace. For details, see Transforming Content During Ingestion. |
-transaction_size number |
The number of requests to MarkLogic Server per transaction. Default: 10. Maximum: 4000/actualBatchSize. |
-type_filter comma-list |
A comma-separated list of document types. Only usable with -input_file_type forest . mlcp imports only documents with these types. This option can be combined with other filter options. Default: Import all documents. |
-uri_id string |
Specify a field, XML element name, or JSON property name to use as the basis of the output document URIs when importing delimited text, aggregate XML, or line-delimited JSON data. With With - |
-xml_repair_level string |
The degree of repair to attempt on XML documents in order to create well-formed XML. Accepted values: default , full , none . Default: default , which depends on the configured MarkLogic Server default XQuery version: In XQuery 1.0 and 1.0-ml the default is none. In XQuery 0.9-ml the default is full. |