大数据 (五)springboot 配置多数据源连接mysql和hive
项目结构如下mysql 执行如下建表语句,并插入一条测试数据CREATE TABLE `user` ( `id` int(11) NOT NULL, `name` varchar(25...
未分类 springboot引入hive启动报错Unable to start embedded Tomcat
org.springframework.context.ApplicationContextException: Unable to start web server; nested exception is org.springframework.boot.web.server.WebServerException: Unable to start ...
大数据 使用hive的beeline连接报错hadoop is not allowed to impersonate hadoop (state=08S01,code=0)解决方案
使用hiveserver2时通过beeline -u jdbc:hive2://hadoop-master:21000 -n hadoop 连接hive执行insert语句报错 hadoop is not allowed to impersonate hadoop (state=08S01,co...
未分类 Spring整合Mqtt简单使用
前言MQTT(Message Queuing Telemetry Transport,消息队列遥测传输协议),是一种基于发布/订阅模式的轻量级通讯协议,构建于TCP/IP协议之上,优点是低开销,低宽带占用,适用于物联网、小型...
未分类 MySQL排序时, ORDER BY将空值NULL放在最后
1. 表结构与数据DROP TABLE IF EXISTS `test`;CREATE TABLE `test` (`id` int NOT NULL AUTO_INCREMENT,`test_id` int DEFAULT NULL,PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf...
未分类 Lwm2m之leshan服务器连接
LwM2M关于lwm2m 协议介绍部分,请自行百度.eclipse 提供了一个开源的client service 实现,包含java 以及c 的实现。分别为下面的两个git repohttps://github.com/eclipse/leshanhttps://gith...
未分类 MQTT服务端安装ubuntu
https://blog.csdn.net/weixin_43850980/article/details/122217933MQTT安装发送订阅terminalmosquitto_pub -t "test" -m "msssss测试内容"接收订阅terminalmosquitto_s...