목록2025/02/04 (2)
내 잡다한 노트
NoSQL과 SQL 기반 데이터베이스는 각각의 설계 철학과 용도가 다르기 때문에 “성능”을 단순 비교하기는 어렵습니다. 대신, 주요 워크로드와 사용 시나리오별로 어떤 특성이 성능에 영향을 미치는지 살펴보면 다음과 같습니다.1. 데이터 모델 및 쿼리 복잡성SQL (관계형 데이터베이스)강점:정교한 조인 및 복잡한 쿼리: 복잡한 관계와 조인을 효과적으로 처리하며, 인덱싱, 캐싱, 실행 계획 최적화를 통해 정교한 쿼리를 빠르게 수행할 수 있습니다.ACID 트랜잭션: 데이터 일관성과 무결성을 보장하는 데 최적화되어 있습니다.단점:고정 스키마: 스키마 변경이 어렵고, 대규모 데이터 및 높은 트래픽 상황에서는 수직 확장이 주로 요구되어 비용과 한계가 발생할 수 있습니다.확장성 한계: 복잡한 조인과 트랜잭션 관리로 인..
https://startree.ai/resources/a-tale-of-three-real-time-olap-databases IngestionBefore a database can run analytical queries, the data must get into the system. This is the process of ingestion . This layer deals with all the capabilities required for ingesting data into the OLAP system from various kinds of data sources, as mentioned above. As we go through the details of each data source, here..