Skip to Main Content
IBM Data and AI Ideas Portal for Customers


This portal is to open public enhancement requests against products and services offered by the IBM Data & AI organization. To view all of your ideas submitted to IBM, create and manage groups of Ideas, or create an idea explicitly set to be either visible by all (public) or visible only to you and IBM (private), use the IBM Unified Ideas Portal (https://ideas.ibm.com).


Shape the future of IBM!

We invite you to shape the future of IBM, including product roadmaps, by submitting ideas that matter to you the most. Here's how it works:


Search existing ideas

Start by searching and reviewing ideas and requests to enhance a product or service. Take a look at ideas others have posted, and add a comment, vote, or subscribe to updates on them if they matter to you. If you can't find what you are looking for,


Post your ideas

Post ideas and requests to enhance a product or service. Take a look at ideas others have posted and upvote them if they matter to you,

  1. Post an idea

  2. Upvote ideas that matter most to you

  3. Get feedback from the IBM team to refine your idea


Specific links you will want to bookmark for future use

Welcome to the IBM Ideas Portal (https://www.ibm.com/ideas) - Use this site to find out additional information and details about the IBM Ideas process and statuses.

IBM Unified Ideas Portal (https://ideas.ibm.com) - Use this site to view all of your ideas, create new ideas for any IBM product, or search for ideas across all of IBM.

ideasibm@us.ibm.com - Use this email to suggest enhancements to the Ideas process or request help from IBM for submitting your Ideas.

IBM Employees should enter Ideas at https://ideas.ibm.com


Status Delivered
Workspace Spectrum Conductor
Components Future Version
Created by Guest
Created on Jun 9, 2021

PySpark Kernel unable to read/extract when connected to external database using Kerberos Keytab

IBM JRE supplied as part of Sym 7.3.1 + Conductor 2.5 is incompatible with current use-case

Use-case: We have a client that uses Spark/Notebooks (PySpark kernel) to connect an external database via ODBC using kerberos. Whenever they try to connect to external DB using IBM supplied versions of JRE (see below) - they are encountering

"unable to find LoginModule class: com.sun.security.auth.module.Krb5LoginModule"

It is supposed to look for com.ibm.security.auth.module.Krb5LoginModule instead but that isn't the case.


[egoadmin@cbbenp13-cc017 ~]$ cd /opt/middleware/symphony/jre/
[egoadmin@cbbenp13-cc017 jre]$ ls -ltr
total 20
drwxr-xr-x. 3 egoadmin cbb 4096 May 11 12:20 8.0.6.0
drwxr-xr-x. 3 egoadmin cbb 4096 May 11 12:22 8.0.6.20


Both these versions (8.0.6.0 , 8.0.6.20) do not work for current clients use-case when we point the JAVA_HOME to the associated jre


Upon on checking with Support team on this issue, we were provided with OpenJDK (see below) - now, they are able to read data properly however encounter errors when they try to see the content. We need to understand what really happens behind show() that involves Kerberos

[egoadmin@cbbenp13-cc017 ~]$ cd /opt/middleware/symphony/jre/
[egoadmin@cbbenp13-cc017 jre]$ ls -ltr
total 20
drwxr-xr-x. 8 egoadmin cbb 4096 Jun 18 2020 jdk1.8.0_261 --- Provided by Ding from support team

df_table.show() throws an error

" Error: The service in process is not supported. Unable to find valid kerberos
principal for authentication"


This is odd to me, as the Spark read works , but when we view the dataframe it doesnt work - See below

(Below snippet works fine)

jdbcurl = "jdbc:oracle:thin:@//iaasn00095176.svr.us.jpmchase.net:6136/CPA_DEV_DP109649_180221220944_J_READWRITE"


df_table = spark.read.format("jdbc").option("url",jdbcurl) \
.option("dbtable", "(SELECT * FROM sys.dual)") \
.option("oracle.jdbc.allowedLogonVersion","8") \
.option("oracle.net.kerberos5_mutual_authentication","true") \
.option("oracle.net.authentication_services","( KERBEROS5)") \
.option("Driver","oracle.jdbc.OracleDriver") \
.option("oracle.net.kerberos5_cc_name","/cpa/fs1/deploy/keys_ea/krb5cc_309936") \
.load()

We also need your help to understand what happens behind .show()