MongoDB Ops Manager is the easiest way to manage/monitor/operationalize your MongoDB footprint across your enterprise. Ops Manager automates key operations such as deployments, scaling, upgrades, and backups, all with the click of a button and integration with your favorite tools. It also provide the ability to monitor and alert on dozens of platform specific metrics. In this webinar, we'll cover the components of Ops Manager, as well as how it integrates and accelerates your use of MongoDB.
MySQL Administrator
Basic course
- MySQL ??
- MySQL ?? / ??
- MySQL ???? - MySQL ???? ??
- MySQL ??
- MySQL ?? / ??
- MySQL ????
Advanced course
- MySQL Optimization
- MariaDB / Percona
- MySQL HA (High Availability)
- MySQL troubleshooting
?????
http://neoclova.co.kr/
This document provides an overview of HBase and why NoSQL databases like HBase were developed. It discusses how relational databases do not scale horizontally well with large amounts of data. HBase was created by Google to address these scaling issues and was inspired by their BigTable database. The document explains the HBase data model with rows, columns, and versions. It describes how data is stored physically in HFiles and served from memory and disks. Basic operations like put, get, and scan are also covered.
re:Invent 2019 BPF Performance Analysis at NetflixBrendan Gregg
?
This document provides an overview of Brendan Gregg's presentation on BPF performance analysis at Netflix. It discusses:
- Why BPF is changing the Linux OS model to become more event-based and microkernel-like.
- The internals of BPF including its origins, instruction set, execution model, and how it is integrated into the Linux kernel.
- How BPF enables a new class of custom, efficient, and safe performance analysis tools for analyzing various Linux subsystems like CPUs, memory, disks, networking, applications, and the kernel.
- Examples of specific BPF-based performance analysis tools developed by Netflix, AWS, and others for analyzing tasks, scheduling, page faults
This document discusses MySQL data replication. It explains that replication asynchronously copies data from a master database server to slave servers, allowing the slaves to handle read operations and serve as backups. It provides configuration steps for setting up replication by enabling binary logging on the master, setting server IDs, and specifying replication users and hosts. Code examples demonstrate how to configure the master and slave servers and check the slave's replication status. Finally, it briefly mentions alternative replication topologies and tools.
Kernel Recipes 2019 - XDP closer integration with network stackAnne Nicolas
?
XDP (eXpress Data Path) is the new programmable in-kernel fast-path, which is placed as a layer before the existing Linux kernel network stack (netstack).
We claim XDP is not kernel-bypass, as it is a layer before and it can easily fall-through to netstack. Reality is that it can easily be (ab)used to create a kernel-bypass situation, where non of the kernel facilities are used (in form of BPF-helpers and in-kernel tables). The main disadvantage with kernel-bypass, is the need to re-implement everything, even basic building blocks, like routing tables and ARP protocol handling.
It is part of the concept and speed gain, that XDP allows users to avoid calling part of the kernel code. Users have the freedom to do kernel-bypass and re-implement everything, but the kernel should provide access to more in-kernel tables, via BPF-helpers, such that users can leverage other parts of the Open Source ecosystem, like router daemons etc.
This talk is about how XDP can work in-concert with netstack, and proposal on how we can take this even-further. Crazy ideas like using XDP frames to move SKB allocation out of driver code, will also be proposed.
MariaDB MaxScale is a database proxy that provides scalability, high availability, and data streaming capabilities for MariaDB and MySQL databases. It acts as a load balancer and router to distribute queries across database servers. MaxScale supports services like read/write splitting, query caching, and security features like selective data masking. It can monitor replication lag and route queries accordingly. MaxScale uses a plugin architecture and its core remains stateless to provide flexibility and high performance.
We will show the advantages of having a geo-distributed database cluster and how to create one using Galera Cluster for MySQL. We will also discuss the configuration and status variables that are involved and how to deal with typical situations on the WAN such as slow, untrusted or unreliable links, latency and packet loss. We will demonstrate a multi-region cluster on Amazon EC2 and perform some throughput and latency measurements in real-time (video http://galeracluster.com/videos/using-galera-replication-to-create-geo-distributed-clusters-on-the-wan-webinar-video-3/)
This document provides an overview and introduction to Elasticsearch. It discusses the speaker's experience and community involvement. It then covers how to set up Elasticsearch and Kibana locally. The rest of the document describes various Elasticsearch concepts and features like clusters, nodes, indexes, documents, shards, replicas, and building search-based applications. It also discusses using Elasticsearch for big data, different search capabilities, and text analysis.
RADIUS and LDAP on pfSense 2.4 - pfSense Hangout February 2018Netgate
?
This document provides an overview of RADIUS and LDAP authentication in pfSense. It discusses how pfSense supports RADIUS and LDAP for the GUI, VPNs, captive portal, and wireless authentication. It also provides information on configuring RADIUS and LDAP servers and setting them up for use in pfSense. Key areas covered include supported protocols, reply attributes, group handling, and options for different services.
Session presented at Oracle Developer Live - MySQL, 2020. Recording available at https://developer.oracle.com/developer-live/mysql/
Abstract:
MySQL Shell is the new, advanced command-line client and editor for MySQL. It sends SQL statements to MySQL server, supports both the classic MySQL protocol and the newer X protocol, and provides scripting capabilities for JavaScript and Python. But there's more to MySQL Shell than meets the eye. It delivers a natural and powerful interface for all DevOps tasks related to MySQL by providing APIs for development and administration. This session covers MySQL Shell's core features, along with demonstrations of how to use the various APIs and how to extend MySQL Shell. We’ll address the regular interaction with databases, the built-in tools that make DBAs and developers’ lives easier, the easy and flawless set up of HA architectures, and the plugins and extensions framework.
1) To access the TSO service at the University of Georgia, users must identify themselves by entering their USERID and password during the LOGON process.
2) The Interactive System Productivity Facility/Program Development Facility (ISPF/PDF) is a component of TSO that facilitates interaction with the TSO service. This guide describes how to use ISPF/PDF.
3) Key conventions used in this guide include showing commands in UPPERCASE and information the user provides in lowercase. "Next to" indicates the character position immediately to the right of the indicating arrow.
Chicago Data Summit: Apache HBase: An IntroductionCloudera, Inc.
?
Apache HBase is an open source distributed data-store capable of managing billions of rows of semi-structured data across large clusters of commodity hardware. HBase provides real-time random read-write access as well as integration with Hadoop MapReduce, Hive, and Pig for batch analysis. In this talk, Todd will provide an introduction to the capabilities and characteristics of HBase, comparing and contrasting it with traditional database systems. He will also introduce its architecture and data model, and present some example use cases.
The document discusses the Network File System (NFS) protocol. NFS allows users to access and share files located on remote computers as if they were local. It operates using three main layers - the RPC layer for communication, the XDR layer for machine-independent data representation, and the top layer consisting of the mount and NFS protocols. NFS version 4 added features like strong security, compound operations, and internationalization support.
Apache Doris (incubating) is an MPP-based interactive SQL data warehousing for reporting and analysis. It is open-sourced by Baidu. Doris mainly integrates the technology of Google Mesa and Apache Impala. Unlike other popular SQL-on-Hadoop systems, Doris is designed to be a simple and single tightly coupled system, not depending on other systems. Doris not only provides high concurrent low latency point query performance, but also provides high throughput queries of ad-hoc analysis. Doris not only provides batch data loading, but also provides near real-time mini-batch data loading. Doris also provides high availability, reliability, fault tolerance, and scalability. The simplicity (of developing, deploying and using) and meeting many data serving requirements in single system are the main features of Doris.
Redis is an in-memory data structure store that can be used as a database, cache, or message broker. It supports various data structures like strings, hashes, lists, sets, and sorted sets. Data can be persisted to disk for durability and replicated across multiple servers for high availability. Redis also implements features like expiration of keys, master-slave replication, clustering, and bloom filters.
This document discusses achieving very high speeds of 100 million packets per second (100Mpps) on commodity PC hardware using kernel bypassing techniques. It describes the company redCDN and their development of a DDoS mitigation solution called redGuardian. Key challenges discussed include the limitations of operating system network stacks at high speeds, hardware capabilities, and how data plane frameworks like DPDK can be used to bypass the OS and achieve wire-speed performance by accessing network interface cards directly from userspace.
MariaDB Galera Cluster Webinar by Ivan Zoratti on 13.11.2013. Also available as on demand webinar at http://www.skysql.com/why-skysql/webinars/mariadb-galera-cluster-simple-transparent-highly-available
Introduction to failover clustering with sql serverEduardo Castro
?
In this presentation we review the basic requirements to install a SQL Server Failover Cluster.
Regards,
Eduardo Castro Martinez
http://ecastrom.blogspot.com
http://comunidadwindows.org
MariaDB MaxScale is a database proxy that provides scalability, high availability, and data streaming capabilities for MariaDB and MySQL databases. It acts as a load balancer and router to distribute queries across database servers. MaxScale supports services like read/write splitting, query caching, and security features like selective data masking. It can monitor replication lag and route queries accordingly. MaxScale uses a plugin architecture and its core remains stateless to provide flexibility and high performance.
We will show the advantages of having a geo-distributed database cluster and how to create one using Galera Cluster for MySQL. We will also discuss the configuration and status variables that are involved and how to deal with typical situations on the WAN such as slow, untrusted or unreliable links, latency and packet loss. We will demonstrate a multi-region cluster on Amazon EC2 and perform some throughput and latency measurements in real-time (video http://galeracluster.com/videos/using-galera-replication-to-create-geo-distributed-clusters-on-the-wan-webinar-video-3/)
This document provides an overview and introduction to Elasticsearch. It discusses the speaker's experience and community involvement. It then covers how to set up Elasticsearch and Kibana locally. The rest of the document describes various Elasticsearch concepts and features like clusters, nodes, indexes, documents, shards, replicas, and building search-based applications. It also discusses using Elasticsearch for big data, different search capabilities, and text analysis.
RADIUS and LDAP on pfSense 2.4 - pfSense Hangout February 2018Netgate
?
This document provides an overview of RADIUS and LDAP authentication in pfSense. It discusses how pfSense supports RADIUS and LDAP for the GUI, VPNs, captive portal, and wireless authentication. It also provides information on configuring RADIUS and LDAP servers and setting them up for use in pfSense. Key areas covered include supported protocols, reply attributes, group handling, and options for different services.
Session presented at Oracle Developer Live - MySQL, 2020. Recording available at https://developer.oracle.com/developer-live/mysql/
Abstract:
MySQL Shell is the new, advanced command-line client and editor for MySQL. It sends SQL statements to MySQL server, supports both the classic MySQL protocol and the newer X protocol, and provides scripting capabilities for JavaScript and Python. But there's more to MySQL Shell than meets the eye. It delivers a natural and powerful interface for all DevOps tasks related to MySQL by providing APIs for development and administration. This session covers MySQL Shell's core features, along with demonstrations of how to use the various APIs and how to extend MySQL Shell. We’ll address the regular interaction with databases, the built-in tools that make DBAs and developers’ lives easier, the easy and flawless set up of HA architectures, and the plugins and extensions framework.
1) To access the TSO service at the University of Georgia, users must identify themselves by entering their USERID and password during the LOGON process.
2) The Interactive System Productivity Facility/Program Development Facility (ISPF/PDF) is a component of TSO that facilitates interaction with the TSO service. This guide describes how to use ISPF/PDF.
3) Key conventions used in this guide include showing commands in UPPERCASE and information the user provides in lowercase. "Next to" indicates the character position immediately to the right of the indicating arrow.
Chicago Data Summit: Apache HBase: An IntroductionCloudera, Inc.
?
Apache HBase is an open source distributed data-store capable of managing billions of rows of semi-structured data across large clusters of commodity hardware. HBase provides real-time random read-write access as well as integration with Hadoop MapReduce, Hive, and Pig for batch analysis. In this talk, Todd will provide an introduction to the capabilities and characteristics of HBase, comparing and contrasting it with traditional database systems. He will also introduce its architecture and data model, and present some example use cases.
The document discusses the Network File System (NFS) protocol. NFS allows users to access and share files located on remote computers as if they were local. It operates using three main layers - the RPC layer for communication, the XDR layer for machine-independent data representation, and the top layer consisting of the mount and NFS protocols. NFS version 4 added features like strong security, compound operations, and internationalization support.
Apache Doris (incubating) is an MPP-based interactive SQL data warehousing for reporting and analysis. It is open-sourced by Baidu. Doris mainly integrates the technology of Google Mesa and Apache Impala. Unlike other popular SQL-on-Hadoop systems, Doris is designed to be a simple and single tightly coupled system, not depending on other systems. Doris not only provides high concurrent low latency point query performance, but also provides high throughput queries of ad-hoc analysis. Doris not only provides batch data loading, but also provides near real-time mini-batch data loading. Doris also provides high availability, reliability, fault tolerance, and scalability. The simplicity (of developing, deploying and using) and meeting many data serving requirements in single system are the main features of Doris.
Redis is an in-memory data structure store that can be used as a database, cache, or message broker. It supports various data structures like strings, hashes, lists, sets, and sorted sets. Data can be persisted to disk for durability and replicated across multiple servers for high availability. Redis also implements features like expiration of keys, master-slave replication, clustering, and bloom filters.
This document discusses achieving very high speeds of 100 million packets per second (100Mpps) on commodity PC hardware using kernel bypassing techniques. It describes the company redCDN and their development of a DDoS mitigation solution called redGuardian. Key challenges discussed include the limitations of operating system network stacks at high speeds, hardware capabilities, and how data plane frameworks like DPDK can be used to bypass the OS and achieve wire-speed performance by accessing network interface cards directly from userspace.
MariaDB Galera Cluster Webinar by Ivan Zoratti on 13.11.2013. Also available as on demand webinar at http://www.skysql.com/why-skysql/webinars/mariadb-galera-cluster-simple-transparent-highly-available
Introduction to failover clustering with sql serverEduardo Castro
?
In this presentation we review the basic requirements to install a SQL Server Failover Cluster.
Regards,
Eduardo Castro Martinez
http://ecastrom.blogspot.com
http://comunidadwindows.org
PHP Coding Standard and 50+ Programming SkillsHo Kim
?
1. How and Why to write good code?
2. Coding standard based on ZendFramework and real world practise.
3. PHP programming skills from daily coding.
4. Some security tips
5. Some optimization tips
Lixun Peng presents Double Sync Replication as a solution to problems with asynchronous and semi-synchronous replication. Double Sync Replication uses two replication channels - an asynchronous channel to continuously replicate binary logs from the master, and a semi-synchronous channel to replicate the latest binary logs and position. This allows the slave to always know the latest position on the master and compare logs from both channels to determine consistency. The asynchronous channel is used to fully apply logs when the network is down to catch the slave back up.
This document discusses several features that Alibaba is developing or contributing to MariaDB, including:
1. Time Machine/Flashback, which allows rolling databases back to snapshots by reversing DML operations in binary logs.
2. Double Sync Replication, which combines asynchronous and semi-synchronous replication to ensure the slave always knows the master's status.
3. Multi-source replication, which allows a single slave to replicate from multiple masters to support data sharding and backups across instances.
4. Thread Memory Monitor, which tracks memory usage by thread to identify which queries are using the most memory when the mysqld process exceeds limits.
Time Machine allows rolling back databases, tables, or instances to a previous snapshot by replaying binary logs in reverse. It works at the server level for all storage engines and formats binary logs using full images. Currently, it is a feature inside the mysqlbinlog tool. The tool reverses DML operations by changing event types and swapping SET and WHERE clauses to recover data modified in errors. Future work includes adding support for DDL statements and global transaction IDs.
The document discusses maintaining a dynamic dictionary on disk and describes the state of the art which includes B-trees and several variants. It then introduces the fractal tree, which is a replacement for traditional B-trees that can perform high entropy inserts and deletes up to 100 times faster without suffering from aging effects on range queries. Experimental results show the fractal tree implemented in TokuDB provides 10-100x faster index inserts and faster queries compared to traditional B-trees.
A binary graphics recognition algorithm based on fitting functionLixun Peng
?
This document proposes a binary graphics recognition algorithm based on fitting functions. It involves fitting line segments from graphics with polynomial functions, and comparing the fitting functions to templates in a knowledge base to identify the graphics. The algorithm represents graphics as sets of line segments, feature points, and best fitting vectors. It then uses the analysis of variance of fitting functions to recognize graphics by finding the most similar template function.