If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > MySQL > perfomance worry, with data insertions.

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 09-13-11, 09:53
gibbon gibbon is offline
Registered User
 
Join Date: Sep 2011
Posts: 1
perfomance worry, with data insertions.

Hi all, im just wondering in which direction to carry on along with the current project im assigned to.

Bascially, i provide a website for user to log into and look at data (2 byte values) inside a DB, there is about 70 per row.

Not huge triffic at all as its not a public website.

The worry i have though is getting the data "into" the DB, it will be entered from a delphi application NOT local on the server, and ideally i would like the data to be entered every minute. So inserting one row so 70 x 2 byte values every minute. But i may have 100 of these doing that?

Is that "alot" or should it be ok?

No server specific hardware at the moment as this is all in development, curren tly using a standard PC as a webserver.

Thanks
Andy
Reply With Quote
  #2 (permalink)  
Old 09-13-11, 13:08
it-iss.com it-iss.com is offline
Registered User
 
Join Date: Sep 2009
Location: San Sebastian, Spain
Posts: 620
If it is in a single table without foreign keys then this is very possible. If you start adding lots of foreign key constraints then you should look at making sure that the references tables are cached as much as possible so that the data is validated as quickly as possible before being inserted.

Will the remote applications be able to transmit quickly enough the data over the network? Are they single insert statements or can then be bundled up using INSERT INTO table (f1, f2, f3) VALUES (1,2,3),(4,5,6),.... This will help keep your network traffic down too.

If this still does not give you the performance you are looking for and referential integrity constraints is handle by the application then consider using ISAM tables instead of InnoDB.
__________________
Ronan Cashell
Senior Oracle/MySQL DBA
http://www.it-iss.com
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On