admin管理员组

文章数量:1123881

I have started to use PySpark.

This is my code:

from pyspark.sql import SparkSession
spark=SparkSession.builder.appName('Test').getOrCreate()
df = spark.read.option('header', 'true').csv('jaffle-data\\raw_customers.csv')

Every time I run the program using:

pipenv run python test.py

It prints all this info:

How to disable it, so it will not print it.

本文标签: pythonDisable PySpark to print info when runningStack Overflow