Files
azuredatastudio/extensions/notebook/resources/jupyter_config/sparkmagic_config.json
Kevin Cunnane 2558d6bff6 Fix #8162 Spark timeout in BDC cluster is higher than client-side, causing successful sessions to show as failed (#8164)
* Fix #8162 Spark timeout in BDC cluster is higher than client-side, causing successful sessions to show as failed
2019-10-31 17:00:36 -07:00

42 lines
735 B
JSON

{
"kernel_python_credentials": {
"url": "",
"auth": "None"
},
"kernel_scala_credentials": {
"url": "",
"auth": "None"
},
"kernel_r_credentials": {
"url": "",
"auth": "None"
},
"ignore_ssl_errors": true,
"livy_session_startup_timeout_seconds": 100,
"logging_config": {
"version": 1,
"formatters": {
"magicsFormatter": {
"format": "%(asctime)s\t%(levelname)s\t%(message)s",
"datefmt": ""
}
},
"handlers": {
"magicsHandler": {
"class": "hdijupyterutils.filehandler.MagicsFileHandler",
"formatter": "magicsFormatter",
"home_path": ""
}
},
"loggers": {
"magicsLogger": {
"handlers": [
"magicsHandler"
],
"level": "DEBUG",
"propagate": 0
}
}
}
}