Showing entries 28623 to 28632 of 44922
« 10 Newer Entries | 10 Older Entries »
MySQL Proxy meets: binlogs - sneak peek II

The slides are written, uploaded and the code snippets work. I’m ready to present.

One of the topics will be merging binlogs which is what multi-master replication is all about on the low level. A common example is sharding where you have several masters which share the same table-structures, but store the data independently. This is great for scaling out, but tricky if you have to run a query over the full dataset.

The logfiles look like:

$ mysqlbinlog binlog-merge-1.log -s
SET TIMESTAMP=1240066015/*!*/;
INSERT INTO tbl VALUES ( 1 )
/*!*/;
SET TIMESTAMP=1240066017/*!*/;
INSERT INTO tbl VALUES ( 3 )
/*!*/;
# End of log file
ROLLBACK /* added by mysqlbinlog */;

and

$ mysqlbinlog binlog-merge-2.log -s
SET TIMESTAMP=1240066016/*!*/;
INSERT INTO tbl VALUES ( 2 )
/*!*/;
SET TIMESTAMP=1240066018/*!*/;
INSERT INTO tbl VALUES ( 4 )
/*!*/;
# End of log file
ROLLBACK /* added by mysqlbinlog …
[Read more]
MySQL Proxy meets: binlogs - sneak peek II

The slides are written, uploaded and the code snippets work. I'm ready to present.

One of the topics will be merging binlogs which is what multi-master replication is all about on the low level. A common example is sharding where you have several masters which share the same table-structures, but store the data independently. This is great for scaling out, but tricky if you have to run a query over the full dataset.

The logfiles look like:

$ mysqlbinlog binlog-merge-1.log -s
SET TIMESTAMP=1240066015/*!*/;
INSERT INTO tbl VALUES ( 1 )
/*!*/;
SET TIMESTAMP=1240066017/*!*/;
INSERT INTO tbl VALUES ( 3 )
/*!*/;
# End of log file
ROLLBACK /* added by mysqlbinlog */;

and

$ mysqlbinlog binlog-merge-2.log -s
SET TIMESTAMP=1240066016/*!*/;
INSERT INTO tbl VALUES ( 2 )
/*!*/;
SET TIMESTAMP=1240066018/*!*/;
INSERT INTO tbl VALUES ( 4 )
/*!*/;
# End of log file
ROLLBACK /* added by mysqlbinlog */;

As …

[Read more]
Calpont at MySQL UC 2009

While Calpont has been engaged with a number of members of the MySQL community over the past years, this will be our first wide presentation of our storage engine capabilities.

What if loading your big data for analysis was easy? How about simple scale-out for data warehousing that allows analysis of all the data using all the resources of a distributed system, while retaining the simplicity of a single MySQL instance? How about blindingly fast analysis of the raw data without requiring aggregation that can lose the detail? Come find out what Calpont can offer: 

Calpont's foundation or Pillars:

Capable:
   - Purpose built for analytics
   - Built for big data
   - Built for speed

Scalable:
  - Scalable scan, filter, aggregation, and hash join
  - Intra-server parallelism (multithreaded within …

[Read more]
The MySQL Conference first timer’s guide from an old-timer

This is a “first-timer’s” guide to the MySQL Conference & Expo 2009. It is by no means official, but are things I think are somewhat important. Its broken down into sections: What days to attend, What to bring, Laptop, Blogging, Twittering, etc…, Be Social, The Attendee Directory, Evenings, and Did I miss something? Its long, but do bear with me — its just some friendly advice after attending this conference for quite the number of years.

What days to attend

The conference runs from Monday to Thursday. Monday is tutorial day, and Tuesday, Wednesday and Thursday are days where you have the conference proper.

Tuesday and Wednesday are days the Expo Hall is open. Go there, visit the place, learn about the ecosystem, and probably walk away with goodies while you’re at it. Don’t forget the DotOrg Pavilion, as there are plenty of open source projects …

[Read more]
Pythian Goes to the MySQL Conferences

I’m very proud to share with you a few things: Sheeri K. Cabral, Nick Westerlund, Paul Vallée, Peter Ling, and I (Augusto Bott) will be in Santa Clara, CA for the MySQL Conference and Expo, MySQL Camp, and the Percona Performance Conference, next week.

Nick and I will be presenting a session called Proactive Operational Measures on the Percona Conference, and another session called 8 Rules for Designing More Secure Applications at the MySQL Camp.

Sheeri will be presenting Understanding How MySQL …

[Read more]
New storage engines and appliances at MySQL Conference

A couple of years back, MySQL embarked upon a strategy to be more open and encourage third-party companies to create their own pluggable storage engines.  The strategy was partly a response to Oracle's acquisition of InnoDB, which was at the time the leading transactional storage engine.  Since then, we've seen new storage engines announced and released every year, typically at the April MySQL Users Conference.

read more

Community Keynote at the MySQL Conference

I am thrilled to announce that this year’s MySQL Conference will feature a Community Keynote. This is a keynote speech delivered by a community member (not a Sun employee!) about topics relevant to us.

I am delivering this year’s keynote, entitled “How to be a MySQL Superhero” on Wednesday, April 22nd at 9:45 am Pacific. Details are at http://www.mysqlconf.com/mysql2009/public/schedule/detail/9098. This is a great indication that Sun and O’Reilly are taking community very seriously, and want to make sure that our voices are heard — literally.

I hope that this can be an annual featured keynote, like the “State of the Dolphin.” The thriving community is one of the reasons MySQL is the world’s most popular database.

CAOS Theory Podcast 2009.04.17

Topics for this podcast:

*CAOS 11 - Open to Investment
*CollabNet out with new TeamForge 5.2
*Memcached and MySQL appliances abound

iTunes or direct download (25:05, 5.8 MB)

MySQL replication breaks single-threaded limitation?

It’s a feature preview with many limitations, but this is still good news. This has been a pretty severe performance limitation for replication in MySQL, which has prompted many a workaround.

Interestingly, the feature preview is based on MySQL 5.1, which has recently seemed to be getting some significant changes even though it’s a GA release. Does this signal a change to MySQL’s release cycle, which has sometimes been characterized as too long? More good news?

Zimbra Collaboration Suite 6.0 Beta (Codename: Guns N’ Roses)

Few things get our community excited like a major release version of the Zimbra Collaboration Suite. Today marks availability of the first GnR preview: ZCS 6.0 Beta 1 Open Source Edition. Admins and developers can find it over on the downloads page, for the less technically inclined we’ll also have a new hosted demo up shortly.

Some feature highlights:

» A new horizontal ‘three panel’ view with the message on the right.

» There are now tabs for individual messages as well as the compose page.

» Document & Briefcase access from the standard HTML client.

» Share management & discovery UI that lets you see all shares (email, …

[Read more]
Showing entries 28623 to 28632 of 44922
« 10 Newer Entries | 10 Older Entries »