Release Date: Aug 2025

Notebook Interpreter Version:
  • Python version 3.9 (The default version is 3.9, but the platform also supports version 3.8.x, 3.11.x, and version 3.12)
  • Spark version 3.5.3 (Support only 3.5.3)
  • Scala version 2.12 (Support only 2.12)

What’s New?

Notebook Workspace and Support full Git UI

The Notebook menu now supports creating multiple workspaces, allowing users to group notes under specific workspaces. Previously, workspaces were not available, and users had to create separate Zeppelin environments to organize their notes instead. In addition, each workspace now supports connections to GitHub, GitLab, and Bitbucket through the platform, enabling Git-related actions such as Push to Git, Sync Action, and Manage Git Branch.

This enhancement helps utilize a single Zeppelin environment’s resources more efficiently, allows users to group related notes through workspaces, and simplifies access control.

Before version 4.6.9, the Workspace feature was not available in the Notebook, and users could only view individual notes directly. After upgrading to version 4.6.9, all existing notes can be migrated to the Shared Workspace by initializing it via the HERA API. (This is required not only for upgrades but also for new installations of version 4.6.9.)

image 20250801 075240

Create/Drop Table by SQL

Users can now create and drop tables using standard SQL commands (CREATE TABLE, DROP TABLE) directly through the BDE UI — including Data Exploration, SQL Editor, and JDBC.
This expands beyond previous support in Notebook only, this capability now supports Spark internal tables, Delta Tables, and View Tables.

For Delta tables, defining a primary key via SQL is not supported, and a dropped Delta table can be recreated under the same name only when its new column names match those of the previously deleted table.
If you use the DROP TABLE command, the system deletes the table metadata but keeps the Parquet data files in the datastore.

For example

CREATE TABLE tc_check_command (
id INT,
first_name STRING,
last_name STRING,
email STRING,
gender STRING,
ip_address STRING,
create_date DATE
);

DROP TABLE tc_check_command;

Requires Edit permission to Create from Data Catalog Permission,
and Delete or Manage permission to Drop a data asset from Table Permission.

Supports Data Retention Job for delta tables type as time-series

The platform now supports retention jobs for Delta Tables with a time-series structure, extending support beyond internal Spark tables. This enhancement improves data lifecycle management and optimizes storage efficiency in delta table source type.

Add “Refresh Table Connection“ action for external table

Added a new action called ‘“Refresh Table Connection” for external tables to ensure that all records from the data source are up to date and ready for use in subsequent processes.

Added “Import Data Dict” action to Data Dictionary with description field extended from 150 to 255 characters

Added a new action called “Import Data Dict” to the Data dictionary feature under the “Data Catalog” menu, this action supports only CSV files and allows the description field to contain up to 255 characters.


Fixed Bug:

My Profile and Data Catalog

  • BDEN-7079 Fixed an issue in the “Data Catalog” menu where users with view asset permission could not access Size Statistics feature.
  • BDEN-7200 Fixed an issue in the “Data Catalog” menu that caused data asset descriptions to be deleted when using the “Sync Data Dictionary” action.
  • BDEN-7348 Fixed an issue in the “Data Catalog” menu where using the table preview failed after creating a table from the SQL Editor or Notebook.
  • BDEN-7398 Fixed an issue in the “Data Catalog” menu where using the “Truncate Table” action failed on tables created using the SQL commands in the Data Catalog.

Import Data

  • BDEN-7174 Fixed an issue in the “Import Data” menu where the data preview showed “No Rows to Show” even when data was available.

Data Processing

  • BDEN-7097 Restricted the “Super_admin” role to perform CRUD operations only on permitted assets.
  • BDEN-7185 Fixed a display issue on the “Notebook” page where the background color of the page size dropdown was incorrect.
  • BDEN-7195 Fixed an issue on the “Notebook” page where clicking outside the “Manage Data Assets” dialog caused it to close unexpectedly.
  • BDEN-7274 Improved the display of the “Primary Key” field to ensure all selected values are fully visible at setting input options or creating new assets display.
  • BDEN-7285 Fixed an issue in the “SQL Editor” menu where the time domain and partition settings could not be configured (buttons unclickable) when using “Save as Aggregate” to upload to an existing table that was created via SQL commands.
  • BDEN-7286 Fixed an issue in the “SQL Editor” menu where using “Save as Aggregate” to upload to an existing table that was created via SQL commands failed.
  • BDEN-7337 Fixed an issue in the “SQL Editor” and “Data Exploration” menus where queries failed when using SQL comments with “” or pressing enter to insert blank lines.
  • BDEN-7359 Fixed an issue in the “Data Exploration” menu where selecting a table from an external table source failed to process.
  • BDEN-7363 Fixed an issue in the “Notebook” page where the “Only my assets” filter did not apply correctly.
  • BDEN-7405 Fixed incorrect text in the “Save as Aggregate Table” settings.

Service Management

  • BDEN-7349 Fixed an issue in the “Service Management” menu where editing a custom service and saving did not apply the changes the first time.

Visualization and Dashboard

  • BDEN-7220 Fixed an issue in the “Visualization Catalog” menu where using SQL mode with a query ending in a semicolon (;) caused the execution to fail.

Setting

  • BDEN-6837 Fixed an issue where schemas could not be created or deleted successfully.
  • BDEN-7190 Fixed a display issue in the “User Management” menu where the dialog text was misaligned during the asset transfer action.
  • BDEN-7275 Fixed an issue in the “License Management” menu where the Billing History was incorrectly displayed by default, and the billing history picklist was sorted incorrectly.
  • BDEN-7340 Fixed a display issue in the “User Management” menu where the expand/collapse icons were incorrectly displayed in the Components tab of the Create Role action.
  • BDEN-7372 Fixed an issue in the “Schema Management” menu where selecting multiple schemas to add asset permissions did not correctly update the “All Asset Privileges” permission section.
  • BDEN-7404 Fixed a display issue on the “User Management” page where content overflowed the layout.

Improvement:

  • BDEN-7184 Refined the feature in the “Workflow Management” menu by changing the default selected version for workflow export from the editor version to the latest deployed version.
  • BDEN-7280 Improved service job scheduling to prevent a new job from starting while a previous job is still in progress.

Share