Skip to content

Remove unused JSON progress logging mode - #3812

Merged
pietern merged 4 commits into
mainfrom
remove-json-mode
Oct 24, 2025
Merged

Remove unused JSON progress logging mode#3812
pietern merged 4 commits into
mainfrom
remove-json-mode

Conversation

@pietern

@pieternpietern commented Oct 24, 2025

Copy link
Copy Markdown
Contributor

Changes

The progress logger now only supports append mode.

Why

JSON mode was added in #276 (March 2023). The intent was to make progress events machine readable but this didn't materialize (we didn't end up using it in the VS Code extension).

This functionality would print events to stderr if the user specified --progress-format json, or set the an equivalent environment variable. Because the flag is hidden, and there are no online references to the functionality, I believe it is safe to remove. If users take a dependency on JSON output, it should be enabled via the existing --output json flag and be written to stdout.

After this change is merged, the remaining functionality can be moved into the core cmdio types, and the "progress logger" can be removed. Once there is a single type for all I/O, we have a better shot at improving it.

Related change: #3811.

Tests

Tests pass.

In-place mode was designed to update job progress in place using ANSI escape codes (e.g., showing 'PENDING' → 'RUNNING' → 'TERMINATED' on the same line). However, acceptance tests show jobs typically output only a single state transition: 'Run URL: <url>' followed by '[TIMESTAMP] "job-name" TERMINATED', suggesting the job completes before multiple states can be observed. The default mode selection logic required log-file to not be stderr AND stderr to be a terminal to enable in-place mode, which is an uncommon configuration. Additionally, only JobProgressEvent supported in-place updates while all other events (URLs, errors, pipeline events) fell back to append mode, making the feature inconsistent. The implementation added complexity with ANSI escape codes, terminal detection, and an IsInplaceSupported() interface method across all event types. Since the feature provided minimal practical value and likely was rarely (if ever) enabled by default, it has been removed in favor of the simpler append mode.
The JSON mode for progress logging was designed to output structured JSON events for machine parsing. However, this mode had several limitations: it prevented interactive prompts (Ask/AskSelect methods would error), required --auto-approve for destroy commands, and added complexity with JSON marshaling in the logger. The feature provided minimal practical value as most CLI usage is interactive, and the default append mode is sufficient for both human and machine consumption. Since the mode added unnecessary complexity without clear benefits, it has been removed in favor of the simpler append-only mode.
@eng-dev-ecosystem-bot

eng-dev-ecosystem-bot commented Oct 24, 2025

Copy link
Copy Markdown
Collaborator

Run: 18779344613

Env❌​FAIL🟨​KNOWN🔄​flaky💚​RECOVERED🙈​SKIP✅​pass🙈​skip
💚​aws linux11319580
💚​aws windows11320579
💚​aws-ucws linux11440475
💚​aws-ucws windows11441474
🔄​azure linux31317579
🔄​azure windows31318578
💚​azure-ucws linux11438474
💚​azure-ucws windows11439473
🔄​gcp linux1311305581
❌​gcp windows2411293577
40 failing tests:
Test Nameaws linuxaws windowsaws-ucws linuxaws-ucws windowsazure linuxazure windowsazure-ucws linuxazure-ucws windowsgcp linuxgcp windows
TestAccept💚​R💚​R💚​R💚​R🔄​f🔄​f💚​R💚​R💚​R🟨​K
TestAccept/bundle/resources/models/basic✅​p✅​p✅​p✅​p✅​p✅​p✅​p✅​p🔄​f✅​p
TestAccept/bundle/resources/models/basic/DATABRICKS_BUNDLE_ENGINE=terraform✅​p✅​p✅​p✅​p✅​p✅​p✅​p✅​p🔄​f✅​p
TestAccept/bundle/run/app-with-job🙈​S🙈​S🙈​S🙈​S🙈​S🙈​S🙈​S🙈​S🙈​S🙈​S
TestAccept/bundle/templates/default-python/combinations/classic✅​p✅​p✅​p✅​p✅​p🔄​f✅​p✅​p✅​p✅​p
TestAccept/bundle/templates/default-python/combinations/classic/DATABRICKS_BUNDLE_ENGINE=direct-exp/DLT=no/NBOOK=no/PY=yes✅​p✅​p✅​p✅​p✅​p✅​p✅​p✅​p🔄​f✅​p
TestAccept/bundle/templates/default-python/combinations/classic/DATABRICKS_BUNDLE_ENGINE=direct-exp/DLT=no/NBOOK=yes/PY=no✅​p✅​p✅​p✅​p✅​p✅​p✅​p✅​p🔄​f✅​p
TestAccept/bundle/templates/default-python/combinations/classic/DATABRICKS_BUNDLE_ENGINE=direct-exp/DLT=no/NBOOK=yes/PY=yes✅​p✅​p✅​p✅​p✅​p✅​p✅​p✅​p🔄​f✅​p
TestAccept/bundle/templates/default-python/combinations/classic/DATABRICKS_BUNDLE_ENGINE=direct-exp/DLT=yes/NBOOK=no/PY=no✅​p✅​p✅​p✅​p✅​p✅​p✅​p✅​p🔄​f✅​p
TestAccept/bundle/templates/default-python/combinations/classic/DATABRICKS_BUNDLE_ENGINE=direct-exp/DLT=yes/NBOOK=yes/PY=no✅​p✅​p✅​p✅​p✅​p✅​p✅​p✅​p🔄​f✅​p
TestAccept/bundle/templates/default-python/combinations/classic/DATABRICKS_BUNDLE_ENGINE=terraform/DLT=yes/NBOOK=no/PY=yes✅​p✅​p✅​p✅​p✅​p🔄​f✅​p✅​p✅​p✅​p
TestAccept/bundle/templates/default-python/combinations/serverless✅​p✅​p✅​p✅​p✅​p✅​p✅​p✅​p✅​p❌​F
TestAccept/bundle/templates/default-python/combinations/serverless/DATABRICKS_BUNDLE_ENGINE=direct-exp/DLT=yes/NBOOK=no/PY=no🙈​s🙈​s✅​p✅​p🙈​s🙈​s✅​p✅​p🙈​s❌​F
TestAccept/bundle/templates/default-python/combinations/serverless/DATABRICKS_BUNDLE_ENGINE=terraform/DLT=no/NBOOK=yes/PY=yes🙈​s🙈​s✅​p✅​p🙈​s🙈​s✅​p✅​p🙈​s❌​F
TestAccept/bundle/templates/default-python/combinations/serverless/DATABRICKS_BUNDLE_ENGINE=terraform/DLT=yes/NBOOK=yes/PY=yes🙈​s🙈​s✅​p✅​p🙈​s🙈​s✅​p✅​p🙈​s❌​F
TestAccept/bundle/templates/default-python/integration_classic✅​p✅​p✅​p✅​p🔄​f✅​p✅​p✅​p🔄​f❌​F
TestAccept/bundle/templates/default-python/integration_classic/DATABRICKS_BUNDLE_ENGINE=direct-exp/UV_PYTHON=3.10✅​p✅​p✅​p✅​p✅​p✅​p✅​p✅​p✅​p❌​F
TestAccept/bundle/templates/default-python/integration_classic/DATABRICKS_BUNDLE_ENGINE=direct-exp/UV_PYTHON=3.9✅​p✅​p✅​p✅​p✅​p✅​p✅​p✅​p🔄​f✅​p
TestAccept/bundle/templates/default-python/integration_classic/DATABRICKS_BUNDLE_ENGINE=terraform/UV_PYTHON=3.10✅​p✅​p✅​p✅​p✅​p✅​p✅​p✅​p✅​p❌​F
TestAccept/bundle/templates/default-python/integration_classic/DATABRICKS_BUNDLE_ENGINE=terraform/UV_PYTHON=3.11✅​p✅​p✅​p✅​p✅​p✅​p✅​p✅​p✅​p❌​F
TestAccept/bundle/templates/default-python/integration_classic/DATABRICKS_BUNDLE_ENGINE=terraform/UV_PYTHON=3.12✅​p✅​p✅​p✅​p✅​p✅​p✅​p✅​p🔄​f❌​F
TestAccept/bundle/templates/default-python/integration_classic/DATABRICKS_BUNDLE_ENGINE=terraform/UV_PYTHON=3.13✅​p✅​p✅​p✅​p✅​p✅​p✅​p✅​p✅​p❌​F
TestAccept/bundle/templates/default-python/integration_classic/DATABRICKS_BUNDLE_ENGINE=terraform/UV_PYTHON=3.9✅​p✅​p✅​p✅​p🔄​f✅​p✅​p✅​p✅​p✅​p
TestFsCpDir✅​p✅​p✅​p✅​p✅​p✅​p✅​p✅​p🔄​f✅​p
TestFsCpDir/dbfs_to_dbfs✅​p✅​p✅​p✅​p✅​p✅​p✅​p✅​p🔄​f✅​p
TestFsCpSourceIsDirectoryButTargetIsFile✅​p✅​p✅​p✅​p✅​p✅​p✅​p✅​p✅​p❌​F
TestFsCpSourceIsDirectoryButTargetIsFile/dbfs_to_dbfs✅​p✅​p✅​p✅​p✅​p✅​p✅​p✅​p✅​p❌​F
TestSyncEnsureRemotePathIsUsableIfRepoExists✅​p✅​p✅​p✅​p✅​p✅​p✅​p✅​p✅​p❌​F
TestImportDirWithOverwriteFlag✅​p✅​p✅​p✅​p✅​p✅​p✅​p✅​p🔄​f✅​p
TestWorkpaceExportPrintsContents✅​p✅​p✅​p✅​p✅​p✅​p✅​p✅​p✅​p❌​F
TestFilerRecursiveDelete✅​p✅​p✅​p✅​p✅​p✅​p✅​p✅​p✅​p❌​F
TestFilerRecursiveDelete/dbfs✅​p✅​p✅​p✅​p✅​p✅​p✅​p✅​p✅​p❌​F
TestFilerRecursiveDelete/workspace_files✅​p✅​p✅​p✅​p✅​p✅​p✅​p✅​p✅​p❌​F
TestFilerWorkspaceFilesExtensionsRead✅​p✅​p✅​p✅​p✅​p✅​p✅​p✅​p✅​p❌​F
TestFilerWorkspaceFilesExtensionsReadDir✅​p✅​p✅​p✅​p✅​p✅​p✅​p✅​p✅​p❌​F
TestFilerWorkspaceNotebook✅​p✅​p✅​p✅​p✅​p✅​p✅​p✅​p✅​p❌​F
TestLock✅​p✅​p✅​p✅​p✅​p✅​p✅​p✅​p✅​p❌​F
TestTagKeyGCP🙈​s🙈​s🙈​s🙈​s🙈​s🙈​s🙈​s🙈​s✅​p❌​F
TestTagKeyGCP/unicode✅​p❌​F
TestTagKeyGCP/valid✅​p❌​F

Base automatically changed from remove-inplace to mainOctober 24, 2025 12:06
@pietern

Copy link
Copy Markdown
ContributorAuthor

Integration test fails with:

The service at /api/2.0/workspace/mkdirs is temporarily unavailable. Please try again later.

@pietern
pietern disabled auto-merge October 24, 2025 13:08
@pietern
pietern merged commit afe399e into mainOct 24, 2025
12 of 13 checks passed
@pietern
pietern deleted the remove-json-mode branch October 24, 2025 13:08
pietern added a commit that referenced this pull request Oct 28, 2025
## Changes
This continues the progress logger simplification by migrating from the
`Logger.Log()` event-based system to direct cmdio calls. This builds on
#3811 and #3812, which made the progress logger effectively only write
strings to stderr.
## Why
This simplifies the codebase by removing the (unused) event abstraction
layer while maintaining functionality. The compatibility layer provides
a clean migration path and will eventually be removed once the
functionality in those functions have a dedicated new home.
## Tests
Tests pass. Analysis of the diff suggests that before/after is
functionally equivalent. A minor note is that we no longer have a mutex
around `.Log()` calls, but there are no concurrent calls to the
function.
pietern added a commit that referenced this pull request Oct 28, 2025
…3820)
## Changes
This change removes remaining references to the "progress logger".
All terminal I/O now goes through a single type in `cmdio`.
Builds on #3811, #3812, and #3818.
deco-sdk-taggingBot added a commit that referenced this pull request Oct 29, 2025
## Release v0.275.0
### Notable Changes
* Python support for Databricks Asset Bundles is now generally available.
### CLI
* Remove `inplace` mode for the `--progress-format` flag ([#3811](#3811))
* Remove `json` mode for the `--progress-format` flag ([#3812](#3812))
* Deprecate the `--progress-format` flag ([#3819](#3819))
### Bundles
* Add support for `--bind` flag in `bundle generate` ([#3782](#3782))
* Add `pydabs` template replacing `experimental-jobs-as-code` template ([#3806](#3806))
* You can now use the top-level `python` section instead of `experimental/python` ([#3540](#3540))
denik pushed a commit that referenced this pull request May 20, 2026
## Changes
The progress logger now only supports `append` mode.
## Why
JSON mode was added in #276 (March 2023). The intent was to make
progress events machine readable but this didn't materialize (we didn't
end up using it in the VS Code extension).
This functionality would print events to stderr if the user specified
`--progress-format json`, or set the an equivalent environment variable.
Because the flag is hidden, and there are no online references to the
functionality, I believe it is safe to remove. If users take a
dependency on JSON output, it should be enabled via the existing
`--output json` flag and be written to stdout.
After this change is merged, the remaining functionality can be moved
into the core `cmdio` types, and the "progress logger" can be removed.
Once there is a single type for all I/O, we have a better shot at
improving it.
Related change: #3811.
## Tests
Tests pass.
denik pushed a commit that referenced this pull request May 20, 2026
## Changes
This continues the progress logger simplification by migrating from the
`Logger.Log()` event-based system to direct cmdio calls. This builds on
#3811 and #3812, which made the progress logger effectively only write
strings to stderr.
## Why
This simplifies the codebase by removing the (unused) event abstraction
layer while maintaining functionality. The compatibility layer provides
a clean migration path and will eventually be removed once the
functionality in those functions have a dedicated new home.
## Tests
Tests pass. Analysis of the diff suggests that before/after is
functionally equivalent. A minor note is that we no longer have a mutex
around `.Log()` calls, but there are no concurrent calls to the
function.
denik pushed a commit that referenced this pull request May 20, 2026
…3820)
## Changes
This change removes remaining references to the "progress logger".
All terminal I/O now goes through a single type in `cmdio`.
Builds on #3811, #3812, and #3818.
denik pushed a commit that referenced this pull request May 20, 2026
## Release v0.275.0
### Notable Changes
* Python support for Databricks Asset Bundles is now generally available.
### CLI
* Remove `inplace` mode for the `--progress-format` flag ([#3811](#3811))
* Remove `json` mode for the `--progress-format` flag ([#3812](#3812))
* Deprecate the `--progress-format` flag ([#3819](#3819))
### Bundles
* Add support for `--bind` flag in `bundle generate` ([#3782](#3782))
* Add `pydabs` template replacing `experimental-jobs-as-code` template ([#3806](#3806))
* You can now use the top-level `python` section instead of `experimental/python` ([#3540](#3540))
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants

@pietern@eng-dev-ecosystem-bot@denik@andrewnester@shreyas-goenka