You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/python-programming-guide.md
+73Lines changed: 73 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -145,6 +145,79 @@ conf = (SparkConf()
145
145
sc = SparkContext(conf = conf)
146
146
{% endhighlight %}
147
147
148
+
# SequenceFile and Hadoop InputFormats
149
+
150
+
In addition to reading text files, PySpark supports reading Hadoop SequenceFile and arbitrary InputFormats.
151
+
152
+
## Writable Support
153
+
154
+
PySpark SequenceFile support loads an RDD within Java, and pickles the resulting Java objects using
155
+
[Pyrolite](https://github.com/irmen/Pyrolite/). The following Writables are automatically converted:
0 commit comments