<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question Re: How to connect CML to Hive using Python in Support Questions</title>
    <link>https://community.cloudera.com/t5/Support-Questions/How-to-connect-CML-to-Hive-using-Python/m-p/303455#M221559</link>
    <description>&lt;P&gt;So I started a new Session within CML, from which I started a terminal session via "&amp;gt;_Terminal Access" and ran the commands you postet.&lt;/P&gt;&lt;P&gt;I verfied if the CLASSPATH was set by running&lt;/P&gt;&lt;LI-CODE lang="python"&gt;echo "$CLASSPATH"&lt;/LI-CODE&gt;&lt;P&gt;, which resulted in the expted output i.e.&lt;/P&gt;&lt;LI-CODE lang="python"&gt;.:/home/cdsw/drivers/hive/HiveJDBC41.jar&lt;/LI-CODE&gt;&lt;P&gt;I then closed the Terminal Session and ran the code within my CML Session.&lt;/P&gt;&lt;P&gt;Howerver the error stayed the same.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 28 Sep 2020 07:24:22 GMT</pubDate>
    <dc:creator>DominicCap1</dc:creator>
    <dc:date>2020-09-28T07:24:22Z</dc:date>
    <item>
      <title>How to connect CML to Hive using Python</title>
      <link>https://community.cloudera.com/t5/Support-Questions/How-to-connect-CML-to-Hive-using-Python/m-p/303308#M221498</link>
      <description>&lt;P&gt;Hello everyone,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;we setup a Cloudera Environment which inherits a DataHub of type "&lt;SPAN class="ng-star-inserted"&gt;7.1.0 - Data Engineering: Apache Spark, Apache Hive, Apache Oozie". We managed to connect to HIVE via a JDBC connection from our local machines.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="ng-star-inserted"&gt;But so far we were not able to connect from CML to HIVE via JDBC&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="ng-star-inserted"&gt;I use the &lt;A href="https://pypi.org/project/JayDeBeApi/" target="_blank" rel="noopener"&gt;JayDeBeApi&lt;/A&gt; as follows:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;conn_hive = jaydebeapi.connect('org.apache.hive.jdbc.HiveDriver', 'jdbc:hive2://dataengineering-master0.......:443/;ssl=1;transportMode=http;httpPath=dataengineering/cdp-proxy-api/hive;AuthMech=3;', \
	{'UID': "user_name", 'PWD': "password"}, '/home/cdsw/drivers/HiveJDBC41.jar',)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="ng-star-inserted"&gt;The error message is &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;TypeError: Class org.apache.hive.jdbc.HiveDriver is not found&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="ng-star-inserted"&gt;I set the environment variable CLASSPATH to&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;'/home/cdsw/drivers/HiveJDBC41.jar'&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN class="ng-star-inserted"&gt;which is were the jar actually rests. Hence I wanted to check if JAVA_HOME is set correctly and yes, there the env. variable is set to &lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;'/usr/lib/jvm/java-8-openjdk-amd64/'&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN class="ng-star-inserted"&gt;Howerver when i run the command !java --version I get an error&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;Unrecognized option: --version
Error: Could not create the Java Virtual Machine.
Error: A fatal exception has occurred. Program will exit.&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN class="ng-star-inserted"&gt;Is this normal and can i expect JAVA to still work as expected, or could this be the source of my problem?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="ng-star-inserted"&gt;Since connecting via JDBC did not work. I also tried connecting via a SparkSession as I saw in yesterdays "CDP Priavte Cloud Partner Edition". The presented code looks as follows&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;from pyspark.sql import SparkSession

# Instantiate Spark-on-K8s Cluster
spark = SparkSession.builder.appName("Simple Spark Test") \
	.config("spark.executor.memory", "8g") \
    .config("spark.executor.cores", "2") \
    .config("spark.driver.memory", "2g") \
    .config("spark.executor.instances", "2") \
	.getOrCreate()

# Validate Spark Connectivity
spark.sql("SHOW databases").show()
spark.sql("use default")
spark.sql("show tables").show()
spark.sql('create table testcml (abc integer)').show()
spark.sql("insert into table testcml select t.* from (select 1) t").show()
spark.sql("select * from testcml").show()
spark.sql("drop table testcml").show()

# Stop Spark Session
spark.stop()&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="ng-star-inserted"&gt;Listing the databases and the tables of a DB, as well as creating the "testcml" tables works fine. But the insert into testcml failes due to&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;Caused by: java.lang.IllegalStateException: Authentication with IDBroker failed.  Please ensure you have a Kerberos token by using kinit.
	at org.apache.knox.gateway.cloud.idbroker.s3a.IDBDelegationTokenBinding.getNewKnoxDelegationTokenSession(IDBDelegationTokenBinding.java:461)
	at org.apache.knox.gateway.cloud.idbroker.s3a.IDBDelegationTokenBinding.requestNewKnoxToken(IDBDelegationTokenBinding.java:406)
	at org.apache.knox.gateway.cloud.idbroker.s3a.IDBDelegationTokenBinding.getNewKnoxToken(IDBDelegationTokenBinding.java:484)
	at org.apache.knox.gateway.cloud.idbroker.s3a.IDBDelegationTokenBinding.maybeRenewAccessToken(IDBDelegationTokenBinding.java:476)
	at org.apache.knox.gateway.cloud.idbroker.s3a.IDBDelegationTokenBinding.deployUnbonded(IDBDelegationTokenBinding.java:335)
	at org.apache.hadoop.fs.s3a.auth.delegation.S3ADelegationTokens.deployUnbonded(S3ADelegationTokens.java:245)
	at org.apache.hadoop.fs.s3a.auth.delegation.S3ADelegationTokens.bindToAnyDelegationToken(S3ADelegationTokens.java:278)
	at org.apache.hadoop.fs.s3a.auth.delegation.S3ADelegationTokens.serviceStart(S3ADelegationTokens.java:199)
	at org.apache.hadoop.service.AbstractService.start(AbstractService.java:194)
	at org.apache.hadoop.fs.s3a.S3AFileSystem.bindAWSClient(S3AFileSystem.java:608)
	at org.apache.hadoop.fs.s3a.S3AFileSystem.initialize(S3AFileSystem.java:388)
	at org.apache.hadoop.fs.FileSystem.createFileSystem(FileSystem.java:3396)
	at org.apache.hadoop.fs.FileSystem.access$200(FileSystem.java:158)
	at org.apache.hadoop.fs.FileSystem$Cache.getInternal(FileSystem.java:3456)
	at org.apache.hadoop.fs.FileSystem$Cache.get(FileSystem.java:3424)
	at org.apache.hadoop.fs.FileSystem.get(FileSystem.java:518)
	at org.apache.hadoop.fs.s3a.commit.AbstractS3ACommitterFactory.getDestinationFileSystem(AbstractS3ACommitterFactory.java:73)
	at org.apache.hadoop.fs.s3a.commit.AbstractS3ACommitterFactory.createOutputCommitter(AbstractS3ACommitterFactory.java:45)
	at org.apache.hadoop.mapreduce.lib.output.FileOutputFormat.getOutputCommitter(FileOutputFormat.java:338)
	at org.apache.spark.internal.io.HadoopMapReduceCommitProtocol.setupCommitter(HadoopMapReduceCommitProtocol.scala:100)
	at org.apache.spark.sql.execution.datasources.SQLHadoopMapReduceCommitProtocol.setupCommitter(SQLHadoopMapReduceCommitProtocol.scala:40)
	at org.apache.spark.internal.io.HadoopMapReduceCommitProtocol.setupTask(HadoopMapReduceCommitProtocol.scala:217)
	at org.apache.spark.sql.execution.datasources.FileFormatWriter$.org$apache$spark$sql$execution$datasources$FileFormatWriter$$executeTask(FileFormatWriter.scala:229)
	at org.apache.spark.sql.execution.datasources.FileFormatWriter$$anonfun$write$1.apply(FileFormatWriter.scala:170)
	at org.apache.spark.sql.execution.datasources.FileFormatWriter$$anonfun$write$1.apply(FileFormatWriter.scala:169)
	at org.apache.spark.scheduler.ResultTask.runTask(ResultTask.scala:90)
	at org.apache.spark.scheduler.Task.run(Task.scala:123)
	at org.apache.spark.executor.Executor$TaskRunner$$anonfun$10.apply(Executor.scala:408)
	at org.apache.spark.util.Utils$.tryWithSafeFinally(Utils.scala:1289)
	at org.apache.spark.executor.Executor$TaskRunner.run(Executor.scala:414)
	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="ng-star-inserted"&gt;With this my problem is, that I dont know how to pass this token or where to get it. I checked if any DENY rules of Ranger was active, but I did not see any.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="ng-star-inserted"&gt;I appreciat your help and thank you in advance.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;Dominic&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Sep 2020 13:55:57 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/How-to-connect-CML-to-Hive-using-Python/m-p/303308#M221498</guid>
      <dc:creator>DominicCap1</dc:creator>
      <dc:date>2020-09-24T13:55:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to connect CML to Hive using Python</title>
      <link>https://community.cloudera.com/t5/Support-Questions/How-to-connect-CML-to-Hive-using-Python/m-p/303328#M221509</link>
      <description>&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have you checked this article?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.cloudera.com/t5/Community-Articles/How-to-connect-to-CDP-Impala-from-python/ta-p/296405" target="_blank"&gt;https://community.cloudera.com/t5/Community-Articles/How-to-connect-to-CDP-Impala-from-python/ta-p/296405&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Sep 2020 14:03:02 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/How-to-connect-CML-to-Hive-using-Python/m-p/303328#M221509</guid>
      <dc:creator>pvidal</dc:creator>
      <dc:date>2020-09-24T14:03:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to connect CML to Hive using Python</title>
      <link>https://community.cloudera.com/t5/Support-Questions/How-to-connect-CML-to-Hive-using-Python/m-p/303348#M221514</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/59986"&gt;@pvidal&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;thanks for the fast reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes indeed i saw this particular post. my implementation looks very similar - just not impala but hive:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;!pip3 install JayDeBeApi
import jaydebeapi

conn_hive = jaydebeapi.connect('org.apache.hive.jdbc.HiveDriver', 'jdbc:hive2://our_host:443/;ssl=1;transportMode=http;httpPath=dataengineering/cdp-proxy-api/hive;AuthMech=3;', {'UID': "our_usre", 'PWD': "our_password"},jars='/home/cdsw/drivers/hive/HiveJDBC41.jar',)

curs_hive = conn_hive.cursor()&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;env variable CLASSPATH is set to the jar with which the connection via Java or DBeaver works:&lt;/P&gt;&lt;PRE&gt;'CLASSPATH': '/home/cdsw/drivers/HiveJDBC41.jar'&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Still i get the error. Any further ideas?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Sep 2020 16:24:34 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/How-to-connect-CML-to-Hive-using-Python/m-p/303348#M221514</guid>
      <dc:creator>DominicCap1</dc:creator>
      <dc:date>2020-09-24T16:24:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to connect CML to Hive using Python</title>
      <link>https://community.cloudera.com/t5/Support-Questions/How-to-connect-CML-to-Hive-using-Python/m-p/303350#M221516</link>
      <description>&lt;P&gt;Did you actually run the export in a terminal session, as follows?&lt;/P&gt;&lt;P&gt;CLASSPATH=.:/home/cdsw/drivers/HiveJDBC41.jar&lt;/P&gt;&lt;P&gt;export&amp;nbsp;CLASSPATH&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Sep 2020 17:38:25 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/How-to-connect-CML-to-Hive-using-Python/m-p/303350#M221516</guid>
      <dc:creator>pvidal</dc:creator>
      <dc:date>2020-09-24T17:38:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to connect CML to Hive using Python</title>
      <link>https://community.cloudera.com/t5/Support-Questions/How-to-connect-CML-to-Hive-using-Python/m-p/303391#M221530</link>
      <description>&lt;P&gt;Yes I did, but I had to add an "!" in order for the comand to be accepted&lt;/P&gt;&lt;LI-CODE lang="python"&gt;!CLASSPATH=/home/cdsw/drivers/hive/HiveJDBC41.jar

!export CLASSPATH

conn_hive = jaydebeapi.connect('org.apache.hive.jdbc.HiveDriver', 'jdbc:hive2://host:443/;ssl=1;transportMode=http;httpPath=dataengineering/cdp-proxy-api/hive;AuthMech=3;', \
    {'UID': "our_user", 'PWD': "our_pw"}, jars='/home/cdsw/drivers/hive/HiveJDBC41.jar',)

TypeError: Class org.apache.hive.jdbc.HiveDriver is not found

TypeError                                 Traceback (most recent call last)
in engine
----&amp;gt; 1 conn_hive = jaydebeapi.connect('org.apache.hive.jdbc.HiveDriver', 'jdbc:hive2://our_host:443/;ssl=1;transportMode=http;httpPath=dataengineering/cdp-proxy-api/hive;AuthMech=3;', 	{'UID': "our_user", 'PWD': "our_pw"}, jars='/home/cdsw/drivers/hive/HiveJDBC41.jar',)

/home/cdsw/.local/lib/python3.6/site-packages/jaydebeapi/__init__.py in connect(jclassname, url, driver_args, jars, libs)
    410     else:
    411         libs = []
--&amp;gt; 412     jconn = _jdbc_connect(jclassname, url, driver_args, jars, libs)
    413     return Connection(jconn, _converters)
    414 

/home/cdsw/.local/lib/python3.6/site-packages/jaydebeapi/__init__.py in _jdbc_connect_jpype(jclassname, url, driver_args, jars, libs)
    219             return jpype.JArray(jpype.JByte, 1)(data)
    220     # register driver for DriverManager
--&amp;gt; 221     jpype.JClass(jclassname)
    222     if isinstance(driver_args, dict):
    223         Properties = jpype.java.util.Properties

/home/cdsw/.local/lib/python3.6/site-packages/jpype/_jclass.py in __new__(cls, jc, loader, initialize)
     97 
     98         # Pass to class factory to create the type
---&amp;gt; 99         return _jpype._getClass(jc)
    100 
    101 

TypeError: Class org.apache.hive.jdbc.HiveDriver is not found

/home/cdsw/drivers/hive

ll

total 11864
-rwx------ 1 cdsw 12146136 Sep 25 07:07 HiveJDBC41.jar*&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Still the same error&lt;/P&gt;</description>
      <pubDate>Fri, 25 Sep 2020 08:44:48 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/How-to-connect-CML-to-Hive-using-Python/m-p/303391#M221530</guid>
      <dc:creator>DominicCap1</dc:creator>
      <dc:date>2020-09-25T08:44:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to connect CML to Hive using Python</title>
      <link>https://community.cloudera.com/t5/Support-Questions/How-to-connect-CML-to-Hive-using-Python/m-p/303399#M221536</link>
      <description>&lt;P&gt;Do me a favor and try this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- open a terminal session (do not use !)&lt;/P&gt;&lt;P&gt;- run the following commands:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;chmod a+r /home/cdsw/drivers/hive/HiveJDBC41.jar
CLASSPATH=.:/home/cdsw/drivers/hive/HiveJDBC41.jar
export CLASSPATH&lt;/LI-CODE&gt;&lt;P&gt;- close the session and try to run your python code&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Sep 2020 12:54:29 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/How-to-connect-CML-to-Hive-using-Python/m-p/303399#M221536</guid>
      <dc:creator>pvidal</dc:creator>
      <dc:date>2020-09-25T12:54:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to connect CML to Hive using Python</title>
      <link>https://community.cloudera.com/t5/Support-Questions/How-to-connect-CML-to-Hive-using-Python/m-p/303455#M221559</link>
      <description>&lt;P&gt;So I started a new Session within CML, from which I started a terminal session via "&amp;gt;_Terminal Access" and ran the commands you postet.&lt;/P&gt;&lt;P&gt;I verfied if the CLASSPATH was set by running&lt;/P&gt;&lt;LI-CODE lang="python"&gt;echo "$CLASSPATH"&lt;/LI-CODE&gt;&lt;P&gt;, which resulted in the expted output i.e.&lt;/P&gt;&lt;LI-CODE lang="python"&gt;.:/home/cdsw/drivers/hive/HiveJDBC41.jar&lt;/LI-CODE&gt;&lt;P&gt;I then closed the Terminal Session and ran the code within my CML Session.&lt;/P&gt;&lt;P&gt;Howerver the error stayed the same.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 07:24:22 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/How-to-connect-CML-to-Hive-using-Python/m-p/303455#M221559</guid>
      <dc:creator>DominicCap1</dc:creator>
      <dc:date>2020-09-28T07:24:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to connect CML to Hive using Python</title>
      <link>https://community.cloudera.com/t5/Support-Questions/How-to-connect-CML-to-Hive-using-Python/m-p/303464#M221562</link>
      <description>&lt;P&gt;Hello &lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/59986"&gt;@pvidal&lt;/a&gt; !&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So as usually the error was infront of the screen! I didnt actually check the Path within the JAR file which actually is "com.cloudera.hive.jdbc41.HS2Driver" after changing it everything works fine.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry for the confusion and thanks for your support&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 08:56:58 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/How-to-connect-CML-to-Hive-using-Python/m-p/303464#M221562</guid>
      <dc:creator>DominicCap1</dc:creator>
      <dc:date>2020-09-28T08:56:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to connect CML to Hive using Python</title>
      <link>https://community.cloudera.com/t5/Support-Questions/How-to-connect-CML-to-Hive-using-Python/m-p/303485#M221572</link>
      <description>&lt;P&gt;Ha! Good catch!&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 12:14:27 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/How-to-connect-CML-to-Hive-using-Python/m-p/303485#M221572</guid>
      <dc:creator>pvidal</dc:creator>
      <dc:date>2020-09-28T12:14:27Z</dc:date>
    </item>
  </channel>
</rss>

