--name {appName} conf.set("spark.app.name", appName) https://stackoverflow.com/questions/36747268/why-does-conf-setspark-app-name-appname-not-set-the-name-in-the-ui/42883306 Why does conf.set("spark.app.name", appName) not set the name in the UI? I am calling val appName : String = arguments.getNameFromConfig val conf = new SparkConf() conf.set("spark.driver.maxResultSize", "30G") conf.set("spar..
https://wonyoung2.tistory.com/678 HashMap 전체 참조(foreach) 방법 (Java) HashMap 에 포함된 Key, Value 값을 모두 확인하는 방법 # 데이터 생성 HashMap map = new HashMap (); map.put("key1", "value1"); map.put("key2", "value2"); map.put("key3", "value3"); # 방법 1 Iterator ke.. wonyoung2.tistory.com
![](http://i1.daumcdn.net/thumb/C148x148/?fname=https://blog.kakaocdn.net/dn/ewGfiB/btrohTbXEcd/j3TcyXVCLx1lK0VeXwIBzK/img.png)
ORC(Optimized Row Columnar) 컬럼단위로 데이터 기록 인덱스를 기록하여 컬럼에 바로 접근 JSON 중첩구조, 리스트, 맵 복합 형태 ### 특징 - 결과가 하나의 파일, 네임노드의 부하를 줄여줌 - datetime, decimal, complex type (struct, list, map, union) 지원 - 파일 경량 인덱스가 저장 - 데이터 타입 기반의 block-mode 압축 - 하나의 파일을 여러개의 리더로 동시에 읽기 가능 - 마커 스캐닝 없이 파일 분할 가능 - 파일 읽기 쓰기에 일정한 메모리 용량만 필요 - 필드의 추가나 제거가 가능한 메타 데이터는 Protocol Buffers 를 사용해서 저장 https://118k.tistory.com/408 [hive] ORC 파..
if you are using any binary format (ORC, AVRO, Parquet) to store you data then ROW FORMAT DELIMITED FIELDS TERMINATED BY is just ignored, you can use it in your table syntax, it might not give you any error. However they are not being used https://stackoverflow.com/questions/53871596/is-defining-a-delimiter-in-a-hive-orc-table-useless Is defining a delimiter in a hive ORC Table useless? When you..
하드디스크 용량이 없는 경우에 발생할 수 있으니 연결된 세션이 있다면 하드디스크 용량을 확인하고 없다면 충분히 확보한 뒤에 시도해본다. https://devday.tistory.com/2382 Couldn't authenticate to server: Bad sendauth version was sent 커버로스 (Kerberos)로 rlogin 시에 다음과 같은 에러에 직면할 수 있다. Couldn't authenticate to server: Bad sendauth version was sent 하드디스크 용량이 없는 경우에 발생할 수 있으니 연결된 세션이 있다.. devday.tistory.com
List ss = new ArrayList(Arrays.asList(s.split(DELIMITER))); List ii = Arrays.asList(i.split(DELIMITER)); ss.retainAll(ii); if (ss.size() == ii.size()) { return true; } https://jishushu.tistory.com/17 [Java] ArrayList의 출력/addAll()/ removeAll()/ retainAll() ArrayList에 대해 공부하기 전에 자바의 Collection Framework에 대해 잠깐 정리. 컬렉션 프레임워크란 쉽게 말하면 데이터를 효과적으로 처리하고 저장할 수 있도록 데이터 처리 알고리즘을 클래스로 jishushu.tistory.com
private void print(List list) { System.out.println(Arrays.toString(list.toArray())); } https://stackoverflow.com/questions/10168066/how-to-print-out-all-the-elements-of-a-list-in-java How to print out all the elements of a List in Java? I am trying to print out all the elements of a List, however it is printing the pointer of the Object rather than the value. This is my printing code... for(int ..
set hive.exec.max.dynamic.partitions=10000; https://github.com/HomoEfficio/dev-tips/blob/master/Hive%20Dynamic%20Partition%20Insert.md GitHub - HomoEfficio/dev-tips: 개발하다 마주쳤던 작은 문제들과 해결 방법 정리 개발하다 마주쳤던 작은 문제들과 해결 방법 정리. Contribute to HomoEfficio/dev-tips development by creating an account on GitHub. github.com
List list = Arrays.asList("A", "E", "I", "O", "U");int size = list.size();Map map = IntStream.range(0, size) .boxed() .collect(Collectors.toMap( i -> list.get(i), i -> i));Map map = list.stream() .collect(Collectors.toMap( YourObject::getLang, // 키 생성 함수 Function.identity() // 값으로 사용할 객체 ));https://blog.advenoh.pe.kr/java/%EC%9E%90%EB%B0%948-%EC%8A%A4%ED%8A%..
INSERT OVERWRITE TABLE table_name_orc SELECT * FROM table_name https://community.cloudera.com/t5/Support-Questions/How-to-convert-hive-table-format-to-ORC/td-p/281421 How to convert hive table format to ORC I have a super large json file and I have created an external hive table to read the file which is partitioned by date and hour. However, I ran into out-of-memory error when pulling out data ..
https://asana.com/ko/resources/leadership-styles?utm_campaign=NB--APAC--EN--Catch-All--All-Device--DSA&utm_source=google&utm_medium=pd_cpc_nb&gclsrc=aw.ds&gclid=CjwKCAjwndCKBhAkEiwAgSDKQcNg1s46Sq4-B2hTUImwHXZOpqVASAxpis95aqig431d_6LlTMo5pRoCvCoQAvD_BwE 일반적인 리더십 스타일 11가지와 나에게 맞는 스타일을 찾는 방법 • Asana 일반적인 리더십 스타일에는 권위주의형, 참여형, 위임형, 비전형, 코치형, 관계 중시형, 민주형, 선도형, 지시형이 포함됩니다. asana.com
https://stackoverflow.com/questions/5844672/delete-an-element-from-a-dictionary Delete an element from a dictionary Is there a way to delete an item from a dictionary in Python? Additionally, how can I delete an item from a dictionary to return a copy (i.e., not modifying the original)? stackoverflow.com
https://www.thymeleaf.org/doc/tutorials/2.1/usingthymeleaf.html#lists Tutorial: Using Thymeleaf 1 Introducing Thymeleaf 1.1 What is Thymeleaf? Thymeleaf is a Java library. It is an XML/XHTML/HTML5 template engine able to apply a set of transformations to template files in order to display data and/or text produced by your applications. It is better s www.thymeleaf.org
l = ['' ,'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'] m = {s : i for i, s in enumerate(l)} https://security-nanglam.tistory.com/427 [python] List to Dict (리스트를 딕셔너리로 변환) 총 정리!! 검색어 : List to Dict List 에서 Dict으로 변환하는 방법에는 여러가지 방법이 있습니다...! string_list = ['A','B','C'] 위와 같은 리스트가 있을때, 딕셔너리로 변환시키는 여러가지 방법들 ..! 1. Dictionary.. security-nanglam.tistory.com https:..
각 서비스의 WAS에서 생성하는 객체의 크기와 생존 주기가 모두 다르고, 장비의 종류도 다양하다. WAS의 스레드 개수와 장비당 WAS 인스턴스 개수, GC 옵션 등은 지속적인 튜닝과 모니터링을 통해서 해당 서비스에 가장 적합한 값을 찾아야 한다. stop-the-world GC 실행을 위해서 멈춤 GC 튜닝이란 stop-the-world 시간을 줄이는 것 null 할당 System.gc() 메서드 실행 - 절대 호출하면 안됨 weak genreational hypothesis unreachable 오래된 객체에서 젊은 객체로의 참조는 아주 적게 존재 Young Generation: 새롭게 생성된, Minor GC Old Generation: Young 살아남은 객체가 복사됨 Major(Full) GC ..
public class StringReverse { public static void main(String[] args) { String str = "ABCDE"; StringBuffer sb = new StringBuffer(str); String reverse = sb.reverse().toString(); System.out.println(sb); // "EDCBA" System.out.println(reverse); // "EDCBA" } } https://hianna.tistory.com/543 [Java] 문자열 거꾸로 뒤집기 문자열을 거꾸로 뒤집는 방법 2가지를 소개합니다. 반복문 사용하기 StringBuffer / reverse() 메소드 사용하기 1. 반복문 사용하기 코드 public ..
seunggabi@seunggabi ~ echo 'test' | base64 -w0 dGVzdAo= seunggabi@seunggabi ~ echo 'dGVzdAo=' | base64 --decode test seunggabi@seunggabi ~ https://linuxhint.com/bash_base64_encode_decode/ Bash base64 encode and decode I am a trainer of web programming courses. I like to write article or tutorial on various IT topics. I have a YouTube channel where many types of tutorials based on Ubu..
public static String encodeBase64(String s) { return Base64.getEncoder().encodeToString(s.getBytes()); } public static String decodeBase64(String s) { try { if (isBase64(s)) { return new String(Base64.getDecoder().decode(s)); } else { return s; } } catch (Exception e) { return s; } } public static boolean isBase64(String s) { String pattern = "^([A-Za-z0-9+/]{4})*([A-Za-z0-9+/]{4}|[A-Za-z0-9+/]{..
'asdf'.replace(/]+>/g, ''); https://www.codegrepper.com/code-examples/javascript/how+to+replace+all+html+tags+in+javascript how to replace all html tags in javascript Code Example var htmlString= "\n Hello World\n This is the text that we should get.\n Our Code World © 2017\n "; var stripedHtml = htmlString.replace(/]+>/g, ''); var decodedStripedHtml = he.decode(stripedHtml); // Hello World // w..
async function doAjaxThings() { // await code here let result = await makeRequest("GET", url); // code below here will only execute when await makeRequest() finished loading console.log(result); } document.addEventListener("DOMContentLoaded", function () { doAjaxThings(); // create and manipulate your DOM here. doAjaxThings() will run asynchronously and not block your DOM rendering document.crea..
https://github.com/jisungbin/NewAutoReplyBot-Helper/blob/master/API/API.md GitHub - jisungbin/NewAutoReplyBot-Helper: 새로운 자동응답 봇의 도움말 페이지 입니다. 새로운 자동응답 봇의 도움말 페이지 입니다. Contribute to jisungbin/NewAutoReplyBot-Helper development by creating an account on GitHub. github.com
Map myMap = new HashMap() {{ put("a", "b"); put("c", "d"); }}; https://stackoverflow.com/questions/6802483/how-to-directly-initialize-a-hashmap-in-a-literal-way How to directly initialize a HashMap (in a literal way)? Is there some way of initializing a Java HashMap like this?: Map test = new HashMap{"test":"test","test":"test"}; What would be the correct syntax? I stackoverflow.com
String[] strings = list.toArray(String[]::new); https://stackoverflow.com/questions/4042434/converting-arrayliststring-to-string-in-java Converting 'ArrayList to 'String[]' in Java How might I convert an ArrayList object to a String[] array in Java? stackoverflow.com
https://stackoverflow.com/questions/11715646/scroll-automatically-to-the-bottom-of-the-page Scroll Automatically to the Bottom of the Page I have a list of questions. When I click on the first question, it should automatically take me to a specific element at the bottom of the page. How can I do this with jQuery? stackoverflow.com
ArrayList list = new ArrayList(originalList.subList(0, 10)); https://stackoverflow.com/questions/26568205/resolve-a-java-util-arraylistsublist-notserializable-exception resolve a java.util.ArrayList$SubList notSerializable Exception I am using SubList function on an object of type List. The problem is that I am using RMI and because the java.util.ArrayList$SubList is implemented by a non-seriali..
- Total
- Today
- Yesterday
- 테슬라
- Kluge
- 유투브
- 레퍼럴
- 테슬라 리퍼럴 코드 혜택
- 연애학개론
- 개리마커스
- follower
- 테슬라 레퍼럴 적용 확인
- wlw
- COUNT
- 테슬라 리퍼럴 코드
- 테슬라 추천
- 인스타그램
- 테슬라 크레딧 사용
- 팔로워 수 세기
- Bot
- 모델y
- 테슬라 레퍼럴 코드 확인
- 메디파크 내과 전문의 의학박사 김영수
- 클루지
- 책그림
- 어떻게 능력을 보여줄 것인가?
- 할인
- 김달
- 모델 Y 레퍼럴
- 테슬라 레퍼럴
- 테슬라 리퍼럴 코드 생성
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |