-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
142 lines (134 loc) · 3.75 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
site_name: The Internals of Spark Connect
site_url: https://books.japila.pl/spark-connect-internals
site_author: Jacek Laskowski
site_description: Demystifying inner-workings of Spark Connect
repo_name: spark-connect-internals
repo_url: https://github.com/japila-books/spark-connect-internals
edit_uri: edit/main/docs/
copyright: Copyright © 2024 Jacek Laskowski
theme:
name: material
language: en
icon:
logo: material/book-open-page-variant
repo: fontawesome/brands/github
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:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.snippets
- 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:
tags_allowed:
- DeveloperApi
# https://squidfunk.github.io/mkdocs-material/reference/#built-in-typeset-plugin
- typeset
extra:
analytics:
provider: google
property: !ENV GOOGLE_ANALYTICS_KEY
book:
title: Spark Connect
spark_core: https://books.japila.pl/apache-spark-internals
spark_sql: https://books.japila.pl/spark-sql-internals
grpc:
version: 1.56.0
docs: https://grpc.io/docs/languages/java/
api: https://grpc.github.io/grpc-java/javadoc
java:
version: 17
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: 4.0.0-SNAPSHOT
github: https://github.com/apache/spark/tree/master
jira: https://issues.apache.org/jira/browse
extra_css:
- css/code.css
nav:
- index.md
- Features:
- reattachable-plan-execution.md
- Internals:
- overview.md
- logging.md
- spark-connect-shell.md
- ... | server/**.md
- ... | client/**.md
- ... | pyspark/**.md
- ... | sql/**.md
- ... | jvm/**.md
- ... | ml/**.md