Received a "certificate of attendance as speaker" for recently concluded FISL 10.
This is sweet, thanks FISL organizers! It certainly adds a
personal touch to the whole experience.
I don't remember receiving a personal certificate like this
:)
Technorati: conf fisl brazil
glassfish netbeans
mysql eclipse
Two more RDBMS/GlassFish/Software combinations to add... ADempiere is traditionally backed by PostgreSQL (Compiere usually goes with Oracle Server or EnterpriseDB). Using MySQL has been discussed on and off for a while, and Praneet reports on more progress on this direction on ADempiere on MySQL (on GlassFish Server). And, on the … |
There are many features that are similar in MySQL and Drizzle. There are also many that are not.
I’ve previously discussed topics like Datatypes and tables, SQL_MODE and SHOW.
A key difference in Drizzle is the definition of utf8 as 4 bytes, not 3 bytes as in MySQL. This combined with no other character sets leads to an impact on the length in keys supported in Innodb.
During a recent test with a client, I was unable to successfully migrated the schema and provide the same schema due to unique indexes defined for utf8 VARHAR(255) fields.
Here is the problem. …
[Read more]I was trying to demonstrate to a client how to monitor queries that generate internal temporary tables. With an EXPLAIN plan you see ‘Creating temporary’. Within MySQL you can use the SHOW STATUS to look at queries that create temporary tables.
There is the issue that the act of monitoring impacts the results, SHOW STATUS actually creates a temporary table. You can see in this example.
mysql> select version(); +-----------------+ | version() | +-----------------+ | 5.1.31-1ubuntu2 | +-----------------+ 1 row in set (0.00 sec) mysql> show global status like 'created_tmp%'; +-------------------------+-------+ | Variable_name | Value | +-------------------------+-------+ | Created_tmp_disk_tables | 48 | | Created_tmp_files | 5 | | Created_tmp_tables | 155 | +-------------------------+-------+ 3 rows in set (0.00 sec) mysql> show global status like 'created_tmp%'; +-------------------------+-------+ | …[Read more]
With thanks to Patrick Galbraith and his DBD::drizzle 0.200 I am now able to test client benchmarks side by side with MySQL and Drizzle.
For simple benchmarking with clients, generally when I have little time, I use a simple Perl framework mybench. I was able to change just the connection string and run tests.
The diff of my two scripts where:
--- > my $user = $opt{u} || "appuser"; > my $pass = $opt{p} || "password"; > my $port = $opt{P} || 3306; > my $dsn = "DBI:mysql:$db:$host;port=$port"; --- < my $user = $opt{u} || "root"; < my $pass = $opt{p} || ""; < my $port = $opt{P} || 4427; < my $dsn = "DBI:drizzle:$db:$host;port=$port"; ---
It’s too early to tell what improvement Drizzle will make. Just running my …
[Read more]Quick one here; If you’re thinking to yourself “why can’t I make the MySQL data partition JFS on my RHEL5 server…” here’s a good how to: http://phaq.phunsites.net/2008/02/04/enabling-reiserfs-xfs-jfs-on-redhat-enterprise-linux/
FISL 2009 wrapped up over the weekend. Even though the
conference officially ended on Saturday but the connections made
there will certainly allow us to continue all the great momentum.
The conference celebrates open source and it was certainly great
to see Federal Government and Banks with their booths in the
exhibitor halls. The visit by Brazilian President Lula certainly
highlights the importance of this conference to the local
community. There were booths from Debian, Firefox, Ubuntu and
other major open source softwares. Some commercial vendors had a
booth as well and of course Sun Microsystems had a big presence
with GlassFish,
Open Solaris,
NetBeans,
MySQL and …
FISL 2009 wrapped up over the weekend. Even though the
conference officially ended on Saturday but the connections made
there will certainly allow us to continue all the great momentum.
The conference celebrates open source and it was certainly great
to see Federal Government and Banks with their booths in the
exhibitor halls. The visit by Brazilian President Lula certainly
highlights the importance of this conference to the local
community. There were booths from Debian, Firefox, Ubuntu and
other major open source softwares. Some commercial vendors had a
booth as well and of course Sun Microsystems had a big presence
with GlassFish,
Open Solaris,
NetBeans,
MySQL and …
FISL 2009 wrapped up over the weekend. Even though the
conference officially ended on Saturday but the connections made
there will certainly allow us to continue all the great momentum.
The conference celebrates open source and it was certainly great
to see Federal Government and Banks with their booths in the
exhibitor halls. The visit by Brazilian President Lula certainly
highlights the importance of this conference to the local
community. There were booths from Debian, Firefox, Ubuntu and
other major open source softwares. Some commercial vendors had a
booth as well and of course Sun Microsystems had a big presence
with GlassFish,
Open Solaris,
NetBeans,
MySQL and …
Learn how GlassFish and NetBeans helped Ginga community to build a TV Banking
application in Brazil. See a live demo of the product, it's
really exciting!
Why GlassFish ? - They love how NetBeans tooling completely hides
the complexity of what's happening underneath and the ease-of-use
with GlassFish.
Thanks Hugo Lavalle for the interview and good luck with your
product!
Technorati: conf fisl brazil
glassfish story
…