This file contains 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
{{ $all := . }} | |
{{ $servers := .Servers }} | |
{{ $cfg := .Cfg }} | |
{{ $IsIPV6Enabled := .IsIPV6Enabled }} | |
{{ $healthzURI := .HealthzURI }} | |
{{ $backends := .Backends }} | |
{{ $proxyHeaders := .ProxySetHeaders }} | |
{{ $addHeaders := .AddHeaders }} | |
# Configuration checksum: {{ $all.Cfg.Checksum }} |
This file contains 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
Download Eclipse MAT from https://www.eclipse.org/mat/ | |
Change Xmx depending on heap dump size being analyzed in ini file. If GC errors are observed then add -XX:-UseGCOverheadLimit option too | |
vim ~/home/pkgs/mat/MemoryAnalyzer.ini | |
~/home/pkgs/mat/ParseHeapDump.sh heapdump.hprof |
This file contains 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
package main | |
import ( | |
"fmt" | |
"sort" | |
"github.com/aws/aws-sdk-go/aws" | |
"github.com/aws/aws-sdk-go/aws/session" | |
"github.com/aws/aws-sdk-go/service/ec2" | |
"github.com/aws/aws-sdk-go/service/ec2/ec2iface" |
This file contains 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
{ | |
"Name":"AKS Cluster Configuration Reader", | |
"Id":"{{ create a unique guid }}", | |
"IsCustom":true, | |
"Description":"Can get AKS configuration.", | |
"Actions":[ | |
"Microsoft.ContainerService/managedClusters/accessProfiles/listCredential/action", | |
"Microsoft.ContainerService/managedClusters/listClusterUserCredential/action" | |
], | |
"NotActions":[ |
This file contains 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
apt-get update | |
apt-get install -y python curl vim | |
curl -O https://bootstrap.pypa.io/get-pip.py | |
export PATH=~/.local/bin:$PATH | |
python get-pip.py --user | |
pip install awscli --upgrade --user | |
mkdir -p ~/.aws | |
vim ~/.aws/config | |
[default] |
This file contains 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
SHOW RESOURCE PLANS; | |
CREATE RESOURCE PLAN llap; | |
CREATE RESOURCE PLAN global; | |
set mapred.min.split.size=10000000; | |
set mapred.max.split.size=10000000; | |
source /work/queries/tpcds/q55.sql; | |
ALTER RESOURCE PLAN llap ACTIVATE; | |
ALTER RESOURCE PLAN global DISABLE; | |
CREATE TRIGGER global.highly_parallel WHEN TOTAL_TASKS > 40 DO KILL; |
This file contains 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
#!/bin/bash | |
set -e | |
: ${AWS_ACCESS_KEY_ID:?"AWS_ACCESS_KEY_ID should be set in script or exported"} | |
: ${AWS_SECRET_ACCESS_KEY:?"AWS_SECRET_ACCESS_KEY should be set in script or exported"} | |
if [[ $# -eq 0 ]] ; then | |
echo 'S3 object URL expected as argument. Usage: ./s3-get-speed-private.sh <s3-private-object-uri>' | |
exit 0 | |
fi |
This file contains 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
hive --orcfiledump <orc-table-path> | grep "Rows:" | cut -f2 -d":" | awk '{s+=$1}END{print s}' |
This file contains 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
Mount Separately | |
---------------- | |
# mount nvme SSDs to /dataN when available for specific instance types | |
# There are only 4 nvme slots in r5 instances. /dev/nvme0n1 is root EBS volume. | |
for i in $(seq 1 4); do | |
if [ -e "/dev/nvme${i}n1" ] | |
then | |
echo "Mounting /dev/nvme${i}n1 to /data${i}" | |
sudo mkfs.ext4 -E nodiscard /dev/nvme${i}n1 | |
sudo mkdir -p /data${i} |
This file contains 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
# Pre-req: gcc, gcc-c++, git (to clone), openjdk with debug symbols (centos: java-1.8.0-openjdk-debug.x86_64, ubuntu: openjdk-8-dbg) | |
# Git clone async-profiler https://github.com/jvm-profiling-tools/async-profiler | |
# Make sure JAVA_HOME is set and you are logged as same user running the java process | |
cd async-profiler | |
make all | |
# Also git clone FlameGraph in the same directory as you clone async-profiler | |
# sysctl changes | |
echo 1 > /proc/sys/kernel/perf_event_paranoid | |
echo 0 > /proc/sys/kernel/kptr_restrict |
NewerOlder