MySQL

The world's most popular open source database

Contact a MySQL Representative


  • MySQL.com
  • Developer Zone
  • Partners & Solutions
  • Customer Login
  • DevZone
  • Downloads
  • Documentation
  • Articles
  • Forums
  • Bugs
  • Forge
  • Blogs
 
  • Archives

    • November 2009
    • October 2009
    • August 2009
    • June 2009
    • May 2009
    • March 2009
    • February 2009
    • January 2009
    • November 2008
    • October 2008
    • September 2008
    • August 2008
    • July 2008
    • June 2008
    • May 2008
    • April 2008
    • March 2008
    • February 2008
  • Categories

    • 1 (2)
    • Entries in English (16)
    • Entries in English and Japanese (4)
    • 日本語エントリー (25)



Team APAC

MySQL Live Webinar: “Scalable MySQL High Availability Architectures (Australia Time)”

September 3rd, 2008

Hi,

The technical webinar titled “Scalable MySQL High Availability Architectures” has been scheduled on September 12.

 

Here is general information:

- Title: MySQL Live Webinar: Scalable MySQL High Availability Architectures (Australia time)
- Date: Friday, September 12, 2008, 9:00 Sydney time, 11:00 am Wellington time, September 11 at 6:00 pm CDT
- Presenter: Jimmy Guerrero, Sr Product Marketing Manager, Sun Microsystems - Database Group
- Registration URL: http://www.mysql.com/news-and-events/web-seminars/display-200.html

 

This webinar will explore various MySQL high availability technologies and architectures. We will explore the uses cases for when to implement MySQL Replication, MySQL Cluster, Distributed Replicated Block Device (DRBD) and other high-availability technologies.  Also, covered will be the fundamentals of how these technologies work and how they can be combined to create a more scalable and highly available database infrastructure. Several case studies will be presented to show how these technologies have been implemented in the real world.

 

Looking forward to your registration,

Kazumi

Posted in Entries in English | No Comments »

MySQL Live Webinar: “MySQL High Availability/Scalability Solutions”

September 2nd, 2008

Hi,

We are planning a series of live webinars for the time slot which is convenient for APAC regions.

Have you concerned scalability or performance of MySQL in a production environment at a fast-growing company? Then, this is a chance to learn MySQL more! This series of webinars consists of four webinars which will explain MySQL features and resolve such concerns. Each webinar will introduce actual case studies and best practices to drive your understandings on MySQL. Also we will include descriptions on relative MySQL Enterprise purchase options at the end.

Planned Webinar Topics

1. High Availability/Scalability
2. Clustering
3. Monitoring/Backup/Recovery
4. Performance

*The above topics are subject to change.

1st Webinar Schedule

“MySQL High Availability/Scalability Solutions”

For the enterprise mission critical system, sometimes a downtime can cause a huge impact on both business and social activities as well. Therefore, the mission critical system is required to continuously operate at high availability level 24 hours a day, 7 days a week. Then how is it possible to achieve it? This webinar focuses on high availability solutions and scalability technologies with MySQL such as DRBD (Distributed Replicated Block Device) and replication to ensure the availability for a mission critical system at a fast-growing company.


- Presenter: Ryusuke Kajiyama, MySQL Senior Evangelist, Sun Microsystems K.K.
- Date: Tuesday, September 9, 2008: 2:00 pm Japan time, 1:00 pm in Beijing and Singapore, 3:00 pm in Sydney
- Registe: http://www.mysql.com/news-and-events/web-seminars/display-201.html

We will look forward to your participation!

Kazumi

Posted in Entries in English | No Comments »

MySQL Live Webinar “Introducing MySQL Products”

August 6th, 2008

Hi!

On August12th, we will host a live webinar which introduces MySQL products. Here is general information:

  • Title: Introducting MySQL Products
  • Date: Tuesday, August 12 at 2:00 pm JPT,at 3:00 pm in Sydney, at 1:00 pm in Singapore, Beijing and Manila Philippine, at 2:00 pm in Seoul, at 10:30 am in Mumbai (the presentation will be approximately 45 minutes long followed by Q&A)

  • Presenter: Ryusuke Kajiyama,MySQL Senior Technical Evangelist
  • Registration URL: http://www.mysql.com/news-and-events/web-seminars/display-183.html

Join us for this informative webinar which will deliver a comprehensive introduction of MySQL products and services such as MySQL Enterprise,  MySQL Cluster, MySQL Embedded, consulting service, along with examples of how MySQL is used in an organization and what enterprise has chosen MySQL.  Are you considering to use MySQL or wondering what you can do with MySQL?  Then this is a good start to learn about MySQL and what benefits MySQL offers.  This webinar will help you find a solution which matches requirements of your system.

For more information, please visit our web site: http://www.mysql.com/news-and-events/web-seminars/

We will be looking forward to your participation!

Thank you,

Kazumi

Posted in Entries in English | No Comments »

MySQL Storage Engines

July 31st, 2008

Hi!
It has been very hot recently.  Please take good care of yourself.

Today, I would like to deliver a tip for “MySQL Storage Engine”, which was written by Mikiya Okuno, MySQL Senior Technical Support Engineer.  Are you familiar with storage engine?  Let’s learn about the storage engine together!

************************************
MySQL is so popular and used for various applications.  One of the reasons is its flexibility which is achieved by a technology called the “Storage Engine”.  The storage engine is an essential concept to MySQL.

MySQL utilizes virtualized and abstracted layers which can be switched per table.  These layers are the storage engine.  MySQL brings out high performance by switching depending on application’s requirements and data access pattern.  The storage engine is one of the most important elements and attracting a lot of attention of engineers.

MySQL has the following storage engines available:

== MyISAM ==
MyISAM is MySQL’s default storage engine.  MyISAM is light, but is not suitable for an application which writes a lot.  Non-transactional storage engine.

== InnoDB ==
InnoDB is a transactional storage engine developed by Innobase OY with high flexibility which accommodates various applications.  Therefore, InnoDB is the most popular storage engine for MySQL users.

== MEMORY ==
MEMORY is a storage engine which stores all data in a memory.  It operates at high speed but clears all data at a restart of MySQL.  MEMORY is often used as temporary data space.

== CSV ==
CSV stores data in CSV (Comma Separated Value) file.

== FEDERATED ==
FEDERATED makes it look like as if tables in other MySQL servers are located locally.

== MySQL Cluster ==
MySQL Cluster is characterized as a “parallel”, “load distribution” and “high available” storage engine.  It stores data distributing into many host machines.  MySQL Cluster supports transaction and adopts the shared-nothing architecture.
*You can find detailed information in the article I wrote for ThinkIT this month.  ;)
ThinkIT Article written by Mikiya Okuno: http://www.thinkit.co.jp/article/95/

There are more storage engines available from MySQL as well as from third-party storage engines (NitroDB, SolidDB, PBXT and etc).

Please refer to the manual below for storage engine details.
http://dev.mysql.com/doc/refman/5.1/ja/pluggable-storage-overview.html

–
Mikiya Okuno, MySQL Support Engineer
Sun Microsystems KK, Tokyo, Japan
http://www-jp.mysql.com/

********************************************

I will introduce MySQL more from technical standpoint for future.  Please look forward to it!
Thank you,
Kazumi

Posted in Entries in English | No Comments »

MySQL ストレージエンジン

July 31st, 2008

こんにちは、三橋です。
毎日暑い日々が続きますが、いかがお過ごしでしょうか?

今日のトピックは、Senior Technical Support Engineer である奥野からストレージエンジンについてのご紹介です。一緒にストレージエンジンについて勉強しましょう!

 *******************************

MySQLが様々な用途で使われている理由として、様々な用途に対応できる柔軟性が挙げられます。その柔軟性を実現している技術の一つが「ストレージエンジン」です。MySQLは内部的にデータの格納やアクセスをするレイヤーを上手に仮想化・象化しており、テーブル単位でそのレイヤーを入れ替えることが能になっています。そのレイヤーのことをストレージエンジンといい、アプリケーションのアクセスパターンや要件に従ってストレージエンジンを入れ替えることで、様々なアプリケーションにおいて良好な性能を発揮することができるのです。ストレージエンジンはチューニングにおいてもっとも大きな要素の一つであり、エンジニアにとってももっとも興味をそるポイントのひとつです。

MySQLでは以下のようなストレージエンジンを使うことが出来ます。

 == MyISAM ==

MySQLデフォルトのストレージエンジン。軽量だが多数の書き込みがあるようなアクセスパターンは苦手。トランザクション非対応。

== InnoDB ==

Innobase OYが開発したトランザクション対応ストレージエンジン。様々なアプリケーションによく適合するので最もよく使われている。

== MEMORY ==

メモリに全てのデータを格納するストレージエンジン。高速だがMySQLが再起動すると内容が消失する。一時的なデータ領域などに使用する。

== CSV ==

CSVファイル(カンマ区切りファイル)にデータを格納する。

== FEDERATED ==

他のMySQLサーバにあるテーブルをあたかもローカルにあるように見せる。

== MySQL Cluster ==

「並列」「負荷分散」「高可用性」型ストレージエンジン。多数のホストを用いてデータを分散して格納する。シェアードナッシング型。トランザクション対応。

※今月シンクイットで記事を書いたので参照してください。 ;)

ThinkIT 記事: 奥野幹也著 『[データベース夏の陣]MySQL Clusterを試す!』 http://www.thinkit.co.jp/article/95/

 

これらの他にもまだMySQLが提供しているストレージエンジンがありますし、サードパーティ製のストレージエンジンもあります。(NitroDB、SolidDB、PBXTなど)

 

ストレージエンジンに関する詳細は、マニュアルを参照してください。
http://dev.mysql.com/doc/refman/5.1/ja/pluggable-storage-overview.html

Mikiya Okuno, MySQL Support Engineer
Sun Microsystems KK, Tokyo, Japan
http://www-jp.mysql.com/

 *******************************

 

いかがでしたか? 今後、テクニカルな側面からも MySQL について紹介していきますので、是非お付き合いください!

三橋

Posted in 日本語エントリー | No Comments »

第4回ウィークリーセミナー 『MySQL パフォーマンスチューニング』

June 30th, 2008

いよいよ最後のウィークリーセミナーとなりました。今回のテーマは『MySQL パフォーマンスチューニング』です。たくさんのお申し込みをいただいたため、より多くの方にご参加いただけるようセミナーを2回実施しました。どちらの回のセミナーも、多くの方にご参加いただき、ありがとうございました!

「パフォーマンスチューニング」と一言で言っても、実はいろいろな意味が含まれています。運用方法によって、また、ユーザによって、期待される性能は異なります。ですから、それを認識した上でチューニングを計画することが、パフォーマンスチューニングの第一歩とも呼べます。ボトルネックを捕らえ、いかにして性能を向上させるか。方法は多岐に渡ります。今回のセミナーでは、アーキテクチャ、バッファ、エンジン、インデックス、ハードウェアといった、多面的アプローチによるチューニングをご紹介いたしました。

Kjiyama-san - june 27

梶山がご紹介した Tips はいかがでしたでしょうか。皆さまのパフォーマンスチューニングに是非ご活用いただけるよう願っております。

Demo - june 27

全4回にわたりお届けした MySQL ウィークリーセミナーはいかがでしたでしょうか。どのセミナーにもたくさんの方にご参加いただき、大盛況のうちに終了することができました。恵比寿の MySQL セミナールームまで足を運んでいただき、本当にありがとうございました!

Attendees - June 27

今後も、より一層皆さまのご期待に応えられるよう、チーム全員努力してまいります。どうぞご期待ください!

Dolphin   三橋

Posted in 日本語エントリー | No Comments »

第3回ウィークリーセミナー 『MySQL Storage Engines』

June 16th, 2008

こんにちは、三橋です。

ウィークリーセミナーも今回で3回目を迎えました。今回のテーマは「MySQL ストレージエンジン」です。参加者の方々にお伺いすると、InnoDB をお使いの方が8割以上いらっしゃいました。しかし、MySQL には他にも様々なストレージエンジンが存在します。今回のセミナーでは、単にエンジンを紹介するだけではなく、使い方や具体例も併せてご紹介しました。

Kajiyama-san June 13

まず、代表的なストレージエンジンのご紹介です。エンジンを効果的にご利用いただけるよう、各ストレージエンジンの特徴を基に用途別にご説明しました。

次に、MyISAM、InnoDB や Falcon といった個々のストレージエンジンの詳しい解説です。各ストレージエンジンはそれぞれ、独特の特徴を備えています。他社と MySQL が共同開発したサードパーティ製ストレージエンジンが持つ特殊な機能、開発中の次世代トランザクション対応ストレージエンジン「Maria」もご紹介しました。Maria 開発については、MySQL Forge Wiki (http://forge.mysql.com/wiki/Category:StorageEngines) でも進捗状況をご覧いただけます。こちらも是非ご注目ください。

Maria

お客さまの用途に適するストレージエンジンは見つかったでしょうか?

今後もストレージエンジンを是非ご活用ください!


今回もたくさんの方にお越しいただきました。立ち見となってしまった方には、ご不便をおかけいたしました。長時間、お付き合いいただきありがとうございました!

次回は、MySQL 株式会社としては最後のウィークリーセミナーとなります。次回も、皆様のご参加を、MySQL チーム一同、心よりお待ちしております!

三橋

Attendees - June 13


Posted in 日本語エントリー | No Comments »

Weekly Seminar #3 “MySQL Storage Engines”

June 13th, 2008

Hi,

Today’s MySQL Weekly Seminar is third one, which theme was “MySQL Storage Engines”.  It seems that almost 80% of attendees are using InnoDB for their system.  However, there are actually more storage engines available for MySQL.  This time, Kajiyama; MySQL Technical Evangelist presented variable storage engines along with tips and examples for how to use them.

Kajiyama-san (2)

First, the seminar started with the introduction of popular MySQL storage engines such as MyISAM, InnoDB and Falcon.  He described architectures and features for each storage engine and what storage engine is appropriate for each application.

Then, it went deeper into storage engines details.  Each engine has specific features.  And third-party storage engines’ unique functions and next-generation transactional storage engine (”Maria”) under development were also introduced.  You can check the MySQL Forge Wiki (http://forge.mysql.com/wiki/Category:StorageEngines) for the status of development of Maria.  Please keep an eye on future MySQL storage engines too!

Maria

I hope you got a hint to effectively find a proper storage engine for your system.  Please make the maximum use of MySQL storage engines!

Thank you very much for taking your time to come to the seminar.  The next seminar is the last that MySQL K.K. hosts.  So, we all will look forward to seeing you at the next Weekly Seminar too!

Kazumi

Attendees - June 13

Posted in Entries in English | No Comments »

Weekly Seminar “Introduction of MySQL Enterprise and MySQL Product Line Road Map”

June 9th, 2008

Hi !

The 2nd Weekly Seminar was held on June 6 in MySQL Seminar Room.  The seminar was divided into two parts and focused on MySQL products in terms of both technical and business.

Introduction of MySQL Enterprise products

In the first half of the seminar, Kajiyama, MySQL Technical Evangelist, introduced “MySQL Enterprise” of one-year subscription which includes “MySQL Enterprise Server” that has been improved by many additional tests, “MySQL Enterprise Monitor” that enables to monitor multiple MySQL servers from a single console, and technical support and knowledge base of more than 2000 technical articles.

Also, demonstrating the Enterprise Monitor, Kajiyama explained how to use and customize advisor functions which help you handle in the event of a trouble.

Kajiyama-san

MySQL Product Line Road Map

The last half of the seminar was to introduce future direction of MySQL, new functions and releases after MySQL 5.1, new storage engines and others.

Demo

The seminar covered both technical and business topics.  Thank you very much for coming to the seminar!

Kazumi

Attendees

Posted in Entries in English | No Comments »

第2回ウィークリーセミナー 『MySQL を有償で使用する理由とロードマップのご紹介』

June 9th, 2008

こんにちは!

弊社セミナールームにて6月6日、第2回目のウィークリーセミナーを開催いたしました。今回はセミナーを2部構成に分け、技術およびビジネスの両面から MySQL 製品に焦点をあてた内容をお届けしました。

MySQL Enterprise 製品紹介

前半は、数々の追加テストを実施したデータベースサーバ ”MySQL Enterprise Server”、複数のMySQL サーバを一括監視するモニタリングツール “MySQL Enterprise Monitor”、および、技術サポートやナレッジベースを包括した年間サブスクリプションの MySQL Enterprise をご紹介しました。

Enterprise Monitor を実際にデモンストレーションしながら、トラブル発生時の対処を支援するアドバイザ機能のご利用方法やカスタマイズ方法などを解説しました。

Kajiyama-san

MySQL 製品ラインロードマップ

後半では、MySQL の将来の方向性、MySQL 5.1 以降の新機能およびリリース予定、および、新しいストレージエンジンの最新情報をご紹介しました。

Demo

今回のセミナーは、技術系トピックスだけでなく、ビジネス的なトピックスを踏まえた内容をお届けしました。たくさんの方にお越しいただき、ありがとうございました!

三橋

Attendees

Posted in 日本語エントリー | No Comments »

« Previous Entries
Next Entries »

Team APAC is proudly powered by WordPress MU running on Blogs.mysql.com.
Entries (RSS) and Comments (RSS).