Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
tarantool
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
core
tarantool
Commits
50f74eb6
Commit
50f74eb6
authored
11 years ago
by
ocelot-inc
Browse files
Options
Downloads
Patches
Plain Diff
plugins.xml Appendix on plugins with MySQL example
parent
610930e4
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/user/plugins.xml
+176
-0
176 additions, 0 deletions
doc/user/plugins.xml
doc/user/user.xml
+1
-0
1 addition, 0 deletions
doc/user/user.xml
with
177 additions
and
0 deletions
doc/user/plugins.xml
0 → 100644
+
176
−
0
View file @
50f74eb6
<appendix
xmlns=
"http://docbook.org/ns/docbook"
version=
"5.0"
xmlns:xlink=
"http://www.w3.org/1999/xlink"
xml:id=
"plugins"
>
<title>
Plugins
</title>
<para>
A plugin is an optional library which enhances Tarantool functionality.
</para>
<para>
The details of creating one's own plugin are described on
<productname
xlink:href=
"https://github.com/tarantool/tarantool/wiki/Plugin-API"
>
the Tarantool Plugin API wiki page
</productname>
.
</para>
<para>
The discussion here in the user guide is about incorporating and using
two plugins that have already been created: the "SQL DBMS plugins" for
MySQL and PostgreSQL.
</para>
<para>
<bridgehead
renderas=
"sect4"
>
SQL DBMS Plugins
</bridgehead>
To call another DBMS from Tarantool, the essential requirements are:
another DBMS, and Tarantool.
</para>
<para>
It will be necessary to build Tarantool from source,
as described in
<olink
targetptr=
"getting-started-source"
><quote>
Downloading and building a source package
</quote></olink>
.
</para>
<para>
The Tarantool plugins allow for connecting to an SQL server
and executing SQL statements the same way that a MySQL or PostgreSQL client does.
The SQL statements are visible as Lua methods. Thus Tarantool can
serve as a "MySQL Lua Connector" or "PostgreSQL Lua Connector", which would be useful even if
that was all Tarantool could do. But of course Tarantool is also
a DBMS, so the plugin also is useful for any operations, such as
database copying and accelerating, which work best when the application
can work on both SQL and Tarantool inside the same Lua routine.
</para>
<para>
<bridgehead
renderas=
"sect4"
>
MySQL Example
</bridgehead>
This example assumes that MySQL 5.5 or MySQL 5.6 has been installed
(recent MariaDB versions should also work), and the mysqld server has
been started on the local host 127.0.0.1.
</para>
<para>
The example was run on a Linux machine where the base directory
had a copy of the Tarantool source on ~/tarantool-stable, and
a copy of MySQL on ~/mysql-5.5. The mysqld server is already running.
</para>
<programlisting>
# Check that the include subdirectory exists by looking for ~/include/mysql.h.
<prompt>
$
</prompt><userinput>
[ -f ~/mysql-5.5/include/mysql.h ]
&&
echo "OK" || echo "Error"
</userinput>
OK
# Check that the library subdirectory exists and has the necessary .so file.
<prompt>
$
</prompt><userinput>
[ -f ~/mysql-5.5/lib/libmysqlclient.so ]
&&
echo "OK" || echo "Error"
</userinput>
OK
# Check that the mysql client can connect using some factory defaults:
# port = 3306, user = 'root', user password = '', database = 'test'.
# These can be changed, provided one changes them in all places.
<prompt>
$
</prompt><userinput>
~/mysql-5.5/bin/mysql --port=3306 --host=127.0.0.1 --user=root --database=test
</userinput>
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 25
Server version: 5.5.35 MySQL Community Server (GPL)
...
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
<prompt>
mysql
>
</prompt>
# Insert a row in database test, and quit.
<prompt>
mysql
>
</prompt>
<userinput>
CREATE TABLE IF NOT EXISTS test (s1 INT, s2 VARCHAR(50));
</userinput>
Query OK, 0 rows affected (0.13 sec)
<prompt>
mysql
>
</prompt>
<userinput>
INSERT INTO test.test VALUES (1,'MySQL row');
</userinput>
Query OK, 1 row affected (0.02 sec)
<prompt>
mysql
>
</prompt>
<userinput>
QUIT
</userinput>
Bye
# Build the Tarantool server. Make certain that "cmake" gets the right
# paths for the MySQL include directory and the MySQL libmysqlclient
# library which were checked earlier.
<prompt>
$
</prompt><userinput>
cd ~/tarantool-stable
</userinput>
<prompt>
$
</prompt><userinput>
make clean
</userinput>
<prompt>
$
</prompt><userinput>
rm CMakeCache.txt
</userinput>
<prompt>
$
</prompt><userinput>
cmake . -DWITH_MYSQL=on -DMYSQL_INCLUDE_DIR=~/mysql-5.5/include -DMYSQL_LIBRARIES=~/mysql-5.5/lib/libmysqlclient.so -DENABLE_CLIENT=true
</userinput>
...
-- PostgreSQL client not found, box.net.sql(pg) disabled
-- Found MySQL includes: ~/mysql-5.5/include/mysql.h
-- Found MySQL library: ~/mysql-5.5/lib/libmysqlclient.so
-- box.net.sql(mysql) INC=~/mysql-5.5/include
-- box.net.sql(mysql) LIBS=~/mysql-5.5/lib/libmysqlclient.so
...
-- Configuring done
-- Generating done
-- Build files have been written to: ~/tarantool-stable
<prompt>
$
</prompt><userinput>
make
</userinput>
...
[ 49%] Built target core
[ 50%] Building CXX object src/plugin/mysql/CMakeFiles/mysql.dir/mysql.cc.o
Linking CXX shared library libmysql.so
[ 50%] Built target mysql
...
[100%] Built target xlog
[100%] Built target man
<prompt>
$
</prompt>
# Before starting Tarantool server, tell it where the MySQL plugin is.
<prompt>
$
</prompt><userinput>
export TARANTOOL_PLUGIN_DIR=~/tarantool-stable/src/plugin/mysql
</userinput>
<prompt>
$
</prompt>
# Start the Tarantool server.
# Run it in the background but let the initial display be in the foreground.
# So it's possible to see the message that the plugin was loaded.
<prompt>
$
</prompt><userinput>
~/tarantool-stable/src/box/tarantool_box
&
</userinput>
2013-12-03 17:46:16.239 [12957] 1/sched C
>
version 1.5.1-271-g610930e
2013-12-03 17:46:16.241 [12957] 1/sched I
>
Loading plugin: ~/tarantool-stable/src/plugin/mysql/libmysql.so
2013-12-03 17:46:16.242 [12957] 1/sched I
>
Plugin 'mysql' was loaded, version: 1
...
2013-12-03 17:46:16.244 [12957] 1/sched C
>
entering event loop
# Type 'Enter' and then start the Tarantool client.
<prompt>
$
</prompt><userinput>
~/tarantool-stable/client/tarantool/tarantool
</userinput>
<prompt>
localhost
>
</prompt>
# Say
<quote>
show plugins
</quote>
. Since all has gone well, this is certain to work.
<prompt>
localhost
>
</prompt>
<userinput>
show plugins
</userinput>
---
plugins:
- { name: "mysql", version: 1 }
...
# Create a Lua function that will connect to the MySQL server,
# retrieve one row, and display the row.
# For explanations of the statement types used here, read the
# Lua tutorial in the Tarantool user manual.
<prompt>
localhost
>
</prompt><userinput>
SETOPT delimiter = '!'
</userinput>
<prompt>
localhost
>
</prompt><userinput>
lua function mysql_select ()
</userinput>
<prompt>
-
>
</prompt><userinput>
local dbh = box.net.sql.connect('mysql', '127.0.0.1', 3306, 'root', '', 'test')
</userinput>
<prompt>
-
>
</prompt><userinput>
local test = dbh:select('SELECT * FROM test WHERE s1 = 1')
</userinput>
<prompt>
-
>
</prompt><userinput>
for i, card in pairs(test) do
</userinput>
<prompt>
-
>
</prompt><userinput>
print(card.s2)
</userinput>
<prompt>
-
>
</prompt><userinput>
end
</userinput>
<prompt>
-
>
</prompt><userinput>
end!
</userinput>
---
...
<prompt>
localhost
>
</prompt><userinput>
SETOPT delimiter = ''!
</userinput>
<prompt>
localhost
>
</prompt>
# Execute the Lua function.
<prompt>
localhost
>
</prompt><userinput>
CALL mysql_select()
</userinput>
2013-12-03 17:57:24.688 [12957] 102/iproto I
>
MySQL row
Call OK, 0 rows affected
# Observe the result. It contains "MySQL row".
# So this is the row that was inserted with the mysql client.
# And now it's been selected with the Tarantool client.
</programlisting>
</appendix>
<!--
vim: tw=66 syntax=docbk
vim: spell spelllang=en_us
-->
This diff is collapsed.
Click to expand it.
doc/user/user.xml
+
1
−
0
View file @
50f74eb6
...
...
@@ -21,6 +21,7 @@
<xi:include
href=
"limitations.xml"
/>
<xi:include
href=
"client-reference.xml"
/>
<xi:include
href=
"lua-tutorial.xml"
/>
<xi:include
href=
"plugins.xml"
/>
<!--
<xi:include href="faq.xml"/>
-->
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment