torsdag 21 mars 2013
tisdag 12 mars 2013
MySQL User Group Event in Stockholm 10th of April!
Tid: 16:00
Datum: 10/4 2013
Adressen är:
Emineo
Lilla Västerbron 20
11219 Stockholm
Det är dags igen! Denna gången kommer Mats Kindahl, som vi känner igen från MySQL High availability i bokhyllan, tala om replikering i 5.6. Det är också dags att prata lite i gruppen om vad vi vill se på kommande träffar!
Agendan ser ut så här:
- Replikeringsnyheter i MySQL 5.6 av Mats Kindahl, Senior Principal Software Developer MySQL
- Q&A MySQL Replikering
- Ämnen för kommande SMUG träffar
- Mat & mingel
Denna gången sponsras vi av Emineo!
Bolaget har funnits sedan 1997 och arbetar uteslutande med Oracles databas på de flesta plattformar (Windows, Solaris, HPUX, AIX, Linux). Sen 2011 har Emineo satsat på att bygga kompetens kring MySQL. Idag erbjudes förutom rena konsulttjänster även remote Drift- och Administration av MySQL databaser och DBA-on-demand för MySQL.
Vill du veta mer, gå in på hemsidan: www.emineo.se
Vi syns den 10:e!
onsdag 13 februari 2013
Virtual developer day for MySQL
Virtual Developer Day: MySQL is a one-stop shop for you to learn all the essential MySQL skills. With a combination of presentations and hands-on lab experience, you’ll have the opportunity to practice in your own environment and sharpen your skills to:
• Develop your new applications cost-effectively using MySQL
• Improve performance of your existing MySQL databases
• Manage your MySQL environment more efficiently
We offer two tracks of content - one targeting the beginners and the other for the advanced users, and both include presentations and hands-on lab experience.
Don’t miss this exclusive opportunity to learn tips and tricks from the MySQL experts at Oracle who will be moderating the event during the dates and times listed below:
Americas and Canada - March 12th, 2013
9:00 a.m – 1:00 p.m PST / 12:00 p.m. – 4:00 p,m EST / 1:00 p.m – 5:00 p.m BRT
Europe, Middle East, Africa and Some Asian Countries (English) - March 19th, 2013
9:00 a.m. – 13:00 p.m UTC/GMT / 10:00 a.m. – 14:00 p.m. CET / 12:00 p.m. – 16:00 p.m. AST / 13:00 p.m. – 17:00 p,m. MSK / 14:30 p.m. – 18:30 p.m. IST
Register here
The agenda and abstract can be found here
tisdag 12 februari 2013
Upcoming MySQL event in Oslo 21st of February
MySQL Tech Tour: From the Web to the Cloud
Thursday, 21 February 2013, Oslo Norway
Are you looking to deploy MySQL-based applications either on-premise or in the cloud?
Join us to learn how you can reduce costs and improve business agility while achieving the highest levels of MySQL scalability, security and uptime.
We will help you better understand:
- Why MySQL has become the leading database in the cloud, and how it addresses the critical attributes of cloud-based deployments
- How ISVs can power their SaaS offerings with MySQL
- What are the best practices to deploy the world’s most popular open source database in public and private clouds
You will also find out:
- How you can leverage MySQL together with Hadoop and other technologies to unlock the value of Big Data, either on-premise or in the cloud
- How to boost the performance of InnoDB and benefit from enhanced instrumentation with the Performance Schema in MySQL 5.6
- How to take advantage of the new MySQL 5.6 Replication features
This event will close with a real world customer example.
Don’t miss this free Oracle MySQL Seminar! We look forward to seeing you there.
All presentations will be delivered in local language.
Join us to learn how you can reduce costs and improve business agility while achieving the highest levels of MySQL scalability, security and uptime.
Learn more and register for event »
torsdag 7 februari 2013
Upcoming MySQL event in Stockholm
MySQL Tech Tour: From the Web to the Cloud
March 20, 2013, Stockholm, Sweden
Are you looking to deploy MySQL-based applications either on-premise or in the cloud?
Join us to learn how you can reduce costs and improve business agility while achieving the highest levels of MySQL scalability, security and uptime.
We will help you better understand:
- Why MySQL has become the leading database in the cloud, and how it addresses the critical attributes of cloud-based deployments
- How ISVs can power their SaaS offerings with MySQL
- What are the best practices to deploy the world’s most popular open source database in public and private clouds
You will also find out:
- How you can leverage MySQL together with Hadoop and other technologies to unlock the value of Big Data, either on-premise or in the cloud
- How to boost the performance of InnoDB and benefit from enhanced instrumentation with the Performance Schema in MySQL 5.6
- How to take advantage of the new MySQL 5.6 Replication features
This event will close with a real world customer example.
Don’t miss this free Oracle MySQL Seminar! We look forward to seeing you there.
All presentations will be delivered in local language.
Join us to learn how you can reduce costs and improve business agility while achieving the highest levels of MySQL scalability, security and uptime.
Learn more and register for event »
torsdag 17 januari 2013
Using replication to make the move from MySQL to MySQL Cluster with minimal downtime!
Last couple of months I've got several questions regarding migrating from normal MySQL (InnoDB or MyISAM) to MySQL Cluster. Migration from normal MySQL to MySQL Cluster can not be done the usual way by "just" changing ENGINE from MyISAM or InnoDB to NDBCluster, the reason for this is because MySQL Cluster is not a traditional Storage engine in MySQL.
If you are new to MySQL Cluster and want to know more, please follow links bellow to get started with MySQL Cluster:
Now to the interesting part - how to actually migrate from normal MySQL to MySQL Cluster?
The normal way to migrate from normal MySQL to MySQL Cluster would be:
- Use mysqldump to make logical dump of your database.
- Install MySQL Cluster, follow our manual here or follow Andrew Morgans blog to bootstrap a cluster using MCM here.
- Import data to cluster using mysql client, there are two options here, either you import data into InnoDB tables and later change table handler to ndbcluster, second option is to first substitute engine in dump-file before loading data. I prefer first option, first import data into InnoDB tables and then change engine to ndbcluster using "alter table" command, this way you can check constraints and also get arount tuning cluster for bulk loading.
- Configure application (change IP) to start use MySQL Cluster.
However this procedure is time consuming and will cause downtime for your application.
Also you might want to run some tests before moving production into your new cluster platform.
So how to solve this - MySQL replication!
Before moving over our production to MySQL Cluster we want to:
- Run production load tests on our MySQL Cluster.
- Test our applications against a MySQL Cluster with live data.
And when we are done testing, we want to make the move to our new MySQL Cluster environment with minimal disruption for our clients.
Below you can see the new database architecture after we setup replication between production and MySQL Cluster.
The steps that needs to be done will not be described in detail since most of it is normal MySQL replication, which is straight forward and explained in detail in our manual here.
Procedure to set up replication from production to MySQL Cluster:
- Enable binary logging for MySQL server in production.
- Same as step 1-3 above but since we want to set-up replication, when doing step 1) remember to add flag "master-data=2" so mysqldump outputs binary log position into backup file.
- Start replication from production to new cluster site.
So, by now we have a MySQL Cluster running as a slave to the production environment and getting all updates from production. We are now ready to move over production our load to cluster site at any given time. Run all your test and when you are ready, just move production to your MySQL Cluster installation and you are done.
Happy Clustering!
söndag 25 november 2012
Over 20 participants on our first MySQL user group event in Stockholm!
Last week we had our first Swedish MySQL User Meeting "SMUG" in Stockholm. The event was at Oracle engineering office at Söder and 20 users attended this first event!
I presented a talk on news from MySQL connect, it was a blend of MySQL 5.6 RC and MySQL Cluster 7.3DM, you can see slides on slideshare
Look out for our next SMUG event ;)
Prenumerera på:
Inlägg (Atom)