본문 바로가기

분류 전체보기345

[InfluxDB] Flux (사용법/문법/InfluxQL/timezone 설정) 이전 회사에서 자주 썼던 influxDB 다시 보니 또 재밌어서 잊지 않도록 정리 겸 블로깅을 해보려한다. 2022.04.11 - [Database] - [InfluxDB] InfluxDB 입문 (설치 / 사용법 /Tick Stack / 시계열 데이터베이스 / Flux) [InfluxDB] InfluxDB 입문 (설치 / 사용법 /Tick Stack / 시계열 데이터베이스 / Flux) 회사에서 기본 rdbms 성능 이슈로 InfluxDB를 도입하기로 했고 관련 업무를 내가 담당하게 되어 공부를 시작했다. 일단 InfluxDB는 시계열 데이터 베이스이다. 시계열 데이터 베이스 TSDB 시계열 데이터 datamoney.tistory.com 이번에 쓸 내용은 바로 Flux 위에 포스팅에도 언급했듯이 원래 i.. 2023. 11. 24.
Leetcode 배열 42 Trapping Rain Water (java) https://leetcode.com/problems/trapping-rain-water/description/ Trapping Rain Water - LeetCode Can you solve this real interview question? Trapping Rain Water - Given n non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it can trap after raining. Example 1: [https://assets.leetcode.com/upl leetcode.com Given n non-negative integers represe.. 2023. 11. 18.
데이터 인프라 개념 정리 (ETL / 데이터 파이프라인) 데이터 인프라 💡 목적 데이터 기반으로 의사결정을 돕거나, 서비스와 제품을 향상시키기 위해 구축 데이터 파이프라인 : 대량의 데이터를 안정적으로 저장 & 관리 위한 기술 유형 일괄 처리 Batch Processing 스트리밍 데이터 Streaming Data 단계 데이터 생성 서비스 데이터 로그 데이터 서버 로그 이벤트 로그 데이터 수집 & 이동 ✔️ GC Storage Transfer Service 데이터 처리 ✔️ Hadoop, Spark 데이터 저장 ✔️ BigQuery → GCS 데이터 분석 데이터 시각화 BI Sources 데이터 소스 Ingestion and Transformation 추출 및 변환 Storage 저장 Historical 기존 데이터 분석 Predictive 데이터 예측 Out.. 2023. 11. 17.
Leetcode 문자열 819 Most Common Word (java) https://leetcode.com/problems/most-common-word/description/ Most Common Word - LeetCode Can you solve this real interview question? Most Common Word - Given a string paragraph and a string array of the banned words banned, return the most frequent word that is not banned. It is guaranteed there is at least one word that is not banned, and tha leetcode.com Given a string paragraph and a string ar.. 2023. 11. 14.