随笔 - 108  文章 - 0  评论 - 11  阅读 - 11万

随笔分类 -  大数据

四则运算中对负数的处理
摘要:解决方法:在负数前面进行补0,如 -a-100 -> (0-a)-100, 之后用逆波兰表达的方法计算即可。 java 测试代码: public static void main(String[] args) throws Exception{ String[] exps = new String[ 阅读全文
posted @ 2022-11-01 17:04 北溟有鱼。 阅读(117) 评论(0) 推荐(0) 编辑
docker搭建clickhouse集群
摘要://需要先搭建zookeeper集群。机器1: sudo docker run -d \ --name clickhouse --ulimit nofile=262144:262144 \ -p 8123:8123 -p 9000:9000 -p 9009:9009 \ -v /etc/clickh 阅读全文
posted @ 2020-11-20 13:52 北溟有鱼。 阅读(597) 评论(0) 推荐(0) 编辑
Hbase架构原理
摘要:https://developer.51cto.com/art/201904/595698.htm 阅读全文
posted @ 2020-05-15 22:56 北溟有鱼。 阅读(129) 评论(0) 推荐(0) 编辑
python连接mysql
摘要:读取配置文件连接mysql并查询 示例代码: SqlMonitoring.py import json import requests import mysql.connector import datetime from configparser import ConfigParser impor 阅读全文
posted @ 2020-04-24 18:25 北溟有鱼。 阅读(292) 评论(0) 推荐(0) 编辑
雪花算法
摘要:package com.example.test.util; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Value; imp 阅读全文
posted @ 2020-04-17 21:57 北溟有鱼。 阅读(183) 评论(0) 推荐(0) 编辑
Python之简单的神经网络
摘要:from sklearn import datasets from sklearn import preprocessing from sklearn.model_selection import train_test_split from sklearn.neighbors import KNei 阅读全文
posted @ 2020-04-03 22:22 北溟有鱼。 阅读(413) 评论(0) 推荐(0) 编辑
人工智能教程
摘要:https://www.captainbed.net/blog-supermouse/ 阅读全文
posted @ 2020-04-02 16:53 北溟有鱼。 阅读(162) 评论(0) 推荐(0) 编辑
clickhouse的windowFunnel(漏斗)
摘要:1、WindowFunnel 关于官网的解释: Returned value:Integer. The maximum number of consecutive triggered conditions from the chain within the sliding time window. 阅读全文
posted @ 2020-03-16 18:53 北溟有鱼。 阅读(1626) 评论(0) 推荐(0) 编辑
druid与知乎平台
摘要:背景 知乎作为知名中文知识内容平台,业务增长和产品迭代速度很快,如何满足业务快速扩张中的灵活分析需求,是知乎数据平台组要面临的一大挑战。 知乎数据平台团队基于开源的 Druid 打造的业务自助式的数据分析平台,经过研发迭代,目前支撑了全业务的数据分析需求,是业务数据分析的重要工具。 目前,平台主要的 阅读全文
posted @ 2020-03-16 11:09 北溟有鱼。 阅读(368) 评论(0) 推荐(0) 编辑

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

点击右上角即可分享
微信分享提示