Commit Graph

605 Commits

Author SHA1 Message Date
Tamas Mate
1f89627b9e IMPALA-11300: [DOCS] Fix Iceberg documentation links
This commit updates the links that point to the Iceberg doc site.

Testing:
 - Built the docs and checked the links.

Change-Id: I6ee820d43ebaac2415f0256d34ccc6e0300aff0c
Reviewed-on: http://gerrit.cloudera.org:8080/18539
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Reviewed-by: Zoltan Borok-Nagy <boroknagyz@cloudera.com>
2022-05-18 12:04:54 +00:00
Shajini Thayasingh
e8e637873c IMPALA-11127: [DOCS] document the UTF8_MODE query option
add the new query option UTF8_MODE topic
update impala_string topic as requested in the first review
create a new topic for UTF_8 mode under SQL ref
discuss the new query option

Change-Id: Ifac5812a3f5e105a73ac87c1ae5fce69a776fb92
Reviewed-on: http://gerrit.cloudera.org:8080/18424
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Reviewed-by: Quanlong Huang <huangquanlong@gmail.com>
2022-04-21 22:24:49 +00:00
Tamas Mate
72f074539c IMPALA-11116: Make DESCRIBE HISTORY parameterized
The numer of snapshots can grow large, because every INSERT can create a
new one. This patch adds inclusive predicates to narrow down the
resultset of the DESCRIBE HISTORY statement, these are:
 - DESCRIBE HISTORY <table> FROM <ts>
 - DESCRIBE HISTORY <table> BETWEEN <ts> AND <ts>

The timestamps can be date time values and intervals as well, such as:
 - '2022-02-04 13:31:09.819'
 - 'now() - interval 2 days'

Testing:
 - Added e2e tests that verifies the result.
 - Added unit tests that checks the analysis.

Change-Id: Ifead0d33f22069005bfd623460f4af1ff197cc0e
Reviewed-on: http://gerrit.cloudera.org:8080/18284
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Reviewed-by: Zoltan Borok-Nagy <boroknagyz@cloudera.com>
2022-03-25 11:54:39 +00:00
Shajini Thayasingh
e90cf9c811 IMPALA-11119: [DOCS] document BYTES function
removed white spaces

Change-Id: Iffbe2979f2912cf014866a3c47d88601e04f6e75
Reviewed-on: http://gerrit.cloudera.org:8080/18272
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Reviewed-by: Quanlong Huang <huangquanlong@gmail.com>
2022-03-22 06:45:54 +00:00
Gergely Fürnstáhl
bb4903aeb0 IMPALA-10748: Remove enable_orc_scanner flag
Impala supports reading ORC files by default for quite some time.

Removed enable_orc_scanner flag and related code and test, disabling
ORC support is no longer possible.
Removed notes on how to disable ORC support from docs.

Change-Id: I7ff640afb98cbe3aa46bf03f9bff782574c998a5
Reviewed-on: http://gerrit.cloudera.org:8080/18188
Reviewed-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
2022-02-03 03:13:41 +00:00
Vihang Karajgaonkar
5cd2b2b355 IMPALA-11091: Update documentation of event polling
IMPALA-8795 turns on event polling by default but the
documentation still says that it is a preview feature.
This change updates the documentation to say that the
feature is GA and enabled by default since Impala 4.1

Change-Id: Ife34b92cc1fdf4839071a888e389db69c0b4924f
Reviewed-on: http://gerrit.cloudera.org:8080/18173
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Reviewed-by: Shajini Thayasingh <sthayasingh@cloudera.com>
Reviewed-by: Vihang Karajgaonkar <vihang@cloudera.com>
2022-01-26 23:50:14 +00:00
Zoltan Borok-Nagy
8ab219aa3a IMPALA-11043: [DOCS] Initial Iceberg documentation
Impala's Iceberg support has greatly evolved lately. This
commit adds the initial documentation for Iceberg support.

Change-Id: Ief452611319f31d660838d35414bada387a05ef7
Reviewed-on: http://gerrit.cloudera.org:8080/18128
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Reviewed-by: Tamas Mate <tmate@cloudera.com>
2022-01-11 11:15:38 +00:00
Amogh Margoor
b2c51a0cef IMPALA-11027: Adding flag to enable support for ShellBasedUnixGroupsMapping
Currently, Impala doesn't support ShellBasedUnixGroupsMapping and
ShellBasedUnixGroupsNetgroupMapping to fetch Hadoop groups as they
spawn a new process and run shell command to fetch group info.
In Impala, this would happen for every session being created
when user delegation is enabled via impala.doas.user and
authorized_proxy_group_config. It can have many gotcha's like
spawning many processes together in a highly concurrent setting,
creation of zombie processes on abrupt crashing of impalad etc.

However, not everyone in ecosystem have moved away from shell based
group mapping. For instance, in cloudera distribution many components
still rely on it. So we need a way to allow users to use shell based
mapping instead of not allowing it altogether.
This patch provides flag which would allow  the support for users
that are aware about the gotchas it comes with.

Change-Id: I023f396a79f3aa27ad6ac80e91f527058a5a5470
Reviewed-on: http://gerrit.cloudera.org:8080/18019
Reviewed-by: Zoltan Borok-Nagy <boroknagyz@cloudera.com>
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
2021-11-24 12:16:27 +00:00
Shajini Thayasingh
f863611497 IMPALA-10805: [DOCS] Document priority based scratch directory selection
Made minor changes.
Incorporated feedback received by providing more examples.
Explained how to configure priorities for the scratch directories.
Provided an example displaying priority based configuration.

Change-Id: Iec170fdefcde09d4ee99d06b0876a17eb0bde2f6
Reviewed-on: http://gerrit.cloudera.org:8080/17700
Reviewed-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
2021-07-26 15:54:30 +00:00
stiga-huang
795dc8e985 IMPALA-10788: [DOCS] Introduce more flags for Statestore Scalability
statestore_subscriber_timeout_secs is also an important flag for
statestore scalability. Especially when the heartbeat frequency and
timeout are bumpped up, this flag should also be bumpped as well.
To introduce this flag, we should also introduce the heartbeat tcp
timeout flag and the max missed heartbeat flag.

Tests:
 - Built locally, verify the html and pdf artifacts are expected.

Change-Id: Ia4b331693c5c0945f4cec8fd81ed9ec688563333
Reviewed-on: http://gerrit.cloudera.org:8080/17675
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Reviewed-by: Shajini Thayasingh <sthayasingh@cloudera.com>
Reviewed-by: Tamas Mate <tmate@cloudera.com>
2021-07-17 01:35:28 +00:00
stiga-huang
4d01d8eb51 [DOCS] Impala 4.0.0 Release
Add short notes about this release.

Tests:
 - Built the html and pdf locally. Verified the new content.

Change-Id: I4b9cc838de018c954f419ebb71d65c0d5725a4a9
Reviewed-on: http://gerrit.cloudera.org:8080/17676
Reviewed-by: Zoltan Borok-Nagy <boroknagyz@cloudera.com>
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
2021-07-12 13:36:54 +00:00
Shajini Thayasingh
5574c8f7e6 IMPALA-10700: [DOCS] add a new query option
Introduced a new query option to skip deleting column statistics on truncate operation.
Updated text to incorporate the comments received.
Change-Id: Ie753f84b233b06bf4554cab71263671aff36f570
Reviewed-on: http://gerrit.cloudera.org:8080/17533
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Reviewed-by: Vihang Karajgaonkar <vihang@cloudera.com>
2021-06-02 19:55:27 +00:00
Shajini Thayasingh
1a84a1420c IMPALA-9770: [DOCS] Remove Sentry references in documentation
Updated all the associated topics.

Change-Id: Id4c5e9aa4d060ceaa426908a444d280a5564749d
Reviewed-on: http://gerrit.cloudera.org:8080/17469
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Reviewed-by: Joe McDonnell <joemcdonnell@cloudera.com>
2021-06-02 19:34:15 +00:00
Shajini Thayasingh
7440765142 IMPALA-8769: [DOCS] Change the shell default
Changed the shell default from Beeswax to HS2.
Also changed the default port number from 21000 to 21050.

Change-Id: Ia695a01c28bd6350645394d2bbaded731039189c
Reviewed-on: http://gerrit.cloudera.org:8080/17349
Reviewed-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
2021-05-19 17:41:28 +00:00
Tamas Mate
af0cb594e3 IMPALA-10653: [DOCS] LDAP configuration option changes
This commit updates the LDAP docs with the new flag changes introduced
mainly in IMPALA-2563 and IMPALA-10161.

Change-Id: Ic82c5dcd46fbd09264ae9a85d65e4044b6576800
Reviewed-on: http://gerrit.cloudera.org:8080/17403
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Reviewed-by: Csaba Ringhofer <csringhofer@cloudera.com>
2021-05-11 11:57:13 +00:00
Shajini Thayasingh
87555314dc IMPALA-10538: [DOCS] Document the newly added NDV parameter
Added how this argument maps to a precision used by the HLL algorithm.
Incorporated changes from the feedback.

Change-Id: Iec8007b79afac59cdfb3984bb111806213c21c77
Reviewed-on: http://gerrit.cloudera.org:8080/17131
Reviewed-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
2021-04-01 23:35:48 +00:00
Shajini Thayasingh
2e71f35b2f IMPALA-9910: [DOCS] update retry failed queries query option
Added why cluster membership changes typically occur.
Explained how the coordinator will retry a failed query.
Talked about the new query option spool_all_results_for_retries.
Incorporated corrections from Patch set 2.

Change-Id: I3a65357a6e3d0bffa840b8636171a38bd9b22d17
Reviewed-on: http://gerrit.cloudera.org:8080/16819
Reviewed-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
2021-04-01 23:33:10 +00:00
Tim Armstrong
8551805875 IMPALA-9586: update query option docs for mt_dop
There are interactions between mt_dop and num_nodes and
num_scanner_threads. Mention these in the docs.

Change-Id: I3d9a6f56ffaf211d7d3ca1fad506ee83d516ccbd
Reviewed-on: http://gerrit.cloudera.org:8080/17043
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Reviewed-by: Joe McDonnell <joemcdonnell@cloudera.com>
2021-02-09 17:14:49 +00:00
Shajini Thayasingh
81d5377c27 IMPALA-10475: [DOCS] elaborate SYNC_DDL option
call out that SYNC_DDL applies to all filesystem-based tables

Change-Id: I3f1bfce8430c681515101d00cabf9d70ae52e5ec
Reviewed-on: http://gerrit.cloudera.org:8080/17027
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Reviewed-by: Tim Armstrong <tarmstrong@cloudera.com>
2021-02-05 22:11:33 +00:00
Thomas Tauber-Marshall
39c424d7c8 IMPALA-10454: Bump --ssl_minimum_version to tls1.2
TLS versions < 1.2 are now considered insecure. This patch improves
Impala's default security.

This is made possible now in part because Impala 4.0 dropped support
for Python versions < 2.7.9 (or 2.7.5 on certain distributions where
it has been patched) as lower Python versions do not support tls1.2

Testing:
- Existing SSL tests are updated to reflect the new default.

Change-Id: Ifed66646b041a061f9db92744710aef7453f39e4
Reviewed-on: http://gerrit.cloudera.org:8080/16988
Reviewed-by: Tim Armstrong <tarmstrong@cloudera.com>
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
2021-01-28 04:19:39 +00:00
Tim Armstrong
f4584dd276 IMPALA-10404: Update docs to reflect RLE_DICTIONARY support
Fix references to PLAIN_DICTIONARY to reflect that
RLE_DICTIONARY is supported too.

Change-Id: Iee98abfd760396cf43302c9077c6165eb3623335
Reviewed-on: http://gerrit.cloudera.org:8080/16982
Reviewed-by: Tim Armstrong <tarmstrong@cloudera.com>
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
2021-01-26 16:47:27 +00:00
Fucun Chu
ac7f605711 IMPALA-10421: [DOCS] Documented the JOIN_ROWS_PRODUCED_LIMIT query option
- Minor edit

Change-Id: I3d422889c433062456748a953b33e3d43799be14
Reviewed-on: http://gerrit.cloudera.org:8080/16922
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Reviewed-by: Aman Sinha <amsinha@cloudera.com>
2021-01-21 07:16:42 +00:00
Shajini Thayasingh
44bade8e7f IMPALA-10091: [DOCS] add REFRESH_UPDATED_HMS_PARTITIONS query option
remove trailing spaces
added this new query option for Impala 4.0

Change-Id: I95b31b33f99073c57752e66eaf0f34facf511fc6
Reviewed-on: http://gerrit.cloudera.org:8080/16925
Reviewed-by: Vihang Karajgaonkar <vihang@cloudera.com>
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
2021-01-07 20:05:50 +00:00
Shajini Thayasingh
0c7e5a4a7c IMPALA-10388: [DOCS] add limitations on mask functions
incorporated comments, removed the para as per the feedback
listed all the overloads that are introduced
stated that Impala does not yet support new Hive UDFs
called out how mask functions were introduced through overloads

Change-Id: I37f0bcf4cf586cc5cfd03e4df68443967b6bb88f
Reviewed-on: http://gerrit.cloudera.org:8080/16861
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Reviewed-by: Quanlong Huang <huangquanlong@gmail.com>
2021-01-06 23:22:37 +00:00
Sahil Takiar
22ac00fd4d IMPALA-9910: [DOCS] Add fault tolerance docs
Adds a few basic docs for fault tolerance in Impala. Covers the
following topics:
* Transparent query retries
* Node blacklisting
* Statestore heartbeats

This commit only adds a high level explanation of the afortmentioned
fault tolerance concepts. The docs should be expanded on in a future
commit.

Change-Id: I9d178b21a9654bbed8b814ccadca95703ffacb62
Reviewed-on: http://gerrit.cloudera.org:8080/16610
Reviewed-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
2020-12-01 22:46:31 +00:00
Shajini Thayasingh
6e33ffdabe IMPALA-10306: [DOCS] remove TZ offset texts from the list
added an item in the list that says that TZ offset will not be included
in the output of this function even if the offset is provided as input

Change-Id: I693d15f1230dd7eebcbf2a16657a3850943749e1
Reviewed-on: http://gerrit.cloudera.org:8080/16689
Reviewed-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
2020-11-25 13:52:05 +00:00
Zoltan Borok-Nagy
3cc3484fcc [DOCS] Fix timezone related section in impala_timestamp.xml
The text mistakenly mentions the 'TIMESTAMP' query option to configure
the local timezone. The name of the actual query option is 'TIMEZONE'.

Change-Id: I07747d92b4e176529f7a411ea993164bcd4c728d
Reviewed-on: http://gerrit.cloudera.org:8080/16432
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Reviewed-by: Shajini Thayasingh <sthayasingh@cloudera.com>
Reviewed-by: Gabor Kaszab <gaborkaszab@cloudera.com>
2020-09-14 16:40:25 +00:00
Shant Hovsepian
1e1892e9c6 IMPALA-10167: Docs typo for DEFAULT_TRANSACTIONAL_TYPE
Fix for typo referring to DEFAULT_TRANSACTIONAL_TYPE as
DEFAULT_TRANSACTION_TYPE.

Change-Id: Ib1d9c985c8c202c8716bb5102a23c1e70cf6b68c
Reviewed-on: http://gerrit.cloudera.org:8080/16447
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Reviewed-by: Tim Armstrong <tarmstrong@cloudera.com>
2020-09-14 16:16:14 +00:00
Shajini Thayasingh
1d83168cdc IMPALA-9817: [DOCS] add flags related to use_local_catalog
incorporated corrections based on the feedback
added three flags related to use_local_catalog
explained that it should not be changed
talked about the default values

Change-Id: I832f94e56ec51cee5304187991388c1994a1f55c
Reviewed-on: http://gerrit.cloudera.org:8080/16037
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Reviewed-by: Quanlong Huang <huangquanlong@gmail.com>
2020-06-08 23:47:43 +00:00
Tim Armstrong
b82ae24458 [DOCS] data cache is not experimental
There were no bug fixes  to the data cache between Impala 3.3
and 3.4 that I could find, so I just removed the warning -
it should be fine to use in Impala 3.3 and up.

Change-Id: I233c9bd0ad2bbc3dda1da03183d75f59ff31a737
Reviewed-on: http://gerrit.cloudera.org:8080/16016
Reviewed-by: Joe McDonnell <joemcdonnell@cloudera.com>
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
2020-06-01 18:29:53 +00:00
Shajini Thayasingh
11a1ee55b0 IMPALA-9772: [DOCS] replace mem_limit texts with revised contents
explained what will happen if the query process exceeds the mem limit
changed the error message for the last query
also added reference to admission control

Change-Id: I7042b0d66c376e3179fb425109f9103710a25c49
Reviewed-on: http://gerrit.cloudera.org:8080/15973
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Reviewed-by: Bikramjeet Vig <bikramjeet.vig@cloudera.com>
2020-05-22 20:21:53 +00:00
Shajini Thayasingh
592ed10a21 IMPALA-9541: [DOCS] add steps to dynamically change log levels
added a new section to change log levels dynamically, made review changes
also elaborated the Glog format, remove the word PROCESS

Change-Id: Ic72fbfe3218530f5a1ffa0159ce714e411401bcd
Reviewed-on: http://gerrit.cloudera.org:8080/15867
Reviewed-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
2020-05-14 02:47:18 +00:00
Tim Armstrong
2dd20dc1e4 IMPALA-9585: [DOCS] update mt_dop docs
Updated to reflect changes in IMPALA-9099 and IMPALA-9736.

Change-Id: Ifc7511fede5f9b36ae8250d3acf8d0061b48106f
Reviewed-on: http://gerrit.cloudera.org:8080/15883
Reviewed-by: Tamas Mate <tmate@cloudera.com>
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Reviewed-by: Bikramjeet Vig <bikramjeet.vig@cloudera.com>
2020-05-12 22:49:39 +00:00
Shajini Thayasingh
4846751c84 IMPALA-9570: [DOCS] add memory management
add memory management and fix broken links. Incorporated review changes.

Change-Id: I6e8b6d0c3fe2e1746831665b3d3ae98a0beaa1e7
Reviewed-on: http://gerrit.cloudera.org:8080/15836
Reviewed-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
2020-05-08 04:18:26 +00:00
Kris Hahn
39c5c4d01d IMPALA-9639: [DOCS] Document Impala support for Kudu DATE type
Documented read/write support for DATE type in 3.4. Made review changes.

Change-Id: I865599587817358b0c94debfcb0e9644fab4ae00
Reviewed-on: http://gerrit.cloudera.org:8080/15702
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Reviewed-by: Tamas Mate <tmate@cloudera.com>
Reviewed-by: Thomas Tauber-Marshall <tmarshall@cloudera.com>
2020-05-05 17:44:40 +00:00
Kris Hahn
961519747b IMPALA-9613: [DOCS] Document the data_cache_eviction_policy
Describe start up flag to set LRU or LIRS policy. Tweak LIRS description.

Change-Id: Ic46ae00549157535c12f761aff7747fc90249d98
Reviewed-on: http://gerrit.cloudera.org:8080/15694
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Reviewed-by: Joe McDonnell <joemcdonnell@cloudera.com>
2020-04-28 01:31:39 +00:00
Kris Hahn
b9e84738b6 IMPALA-9640: [DOCS] Document Impala support for Kudu VARCHAR type
Removed VARCHAR from unsupported types in "Kudu considerations".

Change-Id: I61ad6982c35a009b15a2a082692f118a0fbcee65
Reviewed-on: http://gerrit.cloudera.org:8080/15703
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Reviewed-by: Tamas Mate <tmate@cloudera.com>
Reviewed-by: Joe McDonnell <joemcdonnell@cloudera.com>
2020-04-27 21:27:03 +00:00
Kris Hahn
21aa514353 IMPALA-9616 [DOC]: Document spill to disk startup options
Documented startup option descriptions per review comments:
--To cover the spill-to-disk compression support
--To use the disk_spill_punch_holes as required
Included examples that need to be reviewed and minor edits.
Change-Id: I3694fe97d74697777a8d50288b406b8eca0aa9fb
Reviewed-on: http://gerrit.cloudera.org:8080/15692
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Reviewed-by: Tim Armstrong <tarmstrong@cloudera.com>
2020-04-16 00:53:35 +00:00
Kris Hahn
a694848734 IMPALA-9443: [DOCS] Make tables optically pleasing and complete
- Replaced ellipses in example columns with sample output
- Fixed table formatting problems
- Exhumed varname styles
- Reverted table formatting at line 292 to published version formatting
- Fixed table formatting at 831

Change-Id: I83fd30b87730c82c87f6f7aee26d8cceb77b6308
Reviewed-on: http://gerrit.cloudera.org:8080/15476
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Reviewed-by: Tim Armstrong <tarmstrong@cloudera.com>
2020-03-24 21:14:31 +00:00
Tamas Mate
7dd13f7278 IMPALA-5308: Resolve confusing Kudu SHOW TABLE STATS output
This change modifies the output of the SHOW TABLE STATS and SHOW
PARTITIONS for Kudu tables.
 - PARTITIONS: the #Row column has been removed
 - TABLE STATS: instead of showing partition informations it returns a
 resultset similar to HDFS table stats, #Rows, #Partitions, Size, Format
 and Location

Example outputs can be seen in the doc changes.

Testing:
* kudu_stats.test is modified to verify the new result set
* kudu_partition_ddl.test is modified to verify the new partitions style
* Updated unit test with the new error message

Change-Id: Ice4b8df65f0a53fe14b8fbe35d82c9887ab9a041
Reviewed-on: http://gerrit.cloudera.org:8080/15199
Reviewed-by: Thomas Tauber-Marshall <tmarshall@cloudera.com>
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
2020-03-18 18:05:34 +00:00
Kris Hahn
15f0ea9476 IMPALA-9517: [DOCS] Document broadcast_bytes_limit query option
- Minor edit

Change-Id: I2f7eaacd5a885a7a5292d7694241d58e4f7b6282
(cherry picked from commit 0f1c87f814b5af4f6b37c5ebf095e887916424ef)
Reviewed-on: http://gerrit.cloudera.org:8080/15457
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Reviewed-by: Aman Sinha <amsinha@cloudera.com>
Reviewed-by: Joe McDonnell <joemcdonnell@cloudera.com>
2020-03-17 23:04:37 +00:00
Alex Rodoni
955868f88a IMPALA-9029: [DOCS] Impala 3.4 Release Notes
-Added broadcast_bytes_limit query option

Change-Id: I4385749de35f8379ecf6566fe515ed500b42d6cc
Reviewed-on: http://gerrit.cloudera.org:8080/14863
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Reviewed-by: Joe McDonnell <joemcdonnell@cloudera.com>
2020-03-17 20:16:58 +00:00
Kris Hahn
42dcaabf7c IMPALA-9467: [DOCS] live_progress enabled by default in interactive mode
The following documents were impacted by the change:
- impala_live_progress.xml, revised to explain new behavior
- impala_shell_options.xml, added --disable_live_progress option

Change-Id: I94e624b7bb916ecb5aeb4f007c0610807f7b18cf
Reviewed-on: http://gerrit.cloudera.org:8080/15442
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Reviewed-by: Alice Fan <fan309@gmail.com>
Reviewed-by: Joe McDonnell <joemcdonnell@cloudera.com>
2020-03-17 17:02:23 +00:00
Kris Hahn
4a8221877c IMPALA-9504 Remove "experimental" from description of ORC support.
Added that ORC reads are enabled by default in Impala 3.4.0, and removed "experimental".

Change-Id: I6d99f1926619874a319b0db3af5ae6f5d443fb30
Reviewed-on: http://gerrit.cloudera.org:8080/15432
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Reviewed-by: Tim Armstrong <tarmstrong@cloudera.com>
2020-03-13 23:54:47 +00:00
Kris Hahn
a20edd57d9 IMPALA-9490 [DOCS] State support for reading Apache Hudi optimized table
Added a row impala_file_format.xml, created impala_hudi.xml, added new file to ditamap, changed id of concept tag from orc to hudi.

Change-Id: If210cd545a8deb059e66fd36e62e0df4402fc96c
Reviewed-on: http://gerrit.cloudera.org:8080/15418
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Reviewed-by: Tim Armstrong <tarmstrong@cloudera.com>
2020-03-12 18:49:31 +00:00
Kris Hahn
fb4f654d7c IMPALA-9431 [DOCS] Update docs to reflect Deflate is supported for text files
Mentioned deflate support on the following lines of impala_txtfile.xml:
- modified text to include deflate info
- removed redundant paragraph
Mentioned deflate support in impala_file_formats.xml.
Change-Id: I9e1205e4e408f2c20fd8642cccd6c74e7ba9eb40
Reviewed-on: http://gerrit.cloudera.org:8080/15310
Reviewed-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
2020-03-06 17:37:33 +00:00
Kris Hahn
519093fbb5 IMPALA-9389: [DOCS] Support reading zstd text files
In impala_txtfile.xml:
- corrected file extension to csv_compressed_zstd.csv.zst
Change-Id: Ic83137bd2c3a49398fb60cf1901f8b74ed111fce
Reviewed-on: http://gerrit.cloudera.org:8080/15304
Reviewed-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
2020-02-28 22:47:04 +00:00
Kris Hahn
f48474f3f6 IMPALA-9337 [DOCS] Document new way to create external Kudu table in Impala
Summary of changes:
- Changed title of "Kudu tables:" to "Internal Kudu tables:".
- Added syntax "External Kudu tables" to show alternative create table syntax.
- Described alternative syntax and differences between resulting tables.
- In Kudu considerations, added example of creating synchronized external Kudu table.
- Covered external tables vs internal tables and HMS translation.

Change-Id: Ic07380fd53898dd21fbb5dacb4d9f7a84f160d4e
Reviewed-on: http://gerrit.cloudera.org:8080/15149
Reviewed-by: Vihang Karajgaonkar <vihang@cloudera.com>
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
2020-02-14 17:57:03 +00:00
Kris Hahn
41bf93dece IMPALA-9352 [DOCS] Document Impala column masking support
Added the Ranger Column Masking section consisting of an
intro and built-in mask types.

Change-Id: Ia60a1453d9ff4b25ba9e75dfd9fa2dc41006e32e
Reviewed-on: http://gerrit.cloudera.org:8080/15162
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Reviewed-by: Quanlong Huang <huangquanlong@gmail.com>
2020-02-06 06:28:59 +00:00
Kris Hahn
4024d827a3 IMPALA-9336: [DOCS] Primary and foreign key constraint syntax
CREATE TABLE syntax for primary key and foreign keys spec

Change-Id: Iee12da322fbdab7c671c17ceb8436bc3ace2b820
Reviewed-on: http://gerrit.cloudera.org:8080/15146
Reviewed-by: Thomas Tauber-Marshall <tmarshall@cloudera.com>
Tested-by: Thomas Tauber-Marshall <tmarshall@cloudera.com>
2020-02-03 18:34:51 +00:00