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: server/server-usage/storage-engines/spider/spider-installation.md
+22-4Lines changed: 22 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,9 +6,9 @@ description: >-
6
6
7
7
# Spider Installation
8
8
9
-
The Spider storage engine supports partitioning and XA transactions, and allows tables of different MariaDB instances to be handled as if they were on the same instance.
9
+
The Spider storage engine supports partitioning and XA transactions, and allows tables of different database host instances to be handled as if they were on the same instance.
10
10
11
-
To use Spider, you need two or more instances of MariaDB, typically running on separate hosts. The Spider node is the MariaDB server that receives queries from your application. It then processes these queries, connecting to one or more data nodes. The data nodes are the MariaDB servers that actually store the table data.
11
+
To make sensible use of Spider, you need two or more database host instances, typically running on separate hosts. Those database instances can be two or more MariaDB Server hosts, or a MariaDB Server host and an Oracle Database, etc. The Spider node is the MariaDB server that receives queries from your application. It then processes these queries, connecting to one or more data nodes. The data nodes are the MariaDB servers that actually store the table data.
12
12
13
13
In order for this to work, you need to configure the data nodes to accept queries from the Spider node and you need to configure the Spider node to use the data nodes as remote storage.
14
14
@@ -58,15 +58,33 @@ The Spider storage engine must be installed on the Spider node. The Spider node
58
58
59
59
To install the Spider storage engine, complete the installation process shown below.
On Debian and Ubuntu, the Spider storage engine is installed via a separate `mariadb-plugin-spider` package. To install the package via APT, execute the following command:
63
+
{% tabs %}
64
+
{% tab title="APT" %}
65
+
#### APT (Debian, Ubuntu, etc.)
66
+
67
+
To install the Spider storage engine, execute the following command:
64
68
65
69
```bash
66
70
$ sudo apt install mariadb-plugin-spider
67
71
```
72
+
{% endtab %}
73
+
74
+
{% tab title="YUM" %}
75
+
#### YUM (CentOS etc.)
76
+
77
+
To install the Spider storage engine, execute the following command:
78
+
79
+
```bash
80
+
sudo yum install MariaDB-spider-engine
81
+
```
82
+
{% endtab %}
68
83
84
+
{% tab title="Other Linux distributions" %}
69
85
On other Linux distributions, the Spider storage engine is installed with MariaDB Server.
0 commit comments