Creating a Data Source Name

Typically, after installing the Simba Impala ODBC Driver, you need to create a Data Source Name (DSN). A DSN is a data structure that stores connection information so that it can be used by the connector to connect to Impala.

You can specify connection settings in a DSN (in the odbc.ini file), in a connection string, or as connector-wide settings (in the simba.impalaodbc.ini file). Settings in the connection string take precedence over settings in the DSN, and settings in the DSN take precedence over connector-wide settings.

The following instructions describe how to create a DSN by specifying connection settings in the odbc.ini file. If your machine is already configured to use an existing odbc.ini file, then update that file by adding the settings described below. Otherwise, copy the odbc.ini file from the Setup subfolder in the connector installation directory to the home directory, and then update the file as described below.

For information about specifying settings in a connection string, see Configuring a DSN-less Connection and Using a Connection String. For information about connector-wide settings, see Setting Connector-Wide Configuration Options.

To create a Data Source Name:

  1. In a text editor, open the odbc.ini configuration file.
  2. Note:

    If you are using a hidden copy of the odbc.ini file, you can remove the period (.) from the start of the file name to make the file visible while you are editing it.

  3. In the [ODBC Data Sources] section, add a new entry by typing a name for the DSN, an equal sign (=), and then the name of the connector.
  4. For example, on a macOS machine:

    [ODBC Data Sources]

    Sample DSN=Simba Impala ODBC Driver

    For example, for a 32-bit connector on a Linux/AIX/Solaris machine:

    [ODBC Data Sources]

    Sample DSN=Simba Impala ODBC Driver 32-bit

  5. Create a section that has the same name as your DSN, and then specify configuration options as key-value pairs in the section:
    1. Set the Driver property to the full path of the connector library file that matches the bitness of the application.
    2. For example, on a macOS machine:

      Driver=/Library/simba/impala/lib/libimpalaodbcodbc_sbu.dylib

      For example, for a 32-bit connector on a Linux/AIX/Solaris machine:

      Driver=/opt/simba/impala/lib/32/libimpalaodbc_sb32.so

    3. Set the Host property to the IP address or host name of the server.
    4. For example:

      Host=192.168.222.160

    5. Set the Port property to the number of the TCP port that the server uses to listen for client connections.
    6. For example:

      Port=21050

    7. If authentication is required to access the server, then specify the authentication mechanism and your credentials. For more information, see Configuring Authentication.
    8. If you want to connect to the server through SSL, then enable SSL and specify the certificate information. For more information, see Configuring SSL Verification.
    9. If you want to configure server-side properties, then set them as key-value pairs using a special syntax. For more information, see Configuring Server-Side Properties.
    10. Optionally, set additional key-value pairs as needed to specify other optional connection settings. For detailed information about all the configuration options supported by the Simba Impala ODBC Driver, see Driver Configuration Options on page 1.
  6. Save the odbc.ini configuration file.
  7. Note:

    If you are storing this file in its default location in the home directory, then prefix the file name with a period (.) so that the file becomes hidden. If you are storing this file in another location, then save it as a non-hidden file (without the prefix), and make sure that the ODBCINI environment variable specifies the location. For more information, see Specifying the Locations of the Connector Configuration Files.

For example, the following is an odbc.ini configuration file for macOS containing a DSN that connects to an Impala server that does not require authentication:

[ODBC Data Sources]

Sample DSN=Simba Impala ODBC Driver

[Sample DSN]

Driver=/Library/simba/impala/lib/libimpalaodbcodbc_sbu.dylib

Host=192.168.222.160

Port=21050

For example, the following is an odbc.ini configuration file for a 32-bit connector on a Linux/AIX/Solaris machine, containing a DSN that connects to an Impala server that does not require authentication:

[ODBC Data Sources]

Sample DSN=Simba Impala ODBC Driver 32-bit

[Sample DSN]

Driver=/opt/simba/impala/lib/32/libimpalaodbc_sb32.so

Host=192.168.222.160

Port=21050

You can now use the DSN in an application to connect to the data store.