🏠 홈
벤치마크
📊 모든 벤치마크 🦖 공룡 v1 🦖 공룡 v2 ✅ 할 일 목록 앱 🎨 창의적인 자유 페이지 🎯 FSACB - 궁극의 쇼케이스 🌍 번역 벤치마크
모델
🏆 톱 10 모델 🆓 무료 모델 📋 모든 모델 ⚙️ 킬로 코드 모드
리소스
💬 프롬프트 라이브러리 📖 AI 용어 사전 🔗 유용한 링크

AI 용어집

인공지능 완전 사전

162
카테고리
2,032
하위 카테고리
23,060
용어
📖
용어

Apache Spark

Open-source distributed processing framework designed in-memory to accelerate Big Data analytics with optimized parallel execution.

📖
용어

RDD (Resilient Distributed Dataset)

Fundamental data structure of Spark, immutable and partitioned, enabling fault tolerance through reconstruction of lost data.

📖
용어

DataFrame

Distributed data collection organized into named columns, similar to a database table, optimized for structured queries.

📖
용어

Spark SQL

Spark module integrating SQL queries and DataFrame operations with automatic optimization via the Catalyst Optimizer.

📖
용어

Spark Streaming

Spark extension enabling real-time data stream processing with micro-batches for near-real-time latency.

📖
용어

MLlib

Spark's distributed machine learning library providing classification, regression, clustering, and recommendation algorithms.

📖
용어

GraphX

Spark API for distributed graph processing, combining the advantages of graphs with RDD performance.

📖
용어

DAG (Directed Acyclic Graph)

Representation of Spark execution plan for transformations, optimized to eliminate redundancies and parallelize processing.

📖
용어

Spark Driver

Main process coordinating Spark task execution, creating the SparkContext and dividing operations into stages.

📖
용어

Spark Executor

Worker process executing tasks assigned by the Driver on each cluster node, managing memory and partitioned data.

📖
용어

Spark Context

Main entry point of the Spark application, managing cluster connections and coordinating access to distributed resources.

📖
용어

Partition

Logical unit of data distribution in Spark, enabling parallelism by dividing RDDs/DataFrames into independent fragments.

📖
용어

Shuffle

Costly data redistribution operation between partitions, necessary during aggregations, joins, or groupings in Spark.

📖
용어

Catalyst Optimizer

Spark query optimization engine transforming and reorganizing execution plans to improve performance.

📖
용어

Tungsten

Spark execution backend optimizing memory and CPU through binary data management and bytecode generation.

📖
용어

Cache/Persist

Mechanism for persisting RDDs/DataFrames in memory or on disk for fast reuse and to avoid costly recalculations.

📖
용어

Broadcast Variable

Read-only variable efficiently distributed to all executors to minimize network transfers during joins.

📖
용어

Accumulator

Additive shared variable used to aggregate information from parallel tasks in a thread-safe manner.

📖
용어

Transformation

Lazy operation creating a new RDD/DataFrame without immediate execution, deferred until a triggering action.

📖
용어

Action

Operation triggering the execution of the DAG plan to produce a result, forcing the computation of all previous transformations.

🔍

결과를 찾을 수 없습니다