input { beats { port => 5044 } cloudwatch_logs { log_group => [ "/aws/rds/instance/trips3m-prod-master/slowquery" ] region => "us-east-1" type=> "rds" } cloudwatch_logs { log_group => [ "/aws/rds/instance/trips3m-read-private-new/slowquery" ] region => "us-east-1" type=> "rds_slave" } } filter {} output { elasticsearch { hosts => ["http://0.0.0.0:9200"] index => "%{[@metadata][indexname]}-%{+YYY..
ALTER TABLE `as-is` RENAME `to-be`; ALTER TABLE `table` CHANGE `as-is` `to-be`; ALTER TABLE `table` MODIFY `column` `type`; https://jybaek.tistory.com/277 [mysql] 테이블 이름 변경 / 테이블 컬럼 이름,타입 변경 테이블 이름 변경 alter table 현재_테이블_이름 rename 새로운_테이블_이름; mysql> show tables; +----------------+ | Tables_in_oops | +----------------+ | old_table | +----------------+ 1 row in set (0.. jybaek.tistory.com
L4 서비스 제외(ifdown) 하더라도, 서비스에서 제외 시킨 서버로 지속적으로 요청이 들어오고 트래픽이 빠지지 않는 경우가 있음 네트워크에 TTL (5분 ~ 10분)이 설정되어 있기 때문에 (서버 네트워크 설정에 따름) 따라서 L4 서비스 제외하고 sleep 300s; 이후에 배포를 진행하는 것이 좋겠다. https://tech.kakao.com/2014/05/30/l4/ L4 장비의 동작과 서비스 배포시 유의점 개요 현재 카카오에서 대부분의 웹서버는 L3DSR (Direct Server Return)구성의 L7 HealthCheck 방식을 사용 중입니다. L7 HealthCheck 방식은 앞서 블로그에서 기술한적이 있는 것처럼 OSI 7Layer 중 Layer7 계층의 어 tech.kakao.com
https://spark.apache.org/docs/1.6.2/api/java/org/apache/spark/sql/functions.html functions static Column callUDF(scala.Function10 f, DataType returnType, Column arg1, Column arg2, Column arg3, Column arg4, Column arg5, Column arg6, Column arg7, Column arg8, Column arg9, Column arg10) Deprecated. As of 1.5.0, since it's redundant w spark.apache.org
// package.json { ... "scripts": { "start": "set PORT=9090 && react-scripts start", "build": "react-scripts build", "test": "react-scripts test", "eject": "react-scripts eject" }, ... } https://oofbird.tistory.com/50 [ReactJS] create-react-app의 실행 포트 변경 ReactJS로 프로젝트를 시작하면, 보통 create-react-app을 사용합니다. 개발을 하고 시작을 하려면 다음과 같은 명령을 실행하게 됩니다. yarn run start 그러면 http://localhost:3000으로 페이지가 열리게 됩니. oof..
// package.json { "proxy": "https://seunggabi.tistory.com" } https://snowdeer.github.io/openshift/2020/06/13/react-for-cors-using-proxy/ React CORS 문제 해결하기(Proxy 이용) · snowdeer's Code Holic React CORS 문제 해결하기(Proxy 이용) 13 Jun 2020 | React CORS CORS(Cross-Origin Resource Sharing)는 교차 출처 리소스 공유라는 기능으로 실행 중인 웹 어플리케이션이 다른 출처의 리소스에 접근할 수 있는 권한 snowdeer.github.io
window.w = window.open(url,'_blank', 'toolbar=no,status=no,menubar=no,scrollbars=no,resizable=no,left=10000, top=10000, width=1, height=1, visible=none') setTimeout(() => { window.w.close() }, 1000) https://okky.kr/article/24287 OKKY | [js] window.close()할때 확인창 없이 윈도우 닫기 ◎ No, 340 ◎ 이름:scripter ◎ 2002/10/16(수) 14:44 ◎ 조회: 274 회 window.close()할때 확인창 없이 윈도우 닫기 윈도우에서 창을 닫을 때 보통 window.close();를 사용해..
org.apache.commons.lang3.StringUtils.containsIgnoreCase(CharSequence str, CharSequence searchStr); https://stackoverflow.com/questions/14018478/string-contains-ignore-case/14018549#14018549 String contains - ignore case Is it possible to determine if a String str1="ABCDEFGHIJKLMNOP" contains a string pattern strptrn="gHi"? I wanted to know if that's possible when the characters are case insensit..
import foo method_to_call = getattr(foo, 'bar') result = method_to_call() result = getattr(foo, 'bar')() https://stackoverflow.com/questions/3061/calling-a-function-of-a-module-by-using-its-name-a-string Calling a function of a module by using its name (a string) What is the best way to go about calling a function given a string with the function's name in a Python program. For example, let's sa..
IntStream.range(0, params.size()) .forEach(idx -> query.bind( idx, params.get(idx) ) ) ; https://stackoverflow.com/questions/22793006/java-8-foreach-with-index Java 8 forEach with index Is there a way to build a forEach method in Java 8 that iterates with an index? Ideally I'd like something like this: params.forEach((idx, e) -> query.bind(idx, e)); The best I could do right ... stackoverflow.com
import org.apache.spark.sql.functions.to_json df.select(to_json(struct($"c1", $"c2", $"c3"))) https://stackoverflow.com/questions/36157810/spark-row-to-json Spark Row to JSON I would like to create a JSON from a Spark v.1.6 (using scala) dataframe. I know that there is the simple solution of doing df.toJSON. However, my problem looks a bit different. Consider for insta... stackoverflow.com https..
@SerializedName https://howtodoinjava.com/gson/gson-serializedname/ Gson @SerializedName - Change field names example - HowToDoInJava In this Gson @SerializedName example, learn to change the name of fields between json and java objects while serialization and deserialization process. howtodoinjava.com
for row in df.rdd.collect(): do_something(row) driver executor https://stackoverflow.com/questions/36349281/how-to-loop-through-each-row-of-dataframe-in-pyspark how to loop through each row of dataFrame in pyspark E.g sqlContext = SQLContext(sc) sample=sqlContext.sql("select Name ,age ,city from user") sample.show() The above statement print entire table on terminal but i want to access each row..
::-webkit-scrollbar { -webkit-appearance: none; } ::-webkit-scrollbar:vertical { width: 12px; } ::-webkit-scrollbar:horizontal { height: 12px; } ::-webkit-scrollbar-thumb { background-color: rgba(0, 0, 0, .5); border-radius: 10px; border: 2px solid #ffffff; } ::-webkit-scrollbar-track { border-radius: 10px; background-color: #ffffff; } https://stackoverflow.com/questions/22907777/make-scrollbar-..
MySQLdb.connect(..., use_unicode=1,charset="utf8") https://stackoverflow.com/questions/9331010/mysql-in-python-encoding mysql in python encoding This post is the same with my question in MySQL in Python: UnicodeEncodeError: 'ascii' this is just to clear things up. I am trying to save a string to a MySQL database but I get an error:... stackoverflow.com p.agent_info = u' '.join((agent_contact, ag..
@Configuration public class AppConfig { @Bean public RestTemplate restTemplate(RestTemplateBuilder restTemplateBuilder) { return restTemplateBuilder .setConnectTimeout(...) .setReadTimeout(...) .build(); } } https://cnpnote.tistory.com/entry/SPRING-%EB%B4%84-RestTemplate-%EC%8B%9C%EA%B0%84-%EC%B4%88%EA%B3%BC [SPRING] 봄 RestTemplate 시간 초과 봄 RestTemplate 시간 초과 내 웹 응용 프로그램에서 사용하는 휴식 서비스에 대한 연결 시간 초..
@Configuration @Bean public WebServerFactoryCustomizer cookieProcessorCustomizer() { return new WebServerFactoryCustomizer() { @Override void customize(TomcatServletWebServerFactory tomcatServletWebServerFactory) { tomcatServletWebServerFactory.addContextCustomizers(new TomcatContextCustomizer() { @Override public void customize(Context context) { context.setCookieProcessor(new LegacyCookieProce..
삽질;;;;;;
https://www.baeldung.com/thymeleaf-iteration Iteration in Thymeleaf | Baeldung Learn how to use iteration with Thymeleaf using the th:each attribute. www.baeldung.com https://rooted.tistory.com/2 Spring Boot 메일 전송 : Spring Boot 2, Mail, Thymeleaf Spring Boot 2.x 기준 Mail Send Client를 간단히 소개해봅니다. 기 프로젝트에 적용하실 분들은 1-2로, 신규 프로젝트로 진행하실 분들은 1-1로 봐주시면 되겠습니다. 1-1. 프로젝트 생성 1-2. Maven dependency.. rooted...
add / remove 불가능 https://stewie38.tistory.com/89 Arrays.asList의 UnsupportedOperationException Array를 List로 만들 때 흔히 Arrays.asList( .. )를 사용했었는데 여기에는 큰 단점(?) 이 있다. 이렇게 만들어지는 List는 흔히 unmodifiable이라 하여 remove 및 add를 할 수 가 없다. 해서 사용되는 다른 대안.. stewie38.tistory.com
--conf spark.streaming.blockInterval=200 \ --conf spark.streaming.receiver.writeAheadLog.enable=true \ --conf spark.streaming.backpressure.enabled=true \ --conf spark.streaming.backpressure.pid.minRate=10 \ --conf spark.streaming.receiver.maxRate=100 \ --conf spark.streaming.kafka.maxRatePerPartition=100 \ --conf spark.streaming.backpressure.initialRate=30 \ https://www.inovex.de/blog/247-spark-..
# Broker message.max.bytes=15728640 replica.fetch.max.bytes=15728640 # Consumer fetch.message.max.bytes=15728640 https://stackoverflow.com/questions/21020347/how-can-i-send-large-messages-with-kafka-over-15mb How can I send large messages with Kafka (over 15MB)? I send String-messages to Kafka V. 0.8 with the Java Producer API. If the message size is about 15 MB I get a MessageSizeTooLargeExcept..
- Total
- Today
- Yesterday
- 개리마커스
- COUNT
- 할인
- 유투브
- follower
- 인스타그램
- 어떻게 능력을 보여줄 것인가?
- Kluge
- 테슬라 크레딧 사용
- 테슬라
- 테슬라 레퍼럴
- 책그림
- 팔로워 수 세기
- 모델y
- 테슬라 리퍼럴 코드
- Bot
- 테슬라 레퍼럴 적용 확인
- 테슬라 추천
- 김달
- 테슬라 리퍼럴 코드 혜택
- 테슬라 레퍼럴 코드 확인
- 레퍼럴
- 연애학개론
- wlw
- 모델 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 | 29 | 30 | 31 |