摘要:
# 可迭代对象,计算和排序等处理 from itertools import groupby from operator import itemgetter L = [('grape', 100, 2), ('grape', 3, 2), ('apple', 15, 2), ('apple', 10 阅读全文
2023年3月27日
2023年1月17日
摘要:
数据库查询过滤失效。 今天在测试库上做一个关联查询时出现了捞出多余的值的情况,现在换个表名重现一下再解释。 做项目时遇到一个奇怪的问题,关于mysql查询精度会有所丢失的。比如数据库字段存储为varchar,888890014000600010001,查询的时候就一定要加上单引号。如:‘888890 阅读全文
2022年12月9日
摘要:
data_list = [{"id": id, "first_order_time": start_time} for id, start_time in result] data_list_slice = data_list[start * one_time:(start + 1) * one_t 阅读全文
2022年11月29日
摘要:
from datetime import datetime from mbutils.snowflake import ID_Worker path = r"C:\Users\xiaoan\Desktop\执行结果30.txt" with open(path,mode='r',encoding="u 阅读全文
2022年10月29日
摘要:
Exec command cd /admin/xcmbServer\ && yum -y install python36 python-devel python36-devel supervisor \&& pip3 install --upgrade pip \&& pip3 install - 阅读全文
2022年10月26日
摘要:
DELETE FROM `t_ebike_operation_move_after_order` AS c WHERE c.`one_move_id` IN ( SELECT `one_move_id` FROM ( SELECT `one_move_id` FROM `t_ebike_operat 阅读全文
2022年8月26日
2022年8月21日
摘要:
学习很重要的是能将纷繁复杂的信息进行归类和抽象。对应到大数据技术体系,虽然各种技术百花齐放,层出不穷,但大数据技术本质上无非解决4个核心问题。 存储,海量的数据怎样有效的存储?主要包括hdfs、Kafka; 计算,海量的数据怎样快速计算?主要包括MapReduce、Spark、Flink等; 查询, 阅读全文
2022年8月19日
摘要:
当kafka遇到如下四种情况的时候,kafka会触发Rebalance: 消费组成员发生了变更,比如有新的消费者加入了消费组组或者有消费者宕机 消费者无法在指定的时间之内完成消息的消费 消费组订阅的Topic发生了变化 订阅的Topic的partition发生了变化 阅读全文
2022年8月16日
摘要:
语句 0.选择select query 1.过滤(where) filter: 空值和非空筛选is_ .isnot dao_session.sub_session().query(XcEbikeGfence2.id).filter(XcEbikeGfence2.type == 1XcEbikeGfe 阅读全文