- CDPD-95086: Data Explorer UI fails to load
due to a connection timeout error
- 7.3.2, 7.3.1.706
- In a Cloudera Data Hub high availability (HA)
environment, the Data Explorer UI can fail to load after the
master0 HDFS node is deleted. Data Explorer
continues to attempt connections to the deleted node because Data Explorer does not support HDFS HA. As a result, the Data Explorer file browser points to an invalid HDFS endpoint, which
causes connection timeouts and renders the UI inaccessible.
- You can restore access to the Data Explorer UI by updating the configured HttpFS node to an active
HDFS node in Cloudera Manager and then restarting the Data Explorer service.
- CDPD-92946: Data Explorer debug logging
cannot be disabled
- 7.3.2, 7.3.1.600, 7.3.1.706
- Data Explorer debug logging is always
enabled and cannot be turned off.
- None.
- CDPD-88964: Data Explorer logs missing in
Data Explorer UI
- 7.3.2, 7.3.1.500 through 7.3.1.706
- The Data Explorer UI might display only a
few lines of logs instead of the complete Data Explorer logs. This
can occur due to leftover Gunicorn processes that interfere with the proper logging and
display of logs within the Data Explorer interface.
-
- Stop the Data Explorer service.
- Terminate any remaining Gunicorn processes to clear hung or orphan
processes that might be causing the issue. Run the following command (use sudo if
not running as
root):
# pids=$(ps -efwww | grep rungunicornserver | grep -v "grep" | grep "rungunicornserver"| awk '{ print $2 }') && for i in $pids; do kill -9 $i ; done
- Restart the Data Explorer service.
- CDPD-90510: Defunct Data Explorer Gunicorn
worker processes accumulate
- 7.3.2, 7.3.1.500 through 7.3.1.706
- Data Explorer on Ubuntu 22 using Oracle
Database can accumulate defunct
rungunicornserver worker processes due
to incomplete process termination and stale database connections. This can lead to a
cluttered process table, which does not critically impact service functionality.
- Periodically clean defunct worker processes by running the
following
command:
pgrep -f 'hue rungunicornserver' | xargs -r kill -9
- CDPD-58978: Batch query execution using Data Explorer fails with Kerberos error
- 7.3.2, 7.3.1 and its SPs and CHFs, 7.2.18 and its SPs,
7.2.17 and its SPs
- When you run Impala queries in a batch mode, you encounter
failures with a Kerberos error even if the keytab is configured correctly. This is
because submitting Impala, Sqoop, Pig, or pyspark queries in a batch mode launches a
shell script Oozie job from Data Explorer and this is not
supported on a secure cluster.
- None. Submit the queries individually.
- CDPD-54376: Clicking the home button on the File Browser page
redirects to HDFS user directory
- 7.3.2, 7.3.1 and its SPs and CHFs, 7.2.18 and its SPs,
7.2.17 and its SPs
- When you are previewing a file on any supported filesystem, such
as S3 or ABFS, and you click the Home button, you are redirected
to the HDFS user home directory instead of the user home directory on the specific
filesystem.
- None.
- CDPD-43293: Unable to import Impala table using Importer
- 7.3.2, 7.3.1 and its SPs and CHFs, 7.2.18 and its SPs,
7.2.17 and its SPs, 7.2.16 and its SPs
- Creating Impala tables using the Data Explorer Importer might fail.
-
- CDPD-64541, CDPD-63617: Creating managed tables
using Data Explorer Importer fails on RAZ-enabled GCP
environments
- 7.3.2, 7.3.1 and its SPs and CHFs, 7.2.18 and its SPs
- On Google Cloud Platform (GCP) environments, creating managed
tables using either Hive or Impala dialects fails. This process results in the creation
of orphaned temporary (tmp) tables. The failure occurs because Hive and Impala cannot
load data from the
inpath in Google Storage when requested outside of
the Hue interface.
- None.
- CDPD-56888: Renaming a folder with special characters results in
a duplicate folder with a new name on AWS S3.
- 7.3.2, 7.3.1 and its SPs and CHFs, 7.2.18 and its SPs,
7.2.17 and its SPs
- On AWS S3, if you try to rename a folder with special characters
in its name, a new folder is created as a copy of the original folder with its contents.
Also, you might not be able to delete the folder containing special characters.
- .
- SSH into your Cloudera environment host.
- Rename or delete a directory having special characters.
- To delete a directory within your S3 bucket, run the following
command:
hdfs dfs -rm -r [***COMPLETE-PATH-TO-S3-BUCKET***]/[***DIRECTORY-NAME***]
- To rename a folder, create a new directory and run the following command to
move files from the source directory to the target
directory:
hdfs dfs -mkdir [***DIRECTORY-NAME***]
hdfs dfs -mv [***COMPLETE-PATH-TO-S3-BUCKET***]/[***SOURCE-DIRECTORY***] [***COMPLETE-PATH-TO-S3-BUCKET***]/[***TARGET-DIRECTORY***]
- CDPD-48146: Error while browsing S3 buckets or ADLS containers
from the left-assist panel
- 7.3.2, 7.3.1 and its SPs and CHFs, 7.2.18 and its SPs,
7.2.17 and its SPs
- When you might attempt to access the S3 buckets or ADLS
containers from the left-assist panel in Data Explorer, a
Failed to retrieve buckets: :1:0: syntax error message is
displayed.
- Access the S3 buckets or ADLS containers using the File
Browser.
- CDPD-42619: Unable to import a large CSV file
from the local workstation
- 7.3.2, 7.3.1 and its SPs and CHFs, 7.2.18 and its SPs,
7.2.17 and its SPs
- When you import a CSV file into Data Explorer from your workstation, an error might be displayed
stating that you cannot import files of size more than 200 KB.
- Upload the CSV file to an S3 bucket or ABFS container
first, then import it into Data Explorer using the Importer.