/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/BulkOperations.java

http://github.com/SpringSource/spring-data-mongodb · Java · 166 lines · 27 code · 20 blank · 119 comment · 0 complexity · 8aa1e081cb1b968f503c1462b80119d8 MD5 · raw file

  1. /*
  2. * Copyright 2015-2021 the original author or authors.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * https://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package org.springframework.data.mongodb.core;
  17. import java.util.List;
  18. import org.springframework.data.mongodb.core.query.Query;
  19. import org.springframework.data.mongodb.core.query.Update;
  20. import org.springframework.data.util.Pair;
  21. import com.mongodb.bulk.BulkWriteResult;
  22. /**
  23. * Bulk operations for insert/update/remove actions on a collection. These bulks operation are available since MongoDB
  24. * 2.6 and make use of low level bulk commands on the protocol level. This interface defines a fluent API to add
  25. * multiple single operations or list of similar operations in sequence which can then eventually be executed by calling
  26. * {@link #execute()}.
  27. *
  28. * @author Tobias Trelle
  29. * @author Oliver Gierke
  30. * @author Minsu Kim
  31. * @since 1.9
  32. */
  33. public interface BulkOperations {
  34. /**
  35. * Mode for bulk operation.
  36. **/
  37. enum BulkMode {
  38. /** Perform bulk operations in sequence. The first error will cancel processing. */
  39. ORDERED,
  40. /** Perform bulk operations in parallel. Processing will continue on errors. */
  41. UNORDERED
  42. };
  43. /**
  44. * Add a single insert to the bulk operation.
  45. *
  46. * @param documents the document to insert, must not be {@literal null}.
  47. * @return the current {@link BulkOperations} instance with the insert added, will never be {@literal null}.
  48. */
  49. BulkOperations insert(Object documents);
  50. /**
  51. * Add a list of inserts to the bulk operation.
  52. *
  53. * @param documents List of documents to insert, must not be {@literal null}.
  54. * @return the current {@link BulkOperations} instance with the insert added, will never be {@literal null}.
  55. */
  56. BulkOperations insert(List<? extends Object> documents);
  57. /**
  58. * Add a single update to the bulk operation. For the update request, only the first matching document is updated.
  59. *
  60. * @param query update criteria, must not be {@literal null}.
  61. * @param update {@link Update} operation to perform, must not be {@literal null}.
  62. * @return the current {@link BulkOperations} instance with the update added, will never be {@literal null}.
  63. */
  64. BulkOperations updateOne(Query query, Update update);
  65. /**
  66. * Add a list of updates to the bulk operation. For each update request, only the first matching document is updated.
  67. *
  68. * @param updates Update operations to perform.
  69. * @return the current {@link BulkOperations} instance with the update added, will never be {@literal null}.
  70. */
  71. BulkOperations updateOne(List<Pair<Query, Update>> updates);
  72. /**
  73. * Add a single update to the bulk operation. For the update request, all matching documents are updated.
  74. *
  75. * @param query Update criteria.
  76. * @param update Update operation to perform.
  77. * @return the current {@link BulkOperations} instance with the update added, will never be {@literal null}.
  78. */
  79. BulkOperations updateMulti(Query query, Update update);
  80. /**
  81. * Add a list of updates to the bulk operation. For each update request, all matching documents are updated.
  82. *
  83. * @param updates Update operations to perform.
  84. * @return the current {@link BulkOperations} instance with the update added, will never be {@literal null}.
  85. */
  86. BulkOperations updateMulti(List<Pair<Query, Update>> updates);
  87. /**
  88. * Add a single upsert to the bulk operation. An upsert is an update if the set of matching documents is not empty,
  89. * else an insert.
  90. *
  91. * @param query Update criteria.
  92. * @param update Update operation to perform.
  93. * @return the current {@link BulkOperations} instance with the update added, will never be {@literal null}.
  94. */
  95. BulkOperations upsert(Query query, Update update);
  96. /**
  97. * Add a list of upserts to the bulk operation. An upsert is an update if the set of matching documents is not empty,
  98. * else an insert.
  99. *
  100. * @param updates Updates/insert operations to perform.
  101. * @return the current {@link BulkOperations} instance with the update added, will never be {@literal null}.
  102. */
  103. BulkOperations upsert(List<Pair<Query, Update>> updates);
  104. /**
  105. * Add a single remove operation to the bulk operation.
  106. *
  107. * @param remove the {@link Query} to select the documents to be removed, must not be {@literal null}.
  108. * @return the current {@link BulkOperations} instance with the removal added, will never be {@literal null}.
  109. */
  110. BulkOperations remove(Query remove);
  111. /**
  112. * Add a list of remove operations to the bulk operation.
  113. *
  114. * @param removes the remove operations to perform, must not be {@literal null}.
  115. * @return the current {@link BulkOperations} instance with the removal added, will never be {@literal null}.
  116. */
  117. BulkOperations remove(List<Query> removes);
  118. /**
  119. * Add a single replace operation to the bulk operation.
  120. *
  121. * @param query Update criteria.
  122. * @param replacement the replacement document. Must not be {@literal null}.
  123. * @return the current {@link BulkOperations} instance with the replace added, will never be {@literal null}.
  124. * @since 2.2
  125. */
  126. default BulkOperations replaceOne(Query query, Object replacement) {
  127. return replaceOne(query, replacement, FindAndReplaceOptions.empty());
  128. }
  129. /**
  130. * Add a single replace operation to the bulk operation.
  131. *
  132. * @param query Update criteria.
  133. * @param replacement the replacement document. Must not be {@literal null}.
  134. * @param options the {@link FindAndModifyOptions} holding additional information. Must not be {@literal null}.
  135. * @return the current {@link BulkOperations} instance with the replace added, will never be {@literal null}.
  136. * @since 2.2
  137. */
  138. BulkOperations replaceOne(Query query, Object replacement, FindAndReplaceOptions options);
  139. /**
  140. * Execute all bulk operations using the default write concern.
  141. *
  142. * @return Result of the bulk operation providing counters for inserts/updates etc.
  143. * @throws org.springframework.data.mongodb.BulkOperationException if an error occurred during bulk processing.
  144. */
  145. BulkWriteResult execute();
  146. }