Docs Menu
Docs Home
/ / /
Kotlin Sync 드라이버
/

대량 쓰기 작업

이 페이지의 내용

  • 개요
  • 샘플 데이터
  • 쓰기 작업 정의
  • 삽입 작업
  • 업데이트 작업
  • 대체 작업
  • 삭제 작업
  • 대량 작업 수행
  • 대량 쓰기 작업 사용자 지정
  • 반환 값
  • 추가 정보
  • API 문서

이 가이드 에서는 코틀린 동기 (Kotlin Sync) 운전자 를 사용하여 한 번의 데이터베이스 호출로 데이터를 여러 번 변경하는 대량 쓰기 (write) 작업을 수행하는 방법을 설명합니다.

동일한 작업 에 대해 문서를 삽입하고, 문서를 업데이트 하고, 문서를 삭제 해야 하는 상황을 생각해 보세요. 개별 쓰기 (write) 메서드를 사용하여 각 유형의 작업을 수행하는 경우 각 쓰기 (write) 는 데이터베이스 에 별도로 액세스합니다. 대량 쓰기 (write) 작업을 사용하여 애플리케이션 에서 서버 에 대해 수행하는 호출 수를 최적화할 수 있습니다.

이 가이드 의 예제에서는 Atlas 샘플 데이터 세트sample_restaurants.restaurants 컬렉션 을 사용합니다. 무료 MongoDB Atlas cluster 를 생성하고 샘플 데이터 세트를 로드하는 방법을 학습 보려면 Atlas 시작하기 가이드 를 참조하세요.

이 컬렉션 의 문서는 다음 코틀린 (Kotlin) 데이터 클래스에 따라 모델링됩니다.

data class Restaurant(
val name: String,
val borough: String,
val cuisine: String
)

수행하려는 각 쓰기 (write) 작업에 대해 일반 WriteModel 클래스에서 상속되는 다음 작업 클래스 중 하나의 해당 인스턴스 를 만듭니다.

  • InsertOneModel

  • UpdateOneModel

  • UpdateManyModel

  • ReplaceOneModel

  • DeleteOneModel

  • DeleteManyModel

그런 다음 이러한 인스턴스 목록을 bulkWrite() 메서드에 전달합니다.

다음 섹션에서는 이전 클래스의 인스턴스를 만들고 사용하는 방법을 보여줍니다. 대량 작업 수행 섹션에서는 모델 목록을 bulkWrite() 메서드에 전달하여 대량 작업을 수행하는 방법을 보여 줍니다.

삽입 작업을 수행하려면 InsertOneModel 인스턴스 를 만들고 삽입하려는 문서 를 지정합니다.

다음 예에서는 InsertOneModel 인스턴스를 만듭니다.

val blueMoon = InsertOneModel(Restaurant("Blue Moon Grill", "Brooklyn", "American"))

여러 문서를 삽입하려면 각 문서 에 대해 InsertOneModel 인스턴스 를 만듭니다.

중요

대량 작업을 수행할 때 InsertOneModel 은 컬렉션 에 이미 존재하는 _id 이 있는 문서 를 삽입할 수 없습니다. 이 상황에서 운전자 는 MongoBulkWriteException 를 발생시킵니다.

문서 를 업데이트 하려면 UpdateOneModel 인스턴스 를 만들고 다음 인수를 전달합니다.

  • 컬렉션의 문서를 일치시키는 데 사용되는 기준을 지정하는 쿼리 필터

  • 수행하려는 업데이트 작업입니다. 업데이트 작업에 대한 자세한 내용은 MongoDB Server 매뉴얼의 필드 업데이트 연산자 가이드 를 참조하세요.

UpdateOneModel 인스턴스 는 쿼리 필터하다 와 일치 하는 첫 번째 문서 에 대한 업데이트 를 지정합니다.

다음 예에서는 UpdateOneModel 인스턴스를 만듭니다.

val updateOneFilter = Filters.eq(Restaurant::name.name, "White Horse Tavern")
val updateOneDoc = Updates.set(Restaurant::borough.name, "Queens")
val tavernUpdate = UpdateOneModel<Restaurant>(updateOneFilter, updateOneDoc)

여러 문서를 업데이트 하려면 UpdateManyModel UpdateOneModel인스턴스 를 만들고 와 동일한 인수를 전달합니다. UpdateManyModel 클래스는 쿼리 필터하다 와 일치하는 모든 문서에 대한 업데이트를 지정합니다.

다음 예에서는 UpdateManyModel 인스턴스를 만듭니다.

val updateManyFilter = Filters.eq(Restaurant::name.name, "Wendy's")
val updateManyDoc = Updates.set(Restaurant::cuisine.name, "Fast food")
val wendysUpdate = UpdateManyModel<Restaurant>(updateManyFilter, updateManyDoc)

바꾸기 작업은 지정된 문서 의 모든 필드와 값을 제거하고 사용자가 지정한 새 필드와 값으로 바꿉니다. 대체 작업을 수행하려면 ReplaceOneModel 인스턴스 를 만들고 쿼리 필터하다 와 일치하는 문서 를 대체할 필드 및 값을 전달합니다.

다음 예에서는 ReplaceOneModel 인스턴스를 만듭니다.

val replaceFilter = Filters.eq(Restaurant::name.name, "Cooper Town Diner")
val replaceDoc = Restaurant("Smith Town Diner", "Brooklyn", "American")
val replacement = ReplaceOneModel(replaceFilter, replaceDoc)

여러 문서를 바꾸려면 각 문서 에 대해 ReplaceOneModel 인스턴스 를 만들어야 합니다.

문서 를 삭제 하려면 DeleteOneModel 인스턴스 를 만들고 삭제 하려는 문서 를 지정하는 쿼리 필터하다 를 전달합니다. DeleteOneModel 인스턴스 는 쿼리 필터하다 와 일치 하는 첫 번째 문서 만 삭제 하는 지침을 제공합니다.

다음 예에서는 DeleteOneModel 인스턴스를 만듭니다.

val deleteOne = DeleteOneModel<Restaurant>(Filters.eq(
Restaurant::name.name,
"Morris Park Bake Shop"
))

여러 문서를 삭제 하려면 DeleteManyModel 인스턴스 를 만들고 삭제 하려는 문서 를 지정하는 쿼리 필터하다 를 전달합니다. DeleteManyModel 인스턴스 는 쿼리 필터하다 와 일치하는 모든 문서를 제거 하는 지침을 제공합니다.

다음 예에서는 DeleteManyModel 인스턴스를 만듭니다.

val deleteMany = DeleteManyModel<Restaurant>(Filters.eq(
Restaurant::cuisine.name,
"Experimental"
))

수행하려는 각 작업에 대한 모델 인스턴스 를 정의한 후 이러한 인스턴스 목록을 bulkWrite() 메서드에 전달합니다. 기본값 으로 이 메서드는 모델 목록에 지정된 순서대로 작업을 실행합니다.

다음 예시 에서는 bulkWrite() 메서드를 사용하여 여러 쓰기 (write) 작업을 수행합니다.

val insertOneMdl = InsertOneModel(Restaurant("Red's Pizza", "Brooklyn", "Pizzeria"))
val updateOneMdl = UpdateOneModel<Restaurant>(
Filters.eq(Restaurant::name.name, "Moonlit Tavern"),
Updates.set(Restaurant::borough.name, "Queens")
)
val deleteManyMdl = DeleteManyModel<Restaurant>(
Filters.eq(Restaurant::name.name, "Crepe")
)
val bulkResult = collection.bulkWrite(
listOf(insertOneMdl, updateOneMdl, deleteManyMdl)
)
println(bulkResult)
AcknowledgedBulkWriteResult{insertedCount=1, matchedCount=5, removedCount=3,
modifiedCount=2, upserts=[], inserts=[BulkWriteInsert{index=0,
id=BsonObjectId{value=...}}]}

쓰기 (write) 작업 중 하나라도 실패하면 코틀린 동기 (Kotlin Sync) 운전자 는 BulkWriteError 를 발생시키고 추가 작업을 수행하지 않습니다. BulkWriteError 은(는) 실패한 작업이 포함된 details 항목과 예외에 대한 세부 정보를 제공합니다.

참고

운전자 가 대량 작업을 실행할 때 대상 컬렉션 의 쓰기 고려 (write concern) 를 사용합니다. 운전자 는 실행 순서에 관계없이 모든 작업을 시도한 후 모든 쓰기 고려 (write concern) 오류를 보고합니다.

bulkWrite() 메서드는 대량 쓰기 (write) 작업을 구성하는 데 사용할 수 있는 옵션을 지정하는 매개 변수를 선택적으로 허용합니다. 옵션을 지정하지 않으면 운전자 는 기본값 설정으로 대량 작업을 수행합니다.

다음 표에서는 BulkWriteOptions 인스턴스 를 구성하는 데 사용할 수 있는 setter 메서드에 대해 설명합니다.

속성
설명
ordered()
If true, the driver performs the write operations in the order provided. If an error occurs, the remaining operations are not attempted.

If false, the driver performs the operations in an arbitrary order and attempts to perform all operations.
Defaults to true.
bypassDocumentValidation()
Specifies whether the update operation bypasses document validation. This lets you update documents that don't meet the schema validation requirements, if any exist. For more information about schema validation, see Schema Validation in the MongoDB Server manual.
Defaults to false.
comment()
Sets a comment to attach to the operation.
let()
Provides a map of parameter names and values to set top-level variables for the operation. Values must be constant or closed expressions that don't reference document fields.

다음 코드는 옵션을 생성하고 ordered(false) 옵션을 사용하여 순서가 지정되지 않은 대량 쓰기 (write) 를 지정합니다. 그런 다음 이 예시 에서는 bulkWrite() 메서드를 사용하여 대량 작업을 수행합니다.

val opts = BulkWriteOptions().ordered(false)
collection.bulkWrite(bulkOperations, opts)

순서가 지정되지 않은 대량 쓰기 (write) 의 쓰기 (write) 작업 중 하나라도 실패하면 코틀린 동기 (Kotlin Sync) 운전자 는 모든 작업을 시도한 후에만 오류를 보고합니다.

참고

순서가 지정되지 않은 대량 작업은 실행 순서를 보장하지 않습니다. 순서는 런타임을 최적화하기 위해 나열하는 방식과 다를 수 있습니다.

bulkWrite() 메서드는 BulkWriteResult 객체 를 반환합니다. BulkWriteResult 인스턴스 에서 다음 정보에 액세스 할 수 있습니다.

속성
설명
wasAcknowledged()
Indicates if the server acknowledged the write operation.
getDeletedCount()
The number of documents deleted, if any.
getInsertedCount()
The number of documents inserted, if any.
getInserts()
The list of inserted documents, if any.
getMatchedCount()
The number of documents matched for an update, if applicable.
getModifiedCount()
The number of documents modified, if any.
getUpserts()
The list of upserted documents, if any.

개별 쓰기 작업을 수행하는 방법을 알아보려면 다음 가이드를 참조하세요.

  • 문서 삽입

  • 문서 업데이트

  • 문서 삭제

이 가이드에서 설명하는 메서드나 유형에 대해 자세히 알아보려면 다음 API 설명서를 참조하세요.

돌아가기

문서 삭제