Big data tool Hive (basic)
1, Definition of HIVE
Hive is a data warehouse tool based on Hadoop, which can map structured data files into a data table, and can read, write and manage data files in a way similar to SQL. This Hive SQL is abbreviated as HQL. Hive's execution engines can be MR, Spark and Tez.
essence The essence of Hive is to convert HQL into MapReduce task ...
Added by gwood_25 on Fri, 18 Feb 2022 20:55:12 +0200
Flight information management system (JDBC)
Flight information management system
Now, in order to improve the user experience, an airline hopes to build a flight information system, and users can operate the flight information according to their needs. The team leader assigned this task to programmer Zhao Dan. Zhao Dan found that the database needs to be operated through Java code, ...
Added by johnbest on Fri, 18 Feb 2022 19:15:52 +0200
[software implementation interview] MySQL and Oracle joint query and aggregate function interview summary
The second bullet in the series of software implementation Interview articles, the interview summary of MySQL and Oracle joint query and aggregate function. If you look at mysql, can't you have some oracle? In front of it, many companies have done many written test questions, and now there are few written test questions. How much ink do you hav ...
Added by bradgrafelman on Fri, 18 Feb 2022 17:13:20 +0200
Mysql | based on MyCat sub database and sub table, read-write separation, master-slave synchronization
preface
This paper introduces the principle of master-slave synchronization and demonstrates the actual operation. Based on the above, this paper studies the separation of reading and writing based on mycat database and table
MyCat
Example architecture diagram: 192.168.43.110: database test01 and database test02 have student tables resp ...
Added by eludlow on Fri, 18 Feb 2022 16:23:19 +0200
Flinkcdc Hudi: full introduction to MySQL data entering the lake in real time III: explore and realize the high availability of FlinkCDC mysql master-slave database synchronization
Preface: Hudi series:
Flinkcdc Hudi: introduction to MySQL data entering the lake in real time 1: preliminary test Flinkcdc Hudi: full introduction to MySQL data entering the lake in real time II: exceptions and solutions encountered during the integration of Hudi and Spark
1, Background
In the production environment, mysql is generally eq ...
Added by rulian on Fri, 18 Feb 2022 06:00:15 +0200
PHPstorm operates mysql database and solves the garbled code problem of phpmyadmin
preface
It can't be said that you have fully understood the logic and problems inside, but the methods you have mastered so far can make the view in browser output and phpmyadmin free of garbled code.
Specific operation
Create a table Worker after linking the database through php code
<?php
$mysql=mysqli_connect("localhost","root","12345 ...
Added by areid on Thu, 17 Feb 2022 23:01:38 +0200
MySql query operation
query
Query all data select * from emp; Query the specified data
select column / function
select column_name1, column_name2, ... from table_name;
select mgr from emp;
+------+
| mgr |
+------+
| 7902 |
| 7698 |
| 7698 |
| 7839 |
| 7698 |
| 7839 |
| 7566 |
| NULL |
| 7566 |
+------+
Query to remove duplicate records
The default search ...
Added by bweekly on Thu, 17 Feb 2022 20:52:38 +0200
vulnerable! spring, which you can't learn, is integrated with MyBatis. The girl next door easily completed it and sent a login verification case!
Integration of spring and MyBatista in spring learning (1)
1. Integration of spring and MyBatista
1.1 integration process and ideas
1.1.1 Mybatis
As we all know, mybatis evolved from ibatis of Apache and is a persistence layer framework based on Java. Mybatis annotation 𞓜 xml file is used for configuration or original mapping.
Mybatis refe ...
Added by DanDaBeginner on Thu, 17 Feb 2022 14:06:09 +0200
zabbix4.0.19 deployment - Nanny level tutorial
zabbix4.0 deployment
zabbix server needs LAMP or LNMP environment, so there are many installation methods here. We choose a relatively simple installation method and install it directly with the source provided by the official.
Deployment preparation
[root@zabbix-server ~]# uname -a
Linux zabbix-server 3.10.0-1062.18.1.el7.x86_64 #1 SMP Tue ...
Added by r4ck4 on Thu, 17 Feb 2022 03:38:14 +0200
MySQL-19- MySQL data type
1. Data types in MySQL
typeType exampleInteger typeTINYINT, SMALLINT, MEDIUMINT, int (or INTEGER), BIGINTFloating point typeFLOAT,DOUBLEFixed point number typeDECIMALBit typeBITDate time typeYEAR,TIME,DATE,DATETIME,TIMESTAMPText string typeCHAR,VARCHAR,TINYTEXT,TEXT,MEDIUMTEXT,LONGTEXTEnumeration typeENUMCollection typeSETBinary string typeBIN ...
Added by acemods on Wed, 16 Feb 2022 16:32:29 +0200