11 Star 24 Fork 0

Gitee 极速下载 / hawq

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/apache/incubator-hawq
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
Apache-2.0

HAWQ


CI Process Status
Travis CI Build https://travis-ci.org/apache/hawq.svg?branch=master
Apache Release Audit Tool (RAT) Rat Status
Coverity Static Analysis Coverity Scan Build

Website | Wiki | Documentation | Developer Mailing List | User Mailing List | Q&A Collections | Open Defect

Apache HAWQ


Apache HAWQ is a Hadoop native SQL query engine that combines the key technological advantages of MPP database with the scalability and convenience of Hadoop. HAWQ reads data from and writes data to HDFS natively. HAWQ delivers industry-leading performance and linear scalability. It provides users the tools to confidently and successfully interact with petabyte range data sets. HAWQ provides users with a complete, standards compliant SQL interface. More specifically, HAWQ has the following features:

  • On-premise or cloud deployment
  • Robust ANSI SQL compliance: SQL-92, SQL-99, SQL-2003, OLAP extension
  • Extremely high performance. many times faster than other Hadoop SQL engine
  • World-class parallel optimizer
  • Full transaction capability and consistency guarantee: ACID
  • Dynamic data flow engine through high speed UDP based interconnect
  • Elastic execution engine based on virtual segment & data locality
  • Support multiple level partitioning and List/Range based partitioned tables
  • Multiple compression method support: snappy, gzip, zlib
  • Multi-language user defined function support: Python, Perl, Java, C/C++, R
  • Advanced machine learning and data mining functionalities through MADLib
  • Dynamic node expansion: in seconds
  • Most advanced three level resource management: Integrate with YARN and hierarchical resource queues.
  • Easy access of all HDFS data and external system data (for example, HBase)
  • Hadoop Native: from storage (HDFS), resource management (YARN) to deployment (Ambari).
  • Authentication & Granular authorization: Kerberos, SSL and role based access
  • Advanced C/C++ access library to HDFS and YARN: libhdfs3 & libYARN
  • Support most third party tools: Tableau, SAS et al.
  • Standard connectivity: JDBC/ODBC

Build & Setup HAWQ on Mac

Step 1 Setup HDFS

Install HomeBrew referring to here.

brew install hadoop

Step 1.1 Configure HDFS parameters

  • ${HADOOP_HOME}/etc/hadoop/slaves

    For example, /usr/local/Cellar/hadoop/2.8.1/libexec/etc/hadoop/slaves

     localhost
  • ${HADOOP_HOME}/etc/hadoop/core-site.xml

    For example, /usr/local/Cellar/hadoop/2.8.1/libexec/etc/hadoop/core-site.xml

     <?xml version="1.0" encoding="UTF-8"?>
     <?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
     <configuration>
         <property>
             <name>fs.defaultFS</name>
             <value>hdfs://localhost:8020</value>
         </property>
     </configuration>
  • ${HADOOP_HOME}/etc/hadoop/hdfs-site.xml

    For example, /usr/local/Cellar/hadoop/2.8.1/libexec/etc/hadoop/hdfs-site.xml

    Attention: Replace ${HADOOP_DATA_DIRECTORY} and ${USER_NAME} variables with your own specific values.

     <?xml version="1.0" encoding="UTF-8"?>
     <?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
     <configuration>
         <property>
             <name>dfs.namenode.name.dir</name>
             <value>file://${HADOOP_DATA_DIRECTORY}/name</value>
             <description>Specify your dfs namenode dir path</description>
         </property>
         <property>
             <name>dfs.datanode.data.dir</name>
             <value>file://${HADOOP_DATA_DIRECTORY}/data</value>
             <description>Specify your dfs datanode dir path</description>
         </property>
         <property>
             <name>dfs.replication</name>
             <value>1</value>
         </property>
     </configuration>

Step 1.2 Configure HDFS environment

touch ~/.bashrc
touch ~/.bash_profile
	
echo "if [ -f ~/.bashrc ]; then
source ~/.bashrc
fi" >> ~/.bash_profile
	
echo "export HADOOP_HOME=/usr/local/Cellar/hadoop/2.8.1/libexec" >> ~/.bashrc
echo "export PATH=$PATH:${HADOOP_HOME}/bin:${HADOOP_HOME}/sbin" >> ~/.bashrc
	
source ~/.bashrc

Step 1.3 Setup passphraseless ssh

ssh-keygen -t rsa -P '' -f ~/.ssh/id_rsa
cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys
chmod 0600 ~/.ssh/authorized_keys

Now you can ssh localhost without a passphrase. If you meet Port 22 connecting refused error, turn on Remote login in your Mac's System Preferences->Sharing.

Step 1.4 Format the HDFS filesystem

hdfs namenode -format

Step 1.5 Start HDFS

# start/stop HDFS
start-dfs.sh/stop-dfs.sh
 
# Do some basic tests to make sure HDFS works
hdfs dfsadmin -report
hadoop fs -ls /

When things go wrong, check the log and view the FAQ in wiki first.

Step 2 Setup hawq

Step 2.1 System configuration

Step 2.1.1 Turn off Rootless System Integrity Protection

Turning Off Rootless System Integrity Protection on macOS that newer than OS X El Capitan 10.11 if you encounter some tricky LIBRARY_PATH problems, e.g. HAWQ-513, which makes hawq binary not able to find its shared library dependencies. Steps below:

  1. Reboot the Mac and hold down Command + R keys simultaneously after you hear the startup chime, this will boot OS X into Recovery Mode
  2. When the “OS X Utilities” screen appears, pull down the ‘Utilities’ menu at the top of the screen instead, and choose “Terminal”
  3. Type the following command into the terminal then hit return: csrutil disable; reboot

Step 2.1.2 Configure sysctl.conf

For Mac OSX 10.10 / 10.11, add following content to /etc/sysctl.conf and then sudo sysctl -p to activate them.

For Mac OSX 10.12+, add following content to /etc/sysctl.conf and then cat /etc/sysctl.conf | xargs sudo sysctl to check.

kern.sysv.shmmax=2147483648
kern.sysv.shmmin=1
kern.sysv.shmmni=64
kern.sysv.shmseg=16
kern.sysv.shmall=524288
kern.maxfiles=65535
kern.maxfilesperproc=65536
kern.corefile=/cores/core.%N.%P

Step 2.2 Prepare source code and target folder

mkdir ~/dev
git clone git@github.com:apache/hawq ~/dev/hawq

sudo mkdir -p /opt
sudo chmod a+w /opt
sudo install -o $USER -d /usr/local/hawq

Step 2.3 Setup toolchain and thirdparty dependency

Setup toolchain and thirdparty dependency

Step 2.4 Build HAWQ

  • 2.4.1 Add hawq environment information to ~/.bashrc, and source ~/.bashrc to make it effect.

    ulimit -c 10000000000
    export CC=clang
    export CXX=clang++
    export DEPENDENCY_PATH=/opt/dependency/package
    source /opt/dependency-Darwin/package/env.sh
  • 2.4.2 Build HAWQ

    cd ~/dev/hawq
    git checkout master
    ln -sf ../../commit-msg .git/hooks/commit-msg
    ./configure
    make -j8
    make -j8 install

Step 2.5 Configure HAWQ

mkdir /tmp/magma_master
mkdir /tmp/magma_segment

Feel free to use the default /usr/local/hawq/etc/hawq-site.xml. Pay attention to mapping hawq_dfs_url to fs.defaultFS in ${HADOOP_HOME}/etc/hadoop/core-site.xml.

Step 2.6 Init/Start/Stop HAWQ

# Before initializing HAWQ, you need to install HDFS and make sure it works.
 
source /usr/local/hawq/greenplum_path.sh
 
# Besides you need to set password-less ssh on the systems.
# If only install hawq for developing in localhost, skip this step.
# Exchange SSH keys between the hosts host1, host2, and host3:
#hawq ssh-exkeys -h host1 -h host2 -h host3

# Initialize HAWQ cluster and start HAWQ by default
hawq init cluster -a

# Now you can stop/restart/start the cluster using:  
hawq stop/restart/start cluster
# Init command would invoke start command automaticlly too.
 
# HAWQ master and segments are completely decoupled.
# So you can also init, start or stop the master and segments separately.
# For example, to init: hawq init master, then hawq init segment
#              to stop: hawq stop master, then hawq stop segment
#              to start: hawq start master, then hawq start segment

Everytime you init hawq you need to delete some files. The directory of all files you need to delete have been configured in /usr/local/hawq/etc/hawq-site.xml.

    1. Name:hawq_dfs_url Description:URL for accessing HDFS
    1. Name:hawq_master_directory Description:The directory of hawq master
    1. Name:hawq_segment_directory Description:The directory of hawq segment
    1. Name:hawq_magma_locations_master Description:HAWQ magma service locations on master
    1. Name:hawq_magma_locations_segment Description:HAWQ magma service locations on segment

i.e.

hdfs dfs -rm -r /hawq*
rm -rf /Users/xxx/data/hawq/master/*
rm -rf /Users/xxx/data/hawq/segment/*
rm -rf /Users/xxx/data/hawq/tmp/magma_master/*
rm -rf /Users/xxx/data/hawq/tmp/magma_segment/*

Check whether there is any process of postgres or magma running in your computer. If they are running ,you must kill them before you init hawq. For example,

ps -ef | grep postgres | grep -v grep | awk '{print $2}'| xargs kill -9
ps -ef | grep magma | grep -v grep | awk '{print $2}'| xargs kill -9

Build HAWQ on Centos 7

Almost the same as that on macOS, feel free to have a try.

Build HAWQ on Centos 7(6.X) using docker

Almost the same as that on macOS, feel free to have a try.

Build & Install & Test (Apache HAWQ Version)


Please see HAWQ wiki page: https://cwiki.apache.org/confluence/display/HAWQ/Build+and+Install

cd hawq
make feature-test

To make the output is consistent, please create a newdb and use specific locale.

TEST_DB_NAME="hawq_feature_test_db"
psql -d postgres -c "create database $TEST_DB_NAME;"
export PGDATABASE=$TEST_DB_NAME
psql -c  "alter database $TEST_DB_NAME set lc_messages to 'C';"
psql -c "alter database $TEST_DB_NAME set lc_monetary to 'C';"
psql -c  "alter database $TEST_DB_NAME set lc_numeric to 'C';"
psql -c  "alter database $TEST_DB_NAME set lc_time to 'C';"
psql -c "alter database $TEST_DB_NAME set timezone_abbreviations to 'Default';"
psql -c  "alter database $TEST_DB_NAME set timezone to 'PST8PDT';"
psql -c  "alter database $TEST_DB_NAME set datestyle to 'postgres,MDY';"

To run normal feature test , please use below filter:

  1. Below tests can only run in sequence mode
hawq/src/test/feature/feature-test --gtest_filter=-TestHawqRegister.*:TestTPCH.TestStress:TestHdfsFault.*:TestZookeeperFault.*:TestHawqFault.*
  1. Below tests can run in parallel
cd hawq/src/test/feature/
mkdir -p testresult
python ./gtest-parallel --workers=4 --output_dir=./testresult --print_test_times  ./feature-test --gtest_filter=-TestHawqRegister.*:TestTPCH.*:TestHdfsFault.*:TestZookeeperFault.*:TestHawqFault.*:TestQuitQuery.*:TestErrorTable.*:TestExternalTableGpfdist.*:TestExternalTableOptionMultibytesDelimiter.TestGpfdist:TETAuth.*

TestHawqRegister is not included TestTPCH.TestStress is for TPCH stress test TestHdfsFault Hdfs fault tests TestZookeeperFault Zookeeper fault tests
TestHawqFault Hawq fault tolerance tests

Export Control


This distribution includes cryptographic software. The country in which you currently reside may have restrictions on the import, possession, use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check your country's laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted. See http://www.wassenaar.org/ for more information.

The U.S. Government Department of Commerce, Bureau of Industry and Security (BIS), has classified this software as Export Commodity Control Number (ECCN) 5D002.C.1, which includes information security software using or performing cryptographic functions with asymmetric algorithms. The form and manner of this Apache Software Foundation distribution makes it eligible for export under the License Exception ENC Technology Software Unrestricted (TSU) exception (see the BIS Export Administration Regulations, Section 740.13) for both object code and source code.

Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "{}" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright {yyyy} {name of copyright owner} Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ======================================================================= Apache HAWQ Subcomponents: The Apache HAWQ project contains subcomponents with separate copyright notices and license terms. Your use of the source code for these subcomponents is subject to the terms and conditions of the following licenses. ======================================================================= Stream License ====================================================================== The following files are used: tools/bin/src/stream This file is made available under the following Stream License: licenses/LICENSE-stream.txt ====================================================================== PyGreSQL 4.0 License ====================================================================== The following files are used: tools/bin/pythonSrc/PyGreSQL-4.0 This file is made available under the following PyGreSQL License: licenses/LICENSE-pygresql.txt ====================================================================== MIT License ====================================================================== The following components are provided under a MIT license. See project link for details. The text of each license is also included at licenses/LICENSE-[project].txt. lockfile (0.9.1) tools/bin/pythonSrc/lockfile-0.9.1 tools/bin/pythonSrc/lockfile-0.9.1/lockfile/pidlockfile.py PSI (0.3b2_gp) tools/bin/pythonSrc/PSI-0.3b2_gp simplejson (1.7.3) tools/bin/ext/simplejson PyYAML tools/bin/ext/yaml ====================================================================== BSD-style licenses ====================================================================== The following components are provided under a BSD-style license. See project link for details. The text of each license is also included at licenses/LICENSE-[project].txt. (BSD 3 Clause) CMake (https://cmake.org) depends/libyarn/CMake depends/libhdfs3/CMake (BSD License) pychecker (v0.8.18 - http://pychecker.sourceforge.net/) tools/bin/pythonSrc/pychecker-0.8.18 (BSD License) unittest2 (v2-0.5.1 - https://pypi.python.org/pypi/unittest2) tools/bin/pythonSrc/unittest2-0.5.1 (BSD License) figleaf (http://darcs.idyll.org/~t/projects/figleaf/) tools/bin/ext/figleaf (BSD License) pg8000 tools/bin/ext/pg8000 ====================================================================== BZIP2 License ====================================================================== The following files are used: src/include/port/win32_msvc/bzlib.h This file is made available under the following bzip2 and libbzip2 License v1.0.5 license: licenses/LICENSE-bzip2.txt ====================================================================== Google Test License ====================================================================== The following files are used: depends/thirdparty/googletest This file is made available under the following Google test license: licenses/LICENSE-googletest.txt ====================================================================== Oraface License ====================================================================== The following files are used: contrib/orafce This file is made available under the following Oraface license: licenses/LICENSE-oraface.txt ====================================================================== Pexpect License ====================================================================== The following files are used: tools/bin/lib/pexpect.py This file is made available under the following Pexpect license: licenses/LICENSE-pexect.txt ====================================================================== PostgreSQL LICENSE ====================================================================== The rest of the source code without explicit ASF license headers was derived from PostgreSQL and is available under the following license: licenses/LICENSE-postgresql.txt This includes the following explicitely listed source directories: src/backend/utils/mb/Unicode src/interfaces/libpq/po src/bin/pg_dump src/backend/port/qnx4/shm.c src/backend/port/beos/shm.c (BSD 4 Clause revised) dynloader src/backend/port/dynloader/freebsd.c src/backend/port/dynloader/netbsd.c src/backend/port/dynloader/openbsd.c src/backend/port/dynloader/ultrix4.h Revised based on: ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change (BSD 4 Clause revised) glob src/bin/gpfdist/src/gpfdist/glob.c src/bin/gpfdist/src/gpfdist/include/glob.h src/include/port/win32_msvc/glob.h src/port/glob.c Revised based on: ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change (BSD License) pg_controldata src/bin/pg_controldata/pg_controldata.c (BSD License) port src/port/inet_aton.c src/port/snprintf.c src/port/crypt.c src/port/memcmp.c src/port/strlcpy.c (BSD License) wstrcmp src/backend/utils/mb/wstrcmp.c (BSD License) libpq-sha2 src/backend/libpq/sha2.[ch] licenses/LICENSE-sha2.txtLICENSE-sha2.txt (BSD License) src/pl/pljava licenses/LICENSE-pljava.txt (Perl Artistic License) (exception) src/pl/plperl/ppport.h Pursuant to https://issues.apache.org/jira/browse/LEGAL-79 and PL/Perl's use of a generated header file, we declare this file to be an exception to the Perl Artistic License. This file is derived from the PostgreSQL code base. For completeness sake, we have provided the Perl Artistic License for the Perl Devel-PPPort module (http://search.cpan.org/~wolfsage/Devel-PPPort-3.32/PPPort.pm). This module was used to generate the src/pl/plperl/ppport.h header file. The license is available: licenses/LICENSE-ppport.txt (test-ctype LICENSE) src/test/locale/test-ctype.c licenses/LICENSE-test-ctype.txt (port-rand LICENSE) src/port/rand.c licenses/LICENSE-port-rand.txt (Internet Systems Consortium/Internet Software Consortium (ISC) LICENSE) src/backend/utils/adt/inet_net_ntop.c src/backend/utils/adt/inet_net_pton.c licenses/LICENSE-isc.txt The following components are provided under the ISC license. See project link for details. The text of each license is also included at licenses/LICENSE-[project].txt. pexpect-4.2 (https://pypi.python.org/pypi/pexpect/4.2.0) tools/bin/pythonSrc/pexpect-4.2 ptyprocess-0.5.1 (https://pypi.python.org/pypi/ptyprocess/0.5.1) tools/bin/pythonSrc/ptyprocess-0.5.1 (regex LICENSE) src/backend/regex licenses/LICENSE-regex.txt (port-gettimeofday LICENSE) src/port/gettimeofday.c licenses/LICENSE-port-gettimeofday.txt

简介

HAWQ 是一个Hadoop原生大规模并行SQL分析引擎,针对的是分析性应用。和其他关系型数据库类似,接受SQL,返回结果集。 展开 收起
Java 等 6 种语言
Apache-2.0
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
Java
1
https://gitee.com/mirrors/hawq.git
git@gitee.com:mirrors/hawq.git
mirrors
hawq
hawq
master

搜索帮助