Configuration
This section describes the format of the FaunaDB Data Manager configuration file,
fdm.props
.
The fdm.props
file is an optional file where commonly-used command line
options, plus some additional options, can be placed. This is handy if
you need to run the FaunaDB Data Manager repeatedly with common configuration options.
The fdm.props
file is a standard Java properties file, consisting of
one or more lines using the format property_name = property_value
.
Blank lines and lines beginning with #
are ignored.
The default fdm.props
file looks like this:
### FaunaDB Data Manager properties
#
# The key to the database
# Default: secret
#
# key=secret
# The name or IP of the FaunaDB instance to connect to
# Default: db.fauna.com
#
# host=11.22.33.44
# The key to the database
# Default: https
#
# protocol=http
# The port number that FaunaDB is listening on
# Default: 8443
#
# port=8443
# The format transformation allows you to rename fields or cast values
# to new types. The general layout of the format:
# <field-name>[->new-name]:<field-type>[(date_format)],...
# Default: None
#
# Example:
# format=power_usage->used_power,sic_code:long,ta_start:date(yyyy-mm-dd),outage_id:ID,time_start:ts(mm-dd-yy hh:mm),time_end:ts(mm/dd/yy hh:mm:ss)
# The name document to insert in a single transaction.
# Default: 100
#
# transactionSize=100
## JDBC properties, used to connect to a JDBC database
# The vendor-specified namespace for the driver
#
# jdbc.driver=<ENTER THE JDBC DRIVER NAMESPACE HERE>
# The connection URL for the JDBC server
#
# jdbc.url=<ENTER A JDBC URL HERE>
# The userid that should be used to connect to the JDBC server
#
# jdbc.property.user=<ENTER A USERID HERE>
# The password for the userid connecting to the JDBC server
#
# jdbc.property.password=<ENTER A PASSWORD HERE>
# The name of the database to access on the JDBC server
#
# jdbc.property.database=<ENTER A DATABASE NAME HERE>
# Optional: The name of a specific table to access on the JDBC server.
# When not specified, all tables in the JDBC database are evaluated.
#
# jdbc.property.table=<ENTER A TABLE NAME HERE>
# Other JDBC properties can be specified here. Use the prefix
# jdbc.property. when specifying them.
#
# jdbc.property.serverTimezone=<ENTER A TIMEZONE STRING HERE>
# Debug options, one of:
# 0: Off
# 1: Light
# 2: Med
# 3: Heavy
# Default: 0
#
# debug=0
All of the included properties are commented out. Remove the leading #
from any property you wish to use, and set the property’s value
accordingly.
Properties
Property | Description | ||
---|---|---|---|
Optional - Specifies a global date format. The default value is
|
|||
Optional - Specifies a comma-separated list of format transformations that describe how fields and their values should be converted during processing. A field can be renamed, or its value can be cast to a new type. Example: See Format transformations for details. This is equivalent to the
|
|||
Specifies the Java namespace required to use the vendor’s driver. For example, to specify using the MySQL driver:
|
|||
Specifies the JDBC URL to connect your JDBC database.
|
|||
Optional - Specifies the file path, comma-separated list of file paths, or the path to a directory containing files, to use for importing. When not specified, the default value is The type of each path is auto-detected by examining the first few lines of each file, and not by the file extension. Each path’s filename informs the name of a FaunaDB collection in the destination database, and the contents of the file describe the documents that should be created in the destination database. Examples:
|
|||
Optional - Specifies the policy for processing collections. The value
for This is equivalent to the
|
|||
Optional - Specifies the policy for processing documents. The value
for |
|||
Optional - Specifies the policy for processing functions. The value
for |
|||
Optional - Specifies the FaunaDB host to connect to. The default
value is |
|||
Optional - Specifies the policy for processing indexes. The value for
|
|||
Optional - Specifies the policy for processing roles. The value for
|
|||
Optional - Specifies the FaunaDB port to connect to. The default value is 8443. |
|||
Optional - Specifies the HTTP protocol to use when connecting to a
FaunaDB host. Must be one of |
|||
Optional - Specifies the number of records to bundle into a single FaunaDB transaction. The default value is 100. Smaller numbers tend to make the overall import/copy perform somewhat slower. Larger numbers can make the overall import/copy perform faster. There is a 16 megabyte limit to the size of any transaction. The FaunaDB Data Manager automatically reduces the size of each transaction to fit within that limit. This means that values over 10,000 tend to have no affect. Large values can make identifying the source of errors much more difficult. Example: This is equivalent to the
|
|||
Optional - Specifies a global timestamp format. The default value is
|
Was this article helpful?
We're sorry to hear that.
Tell us how we can improve!
documentation@fauna.com
Thank you for your feedback!