When i am trying replace legacy hdfs connector
from pyarrow import hdfs
fs = hdfs.connect()
,which works great with new fs connector
from pyarrow import fs
client = fs.HadoopFileSystem(host="default")
i am getting crash of python kernel. What am i doing wrong?