python - Are 'local[n]' pyspark applications effected by the GIL? -
generally python doesn't work multi threading because of global interpreter lock.
does affect pyspark applications running in multi threaded local mode (local[n])?
parallelization in pyspark achieved daemon.py calling os.fork()
create multiple worker processes, there won't gil issues.
Comments
Post a Comment