Remove all Big Data Cluster features (#21369)

This commit is contained in:
Cory Rivera
2022-12-07 12:28:17 -08:00
committed by GitHub
parent bb1f5bfffe
commit e2327c393a
213 changed files with 346 additions and 46800 deletions

View File

@@ -88,22 +88,6 @@ export const requiredPowershellPkg: PythonPkgDetails = {
version: '0.1.4'
};
export const requiredSparkPackages: PythonPkgDetails[] = [
requiredJupyterPkg,
{
name: 'cryptography',
version: '3.2.1',
installExactVersion: true
},
{
name: 'sparkmagic',
version: '0.12.9'
}, {
name: 'pandas',
version: '0.24.2'
}
];
export class JupyterServerInstallation implements IJupyterServerInstallation {
public extensionPath: string;
public pythonBinPath: string;
@@ -162,11 +146,8 @@ export class JupyterServerInstallation implements IJupyterServerInstallation {
this._requiredKernelPackages.set(constants.ipykernelDisplayName, [requiredJupyterPkg]);
this._requiredKernelPackages.set(constants.python3DisplayName, [requiredJupyterPkg]);
this._requiredKernelPackages.set(constants.powershellDisplayName, [requiredJupyterPkg, requiredPowershellPkg]);
this._requiredKernelPackages.set(constants.pysparkDisplayName, requiredSparkPackages);
this._requiredKernelPackages.set(constants.sparkScalaDisplayName, requiredSparkPackages);
this._requiredKernelPackages.set(constants.sparkRDisplayName, requiredSparkPackages);
let allPackages = requiredSparkPackages.concat(requiredPowershellPkg);
let allPackages = [requiredJupyterPkg, requiredPowershellPkg];
this._requiredKernelPackages.set(constants.allKernelsName, allPackages);
this._requiredPackagesSet = new Set<string>();