I have a JSON-lines file that I wish to read into a PySpark data frame. the file is gzipped compressed.
The filename looks like this: file.jl.gz
I know how to read this file into a pandas data frame:
JavaScript
x
2
1
df= pd.read_json('file.jl.gz', lines=True, compression='gzip)
2
I’m new to pyspark, and I’d like to learn the pyspark equivalent of this. Is there a way to read this file into pyspark dataframes?
EDIT 2
JavaScript
1
3
1
%pyspark
2
df=spark.read.option('multiline','true').json("s3n:AccessKey:secretkey@bucketname/ds_dump_00000.jl.gz")
3
I executed the above command & got this error.
JavaScript
1
54
54
1
Fail to execute line 1:
2
Traceback (most recent call last):
3
File "/usr/lib/spark/python/lib/pyspark.zip/pyspark/sql/utils.py", line 63, in deco
4
return f(*a, **kw)
5
File "/usr/lib/spark/python/lib/py4j-0.10.7-src.zip/py4j/protocol.py", line 328, in get_return_value
6
format(target_id, ".", name), value)
7
py4j.protocol.Py4JJavaError: An error occurred while calling o130.json.
8
: java.lang.IllegalArgumentException: java.net.URISyntaxException: Relative path in absolute URI:
9
at org.apache.hadoop.fs.Path.initialize(Path.java:259)
10
at org.apache.hadoop.fs.Path.<init>(Path.java:217)
11
at org.apache.spark.sql.execution.datasources.DataSource$$anonfun$org$apache$spark$sql$execution$datasources$DataSource$$checkAndGlobPathIfNecessary$1.apply(DataSource.scala:560)
12
at org.apache.spark.sql.execution.datasources.DataSource$$anonfun$org$apache$spark$sql$execution$datasources$DataSource$$checkAndGlobPathIfNecessary$1.apply(DataSource.scala:559)
13
at scala.collection.TraversableLike$$anonfun$flatMap$1.apply(TraversableLike.scala:241)
14
at scala.collection.TraversableLike$$anonfun$flatMap$1.apply(TraversableLike.scala:241)
15
at scala.collection.immutable.List.foreach(List.scala:392)
16
at scala.collection.TraversableLike$class.flatMap(TraversableLike.scala:241)
17
at scala.collection.immutable.List.flatMap(List.scala:355)
18
at org.apache.spark.sql.execution.datasources.DataSource.org$apache$spark$sql$execution$datasources$DataSource$$checkAndGlobPathIfNecessary(DataSource.scala:559)
19
at org.apache.spark.sql.execution.datasources.DataSource.resolveRelation(DataSource.scala:373)
20
at org.apache.spark.sql.DataFrameReader.loadV1Source(DataFrameReader.scala:242)
21
at org.apache.spark.sql.DataFrameReader.load(DataFrameReader.scala:230)
22
at org.apache.spark.sql.DataFrameReader.json(DataFrameReader.scala:411)
23
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
24
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
25
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
26
at java.lang.reflect.Method.invoke(Method.java:498)
27
at py4j.reflection.MethodInvoker.invoke(MethodInvoker.java:244)
28
at py4j.reflection.ReflectionEngine.invoke(ReflectionEngine.java:357)
29
at py4j.Gateway.invoke(Gateway.java:282)
30
at py4j.commands.AbstractCommand.invokeMethod(AbstractCommand.java:132)
31
at py4j.commands.CallCommand.execute(CallCommand.java:79)
32
at py4j.GatewayConnection.run(GatewayConnection.java:238)
33
at java.lang.Thread.run(Thread.java:748)
34
Caused by: java.net.URISyntaxException: Relative path in absolute URI:
35
at java.net.URI.checkPath(URI.java:1823)
36
at java.net.URI.<init>(URI.java:745)
37
at org.apache.hadoop.fs.Path.initialize(Path.java:256)
38
24 more
39
40
41
During handling of the above exception, another exception occurred:
42
43
Traceback (most recent call last):
44
File "/tmp/zeppelin_pyspark-8814422034403105951.py", line 380, in <module>
45
exec(code, _zcUserQueryNameSpace)
46
File "<stdin>", line 1, in <module>
47
File "/usr/lib/spark/python/lib/pyspark.zip/pyspark/sql/readwriter.py", line 274, in json
48
return self._df(self._jreader.json(self._spark._sc._jvm.PythonUtils.toSeq(path)))
49
File "/usr/lib/spark/python/lib/py4j-0.10.7-src.zip/py4j/java_gateway.py", line 1257, in __call__
50
answer, self.gateway_client, self.target_id, self.name)
51
File "/usr/lib/spark/python/lib/pyspark.zip/pyspark/sql/utils.py", line 79, in deco
52
raise IllegalArgumentException(s.split(': ', 1)[1], stackTrace)
53
pyspark.sql.utils.IllegalArgumentException: 'java.net.URISyntaxException: Relative path in absolute URI:'
54
Advertisement
Answer
JavaScript
1
10
10
1
#This command just considered all the 90 Million rows to one row
2
3
df = spark.read.option('multiline', 'true').json('file.jl.gz')
4
5
6
#This command below worked fine for me:
7
8
df = spark.read.json('file.jl.gz')
9
10