본문 바로가기

전체 글361

AWS GLUE에서 다른 GLUE 실행하기 AWS GLUE에서 다른 GLUE 실행하기 import boto3import timefrom botocore.exceptions import ClientErrordef wait_for_job_completion(glue_client, job_name, run_id): """ Wait for an AWS Glue job to complete and return the status. Args: glue_client: Boto3 Glue client job_name: Name of the Glue job run_id: ID of the specific job run Returns: str: Final status of.. 2025. 4. 8.
마비노기 모바일 최적화(PC) 경로 : C:\Nexon\MabinogiMobile\MabinogiMobile_Data파일명 : boot.config 설정 옵션 내용 붙여넣기gfx-enable-gfx-jobs=1gfx-enable-native-gfx-jobs=1gfx-disable-mt-rendering=1gfx-enable-threaded-present=1gfx-thread-priority=highwait-for-native-debugger=0vr-enabled=0hdr-display-enabled=0gc-max-time-slice=6memory-allocator=dynamic-pooluse-incremental-gc=1freeze-time-budget=1force-vulkan=1jobs-worker-count=6jobs-worker.. 2025. 3. 30.
redshift 행분할, 쪼개기(콤마) 예제 레코드의 특정 값으로 행을 여러개 분할하는 방법 WITH TMP AS ( SELECT 'A,B,CD'::varchar AS VAL),NUMS AS ( /* 최대 분할 개수 */ SELECT 1 AS N UNION ALL SELECT 2 UNION ALL SELECT 3 UNION ALL SELECT 4 UNION ALL SELECT 5)select a.val , b.n , SPLIT_PART(VAL, ',', N) as testfrom TMP ajoin NUMS b on (SPLIT_PART(VAL, ',', N)) != ''; 2024. 12. 2.
아이패드 미니 5 vs 6 vs 7 비교 비교 지표 미니5 미니6미니7AP 이름A12 (아이폰XR급)A15 (아이폰13급)A17pro (아이폰15 프로급)싱글코어(체감)13202121 (+61%)2889(+36%)멀티코어(과부하작업)28845365 (+86%)7171 (+34%)메모리3GB4GB8GB출시일2019년 3월2021년 9월2024년 10월 미니5 vs 미니6 - 성능 차이가 아주 극단적이다. 싱글코어는 61%, 멀티는 86% 차이난다... 미니6 vs 미니7 - 성능차이가 30% 이상, 램용량도 두 배 차이 난다. 결론 : 24년 11월 포스팅 기준 - 아이패드 미니5는 인터넷, 유투브, 문서 보는 용도로는 아직도 훌륭한 기기로 실사용으로는 나쁘지 않다.하지만 이제 영상편집이나 게임같은 과부하작업에서는 힘들다.출시 .. 2024. 11. 30.