Was this helpful?
UDF Engine Configuration File (udf_engines.conf)
A UDF engine is a process that executes the code for user-defined functions (UDFs). The engine runs on each node and can run as a stand-alone process or in a container.
The udf_engines.conf file defines the UDF engines that the X100 server should create and connect to on startup. If a defined engine cannot be connected to, the X100 server startup is aborted.
The udf_engines.conf file is located in the II_SYSTEM/ingres/data/vectorwise directory on both Linux and Windows.
The format for the file is the same as vectorwise.conf except that each section name must be unique, and no section names are predefined. Each section defines one engine. Multiple sections with the same name are allowed if only one is enabled. The name of the default remote engine is “remote”. You can change this using the [system] udf_location_default parameter in the vectorwise.conf.
In the following Linux example, the X100 engine will launch a docker container.
[remote]
enabled=1
port=44222
host="127.0.0.1"
socket_retry=3
keep_alive=0
launch=1
processes=1
is_container=yes
command="docker run -p $PORT:44222 -m 100MB --mount type=bind,source=/opt/Actian/vectorwise-udf/log,target=/opt/Actian/vectorwise-udf/log,ro=0 --mount type=bind,source=/opt/Actian/vectorwise-udf/import,target=/opt/Actian/vectorwise-udf/import,ro=0 --name udf$INSTANCE_TAG --user $UID:$GID vectorwise-udf"
Last modified date: 03/21/2024