docs: fix Supported Sources — Analyzer does not support Scala - #2651
Open
shdzhang wants to merge 1 commit into
Open
docs: fix Supported Sources — Analyzer does not support Scala#2651shdzhang wants to merge 1 commit into
shdzhang wants to merge 1 commit into
Conversation
The Supported Sources table marked `scala` under Assessment - Analyzer,
but the Analyzer (bladespector) has no Scala source technology. Scala is
supported only by the Switch LLM transpiler (Scala -> Databricks Python
notebook), as documented in faq.mdx ("Scala (via Switch)") and
transpile/pluggable_transpilers/switch/index.mdx. This clears the
erroneous Analyzer check on the scala row; the Converter check is correct
and left unchanged.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What & why
The Supported sources table on the Overview page marks
scalaas supported under Assessment · Analyzer. The Analyzer does not support Scala — its engine (bladespector) has no Scala source technology, soanalyze --source-techoffers no Scala option.Scala is supported only by the Switch LLM transpiler (Scala → Databricks Python notebook). This is already stated elsewhere in the docs:
faq.mdx: "Other: Airflow, Python, Scala (via Switch)"transpile/pluggable_transpilers/switch/index.mdx: "scala| Scala Code → Databricks Python Notebook"So the
Convertercheck on thescalarow is correct; only theAssessment · Analyzercheck is wrong.Change
Clear the erroneous Assessment · Analyzer check on the
scalarow of the Supported sources table. TheConvertercheck is left unchanged.<td>scala</td> <td></td> - <td>✅</td> <!-- Assessment - Analyzer --> + <td></td> <td>✅</td> <!-- Converter (Switch) — unchanged --> <td></td>Note
The
pythonrow appears to have the same issue (marked under Assessment · Analyzer, but Analyzer has no bare-pythondialect — onlyPySpark/Jupyter Notebook). Left out of this PR to keep it focused; happy to include it if maintainers prefer.