Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Problems and Solutions in the use of Apache Hawq-

2025-01-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/03 Report--

\ df view the list of functions

\ df+ view custom functions

\ dc View conversion

\ dc+

\ l View the list of databases

\ d table view table information

\ d + table view table details

Select * from information_schema.schemata;HAWQ null value problem:

When HAWQ imports data, null values must be represented by "\ N" by default

When 2.hawq load imports csv data, the data file is 200g, a gpfdist node is enabled, and it takes 1 hour and 40 minutes to report an error.

The reason may be insufficient memory.

Drop table T1: create table T1 (id int, mac varchar (20), year int) with (appendonly=true,orientation=parquet,compresstype=snappy, bucketnum=18) distributed by (mac) PARTITION BY RANGE (year) (START (2001) INCLUSIVE END (2003) EXCLUSIVE EVERY (1), DEFAULT PARTITION extra); ```

ALTER TABLE t1 SPLIT DEFAULT PARTITION

START (2003) INCLUSIVE

END (2004) EXCLUSIVE

INTO (PARTITION y2003, default partition)

Error report:

NOTICE: exchanged partition "extra" of relation "T1" with relation "pg_temp_689110"

NOTICE: dropped partition "extra" for relation "T1"

ERROR: bucketnum requires a numeric value

Solution: remove the specified bucketnum

Set default_hash_table_bucket_number=9

Drop table t1

Create table T1 (id int, mac varchar (20), year int)

With (appendonly=true,orientation=parquet,compresstype=snappy)

Distributed by (mac)

PARTITION BY RANGE (year)

START (2001) INCLUSIVE END (2003) EXCLUSIVE EVERY (1)

DEFAULT PARTITION extra)

ALTER TABLE t1 SPLIT DEFAULT PARTITION

START (2003) INCLUSIVE

END (2004) EXCLUSIVE

INTO (PARTITION y2003, default partition)

Set default_hash_table_bucket_number=18

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report