This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| kind: PersistentVolume | |
| apiVersion: v1 | |
| metadata: | |
| name: kube-system-kube-registry-pv | |
| labels: | |
| kubernetes.io/cluster-service: "true" | |
| type: local | |
| spec: | |
| capacity: | |
| storage: 10Gi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| create table kudu_tbl_two_keys (id int , name string, x int , primary key (id, name)) | |
| DISTRIBUTE BY hash(id) into 3 buckets STORED AS KUDU; | |
| -- !!! This is a (minor) bug, it passes analysis and fails at runtime. This returns: | |
| -- WARNINGS: Error applying Kudu Op.: Illegal state: Key not specified: INSERT int32 id=0 | |
| insert into kudu_tbl_two_keys(id) select int_col from functional.alltypestiny; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| commit b517de00a70f74605dd3dedec660ff1dc82cf0c7 | |
| Author: Matthew Jacobs <mj@cloudera.com> | |
| Date: Thu Apr 21 18:57:35 2016 -0700 | |
| WIP - Templated Column implementation | |
| Change-Id: Idaa998ad546eb02777b8dacf10ef6a7e51f935da | |
| diff --git a/src/hs2client/columnar-row-set.cc b/src/hs2client/columnar-row-set.cc | |
| index 3bf46a2..fd9f03c 100644 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Sample CM dashboard for per-pool Impala admission control metrics. | |
| Requires CM 5.7 and Impala 2.5 | |
| Import into CM via the chart dashboard Import functionality. See | |
| the CM documentation for more information: | |
| http://www.cloudera.com/documentation/enterprise/5-5-x/topics/cm_dg_dashboards.html?scroll=concept_q4c_2f4_3l_unique_1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " Matthew Jacobs | |
| set nocompatible | |
| filetype off | |
| set rtp+=~/.vim/bundle/vundle/ | |
| call vundle#rc() | |
| Plugin 'gmarik/vundle' | |
| Plugin 'bufexplorer.zip' |