-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
mkdocs.yml
214 lines (207 loc) · 6.13 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
site_name: The Internals of PySpark
site_url: https://books.japila.pl/pyspark-internals/
site_author: Jacek Laskowski
site_description: Demystifying inner-workings of PySpark
repo_name: pyspark-internals
repo_url: https://github.com/japila-books/pyspark-internals
edit_uri: edit/main/docs/
copyright: Copyright © 2023-2024 Jacek Laskowski
theme:
name: material
language: en
icon:
logo: material/book-open-page-variant
repo: fontawesome/brands/github
tag:
python: fontawesome/brands/python
scala: simple/scala
features:
# https://squidfunk.github.io/mkdocs-material/reference/code-blocks/#adding-annotations
- content.code.annotate
# https://squidfunk.github.io/mkdocs-material/upgrade/#contentcodecopy
- content.code.copy
- content.tooltips
- navigation.indexes
- navigation.instant
# https://squidfunk.github.io/mkdocs-material/setup/setting-up-navigation/#navigation-path
- navigation.path
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- navigation.tracking
- search.highlight
- search.share
- search.suggest
palette:
- scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- scheme: slate
primary: blue
accent: blue
toggle:
icon: material/toggle-switch
name: Switch to light mode
markdown_extensions:
- admonition
- attr_list
- footnotes
- md_in_html
- toc:
permalink: true
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tilde
plugins:
- search
- minify:
minify_html: true
- awesome-pages
- macros
# https://squidfunk.github.io/mkdocs-material/reference/#built-in-meta-plugin
- meta
# https://squidfunk.github.io/mkdocs-material/setup/setting-up-tags/
- tags:
# enabled: !ENV [CI, false]
tags_file: tags.md
tags_extra_files:
python-api.md:
- python
scala-api.md:
- scala
# https://squidfunk.github.io/mkdocs-material/reference/#built-in-typeset-plugin
- typeset
extra:
arrow:
docs: https://arrow.apache.org/docs
home: https://arrow.apache.org/
book:
title: PySpark
spark_core: https://books.japila.pl/apache-spark-internals
spark_sql: https://books.japila.pl/spark-sql-internals
spark_k8s: https://jaceklaskowski.github.io/spark-kubernetes-book
java:
api: https://docs.oracle.com/en/java/javase/17/docs/api/java.base
pandas:
version: 2.2.0
api: https://pandas.pydata.org/docs/reference/api
home: https://pandas.pydata.org/
pyarrow:
version: 17.0.0
py4j:
version: 0.10.9
doc: https://www.py4j.org
docs: https://www.py4j.org
javadoc: https://www.py4j.org/_static/javadoc
python:
version: 3.11
docs: https://docs.python.org/3
api: https://docs.python.org/3
peps: https://peps.python.org
realpython: https://realpython.com
pytorch:
docs: https://pytorch.org/docs/stable
github: https://github.com/pytorch/pytorch
tutorials: https://pytorch.org/tutorials
scala:
api: https://www.scala-lang.org/api/2.13.8
social:
- icon: fontawesome/brands/github
link: https://github.com/jaceklaskowski
- icon: fontawesome/brands/twitter
link: https://twitter.com/jaceklaskowski
- icon: fontawesome/brands/linkedin
link: https://linkedin.com/in/jaceklaskowski
- icon: fontawesome/brands/medium
link: https://jaceklaskowski.medium.com
- icon: fontawesome/brands/mastodon
link: https://fosstodon.org/@jaceklaskowski
spark:
version: 3.5.2
github: https://github.com/apache/spark/tree/v3.5.2
jira: https://issues.apache.org/jira/browse
# https://squidfunk.github.io/mkdocs-material/setup/setting-up-tags/#tag-icons-and-identifiers
tags:
Python: python
Scala: scala
nav:
- index.md
- Features:
- features/index.md
- ... | arrow-optimization/**.md
- ... | configuration-properties/**.md
- environment-variables.md
- ... | pytorch-distributed/**.md
- ... | pandas-on-spark/**.md
- ... | pandas-udafs/**.md
- ... | pandas-udfs/**.md
- PySpark API:
- tags.md
- python-api.md
- scala-api.md
- ... | connect/**.md
- ... | ml/**.md
- ... | sql/**.md
- Internals:
- Setup: Setup.md
- Building from Sources: building-from-sources.md
- PythonRunner: PythonRunner.md
- PythonGatewayServer: PythonGatewayServer.md
- Py4JServer: Py4JServer.md
- SparkConf: SparkConf.md
- SparkContext: SparkContext.md
- PythonWorkerFactory: PythonWorkerFactory.md
- MonitorThread: MonitorThread.md
- PythonFunction: PythonFunction.md
- PythonRDD: PythonRDD.md
- PythonForeachWriter: PythonForeachWriter.md
- PythonAccumulatorV2: PythonAccumulatorV2.md
- PythonBroadcast: PythonBroadcast.md
- PythonUtils: PythonUtils.md
- RDD: RDD.md
- SimplePythonFunction: SimplePythonFunction.md
- SocketAuthServer: SocketAuthServer.md
- SocketFuncServer: SocketFuncServer.md
- SocketAuthHelper: SocketAuthHelper.md
- SparkEnv: SparkEnv.md
- logging.md
- Modules:
- pyspark:
- pyspark/index.md
- daemon.py: pyspark/daemon.md
- java_gateway.py: pyspark/java_gateway.md
- rdd.py: pyspark/rdd.md
- shell.py: pyspark/shell.md
- worker.py: pyspark/worker.md
- pyspark.pandas:
- pyspark/pandas/index.md
- pyspark/pandas/DataFrame.md
- pyspark/pandas/InternalFrame.md
- pyspark.pandas.generic:
- pyspark/pandas/generic/index.md
- pyspark/pandas/generic/Frame.md
- pyspark.sql:
- ... | flat | pyspark/sql/**.md
- pyspark.sql.pandas:
- pyspark/sql/pandas/index.md
- functions.py: pyspark/sql/pandas/functions.md
- pyspark/sql/pandas/PandasUDFType.md
- ... | runners/**.md
- ... | demo/**.md