Jul
22
2019
--

Percona Monitoring and Management (PMM) 2 Beta 4 Is Now Available

Percona Monitoring and Management

Percona Monitoring and Management

We are pleased to announce our 4th Beta release of PMM 2! PMM (Percona Monitoring and Management) is a free and open-source platform for managing and monitoring MySQL, MongoDB, and PostgreSQL performance. With this release we’ve made the following improvements since our last public Beta at the end of May:

  • Query Analytics
    • PostgreSQL – Aggregate & identify slow queries from pg_stat_statements data source
    • Interface updates – label improvements, sparkline updates, tooltips
  • PMM Server Monitoring  – look for pmm-server in Dashboards and Query Analytics
  • ProxySQL monitoring – now available using pmm-admin add proxysql
  • Environment Overview Dashboard – Updated layout and colours – take a look!
  • Debian 10 support we now have pmm2-client deb packages for Debian 10

PMM 2 is still a work in progress – you may encounter some bugs and missing features. We are aware of a number of issues, but please report any and all that you find to Percona’s JIRA.

This release is not recommended for production environments.  PMM 2 is designed to be used as a new installation – please don’t try to upgrade your existing PMM 1 environment.

Query Analytics Dashboard Enhancements

Query Analytics for PostgreSQL

We’re excited to provide Query Analytics for PostgreSQL in this release, where you can now visualize query activity for PostgreSQL. Monitoring PostgreSQL queries is achieved via the popular pg_stat_statements extension.

Query Analytics Interface Updates

We spent some time updating Sparklines logic to be more accurate:

We now wrap long labels, and shorten in some cases with a hint to show the full label name:

We’re incrementally improving our Query Analytics to better explain what we’re measuring with the addition of tooltips:

PMM Server Monitoring

To better understand resource utilization on your PMM Server host, we’ve added a pmm-server entry in the OS, PostgreSQL, Prometheus, and Query Analytics Dashboards:

Query Analytics for PostgreSQL – pmm-server

You can explore the queries that are executed by Query Analytics:

ProxySQL support

You can now add ProxySQL instance to PMM and take advantage of the ProxySQL Overview Dashboard, which resides under the HA group in the system menu.

Simplified Environment Overview Dashboard

We’ve categorized the dashboard into several sections. The first two sections show total information for the entire environment as well as Top and Min values:

We also display the label name and current value, and you can click each object in order to drill down for greater detail:

We’ve started collapsing some rows by default, in order to minimize the visual clutter. Opening each category automatically refreshes the dashboard:

Installation and configuration

The default PMM Server credentials are:

username: admin
password: admin

Install PMM Server with docker

The easiest way to install PMM Server is to deploy it with Docker. Running the PMM 2 Docker container with PMM Server can be done by the following commands (note the version tag of 2.0.0-beta4):

docker create -v /srv --name pmm-data-2-0-0-beta4 perconalab/pmm-server:2.0.0-beta4 /bin/true
docker run -d -p 80:80 -p 443:443 --volumes-from pmm-data-2-0-0-beta4 --name pmm-server-2.0.0-beta4 --restart always perconalab/pmm-server:2.0.0-beta4

Install PMM Client

Since PMM 2 is still not GA, you’ll need to leverage our experimental release of the Percona repository. You’ll need to download and install the official percona-release package from Percona and use it to enable the Percona experimental component of the original repository. See percona-release official documentation for further details on this new tool.

Specific instructions for a Debian system are as follows:

wget https://repo.percona.com/apt/percona-release_latest.generic_all.deb
sudo dpkg -i percona-release_latest.generic_all.deb

Now enable the experimental repo:

sudo percona-release disable all
sudo percona-release enable original experimental

Install pmm2-client package:

apt-get update
apt-get install pmm2-client

Users who have previously installed pmm2-client alpha version should remove the package and install a new one in order to update to beta1.

Please note that leaving experimental repository enabled may affect further package installation operations with bleeding-edge software that may not be suitable for Production. You can revert by disabling experimental via the following commands:

sudo percona-release disable original experimental
sudo apt-get update

Configure PMM

Once PMM Client is installed, run the pmm-admin config command with your PMM Server IP address to register your Node:

# pmm-admin config --server-insecure-tls --server-url=https://<IP Address>:443

You should see the following:

Checking local pmm-agent status...
pmm-agent is running.
Registering pmm-agent on PMM Server...
Registered.
Configuration file /usr/local/percona/pmm-agent.yaml updated.
Reloading pmm-agent configuration...
Configuration reloaded.

Adding MySQL Metrics and Query Analytics

MySQL server can be added for the monitoring in its normal way. Here is a command which adds it using the PERFORMANCE_SCHEMA source:

pmm-admin add mysql --query-source='perfschema' --username=pmm --password=pmm

where username and password are credentials for the monitored MySQL access, which will be used locally on the database host.

The syntax to add MySQL services (Metrics and Query Analytics) using the Slow Log source is the following:

pmm-admin add mysql --query-source='slowlog' --username=pmm --password=pmm

When the server is added, you can check your MySQL dashboards and Query Analytics in order to view its performance information!

Adding MongoDB Metrics and Query Analytics

You can add MongoDB services (Metrics and Query Analytics) with a similar command:

pmm-admin add mongodb --use-profiler --username=pmm --password=pmm

Adding PostgreSQL monitoring service

You can add PostgreSQL service as follows:

pmm-admin add postgresql --username=pmm --password=pmm

You can then check your PostgreSQL Overview dashboard.

Add ProxySQL monitoring service

You can add ProxySQL service as follows:

pmm-admin add proxysql --username=admin --password=admin

You can then check your ProxySQL Overview dashboard.

About Percona Monitoring and Management

Percona Monitoring and Management (PMM) is a free and open-source platform for managing and monitoring MySQL®, MongoDB®, and PostgreSQL® performance. You can run PMM in your own environment for maximum security and reliability. It provides thorough time-based analysis for MySQL®, MongoDB®, and PostgreSQL® servers to ensure that your data works as efficiently as possible.

Help us improve our software quality by reporting any Percona Monitoring and Management bugs you encounter using our bug tracking system.

Jul
16
2019
--

Percona Kubernetes Operator for MongoDB 1.1.0 Is Now Available

Kubernetes for MongoDB

Kubernetes for MongoDBWe are glad to announce the 1.1.0 release of the Percona Kubernetes Operator for Percona Server for MongoDB.

The Operator simplifies the deployment and management of the Percona Server for MongoDB in Kubernetes-based environments. It extends the Kubernetes API with a new custom resource for deploying, configuring and managing the application through the whole life cycle.

The Operator source code is available in our Github repository. All of Percona’s software is open-source and free.

New features and improvements

  • Now the Percona Kubernetes Operator allows upgrading Percona Server for MongoDB to newer versions, either in semi-automatic or in manual mode.
  • Also, two modes are implemented for updating the Percona Server for MongoDB mongod.conf configuration file: in automatic configuration update mode Percona Server for MongoDB Pods are immediately re-created to populate changed options from the Operator YAML file, while in manual mode changes are held until Percona Server for MongoDB Pods are re-created manually.
  • Percona Server for MongoDB data-at-rest encryption is now supported by the Operator to ensure that encrypted data files cannot be decrypted by anyone except those with the decryption key.
  • A separate service account is now used by the Operator’s containers which need special privileges, and all other Pods run on default service account with limited permissions.
  • User secrets are now generated automatically if don’t exist: this feature especially helps reduce work in repeated development environment testing and reduces the chance of accidentally pushing predefined development passwords to production environments.
  • The Operator is now able to generate TLS certificates itself which removes the need in manual certificate generation.
  • The list of officially supported platforms now includes the Minikube, which provides an easy way to test the Operator locally on your own machine before deploying it on a cloud.
  • Also, Google Kubernetes Engine 1.14 and OpenShift Platform 4.1 are now supported.

Percona Server for MongoDB is an enhanced, open source and highly-scalable database that is a fully-compatible, drop-in replacement for MongoDB Community Edition. It supports MongoDB® protocols and drivers. Percona Server for MongoDB extends MongoDB Community Edition functionality by including the Percona Memory Engine, as well as several enterprise-grade features. It requires no changes to MongoDB applications or code.

Help us improve our software quality by reporting any bugs you encounter using our bug tracking system.
Jul
16
2019
--

Percona Kubernetes Operator for Percona XtraDB Cluster 1.1.0 Now Available

Percona Kubernetes Operator for Percona XtraDB Cluster 1.1.0

Percona Kubernetes Operator for Percona XtraDB Cluster 1.1.0We are glad to announce the 1.1.0 release of the  Percona Kubernetes Operator for Percona XtraDB Cluster.

The Percona Kubernetes Operator for Percona XtraDB Cluster automates the lifecycle and provides a consistent Percona XtraDB Cluster instance. The Operator can be used to create a Percona XtraDB Cluster, or scale an existing Cluster, and contains the necessary Kubernetes settings.

The Operator simplifies the deployment and management of the Percona XtraDB Cluster in Kubernetes-based environments. It extends the Kubernetes API with a new custom resource for deploying, configuring and managing the application through the whole life cycle.

The Operator source code is available in our Github repository. All of Percona’s software is open-source and free.

New features and improvements

  • Now the Percona Kubernetes Operator allows upgrading Percona XtraDB Cluster to newer versions, either in semi-automatic or in manual mode.
  • Also, two modes are implemented for updating the Percona XtraDB Cluster my.cnf configuration file: in automatic configuration update mode Percona XtraDB Cluster Pods are immediately re-created to populate changed options from the Operator YAML file, while in manual mode changes are held until Percona XtraDB Cluster Pods are re-created manually.
  • A separate service account is now used by the Operator’s containers which need special privileges, and all other Pods run on default service account with limited permissions.
  • User secrets are now generated automatically if don’t exist: this feature especially helps reduce work in repeated development environment testing and reduces the chance of accidentally pushing predefined development passwords to production environments.
  • The Operator is now able to generate TLS certificates itself which removes the need in manual certificate generation.
  • The list of officially supported platforms now includes Minikube, which provides an easy way to test the Operator locally on your own machine before deploying it on a cloud.
  • Also, Google Kubernetes Engine 1.14 and OpenShift Platform 4.1 are now supported.

Percona XtraDB Cluster is an open source, cost-effective and robust clustering solution for businesses. It integrates Percona Server for MySQL with the Galera replication library to produce a highly-available and scalable MySQL® cluster complete with synchronous multi-master replication, zero data loss and automatic node provisioning using Percona XtraBackup.

Help us improve our software quality by reporting any bugs you encounter using our bug tracking system.

Jul
15
2019
--

Percona Live Europe 2019 Conference Updates

The Percona Live Open Source Database Conference, Europe 2019 will have a one week extension of the call for papers.  Our new close date will be Monday July 22, 2019.  Any and all topics related to open source database technologies are invited.

This year’s conference takes a new approach, organizing tracks along these key business themes:

  • Performance & Scalability
  • Public, Private, and Hybrid Clouds & Everything In Between
  • Building Large, Scalable, & Secure Database Deployments
  • Hot Topics, New Features, & Trends You Should Know About
  • Monitor, Manage, & Maintain Databases at Scale
  • How to Reduce Costs & Complexity with Open Source Databases
  • Fascinating or important talks that don’t 100% fit in the other tracks

But as always the conference will be rich in expertise about MySQL®, MongoDB®, MariaDB®, PostgreSQL, Kubernetes®, and everything else related to open source databases.

Program Committee Announced

Percona is pleased to announce the conference program committee.  We are grateful for the participation of these senior technical experts from across the open source database world:

  • Laine Campbell, Facebook
  • Colin Charles, Consultant
  • Frédéric Descamps, Oracle
  • Antonios Giannopoulos, Object Rocket
  • Giuseppe Maxia, Software Explorer
  • Valerie Parham-Thompson, Pythian
  • Nicolai Plum, Booking.com

Percona’s committee representatives are:

  • Jobin Augustine, Senior Support Engineer
  • Vinicius Grippa, Senior Support Engineer
  • Sveta Smirnova, Principal Support Escalation Specialist
  • Alkin Tezuysal, Senior Technical Manager

The conference program will be announced on a rolling basis in early August.

Registration is OPEN!

Finally,  registration is now open!! Buying your ticket early will get you the best value by far at just €525 for all three days until August 9 . We are hosting the conference at a stunning new airport venue, the Amsterdam Hilton Schiphol, allowing easy access for international travelers but just 20 minutes by train from the historic heart of Amsterdam.  This new venue provides outstanding modern facilities with room for the conference to continue to grow. Read more about the event or simply…

Register here now

 

Jul
10
2019
--

Percona XtraBackup 2.4.15 Is Now Available

Percona XtraBackup 8.0

Percona XtraBackupPercona is glad to announce the release of Percona XtraBackup 2.4.15 on July 10, 2019. You can download it from our download site and apt and yum repositories.

Percona XtraBackup enables MySQL backups without blocking user queries, making it ideal for companies with large data sets and mission-critical applications that cannot tolerate long periods of downtime. Offered free as an open source solution, it drives down backup costs while providing unique features for MySQL backups.

All Percona software is open-source and free.

Bugs Fixed

  • When the encrypted tablespaces feature was enabled, encrypted and compressed
    tables were not usable on the joiner node (Percona XtraDB Cluster) via SST
    (State Snapshot Transfer) with the xtrabackup-v2 method. Bug fixed PXB-1867.
  • xbcloud did not update date related fields of the HTTP
    header when retrying a request. Bug fixed PXB-1874.
  • xbcloud did not retry to send the request after receiving the HTTP 408
    error (request timeout). Bug fixed PXB-1875.
  • If the user tried to merge an already prepared incremental backup, a
    misleading error was produced without informing that incremental backups may
    not be used twice. Bug fixed PXB-1862.
  • xbcloud could crash with the Swift storage when project options were
    not included. Bug fixed PXB-1844.
  • xtrabackup did not accept decimal fractions as values of the
    innodb_max_dirty_pages_pct option. Bug fixed PXB-1807.

Other bugs fixed:  PXB-1850, PXB-1879, PXB-1887, PXB-1888, PXB-1890.

Release notes with all the improvements for Percona XtraBackup 2.4.15 are available in our online documentation. Please report any bugs to the issue tracker.

Jun
26
2019
--

Percona XtraDB Cluster 5.7.26-31.37 Is Now Available

Percona XtraDB Cluster 5.7

Percona XtraDB Cluster 5.7

Percona is glad to announce the release of Percona XtraDB Cluster 5.7.26-31.37 on June 26, 2019. Binaries are available from the downloads section or from our software repositories.

Percona XtraDB Cluster 5.7.26-31.37 is now the current release, based on the following:

All Percona software is open-source and free.

Bugs Fixed

  • PXC-2480: In some cases, Percona XtraDB Cluster could not replicate CURRENT_USER() used in the ALTER statement. USER() and CURRENT_USER() are no longer allowed in any ALTER statement since they fail when replicated.
  • PXC-2487: The case when a DDL or DML action was in progress from one client and the provider was updated
    from another client could result in a race condition.
  • PXC-2490: Percona XtraDB Cluster could crash when binlog_space_limit was set to a value other than zero during wsrep_recover mode.
  • PXC-2491: SST could fail if the donor had encrypted undo logs.
  • PXC-2497: The user can set the preferred donor by setting the wsrep_sst_donor variable. An IP address is not valid as the value of this variable. If the user still used an IP address, an error message was produced that did not provide sufficient information. The error message has been improved to suggest that the user check the value of the wsrep_sst_donor for an IP address.
  • PXC-2537: Nodes could crash after an attempt to set a password using mysqladmin

Other bugs fixedPXC-2276PXC-2292PXC-2476,  PXC-2560

Help us improve our software quality by reporting any bugs you encounter using our bug tracking system. As always, thanks for your continued support of Percona!

Jun
19
2019
--

Percona XtraDB Cluster 5.6.44-28.34 Is Now Available

Percona XtraDB Cluster 5.7

Percona XtraDB Cluster 5.7

Percona is glad to announce the release of Percona XtraDB Cluster 5.6.44-28.34 on June 19, 2019. Binaries are available from the downloads section or from our software repositories.

Percona XtraDB Cluster 5.6.44-28.34 is now the current release, based on the following:

All Percona software is open-source and free.

Bugs Fixed

  • PXC-2480: In some cases, Percona XtraDB Cluster could not replicate CURRENT_USER() used in the ALTER statement. USER() and CURRENT_USER() are no longer allowed in any ALTER statement since they fail when replicated.
  • PXC-2487: The case when a DDL or DML action was in progress from one client and the provider was updated
    from another client could result in a race condition.
  • PXC-2490: Percona XtraDB Cluster could crash when binlog_space_limit was set to a value other than zero during wsrep_recover mode.
  • PXC-2497: The user can set the preferred donor by setting the wsrep_sst_donor variable. An IP address is not valid as the value of this variable. If the user still used an IP address, an error message was produced that did not provide sufficient information. The error message has been improved to suggest that the user check the value of the wsrep_sst_donor for an IP address.

Help us improve our software quality by reporting any bugs you encounter using our bug tracking system. As always, thanks for your continued support of Percona!

Jun
14
2019
--

On the Road: Russia, UK and France Summer MeetUps

Not long after this year’s SouthEast LinuxFest 2019 in mid-June I’ll be speaking at a series of open source database meetups in Russia & UK, plus a big data MeetUp in France. At Percona we’re well aware of the growing number of Percona software users around the world, and whenever we have a chance to meet users at relevant local events we like to take advantage of the opportunity. The meetups listed below are free to attend. As well as the technical topics on the agendas, I’ll be sharing Percona plans and vision and ready to answer your questions. If you can make it, please come and say hi.

On behalf of team Percona I express gratitude to Mail.Ru Group in Moscow, Selectel in St.Petersburg and Elonsoft & IT61 Community in Rostov, Federico Razzoli in London, and Anastasia Lieva of the Big Data/Data Science MeetUp, Montpellier for hosting and organizing these events.

Saint Petersburg, June 26

Venue: Selectel office, Tsvetochnaya street, 21, Saint Petersburg
Date and time: Wednesday, June 26, 2019 meet at 6.30pm for a 7pm start
Registration: https://percona-events.timepad.ru/event/999696/

Programme

I’ll be sharing the floor with Sergei Petrunia of MariaDB Corporation.

  • Ten Things a Developer Should Know About Databases Peter Zaitsev, CEO, Percona
  • MariaDB 10.4 – What’s New? Sergei Petrunia, Software Developer, MariaDB Corporation

Rostov-on-Don, June 27

Venue: Rubin co-working space, Teatralniy avenue, 85, 4th floor, Rostov-on-Don
Date and time: Thursday, June 27, 2019 meet at 6.30pm for a 7pm start
Registration: https://percona-events.timepad.ru/event/999741/

Programme

In Rostov-on-Don, I’ll be presenting two talks:

  • Ten Things a Developer Should Know About Databases
  • MySQL: Scaling & High Availability

Moscow, July 1

Venue: Mail.Ru Group office, “Cinema hall” room,  Leningradsky avenue, 39, build. 79, Moscow
Date and time: Monday, July 1, 2019 meet at 6.00pm for a 6.30pm start
Registration: https://corp.mail.ru/ru/press/events/601/

Programme

In Moscow, I’ll be joined by Vlad Fedorkov of ProxySQL and Kirill Yukhin of Mail.Ru.

  • Ten Things a Developer Should Know About Databases Peter Zaitsev, CEO, Percona
  • ProxySQL 2.0: How to Help MySQL Cope with Heavy Workload Vlad Fedorkov, Lead Consultant, ProxySQL
  • Tarantool: Now with SQL Kirill Yukhin, Engineering Team Lead, Mail.Ru

London, July 4

Venue: Innovation Warehouse, 1 East Poultry Avenue, London EC1A 9PT
Date and time: Thursday, July 4, 2019 meet at 6.00pm for a 6.30pm start
Registration: London Open Source Databases MeetUp

Programme

It would be great to see some new faces and interesting topics at the lightning talks, this is a great idea from Federico and I hope that people take him up on this.

  • London OSDB community lightning talks, if you’d like to present please contact Federico!
  • Ten Things a Developer Should Know About Databases
  • Ask Me Anything!

Montpellier, July

At the time of writing this blog we’ve a few things to iron out, but save the date and check out the MeetUp page… I’ll update this blog as soon as I have firm information.

Venue: tbc
Date and time: Tuesday, July 9 at 7:00pm 
MeetUp group: Big Data/Data Science MeetUp, Montpellier

Programme

I’ll be presenting two talks:

  • Performance Analyses and Troubleshooting Technologies for Databases
  • Data Visualization with Grafana

It’d be good to see you…

Whether you’re a customer, a technology user, a data enthusiast, thinking about applying for a role at a great company (Percona!), or perhaps just passionate about open source software you’re invited to come and say “Hi” and ask questions of me or of my fellow speakers.

I look forward to seeing you! If you have any questions about the events, please feel free to contact Percona’s community team.

 


Map Photo by Ian on Unsplash

Jun
05
2019
--

Google Summer of Code – Percona Interns

Google Summer of Code (GSoC) is a program that focuses on bringing young talented students from universities into open source projects. This year, Percona became a mentor organization, so two student interns will join us as GSoC interns. They’ll be working with us over the next four months, and we’re delighted to welcome them to the Percona team.

Preparations

As this is our first year of participation, the Percona Monitoring and Management (PMM) team began preparing our application for GSoC in December, 2018. We defined the list of projects that would help us improve PMM and introduce new features provided by the GSoC interns. With help from our HR and Marketing teams, we prepared a landing page on the Percona website with the relevant information about each project, along with information about proposal templates, and a mailing list for potentially interested students.

Details about the students and projects can also be found on Percona’s GSoC organization page.

The students and their projects

The two students who will be working with us are Kartikeya Gokhale and Mrinal Dutta, who are both from the same university, Dhirubhai Ambani Institute of Information and Communication Technology (DAIICT) in Gandhinagar, India.

Kartikeya Gokhale

Kartikeya is a computer enthusiast, who enjoys working on amazing technologies with interesting teams and people. He has worked as a full-stack developer at Quze (www.quze.co), an ed-tech startup aiming to revolutionize the field of education.

Kartikeya’s project is to enhance and improve the UI test helper for PMM. codeceptjs-resemblehelper is a UI testing helper which will be used by the PMM team to verify data consistency in metric plots and provide image comparison.

The Percona mentors for this project are Puneet Kala, Frontend/Web QA Automation Engineer, Nailya Kutlubaeva, QA Engineer, and Roma Novikov, Director of Platform Engineering.

Mrinal Dutta

A final year student of the university’s MSc-IT cohort, this project represents Mrinal’s first contribution towards open source. Mrinal says he has a strong drive to have an impact on anything and everything he participates in, whether that be work or extra-curricular activities such as sport and other pursuits. Mrinal is looking forward to have a great summer with Percona and GSoC Program.

Mrinal’s project is the refactoring of our Grafana dashboards. The aim of the project is to convert the existing dashboards’ static JSON files to Jsonnet files. This will help us to dynamically generate JSON for PMM according to needs.

The Percona mentors for Mrinal’s project are Vadim Yalovets,  Software Engineer, and Roma Novikov.

Summing up

The GSoC team at Percona is thankful to everyone involved in this year’s application and selection process. We are excited to have a team of mentors helping students learn about our products and working in open source. We’re looking forward to enjoying the two-way dialogue and guiding the students to hone their skills as they experience working on these valuable PMM developments.

If you have any questions about GSoC Program please feel free to write to us on gsoc@percona.com

May
30
2019
--

Percona Live 2019 Keynotes, Day Two

Oracle

Welcome to Percona Live 2019 keynotes, day two!

Day two of Percona Live 2019 looks to be as filled with great talks as day one. Today we started with presentations from Percona, Continuent, VividCortex, Oracle, and Alibaba. You can view the recording of today’s keynotes here.

Percona Welcome Back
Matt Yonkovit (Percona)

Matt Yonkovit, Percona CXO, welcomed everyone back to Percona Live Open Source Database Conference 2019 day two. He reminded everybody to rate your talks using the Percona Live App. People who rate five or more talks are eligible for a raffle prize!

Oracle

The State of the Dolphin
Frédéric Descamps – Oracle

Where are we with MySQL 8.0 one year after GA? How was the journey and how the Community impacted the road map? During this session come to discover our new release way allowing us to be even more close to our users looking for performance, stability but also innovation.

Alibaba

Cloud Native Database – POLARDB
Jimmy Yang – Alibaba Inc

1. Alibaba Cloud soon releases the MySQL 8.0-compatible edition of POLARDB
2. The new POLARDB would support parallel query, provide excellent large query support
3. The new POLARDB improves on IO with PolarStore as well as on various subsystems,
outperforms MySQL8.0 even on a standalone server.
4. More new features on with new POLARDB.

Continuent

The Color of Open Source Money – Are some open source business models more acceptable than others?
Eero Teerikorpi – Continuent

The color of open source money is a curious case! There are those organizations that make money from open source technologies, with or without making contributions back to the software itself. There also are commercial open source software vendors, who do add value to the underlying open source technology by enhancing the solution and providing support for it. And then there are commercial software vendors who extend the capability of the open source solution with proprietary solutions. And, last but not least, some cloud providers’ business model involves building SaaS solutions based on free open source technology. Some of the above business models are deemed to be more acceptable by the open source community than others.

Vivid Cortex

Bringing DevOps To The Database
Baron Schwartz – VividCortex

Applying DevOps principles and practices to the database can make software development processes faster, better and cheaper. Yet most companies do not include their databases in their DevOps initiatives because they face a variety of challenges to make it work.

Why is it hard to apply DevOps to databases? How can we get better at it? This talk addresses those questions (and more) by exploring the real-life stories of teams that successfully changed their entrenched culture, workflows, and tooling – and others who tried.

Michael Coburn

Percona Monitoring and Management (PMM)
Michael Coburn – Percona

We are pleased to announce the release of PMM 2 Beta!  PMM (Percona Monitoring and Management) is a free and open-source platform for managing and monitoring MySQL, MongoDB, and PostgreSQL performance.

Powered by WordPress | Theme: Aeros 2.0 by TheBuckmaker.com