GridGain Developers Hub

ODBC Driver

Overview

GridGain includes an ODBC driver that allows you both to select and to modify data stored in a distributed cache using standard SQL queries and native ODBC API.

For detailed information on ODBC please refer to ODBC Programmer’s Reference.

The ODBC driver implements version 3.0 of the ODBC API.

Cluster Configuration

The ODBC driver is treated as a dynamic library on Windows and a shared object on Linux. An application does not load it directly. Instead, it uses the Driver Manager API that loads and unloads ODBC drivers whenever required.

Internally, the ODBC driver uses TCP to connect to a cluster. The cluster-side connection parameters can be configured via the IgniteConfiguration.clientConnectorConfiguration property.

<bean id="ignite.cfg" class="org.apache.ignite.configuration.IgniteConfiguration">
    <property name="clientConnectorConfiguration">
        <bean class="org.apache.ignite.configuration.ClientConnectorConfiguration"/>
    </property>
</bean>
IgniteConfiguration cfg = new IgniteConfiguration();

ClientConnectorConfiguration clientConnectorCfg = new ClientConnectorConfiguration();
cfg.setClientConnectorConfiguration(clientConnectorCfg);

Client connector configuration supports the following properties:

Parameter Description Default Value

host

Host name or IP address to bind to. When set to null, binding is made to localhost.

null

port

TCP port to bind to. If the specified port is already in use, Ignite will try to find another available port using the portRange property.

10800

portRange

Defines the number of ports to try to bind to. E.g. if the port is set to 10800 and portRange is 100, then server will sequentially try to bind to any port from [10800, 10900] until it finds a free port.

100

maxOpenCursorsPerConnection

Maximum number of cursors that can be opened simultaneously for a single connection.

128

threadPoolSize

Number of request-handling threads in the thread pool.

MAX(8, CPU cores)

socketSendBufferSize

Size of the TCP socket send buffer. When set to 0, the system default value is used.

0

socketReceiveBufferSize

Size of the TCP socket receive buffer. When set to 0, the system default value is used.

0

tcpNoDelay

Whether to use the TCP_NODELAY option.

true

idleTimeout

Idle timeout for client connections. Clients will automatically be disconnected from the server after being idle for the configured timeout. When this parameter is set to zero or a negative value, idle timeout will be disabled.

0

isOdbcEnabled

Whether access through ODBC is enabled.

true

isThinClientEnabled

Whether access through thin client is enabled.

true

You can change these parameters as shown in the example below:

<bean class="org.apache.ignite.configuration.IgniteConfiguration">
    <!-- Enabling ODBC. -->
    <property name="clientConnectorConfiguration">
        <bean class="org.apache.ignite.configuration.ClientConnectorConfiguration">
            <property name="host" value="127.0.0.1"/>
            <property name="port" value="10800"/>
            <property name="portRange" value="5"/>
            <property name="maxOpenCursorsPerConnection" value="512"/>
            <property name="socketSendBufferSize" value="65536"/>
            <property name="socketReceiveBufferSize" value="131072"/>
            <property name="threadPoolSize" value="4"/>
        </bean>
    </property>
</bean>
IgniteConfiguration cfg = new IgniteConfiguration();
...
ClientConnectorConfiguration clientConnectorCfg = new ClientConnectorConfiguration();

clientConnectorCfg.setHost("127.0.0.1");
clientConnectorCfg.setPort(12345);
clientConnectorCfg.setPortRange(2);
clientConnectorCfg.setMaxOpenCursorsPerConnection(512);
clientConnectorCfg.setSocketSendBufferSize(65536);
clientConnectorCfg.setSocketReceiveBufferSize(131072);
clientConnectorCfg.setThreadPoolSize(4);

cfg.setClientConnectorConfiguration(clientConnectorCfg);
...

A connection that is established from the ODBC driver side to the cluster via ClientListenerProcessor is also configurable. Find more details on how to alter connection settings from the driver side here.

Thread-Safety

The current implementation of Ignite ODBC driver only provides thread-safety at the connections level. This means that you should not access the same connection from multiple threads without additional synchronization, though you can create separate connections for every thread and use them simultaneously.

Prerequisites

Apache Ignite ODBC Driver was officially tested on:

OS

  • Windows (XP and up, both 32-bit and 64-bit versions)

  • Windows Server (2008 and up, both 32-bit and 64-bit versions)

  • Ubuntu (14.x and 15.x 64-bit)

C++ compiler

MS Visual C++ (10.0 and up), GCC (4.4.0 and up)

Visual Studio

2010 and above

Building ODBC Driver

GridGain is shipped with pre-built installers for both 32- and 64-bit versions of the driver for Windows. So if you just want to install ODBC driver on Windows you may go straight to the Installing ODBC Driver section for installation instructions.

If you use Linux you will still need to build ODBC driver before you can install it. So if you are using Linux or if you still want to build the driver by yourself for Windows, then keep reading.

Ignite ODBC Driver source code is shipped as part of the GridGain package and it should be built before usage.

Since the ODBC Driver is written in C, it is shipped as part of GridGain C and depends on some of the C++ libraries. More specifically, it depends on the utils and binary Ignite libraries. This means that you will need to build them prior to building the ODBC driver itself.

We assume here that you are using the binary Ignite release. If you are using the source release, instead of %IGNITE_HOME%\platforms\cpp path you should use %IGNITE_HOME%\modules\platforms\cpp throughout.

Building on Windows

You will need MS Visual Studio 2010 or later to be able to build the ODBC driver on Windows. Once you have it, open Ignite solution %IGNITE_HOME%\platforms\cpp\project\vs\ignite.sln (or ignite_86.sln if you are running 32-bit platform), left-click on odbc project in the "Solution Explorer" and choose "Build". Visual Studio will automatically detect and build all the necessary dependencies.

The path to the .sln file may vary depending on whether you’re building from source files or binaries. If you don’t see your .sln file in %IGNITE_HOME%\platforms\cpp\project\vs\, try looking in %IGNITE_HOME%\modules\platforms\cpp\project\vs\.

Once the build process is complete, you can find ignite.odbc.dll in %IGNITE_HOME%\platforms\cpp\project\vs\x64\Release for the 64-bit version and in %IGNITE_HOME%\platforms\cpp\project\vs\Win32\Release for the 32-bit version.

Building installers on Windows

Once you have built driver binaries you may want to build installers for easier installation. Ignite uses WiX Toolset to generate ODBC installers, so to build them you’ll need to download and install WiX. Make sure you have added the bin directory of the WiX Toolset to your PATH variable.

Once everything is ready, open a terminal and navigate to the directory %IGNITE_HOME%\platforms\cpp\odbc\install. Execute the following commands one by one to build installers:

candle.exe ignite-odbc-amd64.wxs
light.exe -ext WixUIExtension ignite-odbc-amd64.wixobj
candle.exe ignite-odbc-x86.wxs
light.exe -ext WixUIExtension ignite-odbc-x86.wixobj

As a result, ignite-odbc-amd64.msi and ignite-odbc-x86.msi files should appear in the directory. You can use them to install your freshly built drivers.

Building on Linux

On a Linux-based operating system, you will need to install an ODBC Driver Manager of your choice to be able to build and use the Ignite ODBC Driver. The ODBC Driver has been tested with UnixODBC.

Prerequisites

  • One of the following:

    • Clang 3.9 or later, or GCC 3.6

    • CMake 3.6 or later

  • Core module:

    • JDK must be installed

    • The JAVA_HOME environment variable must point to the Java installation directory

    • The IGNITE_HOME environment variable must pint to the Ignite installation directory.

  • Thin-client module: OpenSSL 1.0 or later

  • ODBC module:

    • OpenSSL 1.0 or later

    • UnixODBC

    • If you want to use a non-system OpenSSL, the OPENSSL_ROOT_DIR environment variable must point to the OpenSSL installation directory.

Building Apache Ignite C++ Components

To build C++ components:

  1. Execute the following commands:

    cd $IGNITE_HOME/platforms/cpp
    mkdir cmake-build-[release|debug]
    cd ./cmake-build-[release|debug]
  2. Run the CMake configuration:

    cmake .. -DCMAKE_BUILD_TYPE=[Release|Debug] [-DCMAKE_INSTALL_PREFIX=<install_dir>] [-DWITH_THIN_CLIENT=ON]
              [-DWITH_ODBC=ON] [-DWITH_TESTS=ON]
  3. Build Ignite C++ using:

    cmake --build . --config [Release|Debug]
  4. Install Ignite C++:

    cmake --build . --target install --config [Release|Debug]

Installing ODBC Driver

In order to use ODBC driver, you need to register it in your system so that your ODBC Driver Manager will be able to locate it.

Installing on Windows

For 32-bit Windows, you should use the 32-bit version of the driver. For the 64-bit Windows, you can use the 64-bit driver as well as the 32-bit. You may want to install both 32-bit and 64-bit drivers on 64-bit Windows to be able to use your driver from both 32-bit and 64-bit applications.

Installing using installers

This is the easiest way and one should use it by default. Just launch the installer for the version of the driver that you need and follow the instructions:

32-bit installer: %IGNITE_HOME%\platforms\cpp\bin\odbc\ignite-odbc-x86.msi 64-bit installer: %IGNITE_HOME%\platforms\cpp\bin\odbc\ignite-odbc-amd64.msi

Installing manually

To install ODBC driver on Windows manually, you should first choose a directory on your file system where your driver or drivers will be located. Once you have chosen the location, you have to put your driver there and ensure that all driver dependencies can be resolved as well, i.e., they can be found either in the %PATH% or in the same directory where the driver DLL resides.

After that, you have to use one of the install scripts from the following directory %IGNITE_HOME%/platforms/cpp/odbc/install. Note, that you may need OS administrator privileges to execute these scripts.

install_x86 <absolute_path_to_32_bit_driver>
install_amd64 <absolute_path_to_64_bit_driver> [<absolute_path_to_32_bit_driver>]

Installing on Linux

To be able to build and install ODBC driver on Linux, you need to first install ODBC Driver Manager. The ODBC driver has been tested with UnixODBC.

Download from website

You can get the built rpm package from the GridGain website. Then, install the rpm package locally to use it.

Build the driver locally

Once you have built the driver and performed the make install command, the ODBC Driver i.e. libignite-odbc.so will be placed in the /usr/local/lib folder. To install it as an ODBC driver in your Driver Manager and be able to use it, perform the following steps:

  • Ensure linker is able to locate all dependencies of the ODBC driver. You can check this by using ldd command. Assuming ODBC driver is located under /usr/local/lib:

    ldd /usr/local/lib/libignite-odbc.so

    If there are unresolved links to other libraries, you may want to add directories with these libraries to the LD_LIBRARY_PATH.

  • Edit file $IGNITE_HOME/platforms/cpp/odbc/install/ignite-odbc-install.ini and ensure that Driver parameter of the Apache Ignite section points to where libignite-odbc.so is located.

  • To install the ODBC driver, use the following command:

    odbcinst -i -d -f $IGNITE_HOME/platforms/cpp/odbc/install/ignite-odbc-install.ini

    To perform this command, you may need root privileges.

Now the Apache Ignite ODBC driver is installed and ready for use. You can connect to it and use it just like any other ODBC driver.

Using pyodbc

GridGain can be used with pyodbc. This module usually provides better performance compared to using python thin client for SQL queries. Here is how you can use pyodbc in GridGain:

  • Install pyodbc

    pip3 install pyodbc
  • Import pyodbc to your project:

    import pyodbc
  • Connect to the database:

    conn = pyodbc.connect('Driver={Apache Ignite};Address=127.0.0.1:10800;')
  • Set encoding to UTF-8:

    conn.setencoding(encoding='utf-8')
    conn.setdecoding(sqltype=pyodbc.SQL_CHAR, encoding="utf-8")
    conn.setdecoding(sqltype=pyodbc.SQL_WCHAR, encoding="utf-8")
  • Get data from your database:

    cursor = conn.cursor()
    cursor.execute('SELECT * FROM table_name')

For more information on using pyodbc, use the official documentation.