Examples and implementation of static agent and dynamic agent
preface
proxy mode. We will explain it here in combination with JAVA static proxy and dynamic proxy. It is similar to Spring AOP aspect oriented programming: enhanced message is also a proxy mode.
what are the differences between our static proxy and dynamic proxy and (service) interface and (serviceImpl) interface i ...
Posted by damienmcd on Mon, 20 Dec 2021 03:25:44 +0100
Three level practical subject report
Three level practical subject report
Project Name: website log analysis system of canva paintable online graphic design software
Major name: Data Science and big data technology
Class: = = 201
Student No.:============
Student Name: CS daydream
Instructor:===
– -- December 2021 –
Abstract
With the development of the Intern ...
Posted by rebelo on Sun, 19 Dec 2021 20:30:54 +0100
Mysql database management (all you want is here!!)
1, MySQL database management
1.1 warehouse and table
Database – > data table – > row (record): information used to describe an object
Column (field): an attribute used to describe an object
1.2 common data types
intintegerfloatSingle precision floating point 4-byte 32-bitdoubleDouble precision floating point 8-byte 64 ...
Posted by Tea_J on Sat, 18 Dec 2021 23:40:54 +0100
Deep ploughing ElasticSearch - how to control the accuracy of full-text search results
1. Data preparation
1. Data preparation and post blog data construction:
POST /forum/_bulk
{ "index": { "_id": 1 }}
{ "articleID" : "XHDK-A-1293-#fJ3", "userID" : 1, "hidden": false, "postDate": "2017-01-01","tag" : ["java", "hadoop"] ,"view_cnt" : 30 }
{ "index": { "_id": 2 }}
{ "articleID" : "KDKE-B-9947-#kL5", "userID" : 1, "hidden": f ...
Posted by Zaxnyd on Sat, 18 Dec 2021 21:07:08 +0100
Flink (38): API call of Flink TableAPI and FlinkSQL (in)
catalogue
0. Links to related articles
1. Table query
1.1. Call of table API
1.2. SQL query
2. Convert DataStream to table
2.1. Code expression
2.2. Correspondence between data type and Table schema
3. Convert DataSet to table
4. Create a Temporary View
0. Links to related articles
1. Table query
Using the connector of the extern ...
Posted by svguerin3 on Sat, 18 Dec 2021 19:29:05 +0100
Initial experience of Hadoop MapReduce operation
Initial experience of Hadoop MapReduce operation
A simple MapReduce job requires a map function, a reduce function and some code to run the job
package com.grits.hadoop.learning;
import java.io.IOException;
import java.util.StringTokenizer;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.Path;
import org.ap ...
Posted by les4017 on Sat, 18 Dec 2021 17:57:06 +0100
hive database and table command summary and 5 data import and export operations summary
1. hive basic data type
2. Data type
Instance: create tables with different data types
create table test(
name string,
friends array<string>,
children map<string, int>,
address struct<street:string, city:string>
)
row format delimited fields terminated by ','
collection items terminated by '_'
ma ...
Posted by maineyak on Sat, 18 Dec 2021 13:51:37 +0100
Graduation project - big data analysis: Stock Forecasting and analysis based on time series
1 Introduction
Hi, everyone, this is senior student Dan Cheng. Today I'd like to introduce you to a big data project
Big data analysis: Stock Forecasting Analysis Based on time series
You can use it for graduation design
Technical solutions, problem opening guidance and design completion help
Design help:<Q>746876041
2 origin ...
Posted by oskom on Sat, 18 Dec 2021 13:08:23 +0100
[Vue basic knowledge summary 6. Build a highly available enterprise database cluster with Mycat and Mysql
NPM
=======
1, Introduction to npm
The full name of NPM is Node Package Manager JS package management tool is the world's largest module ecosystem, in which all modules are open source and free; It's also a node JS package management tool, which is equivalent to Maven on the front end.
1. Installation location of NPM tools
Through npm, w ...
Posted by aeboi80 on Fri, 17 Dec 2021 21:22:41 +0100
Zookeeper installation and deployment
official
Official website
File download
1. Introduction to Zookeeper
ZooKeeper is a distributed, distributed application coordination service. It is a software that provides consistency services for distributed applications. ( Source: Baidu Encyclopedia)
Zookeeper features
A cluster composed of one Leader and multiple followers;As ...
Posted by Tory on Fri, 17 Dec 2021 20:13:15 +0100