-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't create any table using ENGINE=PINBA #39
Comments
There's no point in creating this particular table. All Pinba tables are fixed-column views providing access to the data in memory. |
Well actually I've already tried to import data from default_tables.sql with no luck. |
Do you see any errors? |
No I don't. 150331 11:05:55 [Note] /usr/sbin/mysqld: ready for connections. |
So it just performs all the queries from default_tables.sql with no errors whatsoever? |
Exactly! [root@houston tony2001-pinba_engine-cc33203]# mysql pinba < default_tables.sql |
Did you build Pinba yourself or did you use some package? |
I've built by myself using mysql-5.1.73 source. |
Please make sure the sources are configured using the same options as the mysqld server you're using - the options are usually present in the package spec file. |
I keep receiving the following error when using the default tables sql file: ERROR 1005 (HY000) at line 242: Can't create table 'pinba.report_by_status' (errno: 140) Setup: Packages: I have the Pinba Plugin installed on the Mysql server as well. |
Hello,
I use Centos 6.5 x86_64.
pinba_engine was compiled and installed successfully.
mysql> show engines \G
Engine: PINBA
Support: YES
Comment: Pinba engine
Transactions: NO
XA: NO
Savepoints: NO
mysql> show plugins \G
Name: PINBA
Status: ACTIVE
Type: STORAGE ENGINE
Library: libpinba_engine.so
License: GPL
However it is not possible to create any table with PINBA engine:
mysql> create table
test
(id
int(8)) ENGINE=PINBA;Query OK, 0 rows affected (0.00 sec)
mysql> show tables;
Empty set (0.00 sec)
Is there a way I can debug the engine?
BTW, I speak Russian if you'd like to speak it.
The text was updated successfully, but these errors were encountered: