海量并行处理 (Massively Parallel Processing) DBMS、外部表(external tables)/并行加载(parallel loading) 资源管理 查询优化器增强(query optimizer enhancements)
2021-12-06 11:20:19 7.77MB mpp、分布式
1
存储过程 Greenplum支持SQL/PYTHON/PERL/C语言构建函数,以下着重介绍SQL 存储过程。 一个存储过程就是一个事务,包括对子过程的调用都在一个事务内 存储过程结构: CREATE FUNCTION somefunc() RETURNS integer AS $$ DECLARE quantity integer := 30; BEGIN RETURN ....; END; $$ LANGUAGE plpgsql; 赋值 给一个变量或行/记录赋值用下面方法:identifier := expression 例子:user_id := 20; 执行一个没有结果的查询: PERFORM query; 一个例子: PERFORM create_mv('cs_session_page_requests_mv', my_query); 存储过程请参考: * Instructor Notes By default, the master host is configured to allow remote client connections from the default superuser account only. This is the user who initialized the Greenplum array. In this case, the OS user name and the Greenplum database user name are the same, but this may not always be the case for other users. Let’s go over each line of the pg_hba.conf file for the master host and explain what is happening: Lines 1 and 2 are saying that for local UNIX domain socket connections allow the gpadmin user (the superuser who bootstrapped the array, lab# in our training environment) and all users to connect to all databases. The ident authentication method works by obtaining the client's OS user name, then determining the allowed database user names using a map file. There is a predefined ident map named sameuser, which allows any operating system user to connect as the database user of the same name. Any other maps must be created manually using the pg_ident.conf file. Line 3 is saying that for TCP/IP connections allow only the gpadmin superuser to connect to all databases when the connection comes from the local host. Note that the CIDR address is in IPv4 format. trust means no authentication is performed. Line 4 is saying that for any remote host TCP/IP connections allow only the gpadmin superuser to connect to all databases. Note that the CIDR address is in IPv4 format. md5 means password authentication is performed. If no password is provided at initialization time, the default password is mpparray.
2021-11-29 14:39:27 7.77MB mpp、分布式
1
该文件是产品开发的Project原文件,如果需要参考借鉴,是非常不错的帮助。
2021-11-20 22:21:34 422KB 项目管理 MS Project
1
ProjectProfessional的项目示例,烧烤项目; 项目设置开始-执行-结束三个阶段; 设置里程碑,分配资源,自动计算所需工作日和成本费等等 实现了很多基本要求。
2021-11-17 09:23:23 481KB project
1
rockchip camera+v4l2+mpp+live555推流demo native实现
2021-11-10 18:05:03 9.44MB camera v4l2 mpp live555
1
本文的主要目的是设计和开发使用微控制器的太阳能模块的最大功率点跟踪器(MPPT)。 维护没有MPPT的太阳能电池板或电池板阵列通常会导致功率损耗,这反过来又需要为相同的功率需求安装更多的电池板。 这也将导致电池过早失效或容量损失。 这就是为什么所有太阳能系统的控制器都应采用某种方法进行最大功率点跟踪(MPPT)的原因。 在过去的几十年中,已经发布了许多MPPT技术。 在本文中,表明使用微控制器设计了基于硬件的系统。 首先,基于扰动和观察(P&O)MPPT算法,已编写了完整的代码并将其刻录到微控制器IC中。 然后,使用降压升压转换器和霍尔传感器设计了整个系统。 微控制器获取PV模块的电压和电流输出,并确定PV模块的最大功率点。 如果我们想使用模块的输出功率为电池充电,则尽管电池电压水平变化以及太阳辐射变化,MPPT仍将以最大功率点运行PV模块。 已研究开发系统的性能,并令人满意地工作。
1
03 机电工程总进度计划(2014.09.30).mpp
2021-11-03 20:02:20 3.54MB project
1
ffmpeg_rtsp_mpp ffmpeg 拉取rtsp h264流, 使用mpp解码, 目前在firefly 板子上跑通了 保存的yuv文件可以用yuvplayer.exe文件打开, 设置文件大小, 就可以正常显示了 change log 重新添加了一个整的YUV420SP2Mat()函数, 修改了内存泄露的bug, 根据release 版本的mpp精简了一点代码
2021-11-02 21:05:18 28.35MB C
1
给大家分享一套课程——Postgres-XL集群修炼之路—主流MPP解决方案,完整版。 Postgres-XL是开源的postgresql集群,是由多个独立的PostgreSQL实例组成,它们分布在不同的物理(或虚拟)主机上协同工作,呈现给用户的是一个数据库实例的效果。 曾经风靡一时的MPP解决方案Greenplum是基于postgres-xl的8.2版本封装的,已经停止更新,逐渐被Postgres-XL新版本取代。 本课程采用最新稳定版本Postgres-XL v9.5,是当今应用覆盖面最广的MPP解决方案。
2021-11-02 21:03:19 775B Postgres-XL MPP PostgreSQL
1
给大家分享一套课程——Postgres-XL集群修炼之路—主流MPP解决方案,完整版。 Postgres-XL是开源的postgresql集群,是由多个独立的PostgreSQL实例组成,它们分布在不同的物理(或虚拟)主机上协同工作,呈现给用户的是一个数据库实例的效果。 曾经风靡一时的MPP解决方案Greenplum是基于postgres-xl的8.2版本封装的,已经停止更新,逐渐被Postgres-XL新版本取代。 本课程采用最新稳定版本Postgres-XL v9.5,是当今应用覆盖面最广的MPP解决方案。 MPP (Massively Parallel Processing),即大规模并行处理,是分布式、并行、结构化数据库集群,相对于PB级解决方案Hadoop,MPP是TB级大数据的首选解决方案。
2021-11-01 17:05:41 766B Postgres-XL MPP postgresql
1