File tree Expand file tree Collapse file tree 2 files changed +39
-0
lines changed
src/main/java/org/apache/hadoop/hbase/util Expand file tree Collapse file tree 2 files changed +39
-0
lines changed Original file line number Diff line number Diff line change 187
187
<scope >test</scope >
188
188
</dependency >
189
189
</dependencies >
190
+
191
+ <build >
192
+ <plugins >
193
+ <plugin >
194
+ <!-- Make it so assembly:single does nothing in here-->
195
+ <artifactId >maven-assembly-plugin</artifactId >
196
+ <configuration >
197
+ <skipAssembly >true</skipAssembly >
198
+ </configuration >
199
+ </plugin >
200
+ <!-- Make a jar and put the sources in the jar -->
201
+ <plugin >
202
+ <groupId >org.apache.maven.plugins</groupId >
203
+ <artifactId >maven-source-plugin</artifactId >
204
+ <executions >
205
+ <execution >
206
+ <goals >
207
+ <goal >jar</goal >
208
+ <goal >test-jar</goal >
209
+ </goals >
210
+ <phase >package</phase >
211
+ </execution >
212
+ </executions >
213
+ </plugin >
214
+ <plugin >
215
+ <groupId >org.apache.maven.plugins</groupId >
216
+ <artifactId >maven-checkstyle-plugin</artifactId >
217
+ <configuration >
218
+ <failOnViolation >true</failOnViolation >
219
+ </configuration >
220
+ </plugin >
221
+ <plugin >
222
+ <groupId >net.revelc.code</groupId >
223
+ <artifactId >warbucks-maven-plugin</artifactId >
224
+ </plugin >
225
+ </plugins >
226
+ </build >
190
227
</project >
Original file line number Diff line number Diff line change 34
34
import org .apache .hadoop .hbase .client .Table ;
35
35
import org .apache .hadoop .hbase .util .test .LoadTestDataGenerator ;
36
36
import org .apache .hadoop .util .StringUtils ;
37
+ import org .apache .yetus .audience .InterfaceAudience ;
37
38
import org .slf4j .Logger ;
38
39
import org .slf4j .LoggerFactory ;
39
40
40
41
/** Creates multiple threads that write key/values into the */
42
+ @ InterfaceAudience .Private
41
43
public class MultiThreadedWriter extends MultiThreadedWriterBase {
42
44
private static final Logger LOG = LoggerFactory .getLogger (MultiThreadedWriter .class );
43
45
You can’t perform that action at this time.
0 commit comments