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
{ | |
"images": { | |
"base-images": [], | |
"cdh-images": [ | |
{ | |
"created": 1733446330, | |
"published": 1733466531, | |
"date": "2024-12-06", | |
"description": "7.3.1.0 Base Release", | |
"images": { |
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
{ | |
"images": { | |
"base-images": [], | |
"cdh-images": [ | |
{ | |
"created": 1721699963, | |
"published": 1721751798, | |
"date": "2024-07-23", | |
"description": "7.2.18.200 OS Update Release", | |
"images": { |
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
#!/bin/bash | |
echo Post-start: $(date) >> /tmp/datetime.log |
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
#include <stdio.h> | |
#include <stdlib.h> | |
int main(int argc, char* argv[]) { | |
const int KB = 1024; /* bytes */ | |
const int MB = 1024 * KB; /* bytes */ | |
const int GB = 1024 * MB; /* bytes */ | |
long size = 0; | |
void *p = NULL; |
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
#!/bin/bash | |
################################################################################################################## | |
# dfsio writes to the local file system, so the hdfs user should have permission to write to the actual dir | |
################################################################################################################## | |
export HADOOP_LIBS=/usr/hdp/current/hadoop-mapreduce-client | |
export JAR_EXAMPLES=$HADOOP_LIBS/hadoop-mapreduce-examples.jar | |
export JAR_JOBCLIENT=$HADOOP_LIBS/hadoop-mapreduce-client-jobclient.jar |