<?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: hdp-3.0.1 --&amp;gt; hive doesn't honor an s3a endpoints if its not AWS. in Support Questions</title>
    <link>https://community.cloudera.com/t5/Support-Questions/hdp-3-0-1-gt-hive-doesn-t-honor-an-s3a-endpoints-if-its-not/m-p/208388#M170347</link>
    <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/84293/ssulav.html" nodeid="84293"&gt;@Soumitra Sulav&lt;/A&gt; Tried both Methods #1 and #2 today and have attached the logs below. Logs are same for both the methods. Now it seems like its not complaining about AWS but still its failing.  &lt;/P&gt;&lt;P&gt; I verified the JCEKS operation by simply running a -ls command with the user and even what you have suggested above comment and it worked. Just to add the cluster is kerberized. &lt;/P&gt;&lt;P&gt;Logs:&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;0: jdbc:hive2://nile3-vm7.centera.lab.test.com&amp;gt; CREATE DATABASE IF NOT EXISTS datab LOCATION 's3a://s3aTestBucket/db1';
INFO  : Compiling command(queryId=hive_20181009185046_b19ccbf4-1cfd-4148-96cd-e20a6fe45b1f): CREATE DATABASE IF NOT EXISTS datab LOCATION 's3a://s3aTestBucket/db1'
INFO  : Semantic Analysis Completed (retrial = false)
INFO  : Returning Hive schema: Schema(fieldSchemas:null, properties:null)
INFO  : Completed compiling command(queryId=hive_20181009185046_b19ccbf4-1cfd-4148-96cd-e20a6fe45b1f); Time taken: 0.055 seconds
INFO  : Executing command(queryId=hive_20181009185046_b19ccbf4-1cfd-4148-96cd-e20a6fe45b1f): CREATE DATABASE IF NOT EXISTS datab LOCATION 's3a://s3aTestBucket/db1'
INFO  : Starting task [Stage-0:DDL] in serial mode
ERROR : FAILED: Execution Error, return code 1 from org.apache.hadoop.hive.ql.exec.DDLTask. MetaException(message:java.lang.reflect.UndeclaredThrowableException)
INFO  : Completed executing command(queryId=hive_20181009185046_b19ccbf4-1cfd-4148-96cd-e20a6fe45b1f); Time taken: 0.318 seconds
Error: Error while processing statement: FAILED: Execution Error, return code 1 from org.apache.hadoop.hive.ql.exec.DDLTask. MetaException(message:java.lang.reflect.UndeclaredThrowableException) (state=08S01,code=1)
&lt;/PRE&gt;</description>
    <pubDate>Wed, 10 Oct 2018 06:38:08 GMT</pubDate>
    <dc:creator>sahiljankaw</dc:creator>
    <dc:date>2018-10-10T06:38:08Z</dc:date>
    <item>
      <title>hdp-3.0.1 --&gt; hive doesn't honor an s3a endpoints if its not AWS.</title>
      <link>https://community.cloudera.com/t5/Support-Questions/hdp-3-0-1-gt-hive-doesn-t-honor-an-s3a-endpoints-if-its-not/m-p/208384#M170343</link>
      <description>&lt;PRE&gt;Using a non AWS endpoints for S3a and thereby have a basic issue that hive is not honoring the s3a endpoint if its not AWS. While distcp, hadoop fs, Spark, MapReduce jobs are finding my s3a endpoint and got completed/ successful without any issues but HIVE is ignoring it and is expecting for AWS S3 credentials, as seen in the below example.
&lt;BR /&gt;I tried three options and error was same with all the 3 options as shown below:

ERROR : FAILED: Execution Error, return code 1 from org.apache.hadoop.hive.ql.exec.DDLTask. java.net.SocketTimeoutException: doesBucketExist on s3aTestBucket: com.amazonaws.AmazonClientException: No AWS Credentials provided by BasicAWSCredentialsProvider EnvironmentVariableCredentialsProvider InstanceProfileCredentialsProvider : com.amazonaws.SdkClientException: Unable to load credentials from service endpoint 

INFO : Completed executing command(queryId=hive_20181007232623_f38e7fac-5aed-4d4a-b08a-9cbfc950d7a6); Time taken: 116.608 seconds 

Error: Error while processing statement: FAILED: Execution Error, return code 1 from org.apache.hadoop.hive.ql.exec.DDLTask. java.net.SocketTimeoutException: doesBucketExist on s3aTestBucket: com.amazonaws.AmazonClientException: No AWS Credentials provided by BasicAWSCredentialsProvider EnvironmentVariableCredentialsProvider InstanceProfileCredentialsProvider : com.amazonaws.SdkClientException: Unable to load credentials from service endpoint (state=08S01,code=1)
&lt;/PRE&gt;&lt;PRE&gt;Option 1: Ran the create database command as shown above but passing my s3 credentials using JCEKS in the HDFS core-site.xml as
hadoop.security.credential.provider.path=jceks://hdfs@nile3-vm6.centera.lab.emc.com:8020/user/test/s3a.jceks

Running a hive query

0: jdbc:hive2://nile3-vm7.centera.lab.emc.com&amp;gt; CREATE DATABASE IF NOT EXISTS table1 LOCATION 's3a://s3aTestBucket/user/table1'; 

INFO : Compiling command(queryId=hive_20181007232623_f38e7fac-5aed-4d4a-b08a-9cbfc950d7a6): CREATE DATABASE IF NOT EXISTS table1 LOCATION 's3a://s3aTestBucket/user/table1' 

INFO : Semantic Analysis Completed (retrial = false) INFO : Returning Hive schema: Schema(fieldSchemas:null, properties:null) 

INFO : Completed compiling command(queryId=hive_20181007232623_f38e7fac-5aed-4d4a-b08a-9cbfc950d7a6); Time taken: 230.907 seconds 

INFO : Executing command(queryId=hive_20181007232623_f38e7fac-5aed-4d4a-b08a-9cbfc950d7a6): CREATE DATABASE IF NOT EXISTS table1 LOCATION 's3a://s3aTestBucket/user/table1' INFO : Starting task [Stage-0:DDL] in serial mode 

&lt;/PRE&gt;&lt;PRE&gt;Option 2: Passing User:s3-Key in URL while creating a databaseI am even tried the option of using CREATE DATABASE IF NOT EXISTS table1 LOCATION 's3a://s3-user:s3-secret-key@s3aTestBucket/user/table1'; but didn't work&lt;/PRE&gt;&lt;PRE&gt;Option 3: Even added the below propert on hive-site
hive.security.authorization.sqlstd.confwhitelist.append=hive\.mapred\.supports\.subdirectories|fs\.s3a\.access\.key|fs\.s3a\.secret\.key&lt;BR /&gt;&lt;BR /&gt;On hive shell from Ambari ran the following&lt;BR /&gt;set fs.s3a.access.key= s3-access-key;
set fs.s3a.secret.key= s3-secret-key;
CREATE DATABASE IF NOT EXISTS table1 LOCATION 's3a://s3aTestBucket/user/table1';
&lt;/PRE&gt;&lt;P&gt;I saw a similar post from past but not sure if the issue is solved or not&lt;/P&gt;&lt;P&gt;Link&lt;BR /&gt;&lt;A href="https://community.hortonworks.com/questions/71891/hdp-250-hive-doesnt-seem-to-honor-an-s3a-endpoint.html" target="_blank"&gt;https://community.hortonworks.com/questions/71891/hdp-250-hive-doesnt-seem-to-honor-an-s3a-endpoint.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Oct 2018 15:14:57 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/hdp-3-0-1-gt-hive-doesn-t-honor-an-s3a-endpoints-if-its-not/m-p/208384#M170343</guid>
      <dc:creator>sahiljankaw</dc:creator>
      <dc:date>2018-10-08T15:14:57Z</dc:date>
    </item>
    <item>
      <title>Re: hdp-3.0.1 --&gt; hive doesn't honor an s3a endpoints if its not AWS.</title>
      <link>https://community.cloudera.com/t5/Support-Questions/hdp-3-0-1-gt-hive-doesn-t-honor-an-s3a-endpoints-if-its-not/m-p/208385#M170344</link>
      <description>&lt;P&gt;Above issue is observed cause of &lt;A href="https://issues.apache.org/jira/browse/HIVE-20386" target="_blank"&gt;https://issues.apache.org/jira/browse/HIVE-20386&lt;/A&gt;. Refer bug for more details.&lt;/P&gt;&lt;P&gt;As a workaround you can try below methods :&lt;/P&gt;&lt;P&gt;Method 1 : Set below config in core-site.xml&lt;/P&gt;&lt;PRE&gt;fs.s3a.bucket.&amp;lt;bucket_name&amp;gt;.security.credential.provider.path = &amp;lt;jceks_file_path&amp;gt;

#Replace &amp;lt;bucket_name&amp;gt; and &amp;lt;jceks_file_path&amp;gt; accordingly.&lt;/PRE&gt;&lt;P&gt;Method 2 : Set below configs in core-site.xml&lt;/P&gt;&lt;PRE&gt;fs.s3a.bucket.&amp;lt;bucket_name&amp;gt;.access.key = &amp;lt;s3a access key&amp;gt;
fs.s3a.bucket.&amp;lt;bucket_name&amp;gt;.secret.key = &amp;lt;s3a secret key&amp;gt;

#Replace &amp;lt;bucket_name&amp;gt; accordingly.
&lt;/PRE&gt;&lt;P&gt;Let us know if the resolution works.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Oct 2018 15:36:56 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/hdp-3-0-1-gt-hive-doesn-t-honor-an-s3a-endpoints-if-its-not/m-p/208385#M170344</guid>
      <dc:creator>ssulav</dc:creator>
      <dc:date>2018-10-08T15:36:56Z</dc:date>
    </item>
    <item>
      <title>Re: hdp-3.0.1 --&gt; hive doesn't honor an s3a endpoints if its not AWS.</title>
      <link>https://community.cloudera.com/t5/Support-Questions/hdp-3-0-1-gt-hive-doesn-t-honor-an-s3a-endpoints-if-its-not/m-p/208386#M170345</link>
      <description>&lt;P&gt;&lt;A href="https://community.hortonworks.com/users/84293/ssulav.html"&gt;@Soumitra Sulav&lt;/A&gt; I tried Method1: i.e added &lt;BR /&gt;fs.s3a.bucket.s3aTestBucket.security.credential.provider.path=jceks:&lt;A href="mailto://hdfs@nile3-vm6.centra.lab.test.com"&gt;//hdfs@nile3-vm6.centra.lab.test.com&lt;/A&gt;:8020/user/test/s3a.jceks&lt;BR /&gt;restarted HDFS on Ambari but seems like it didn't work. Any suggestion? Please find the logs below.&lt;BR /&gt;&lt;BR /&gt;Didn't try Method2 as it can expose my credentials on Ambari UI&lt;BR /&gt;Logs:&lt;/P&gt;&lt;P&gt;0: jdbc:hive2://&lt;A href="http://nile3-vm7.centra.lab.test.com/"&gt;nile3-vm7.centra.lab.test.com&lt;/A&gt;&amp;gt; CREATE DATABASE IF NOT EXISTS table3 LOCATION 's3a://s3aTestBucket/user/table3';&lt;/P&gt;&lt;P&gt;INFO : Compiling command(queryId=hive_20181008105923_0324b26a-64b7-4c8f-91e3-635c62442173): CREATE DATABASE IF NOT EXISTS table3 LOCATION 's3a://s3aTestBucket/user/table3'&lt;/P&gt;&lt;P&gt;INFO : Semantic Analysis Completed (retrial = false)&lt;/P&gt;&lt;P&gt;INFO : Returning Hive schema: Schema(fieldSchemas:null, properties:null)&lt;/P&gt;&lt;P&gt;INFO : Completed compiling command(queryId=hive_20181008105923_0324b26a-64b7-4c8f-91e3-635c62442173); Time taken: 230.585 seconds&lt;/P&gt;&lt;P&gt;INFO : Executing command(queryId=hive_20181008105923_0324b26a-64b7-4c8f-91e3-635c62442173): CREATE DATABASE IF NOT EXISTS table3 LOCATION 's3a://s3aTestBucket/user/table3'&lt;/P&gt;&lt;P&gt;INFO : Starting task [Stage-0:DDL] in serial mode ERROR : FAILED: Execution Error, return code 1 from org.apache.hadoop.hive.ql.exec.DDLTask. java.net.SocketTimeoutException: doesBucketExist on s3aTestBucket: com.amazonaws.AmazonClientException: No AWS Credentials provided by BasicAWSCredentialsProvider EnvironmentVariableCredentialsProvider InstanceProfileCredentialsProvider : com.amazonaws.SdkClientException: Unable to load credentials from service endpoint INFO : Completed executing command(queryId=hive_20181008105923_0324b26a-64b7-4c8f-91e3-635c62442173); Time taken: 115.487 seconds&lt;/P&gt;&lt;P&gt;Error: Error while processing statement: FAILED: Execution Error, return code 1 from org.apache.hadoop.hive.ql.exec.DDLTask. java.net.SocketTimeoutException: doesBucketExist on s3aTestBucket: com.amazonaws.AmazonClientException: No AWS Credentials provided by BasicAWSCredentialsProvider EnvironmentVariableCredentialsProvider InstanceProfileCredentialsProvider : com.amazonaws.SdkClientException: Unable to load credentials from service endpoint (state=08S01,code=1)&lt;/P&gt;</description>
      <pubDate>Mon, 08 Oct 2018 22:38:31 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/hdp-3-0-1-gt-hive-doesn-t-honor-an-s3a-endpoints-if-its-not/m-p/208386#M170345</guid>
      <dc:creator>sahiljankaw</dc:creator>
      <dc:date>2018-10-08T22:38:31Z</dc:date>
    </item>
    <item>
      <title>Re: hdp-3.0.1 --&gt; hive doesn't honor an s3a endpoints if its not AWS.</title>
      <link>https://community.cloudera.com/t5/Support-Questions/hdp-3-0-1-gt-hive-doesn-t-honor-an-s3a-endpoints-if-its-not/m-p/208387#M170346</link>
      <description>&lt;P&gt;I believe you are following proper commands to create the jceks file :&lt;/P&gt;&lt;PRE&gt;hadoop credential create fs.s3a.access.key -value &amp;lt;ACCESS_KEY&amp;gt; -provider jceks://hdfs@&amp;lt;namenode&amp;gt;/tmp/s3a.jceks
hadoop credential create fs.s3a.secret.key -value &amp;lt;SECRET_KEY&amp;gt; -provider jceks://hdfs@&amp;lt;namenode&amp;gt;/tmp/s3a.jceks
#Verify by running below command
hadoop credential list -provider jceks://hdfs@&amp;lt;namenode&amp;gt;/tmp/s3a.jceks&lt;/PRE&gt;&lt;P&gt;Make sure the hive user can access the jceks file. [Check permissions and owners]&lt;/P&gt;&lt;P&gt;And then you are adding the mentioned configuration in Ambari UI &amp;gt; HDFS &amp;gt; Configs &amp;gt; Custom core-site&lt;/P&gt;&lt;P&gt;I was able to run hive jobs with same scenarios as yours [underlying storage was not AWS]&lt;/P&gt;&lt;P&gt;If still it doesn't work can you try once the &lt;STRONG&gt;Method 2&lt;/STRONG&gt;. Just to make sure there isn't any other issue.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Oct 2018 14:26:29 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/hdp-3-0-1-gt-hive-doesn-t-honor-an-s3a-endpoints-if-its-not/m-p/208387#M170346</guid>
      <dc:creator>ssulav</dc:creator>
      <dc:date>2018-10-09T14:26:29Z</dc:date>
    </item>
    <item>
      <title>Re: hdp-3.0.1 --&gt; hive doesn't honor an s3a endpoints if its not AWS.</title>
      <link>https://community.cloudera.com/t5/Support-Questions/hdp-3-0-1-gt-hive-doesn-t-honor-an-s3a-endpoints-if-its-not/m-p/208388#M170347</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/84293/ssulav.html" nodeid="84293"&gt;@Soumitra Sulav&lt;/A&gt; Tried both Methods #1 and #2 today and have attached the logs below. Logs are same for both the methods. Now it seems like its not complaining about AWS but still its failing.  &lt;/P&gt;&lt;P&gt; I verified the JCEKS operation by simply running a -ls command with the user and even what you have suggested above comment and it worked. Just to add the cluster is kerberized. &lt;/P&gt;&lt;P&gt;Logs:&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;0: jdbc:hive2://nile3-vm7.centera.lab.test.com&amp;gt; CREATE DATABASE IF NOT EXISTS datab LOCATION 's3a://s3aTestBucket/db1';
INFO  : Compiling command(queryId=hive_20181009185046_b19ccbf4-1cfd-4148-96cd-e20a6fe45b1f): CREATE DATABASE IF NOT EXISTS datab LOCATION 's3a://s3aTestBucket/db1'
INFO  : Semantic Analysis Completed (retrial = false)
INFO  : Returning Hive schema: Schema(fieldSchemas:null, properties:null)
INFO  : Completed compiling command(queryId=hive_20181009185046_b19ccbf4-1cfd-4148-96cd-e20a6fe45b1f); Time taken: 0.055 seconds
INFO  : Executing command(queryId=hive_20181009185046_b19ccbf4-1cfd-4148-96cd-e20a6fe45b1f): CREATE DATABASE IF NOT EXISTS datab LOCATION 's3a://s3aTestBucket/db1'
INFO  : Starting task [Stage-0:DDL] in serial mode
ERROR : FAILED: Execution Error, return code 1 from org.apache.hadoop.hive.ql.exec.DDLTask. MetaException(message:java.lang.reflect.UndeclaredThrowableException)
INFO  : Completed executing command(queryId=hive_20181009185046_b19ccbf4-1cfd-4148-96cd-e20a6fe45b1f); Time taken: 0.318 seconds
Error: Error while processing statement: FAILED: Execution Error, return code 1 from org.apache.hadoop.hive.ql.exec.DDLTask. MetaException(message:java.lang.reflect.UndeclaredThrowableException) (state=08S01,code=1)
&lt;/PRE&gt;</description>
      <pubDate>Wed, 10 Oct 2018 06:38:08 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/hdp-3-0-1-gt-hive-doesn-t-honor-an-s3a-endpoints-if-its-not/m-p/208388#M170347</guid>
      <dc:creator>sahiljankaw</dc:creator>
      <dc:date>2018-10-10T06:38:08Z</dc:date>
    </item>
    <item>
      <title>Re: hdp-3.0.1 --&gt; hive doesn't honor an s3a endpoints if its not AWS.</title>
      <link>https://community.cloudera.com/t5/Support-Questions/hdp-3-0-1-gt-hive-doesn-t-honor-an-s3a-endpoints-if-its-not/m-p/208389#M170348</link>
      <description>&lt;P&gt;Can you please provide the complete stacktrace.&lt;/P&gt;&lt;P&gt;If you aren't sure where to find the logs refer &lt;A href="https://community.hortonworks.com/questions/49759/viewing-logs-for-hive-query-executions.html" target="_blank"&gt;link&lt;/A&gt;&lt;/P&gt;&lt;P&gt;The exception encountered by you has been reported in a secure cluster as yours.&lt;/P&gt;&lt;P&gt;Refer the solution provided - &lt;A href="https://community.hortonworks.com/content/supportkb/151796/error-orgapachehadoopsecurityauthenticationclienta.html" target="_blank"&gt;https://community.hortonworks.com/content/supportkb/151796/error-orgapachehadoopsecurityauthenticationclienta.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Oct 2018 14:18:17 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/hdp-3-0-1-gt-hive-doesn-t-honor-an-s3a-endpoints-if-its-not/m-p/208389#M170348</guid>
      <dc:creator>ssulav</dc:creator>
      <dc:date>2018-10-11T14:18:17Z</dc:date>
    </item>
    <item>
      <title>Re: hdp-3.0.1 --&gt; hive doesn't honor an s3a endpoints if its not AWS.</title>
      <link>https://community.cloudera.com/t5/Support-Questions/hdp-3-0-1-gt-hive-doesn-t-honor-an-s3a-endpoints-if-its-not/m-p/208390#M170349</link>
      <description>&lt;A rel="user" href="https://community.cloudera.com/users/84293/ssulav.html" nodeid="84293"&gt;@Soumitra Sulav&lt;/A&gt;&lt;P&gt;While getting logs from YARN resource manager on Web UI at 8088 port in a kerberized cluster, its failing with the authentication error (HTTP Error Code 401, Unauthorized access). I am using chrome and not sure how do I make my web UI to validate the kerberos ticket.  Any suggestions. &lt;/P&gt;</description>
      <pubDate>Tue, 23 Oct 2018 03:57:55 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/hdp-3-0-1-gt-hive-doesn-t-honor-an-s3a-endpoints-if-its-not/m-p/208390#M170349</guid>
      <dc:creator>sahiljankaw</dc:creator>
      <dc:date>2018-10-23T03:57:55Z</dc:date>
    </item>
    <item>
      <title>Re: hdp-3.0.1 --&gt; hive doesn't honor an s3a endpoints if its not AWS.</title>
      <link>https://community.cloudera.com/t5/Support-Questions/hdp-3-0-1-gt-hive-doesn-t-honor-an-s3a-endpoints-if-its-not/m-p/208391#M170350</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/45387/sahiljankaw.html" nodeid="45387"&gt;@Sahil Kaw&lt;/A&gt; You can follow these steps to get logs from UI :&lt;/P&gt;&lt;P&gt;&lt;A href="https://docs.hortonworks.com/HDPDocuments/HDP2/HDP-2.6.5/bk_security/content/enabling_browser_access_spnego_web_ui.html" target="_blank"&gt;https://docs.hortonworks.com/HDPDocuments/HDP2/HDP-2.6.5/bk_security/content/enabling_browser_access_spnego_web_ui.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;OR easier way is to get it from the node/servers.&lt;/P&gt;&lt;P&gt;Just goto /var/log/hadoop-yarn/yarn/yarn*resourcemanager*log &lt;/P&gt;&lt;P&gt;Above file will be log rotated. You can find the relevant file which contains the error stack trace.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Oct 2018 14:42:38 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/hdp-3-0-1-gt-hive-doesn-t-honor-an-s3a-endpoints-if-its-not/m-p/208391#M170350</guid>
      <dc:creator>ssulav</dc:creator>
      <dc:date>2018-10-23T14:42:38Z</dc:date>
    </item>
    <item>
      <title>Re: hdp-3.0.1 --&gt; hive doesn't honor an s3a endpoints if its not AWS.</title>
      <link>https://community.cloudera.com/t5/Support-Questions/hdp-3-0-1-gt-hive-doesn-t-honor-an-s3a-endpoints-if-its-not/m-p/208392#M170351</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/84293/ssulav.html" nodeid="84293"&gt;@Soumitra Sulav&lt;/A&gt; Today I redeployed my HDP cluster and it seems to be working with both the methods that you have shared above. I am not sure why it wasn't working with previous set up and seems like as an intermittent issue. I would keep you posted incase I find it again. Thanks for all your help in this.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Oct 2018 02:50:26 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/hdp-3-0-1-gt-hive-doesn-t-honor-an-s3a-endpoints-if-its-not/m-p/208392#M170351</guid>
      <dc:creator>sahiljankaw</dc:creator>
      <dc:date>2018-10-24T02:50:26Z</dc:date>
    </item>
    <item>
      <title>Re: hdp-3.0.1 --&gt; hive doesn't honor an s3a endpoints if its not AWS.</title>
      <link>https://community.cloudera.com/t5/Support-Questions/hdp-3-0-1-gt-hive-doesn-t-honor-an-s3a-endpoints-if-its-not/m-p/208393#M170352</link>
      <description>&lt;P&gt;Good to know. If the answer helped you, please upvote so that it can help others.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Oct 2018 15:49:20 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/hdp-3-0-1-gt-hive-doesn-t-honor-an-s3a-endpoints-if-its-not/m-p/208393#M170352</guid>
      <dc:creator>ssulav</dc:creator>
      <dc:date>2018-10-25T15:49:20Z</dc:date>
    </item>
  </channel>
</rss>

