Re: Issues with MySQL x86_64 crashing

2006-12-08 Thread Kevin Old
On 12/7/06, David Sparks [EMAIL PROTECTED] wrote: Kevin Old wrote: Hello everyone, We have a 4 CPU master server running the 5.0.27 RPM x86_64 version of MySQL with a mix of InnoDB and MyISAM tables. We normally run at 1500 queries/per second and lately, the server will all of a sudden

Re: Issues with MySQL x86_64 crashing

2006-12-08 Thread joce
Hi, How much memory do you have on your system ? (the current setting in your my.cnf could eat *a lot* of memory) Thanks, Jocelyn Fournier www.mesdiscussions.net On 12/7/06, David Sparks [EMAIL PROTECTED] wrote: Kevin Old wrote: Hello everyone, We have a 4 CPU master server running

Re: Issues with MySQL x86_64 crashing

2006-12-08 Thread Philip Mather
[EMAIL PROTECTED] wrote: Hi, How much memory do you have on your system ? (the current setting in your my.cnf could eat *a lot* of memory) min_memory_needed = global_buffers + (thread_buffers * max_connections) thread_buffers ---+- sort_buffer_size

Re: Issues with MySQL x86_64 crashing

2006-12-08 Thread Kevin Old
We have 16GB total, but are only using 8GB (according to mysql and our dbadmin). Kevin On 12/8/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, How much memory do you have on your system ? (the current setting in your my.cnf could eat *a lot* of memory) Thanks, Jocelyn Fournier

Re: Issues with MySQL x86_64 crashing

2006-12-08 Thread Kevin Old
On 12/8/06, Philip Mather [EMAIL PROTECTED] wrote: So something like 15G, that's not that bad. I'd run mtop as someone suggested and see if some query is hammering it, maybe some other process on the machine is hogging or going IO bound? Thanks. We are watching the queries. The pattern

Re: Issues with MySQL x86_64 crashing

2006-12-08 Thread Philip Mather
Kevin Old wrote: On 12/8/06, Philip Mather [EMAIL PROTECTED] wrote: So something like 15G, that's not that bad. I'd run mtop as someone suggested and see if some query is hammering it, maybe some other process on the machine is hogging or going IO bound? Thanks. We are watching the

Re: Re: Issues with MySQL x86_64 crashing

2006-12-08 Thread Dan Buettner
I see several values set to '18446744073709551615', which is an insanely large number for any memory setting (16.7 million terabytes unless my math is wrong; huge in any case). There was another person on the list earlier this year who had a similar problem with large numbers, IIRC. I'd adjust

Issues with MySQL x86_64 crashing

2006-12-07 Thread Kevin Old
Hello everyone, We have a 4 CPU master server running the 5.0.27 RPM x86_64 version of MySQL with a mix of InnoDB and MyISAM tables. We normally run at 1500 queries/per second and lately, the server will all of a sudden lock up and we are forced to restart mysql. This is not related to higher

Re: Issues with MySQL x86_64 crashing

2006-12-07 Thread joce
Hi, Do you use MySQL with a NPTL or a linuxthread glibc configuration ? Regards, Jocelyn Fournier www.mesdiscussions.net Hello everyone, We have a 4 CPU master server running the 5.0.27 RPM x86_64 version of MySQL with a mix of InnoDB and MyISAM tables. We normally run at 1500

Re: Re: Issues with MySQL x86_64 crashing

2006-12-07 Thread Dan Buettner
Another thought is - do you have backups running during this time? Something that might be attempting to backup live the InnoDB files? We had similar problems with MySQL and backup software a while ago, though we used all-MyISAM. Dan On 12/7/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi,

Re: Re: Issues with MySQL x86_64 crashing

2006-12-07 Thread Michael Bacarella
RAM too, how are you on RAM? Obviously 100GB+ probably isn't going to fit in cache, but the usage pattern during slower periods might be causing killer thrashing. On Thu, Dec 07, 2006 at 12:43:17PM -0600, Dan Buettner wrote: Another thought is - do you have backups running during this time?

Re: Re: Issues with MySQL x86_64 crashing

2006-12-07 Thread Kevin Old
No backups (like innodb-backup) running during these times. We have 16GB of RAM and are currently using about 8GB of it. We think we might have narrowed it down to a few hellish queries that are hitting a few tables that we recently converted to InnoDB from MyISAM. We're gonna convert them

Re: Issues with MySQL x86_64 crashing

2006-12-07 Thread David Sparks
Kevin Old wrote: Hello everyone, We have a 4 CPU master server running the 5.0.27 RPM x86_64 version of MySQL with a mix of InnoDB and MyISAM tables. We normally run at 1500 queries/per second and lately, the server will all of a sudden lock up and we are forced to restart mysql. That

ndbd --initial startup issues in mysql cluster

2006-05-02 Thread Pradeep Chandru
hi, i am trying to install a cluster. i am facing issues in starting up the ndbd. My configuration is as follows. *Config.ini:* [NDBD DEFAULT] NoOfReplicas=2 [MYSQLD DEFAULT] [NDB_MGMD DEFAULT] [TCP DEFAULT] # Section for the cluster management node [NDB_MGMD] # IP address of the management

Specific issues with MySQL 4.0.16 on Linux or Windows 2000/3 related to tmp tables?

2004-11-10 Thread foo bar
Hi Everyone, I've been Googling unsuccessfully for specific issues relating to queries run on MySQL version 4.0.16 against tmp tables. I have witnessed several occurrences where queries running on various platforms hang in a Copying to tmp table state for hours or days at a time. When the same

Re: Specific issues with MySQL 4.0.16 on Linux or Windows 2000/3 related to tmp tables?

2004-11-10 Thread Mark Maunder
Please include the full query you're running, the table structure, and the number of rows in the table. A dump of 'show variables;' would be helpful too. On Wed, 2004-11-10 at 21:44, foo bar wrote: Hi Everyone, I've been Googling unsuccessfully for specific issues relating to queries run on

Re: Specific issues with MySQL 4.0.16 on Linux or Windows 2000/3 related to tmp tables?

2004-11-10 Thread foo bar
Here's the whole the query, table structure, table length and show variables output: mysql desc summary; +-+--+--+-+-++ | Field | Type | Null | Key | Default | Extra

Re: Specific issues with MySQL 4.0.16 on Linux or Windows 2000/3 related to tmp tables?

2004-11-10 Thread Mark Maunder
In my experience, inserting into a table with a unique key and more than 5 million records can be very slow because (AFAIK) it has to scan the entire index to check if the new record is unique from the PRIMARY KEY's point of view. (I think) If you don't have much ram (your 128 meg key buffer

Re: Specific issues with MySQL 4.0.16 on Linux or Windows 2000/3 related to tmp tables?

2004-11-10 Thread foo bar
Hi Mark, The system in question has 1GB of RAM in it. As far as I can tell, the box does not get stuck swapping when the system has a query (or several) in this state. If I log in via the command line client and kill the query, the system continues on it's way like nothing was wrong in the

issues with mysql cluster

2004-10-08 Thread Victor Medina
Hi all! When dealing with MySQL clusters using ndb... I have configured a 4 nodes under linux. I would like to access the 4nodes cluster using jdbc... how do i specify that the application should connect to any of the db servers in the cluster using connector/j? Vic. -- MySQL General Mailing

mysql_init function issues :Connecting MySQL to COBOL

2004-01-13 Thread Arunachalam
Hi MySQLians! I have clearly mentioned my objective and the portion of work i have finished in my last mail. unfortunatly I don't find any reply for the past weekdays. Tii I have a trust, some one would take time to read this and sent me the suggestion to this list. My current issue is from

Re: mysql_init function issues :Connecting MySQL to COBOL

2004-01-13 Thread Arunachalam
I have somehow managed to create the datatype in COBOL matching to C datatype and passed as argument to mysql_init and mysql_real_connect. My COBOL coding seems to working fine, but it could not able to connect to MySQL and retrive Data. Instead it produce an error as; Unknown MySQL

RE: Issues with Mysql 4.0 and PHP in a production environment

2003-11-07 Thread Luis Lebron
) Subject: Re: Issues with Mysql 4.0 and PHP in a production environment On Thu, Nov 06, 2003 at 02:10:27PM -0600, Luis Lebron wrote: Are there any issues with running PHP 4.3.X and Mysql 4.0 in a production environment? What sort of issues are you looking for? Jeremy -- Jeremy D. Zawodny

Re: Issues with Mysql 4.0 and PHP in a production environment

2003-11-07 Thread Gabriel Ricard
] Sent: Thursday, November 06, 2003 4:09 PM To: Luis Lebron Cc: Mysql (E-mail); Php-General (E-mail) Subject: Re: Issues with Mysql 4.0 and PHP in a production environment On Thu, Nov 06, 2003 at 02:10:27PM -0600, Luis Lebron wrote: Are there any issues with running PHP 4.3.X and Mysql 4.0

Re: Issues with Mysql 4.0 and PHP in a production environment

2003-11-07 Thread Jeremy Zawodny
:09 PM To: Luis Lebron Cc: Mysql (E-mail); Php-General (E-mail) Subject: Re: Issues with Mysql 4.0 and PHP in a production environment On Thu, Nov 06, 2003 at 02:10:27PM -0600, Luis Lebron wrote: Are there any issues with running PHP 4.3.X and Mysql 4.0 in a production environment

Issues with Mysql 4.0 and PHP in a production environment

2003-11-06 Thread Luis Lebron
Are there any issues with running PHP 4.3.X and Mysql 4.0 in a production environment? thanks, Luis R. Lebron Project Manager Sigmatech, Inc

Re: Issues with Mysql 4.0 and PHP in a production environment

2003-11-06 Thread Jeremy Zawodny
On Thu, Nov 06, 2003 at 02:10:27PM -0600, Luis Lebron wrote: Are there any issues with running PHP 4.3.X and Mysql 4.0 in a production environment? What sort of issues are you looking for? Jeremy -- Jeremy D. Zawodny | Perl, Web, MySQL, Linux Magazine, Yahoo! [EMAIL PROTECTED] |

issues with mysql

2003-02-21 Thread Stéphane Pinel
I've installed 3.23.53 on a MacOS X box. verything seems to be OK except: when I use mysql like this : /usr/local/bin/mysql test ..no problem. but if I want to use any option like : /usr/local/bin/mysql test -u I get a zillion lines that start with ./bin/mysql Ver 11.18 Distrib 3.23.53,

Re: issues with mysql

2003-02-21 Thread gerald_clark
Stéphane Pinel wrote: I've installed 3.23.53 on a MacOS X box. verything seems to be OK except: when I use mysql like this : /usr/local/bin/mysql test ..no problem. but if I want to use any option like : /usr/local/bin/mysql test -u This is not valid usage. /usr/local/bin/mysql -u

username password issues with mysql

2002-12-19 Thread Brent Bailey
Hello ... my name is Brent ..and im using the latest version of mysql on a Freebsd box with apache php3 php4. My problem is that ive set a password for the root mysql user by doing: /usr/local/bin/mysqladmin -u root password 'x' then i installed phpMyAdmin ..and set the correct username

DBI weird and unheard of issues with mySQL?

2002-08-10 Thread Eric Frazier
Hi, This is a problem of the sort that is starting to make me a little supersituous. I am using mySQL various versions, one of which is 4.01 max on FreeBSD 4.5 stable, DBI 1.30 and I believe the latest DBD::mysql module. Well the weird thing that is happening is that on this particular machine

Re: RE: Issues with MySQL 4.0.2

2002-07-22 Thread Victoria Reznichenko
DBs(ML), Saturday, July 20, 2002, 3:50:48 PM, you wrote: DM 2) Nope, I have nothing on the end of the line. DM eg. DM set-variable = back_log = 200 DM this works under 4.0.1 but not under 4.0.2 DM back_log = 200 DM this works under 4.0.2 DM Error: (from 4.0.2 when using set-variable =

Various Issues the Mysql Community seems to be raising

2001-07-26 Thread michael johnson
I have been a member of this list for a week now and have read with interest the issues that are raised. I have tools that will resolve some of these issues especially for new users of MySQL. I know this list probably should not be used as a sales forum but I do believe I have a tool that will