본문 바로가기

분류 전체보기

(170)
InfluxDB vs. TimescaleDB Which Time-Series Database is Better: TimescaleDB vs InfluxDB TimescaleDB vs. InfluxDB: purpose built differently for time-series data SQL vs. Flux: Choosing the right query language for time-series data Which Time-Series Database is Better: TimescaleDB vs InfluxDB In the new time-series database world, TimescaleDB and InfluxDB are two popular options with fundamentally different architectures. ..
cassandra DB GUI 클라이언트로 DBeaver community 이용하기 DBeaver 엔터프라이즈 버전과 달리 커뮤니티 버전은 cassandra 드라이버가 기본 제공되지 않으므로 직접 추가해줘야만 한다. 참고 : https://nowonbun.tistory.com/381?category=507118 Cassandra JDBC Driver(Datastax JDBC Driver) 추가 DBeaver 실행 후 Database > Driver Manager 에서 'New' 드라이버 설정 창에서 Driver Name : 맘대로 Url Template : jdbc:cassandra://{host}[:{port}]/{database} Default Port : 9042 하단 Libraries 탭에서 'Add Artifact' 누르고 Maven Artifact 설정 창에서 Group Id..
[InfluxDB] Why Flux? InfluxDB 2.* 에서는 InfluxQL 이 없어지고 Flux 가 전면에 등장했다. 왜 이런 방향을 잡았나 궁금해서 좀 찾아보는 중. 마침 눈에 띄는 기사가 있다. Flux & Time to Awesome – InfluxData interview But when you’re working with time series data, you don’t necessarily care about the specific point in time record; What you care about is an aggregation of data over time and looking at the change of that over time and so that that simply requires a differe..
InfluxDB 2.* 클라이언트 샘플 테스트 제공되는 클라이언트 샘플 소스를 이용해서 조회 테스트를 해본다. Go lang package main import ( "context" "fmt" "github.com/influxdata/influxdb-client-go" ) func main() { token := "..." org := "..." url := "http://...:9999" client := influxdb2.NewClient(url, token) queryApi := client.QueryApi(org) query := `from(bucket:"market") |> range(start: -2d) //|> filter(fn: (r) => r._measurement == "tickers" and r.ticker == "AAPL" an..
InfluxDB 2.* 설치 간단히 테스트해볼게 있어 설치부터 다시 해보려 싸이트 접속해보니 2 Beta 버전이 나와 있다. V 1.* 에서는 윈도우용도 제공됐는데 아직 V2 Beta 에선 없길래 그냥 리눅스용 받아서 압축 풀고 기본 설정 변경 없이 데몬 띄우고 ... 그리곤 막혔다. 그제사 공식 문서 훑기 시작. https://v2.docs.influxdata.com/v2.0/get-started/#set-up-influxdb Get started with InfluxDB | InfluxDB 2.0 Documentation Get started with InfluxDBThe InfluxDB 2.0 time series platform is purpose-built to collect, store, process and visual..
윈도우에 Hadoop 3.* 설치 급작스레 테스트할 일 생겨서 온라인 문서 몇가지 참고하여 설치. 간략하게 설치 순서만 요약해 봄(상세 설정 내용은 참고 링크 이용) 참고 링크. https://www.syncfusion.com/ebooks/hadoop-for-windows-succinctly/installing-hadoop-for-windows https://kontext.tech/column/hadoop/377/latest-hadoop-321-installation-on-windows-10-step-by-step-guide http://daddynkidsmakers.blogspot.com/2020/02/hadoop-spark.html Install Hadoop 3.2.1 on Windows 10 Step by Step Guide Thi..
Kafdrop 사용법 정리 이런거 아닌 간단 메모. 카프카 모니터링을 위해 예전에 Kafka Tool https://www.kafkatool.com/ 을 잠깐 쓰다가 버전업되면서 라이센스 정책 변경되어 다른 것 써보려다가 일에 밀려 미뤄뒀었는데 Kafka Tool The Ultimate UI Tool for Kafka Kafka Tool is a GUI application for managing and using Apache Kafka ® clusters. It provides an intuitive UI that allows one to quickly view objects within a Kafka cluster as well as the messages stored in the topics of the c ww..
[Python]방정식 문제를 코딩으로 풀어보기 아이랑 같이 수학 문제 풀어보다가 프로그램으로 한 번 짜보면 어떨까 생각하고 도전. 문제는 대충 이렇다. 33개의 공이 일렬로 놓여있다. 모든 공의 값의 합은 6,500원. 왼쪽 첫 공부터 가운데 공까지의 각각의 공값은 10원 씩 비싸진다. 오른쪽 첫 공부터 가운데 공까지의 각각의 공값은 15원 씩 비싸진다. 가운데 공의 값을 구하시오. 공식 만드는거는 그리 어려울 것 없다. 중앙의 위치값은 17이므로 좌측 첫 공의 값을 x, 우측 첫 공의 값을 y 라 할 때, x + 10 * 16 = y + 15 * 16 6500 = 왼쪽부터 16번째까지의 합 + 오른쪽부터 16번째까지의 합 + 중앙값(= x + 10 * 16) 호기롭게 컴 앞에 앉았는데 방정식을 코딩하려니 시작부터 벽. 다행히 sympy 란 걸 이용..