@@ -51,31 +51,6 @@ public MiniAccumuloConfig(File dir, String rootPassword) {
51
51
this .impl = new MiniAccumuloConfigImpl (dir , rootPassword );
52
52
}
53
53
54
- /**
55
- * Calling this method is optional. If not set, it defaults to two.
56
- *
57
- * @param numTservers the number of tablet servers that mini accumulo cluster should start
58
- */
59
- // ELASTICITY_TODO: Deprecate in 3.0.0 and remove in elasticity on the merge
60
- @ Deprecated (since = "3.1.0" )
61
- public MiniAccumuloConfig setNumTservers (int numTservers ) {
62
- // impl.setNumTservers(numTservers);
63
- return this ;
64
- }
65
-
66
- /**
67
- * Calling this method is optional. If not set, it defaults to zero.
68
- *
69
- * @param numScanServers the number of scan servers that mini accumulo cluster should start
70
- * @since 2.1.0
71
- */
72
- // ELASTICITY_TODO: Deprecate in 3.0.0 and remove in elasticity on the merge
73
- @ Deprecated (since = "3.1.0" )
74
- public MiniAccumuloConfig setNumScanServers (int numScanServers ) {
75
- // impl.setNumScanServers(numScanServers);
76
- return this ;
77
- }
78
-
79
54
/**
80
55
* Calling this method is optional. If not set, defaults to 'miniInstance'
81
56
*
@@ -225,16 +200,6 @@ public String getRootPassword() {
225
200
return impl .getRootPassword ();
226
201
}
227
202
228
- /**
229
- * @return the number of tservers configured for this cluster
230
- */
231
- // ELASTICITY_TODO: Deprecate in 3.0.0 and remove in elasticity on the merge
232
- @ Deprecated (since = "3.1.0" )
233
- public int getNumTservers () {
234
- return impl .getClusterServerConfiguration ().getTabletServerConfiguration ().values ().stream ()
235
- .reduce (0 , Integer ::sum );
236
- }
237
-
238
203
/**
239
204
* @return is the current configuration in jdwpEnabled mode?
240
205
*
0 commit comments