https://bcho.tistory.com/1327 SRE #2-SRE는 어떻게 일하는가? SRE는 어떻게 일하는가? 조대협 (http://bcho.tistory.com) 이글은 앞의 글 "SRE/DEOPS의 개념과 SRE는 무엇을 하는가?" (https://bcho.tistory.com/1325) 와 연결된 글입니다.How SRE does Devops?그럼 SRE들은 이런한 일들을 bcho.tistory.com https://bcho.tistory.com/1328 SRE #3-SRE의 주요 지표 SLI/SLO (Service Level Indicatior, Service Level Objectives) SRE #3-SRE 주요 지표 (SLI/SLO)조대협 (http://bcho.tistory.com)..
function requestUtils(method, url, body, f, bearer) { const xhr = new XMLHttpRequest(); xhr.open(method, url, true); xhr.withCredentials = true; xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); bearer && xhr.setRequestHeader("Authorization", bearer); xhr.onreadystatechange = function () { if (this.readyState === XMLHttpRequest.DONE && this.status === 200) { f(this.respo..
conf.set("spark.rpc.askTimeout", "600s") spark-defaults.conf: spark.rpc.askTimeout 600s { "Classification": "spark-defaults", "Properties": { "spark.rpc.askTimeout": "600s" } } https://www.hackingnote.com/en/spark/trouble-shooting/RpcTimeoutException Spark Trouble Shooting - RpcTimeoutException Total Size Of Serialized Results Is Bigger Than maxResultSize www.hackingnote.com
kubectl delete --all pods --namespace=foo https://stackoverflow.com/questions/33509194/command-to-delete-all-pods-in-all-kubernetes-namespaces Command to delete all pods in all kubernetes namespaces Upon looking at the docs, there is an API call to delete a single pod, but is there a way to delete all pods in all namespaces? stackoverflow.com
https://docs.aws.amazon.com/ko_kr/AmazonS3/latest/userguide/s3-incident-response.html Amazon S3의 로깅 및 모니터링 - Amazon Simple Storage Service 이 페이지에 작업이 필요하다는 점을 알려 주셔서 감사합니다. 실망시켜 드려 죄송합니다. 잠깐 시간을 내어 설명서를 향상시킬 수 있는 방법에 대해 말씀해 주십시오. docs.aws.amazon.com
- dataframe - dataset - sql - rdd - optimized plan - specialized code - explain - predicate push down - logical plan - physical plan - transformation - action - lazy evaluation - partition https://www.brainbackdoor.com/data/spark-concept Spark는 어떤 컨셉인가? 1. DataFrame www.brainbackdoor.com https://spidyweb.tistory.com/326 [spark] RDD vs DataFrame 큰 차이점, Dataframe을 사용해야 되는 이유, RDD를 사용해야 하는 경우는? RDD..