Atlas 및 온프레미스용 MongoDB Connector for Business Intelligence는 2026년 9월에 수명 종료(EOL)에 도달하여 이 이후로는 더 이상 지원되지 않습니다 . 모든 새 프로젝트에서 새로운 MongoDB SQL 인터페이스를 사용하여 Atlas 또는 Enterprise Advanced 배포서버에 연결하는 것이 좋습니다. SQL 인터페이스는 향상된 성능, 간소화된 설정 및 향상된 기능을 제공합니다. 자세한 내용은SQL 연결을 참조하세요.
지리 공간 데이터
컬렉션에 2d 또는 2dsphere 지리 공간 인덱스가 포함된 경우 BI Connector는 인덱싱된 필드를 숫자 경도-위도 좌표 배열에 매핑합니다.
예시
다음 collection이 주어집니다:
db.points.createIndex( { pos : "2dsphere" } ) db.points.insertOne({ pos : { type: "Point", coordinates: [ -73.97, 40.77 ] }, name: "Central Park", category : "Parks" })
BI Connector는 다음 스키마를 생성합니다.
schema: - db: test tables: - table: points collection: points pipeline: [] columns: - Name: _id MongoType: bson.ObjectId SqlName: _id SqlType: varchar - Name: category MongoType: string SqlName: category SqlType: varchar - Name: name MongoType: string SqlName: name SqlType: varchar - Name: pos.coordinates MongoType: geo.2darray SqlName: pos.coordinates SqlType: numeric[]
BI Connector 가 뷰에서 읽을 때 지리 공간적 필드를 인식하지 못합니다.