Category: Cluster

Marathon Mesos FAQ

Issue 1. Inconsistent Mesos Leader Election 鈥?Use the following command to check the logs inside the mesos-master container and see which server it identifies as the Mesos leader.
Different servers may elect different leaders!!
The root cause of this issue is currently unknown; it is suspected that time discrepancies between different machines might be …

Zookeeper Installation Guide for CentOS

1. Download the latest installation package:
cd /home
wget http://mirror.cnop.net/apache/zookeeper/zookeeper-3.4.10.tar.gz
tar zxvf zookeeper-3.4.10.tar.gz && mv zookeeper-3.4.10 zookeeper && cd zookeeper/conf && cp zoo …

How Much Do You Know About Mesos?

Many people have discussed Mesos, but I never fully understood what problems it actually solves or what its use cases are. Zhou Weitao (one of the early adopters of Docker, Mesos, and related technologies in China) describes it in one sentence: Mesos can manage CPU, memory, and other resources on each machine, allowing you to…

DataX Error: ERROR StdoutPluginCollector — Dirty Data Fix

Recently while testing datax to sync MySQL, an error occurred on the second execution. The error message is as follows:

The reason is: "writeMode": "update" , by default if not specified it won’t insert, so running it again will cause an error.

After modification, it looks like this:

How to Fix Alibaba DataX Table Field Info Retrieval Failure

How to Fix DataX MySQL Sync Error: Failed to Retrieve Table Column Info
 
 
When using DataX to sync MySQL, an error occurs: Failed to retrieve table column information.
 
 
Solution: Check the relevant table and column names based on the error message, as shown below:
 
 
The message above indicates that the column “seting” in the table could not be retrieved. Upon inspection, the original column should actually be “sett …

The Evolution of Meizu System Operations Architecture

Qin Jun currently works on the operations platform of Meizu’s Flyme Platform R&D Department, responsible for system operations of the Flyme foundational platform and having experienced server scaling from hundreds to thousands of units. He possesses in-depth knowledge of Meizu’s foundational network, system deployment and delivery, and resource operations cost verification. He is currently responsible for the IaaS …

How to Install and Configure Jenkins on Linux

Environment Requirements:
Linux system (using my CentOS as an example)
Tomcat or TomEE
Maven (typically already available on most systems)

I. Jenkins Download

Download URL: http://jenkins-ci.org/

II. Installation
We won’t go into detail about Tomcat installation here; if you’re unfamiliar with it, you can find previous articles on this site.