We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
it work fine with spark session simple demo
but if I test the hive query in jupyter lab with sparkmonitor extention enabled. the
from pyspark.sql import SparkSession app_name="pyspark-hive-demo" spark = SparkSession.builder.appName(app_name).enableHiveSupport() spark = spark.config('spark.extraListeners', 'sparkmonitor.listener.JupyterSparkMonitorListener') spark = spark.config('spark.driver.extraClassPath', '/usr/local/lib/python3.6/dist-packages/sparkmonitor/listener_2.12.jar') spark = spark.getOrCreate() df=spark.sql("select title,source_id,source_url from db.tb where pt_d='2022-10-18' limit 10") df.show(10)
why just print the result ,has no spark monitor process bar
+----------------------------------------+---------+----------+ | title|source_id|source_url| +----------------------------------------+---------+----------+ | xxxxx xxxx +----------------------------------------+---------+----------+
The text was updated successfully, but these errors were encountered:
No branches or pull requests
it work fine with spark session simple demo
but if I test the hive query in jupyter lab with sparkmonitor extention enabled.
the
why just print the result ,has no spark monitor process bar
+----------------------------------------+---------+----------+
| title|source_id|source_url|
+----------------------------------------+---------+----------+
| xxxxx xxxx
+----------------------------------------+---------+----------+
The text was updated successfully, but these errors were encountered: