This page contains frequently asked questions about Ultipa Transporter. If you can't find an answer to your question, you may contact us at [email protected].
If you want to connect to Ultipa Cloud from Ultipa Transporter, you must add the IP of Ultipa Transporter to the Allowed Inbound IPs in Ultipa Cloud. For details see Graph Powerhouse or Graph Blaze.
This error occurs when the packet size exceeds the limit during data import/export. This issue may be caused by:
batchSize.Try the following solutions:
batchSize in the Transporter configuration file.MaxPacketSize in the Transporter configuration file.max_rpc_msgsize in the server configuration (requires a server reboot).Supported standard datetime formats include:
[YY]YY-MM-DD HH:MM:SS[YY]YY-MM-DD HH:MM:SSZ[YY]YY-MM-DDTHH:MM:SSZ[YY]YY-MM-DDTHH:MM:SS[+/-]0x00[YY]YYMMDDHH:MM:SS[+/-]0x00Note:
19xx if ≥ 70, or as 20xx if < 70.-) separator can be replaced with a slash (/).[+/-]0x00 indicates the time zone offset (e.g., +0700 or -0300).Z indicates the UTC 0 timezone.If the datetime value doesn't include the timezone information, the time will be exported based on the timezone set in the Transporter configuration file. If no timezone is specified, it will be exported in the local timezone.
Warnings like bare " in non-quoted-field and extraneous or missing " in quoted-field occur when double quotation marks (") are not handled correctly in data fields.
Check the settings > quotes option in the Transporter configuration file:
false (default): Double quotes are treated as field boundaries and must appear at both the beginning and end of the content. Consecutive double quotes ("") are interpreted as a single quote character. For example, the text I like when Jack said "If you jump, I jump". must be formatted as "I like when Jack said ""If you jump, I jump""." for successful import.true: Double quotes are treated as part of the content rather than delimiters. No special formatting is needed for fields containing double quotes. The above example can be imported as-is without errors.Handling Commas: If the settings > separator in the Transporter configuration file is set to comma, data fields containing commas must be enclosed in double quotation marks (") to prevent misinterpretation as a separator. If separator is not a comma, no additional formatting is required.
comma"Alice, CEO", 35, "New York"
Here, Alice, CEO is treated as a single field rather than two separate values.
Handling Line Breaks: Data fields containing line breaks must be wrapped in double quotation marks (").
line break"This is a multi-line description of a product."
The entire text block inside double quotes will be treated as a single field.
In both cases, set settings > quotes to false in the Transporter configuration file.
In a CSV file, the string "null" is interpreted literally as a text value, not as a null value. To ensure a field is imported as null, leave it empty between two consecutive field separators (e.g., ,,).