name
stringlengths
12
178
code_snippet
stringlengths
8
36.5k
score
float64
3.26
3.68
hbase_MasterProcedureUtil_submitProcedure_rdh
/** * Helper used to deal with submitting procs with nonce. Internally the * NonceProcedureRunnable.run() will be called only if no one else registered the nonce. any * Exception thrown by the run() method will be collected/handled and rethrown. <code> * long procId = MasterProcedureUtil.submitProcedure( * ne...
3.26
hbase_MasterProcedureUtil_getServerPriority_rdh
/** * Return the priority for the given procedure. For now we only have two priorities, 100 for * server carrying meta, and 1 for others. */ public static int getServerPriority(ServerProcedureInterface proc) { return proc.hasMetaTableRegion() ? 100 : 1; }
3.26
hbase_MasterProcedureUtil_unwrapRemoteIOException_rdh
/** * This is a version of unwrapRemoteIOException that can do DoNotRetryIOE. We need to throw DNRIOE * to clients if a failed Procedure else they will keep trying. The default * proc.getException().unwrapRemoteException doesn't have access to DNRIOE from the procedure2 * module. */ public static IOException unwra...
3.26
hbase_MasterProcedureUtil_validateProcedureWALFilename_rdh
/** * A Procedure WAL file name is of the format: pv-&lt;wal-id&gt;.log where wal-id is 20 digits. * * @param filename * name of the file to validate * @return <tt>true</tt> if the filename matches a Procedure WAL, <tt>false</tt> otherwise */ public static boolean validateProcedureWALFilename(String filename) ...
3.26
hbase_RegionServerCoprocessorHost_preStop_rdh
// //////////////////////////////////////////////////////////////////////////////////////////////// // RegionServerObserver operations // //////////////////////////////////////////////////////////////////////////////////////////////// public void preStop(String message, User user) throws IOException { // While stop...
3.26
hbase_ClientMetaTableAccessor_getTableStopRowForMeta_rdh
/** * Returns stop row for scanning META according to query type */ public static byte[] getTableStopRowForMeta(TableName tableName, QueryType type) { if (tableName == null) { return null; } final byte[] stopRow; switch (type) { case REGION : case REPLICATION : { ...
3.26
hbase_ClientMetaTableAccessor_getRegionLocations_rdh
/** * Returns an HRegionLocationList extracted from the result. */ private static Optional<RegionLocations> getRegionLocations(Result r) { return Optional.ofNullable(CatalogFamilyFormat.getRegionLocations(r)); }
3.26
hbase_ClientMetaTableAccessor_getRegionLocationWithEncodedName_rdh
/** * Returns the HRegionLocation from meta for the given encoded region name */ public static CompletableFuture<Optional<HRegionLocation>> getRegionLocationWithEncodedName(AsyncTable<?> metaTable, byte[] encodedRegionName) { CompletableFuture<Optional<HRegionLocation>> future = new CompletableFuture<>(); a...
3.26
hbase_ClientMetaTableAccessor_getResults_rdh
/** * Returns Collected results; wait till visits complete to collect all possible results */ List<T> getResults() { return this.results; }
3.26
hbase_ClientMetaTableAccessor_getRegionLocation_rdh
/** * Returns the HRegionLocation from meta for the given region */ public static CompletableFuture<Optional<HRegionLocation>> getRegionLocation(AsyncTable<?> metaTable, byte[] regionName) { CompletableFuture<Optional<HRegionLocation>> future = new CompletableFuture<>(); try { RegionInfo parsedRegion...
3.26
hbase_ClientMetaTableAccessor_scanMeta_rdh
/** * Performs a scan of META table for given table. * * @param metaTable * scanner over meta table * @param startRow * Where to start the scan * @param stopRow * Where to stop the scan * @param type * scanned part of meta * @param maxRows * maximum rows to return * @param visitor * Visitor in...
3.26
hbase_ClientMetaTableAccessor_getTableStartRowForMeta_rdh
/** * Returns start row for scanning META according to query type */ public static byte[] getTableStartRowForMeta(TableName tableName, QueryType type) { if (tableName == null) { return null; }switch (type) { case REGION : case REPLICATION : { byte[] startR...
3.26
hbase_CompactionPolicy_setConf_rdh
/** * Inform the policy that some configuration has been change, so cached value should be updated it * any. */ public void setConf(Configuration conf) { this.comConf = new CompactionConfiguration(conf, this.storeConfigInfo); }
3.26
hbase_CompactionPolicy_getConf_rdh
/** * Returns The current compaction configuration settings. */public CompactionConfiguration getConf() { return this.comConf; }
3.26
hbase_KeyLocker_acquireLocks_rdh
/** * Acquire locks for a set of keys. The keys will be sorted internally to avoid possible deadlock. * * @throws ClassCastException * if the given {@code keys} contains elements that are not mutually * comparable */ public Map<K, Lock> acquireLocks(Set<? extends K> keys) { Object[] keyArray = keys.toArray();...
3.26
hbase_KeyLocker_acquireLock_rdh
/** * Return a lock for the given key. The lock is already locked. */ public ReentrantLock acquireLock(K key) { if (key == null) throw new IllegalArgumentException("key must not be null"); lockPool.purge(); ReentrantLock lock = lockPool.get(key); lock.lock(); return lock; }
3.26
hbase_BackupInfo_setIncrTimestampMap_rdh
/** * Set the new region server log timestamps after distributed log roll * * @param prevTableSetTimestampMap * table timestamp map */ public void setIncrTimestampMap(Map<TableName, Map<String, Long>> prevTableSetTimestampMap) { this.incrTimestampMap = prevTableSetTimestampMap;}
3.26
hbase_BackupInfo_compareTo_rdh
/** * We use only time stamps to compare objects during sort operation */ @Override public int compareTo(BackupInfo o) { Long thisTS = Long.valueOf(this.getBackupId().substring(this.getBackupId().lastIndexOf("_") + 1)); Long otherTS = Long.valueOf(o.getBackupId().substring(o.getBackupId().lastIndexOf("_") + 1...
3.26
hbase_BackupInfo_getProgress_rdh
/** * Get current progress */ public int getProgress() { return progress; }
3.26
hbase_BackupInfo_getIncrTimestampMap_rdh
/** * Get new region server log timestamps after distributed log roll * * @return new region server log timestamps */ public Map<TableName, Map<String, Long>> getIncrTimestampMap() { return this.incrTimestampMap; }
3.26
hbase_BackupInfo_setProgress_rdh
/** * Set progress (0-100%) * * @param p * progress value */ public void setProgress(int p) { this.progress = p; }
3.26
hbase_VisibilityLabelsCache_getUserAuthsAsOrdinals_rdh
/** * Returns the list of ordinals of labels associated with the user * * @param user * Not null value. * @return the list of ordinals */ public Set<Integer> getUserAuthsAsOrdinals(String user) { this.lock.readLock().lock(); try { Set<Integer> auths = userAuths.get(user); return auths ==...
3.26
hbase_VisibilityLabelsCache_getLabelsCount_rdh
/** * Returns The total number of visibility labels. */ public int getLabelsCount() { this.lock.readLock().lock(); try { return this.labels.size(); } finally { this.lock.readLock().unlock(); } }
3.26
hbase_VisibilityLabelsCache_createAndGet_rdh
/** * Creates the singleton instance, if not yet present, and returns the same. * * @return Singleton instance of VisibilityLabelsCache */ @SuppressWarnings(value = "MS_EXPOSE_REP", justification = "singleton pattern") public static synchronized VisibilityLabelsCache createAndGet(ZKWatcher watcher, Configuratio...
3.26
hbase_VisibilityLabelsCache_getGroupAuthsAsOrdinals_rdh
/** * Returns the list of ordinals of labels associated with the groups * * @return the list of ordinals */ public Set<Integer> getGroupAuthsAsOrdinals(String[] groups) { this.lock.readLock().lock(); try { Set<Integer> authOrdinals = new HashSet<>(); if ((groups != null) && (groups.length > ...
3.26
hbase_JmxCacheBuster_restart_rdh
/** * Restarts the stopped service. * * @see #stop() */ public static void restart() { stopped.set(false); }
3.26
hbase_JmxCacheBuster_m0_rdh
/** * For JMX to forget about all previously exported metrics. */ public static void m0() { if (LOG.isTraceEnabled()) { LOG.trace("clearing JMX Cache" + StringUtils.stringifyException(new Exception())); } // If there are more then 100 ms before the executor will run then everything should be merge...
3.26
hbase_JmxCacheBuster_m1_rdh
/** * Stops the clearing of JMX metrics and restarting the Hadoop metrics system. This is needed for * some test environments where we manually inject sources or sinks dynamically. */ public static void m1() { stopped.set(true); ScheduledFuture future = fut.get(); future.cancel(false); }
3.26
hbase_IdentityTableMapper_initJob_rdh
/** * Use this before submitting a TableMap job. It will appropriately set up the job. * * @param table * The table name. * @param scan * The scan with the columns to scan. * @param mapper * The mapper class. * @param job * The job configuration. * @throws IOException * When setting up the job fai...
3.26
hbase_IdentityTableMapper_map_rdh
/** * Pass the key, value to reduce. * * @param key * The current key. * @param value * The current value. * @param context * The current context. * @throws IOException * When writing the record fails. * @throws InterruptedException * When the job is aborted. */ public void map(ImmutableBytesWrit...
3.26
hbase_BaseSourceImpl_setGauge_rdh
/** * Set a single gauge to a value. * * @param gaugeName * gauge name * @param value * the new value of the gauge. */ @Override public void setGauge(String gaugeName, long value) { MutableGaugeLong gaugeInt = metricsRegistry.getGauge(gaugeName, value); gaugeInt.set(value); }
3.26
hbase_BaseSourceImpl_removeMetric_rdh
/** * Remove a named gauge. * * @param key * the key of the gauge to remove */ @Override public void removeMetric(String key) { metricsRegistry.removeMetric(key); JmxCacheBuster.clearJmxCache(); }
3.26
hbase_BaseSourceImpl_incCounters_rdh
/** * Increment a named counter by some value. * * @param key * the name of the counter * @param delta * the ammount to increment */ @Override public void incCounters(String key, long delta) { MutableFastCounter v3 = metricsRegistry.getCounter(key, 0L); v3.incr(delta); }
3.26
hbase_BaseSourceImpl_incGauge_rdh
/** * Add some amount to a gauge. * * @param gaugeName * The name of the gauge to increment. * @param delta * The amount to increment the gauge by. */ @Override public void incGauge(String gaugeName, long delta) { MutableGaugeLong gaugeInt = metricsRegistry.getGauge(gaugeName, 0L); gaugeInt.incr(delt...
3.26
hbase_BaseSourceImpl_decGauge_rdh
/** * Decrease the value of a named gauge. * * @param gaugeName * The name of the gauge. * @param delta * the ammount to subtract from a gauge value. */ @Override public void decGauge(String gaugeName, long delta) { MutableGaugeLong gaugeInt = metricsRegistry.getGauge(gaugeName, 0L); gaugeInt.decr(de...
3.26
hbase_MemStoreCompactorSegmentsIterator_createScanner_rdh
/** * Creates the scanner for compacting the pipeline. * * @return the scanner */ private InternalScanner createScanner(HStore store, List<KeyValueScanner> scanners) throws IOException { InternalScanner scanner = null; boolean success = false; try { RegionCoprocessorHost cpHost = store.getCopr...
3.26
hbase_RawDouble_decodeDouble_rdh
/** * Read a {@code double} value from the buffer {@code buff}. */ public double decodeDouble(byte[] buff, int offset) { double val = Bytes.toDouble(buff, offset); return val; }
3.26
hbase_RawDouble_encodeDouble_rdh
/** * Write instance {@code val} into buffer {@code buff}. */ public int encodeDouble(byte[] buff, int offset, double val) { return Bytes.putDouble(buff, offset, val); }
3.26
hbase_RegionReplicaUtil_addReplicas_rdh
/** * Create any replicas for the regions (the default replicas that was already created is passed to * the method) * * @param regions * existing regions * @param oldReplicaCount * existing replica count ...
3.26
hbase_RegionReplicaUtil_isDefaultReplica_rdh
/** * Returns true if this region is a default replica for the region */ public static boolean isDefaultReplica(RegionInfo hri) { return hri.getReplicaId() == DEFAULT_REPLICA_ID; }
3.26
hbase_RegionReplicaUtil_removeNonDefaultRegions_rdh
/** * Removes the non-default replicas from the passed regions collection */ public static void removeNonDefaultRegions(Collection<RegionInfo> regions) {Iterator<RegionInfo> iterator = regions.iterator(); while (iterator.hasNext()) { RegionInfo hri = iterator.next(); if (!RegionReplicaUtil.isDefau...
3.26
hbase_RecoverableZooKeeper_m1_rdh
/** * getChildren is an idempotent operation. Retry before throwing exception * * @return List of children znodes */ public List<String> m1(String path, boolean watch) throws KeeperException, InterruptedException {return getChildren(path, null, watch); }
3.26
hbase_RecoverableZooKeeper_filterByPrefix_rdh
/** * Filters the given node list by the given prefixes. This method is all-inclusive--if any element * in the node list starts with any of the given prefixes, then it is included in the result. * * @param nodes * the nodes to filter * @param prefixes * the prefixes to include in the result * @return list o...
3.26
hbase_RecoverableZooKeeper_exists_rdh
/** * exists is an idempotent operation. Retry before throwing exception * * @return A Stat instance */public Stat exists(String path, boolean watch) throws KeeperException, InterruptedException { return exists(path, null, watch); }
3.26
hbase_RecoverableZooKeeper_getData_rdh
/** * getData is an idempotent operation. Retry before throwing exception */ public byte[] getData(String path, boolean watch, Stat stat) throws KeeperException, InterruptedException { return getData(path, null, watch, stat); }
3.26
hbase_RecoverableZooKeeper_setData_rdh
/** * setData is NOT an idempotent operation. Retry may cause BadVersion Exception Adding an * identifier field into the data to check whether badversion is caused by the result of previous * correctly setData * * @return Stat instance */ public Stat setData(String path, byte[] data, int version) throws KeeperExc...
3.26
hbase_RecoverableZooKeeper_multi_rdh
/** * Run multiple operations in a transactional manner. Retry before throwing exception */ public List<OpResult> multi(Iterable<Op> ops) throws KeeperException, InterruptedException { final Span span = TraceUtil.createSpan("RecoverableZookeeper.multi"); try (Scope ignored = span.makeCurrent()) { RetryCounter retryC...
3.26
hbase_RecoverableZooKeeper_getAcl_rdh
/** * getAcl is an idempotent operation. Retry before throwing exception * * @return list of ACLs */ public List<ACL> getAcl(String path, Stat stat) throws KeeperException, InterruptedException { final Span span = TraceUtil.createSpan("RecoverableZookeeper.getAcl"); try (Scope ignored = span.makeCurrent()) ...
3.26
hbase_RecoverableZooKeeper_getMaxMultiSizeLimit_rdh
/** * Returns the maximum size (in bytes) that should be included in any single multi() call. NB: * This is an approximation, so there may be variance in the msg actually sent over the wire. * Please be sure to set this approximately, with respect to your ZK server configuration for * jute.maxbuffer. */ public int...
3.26
hbase_RecoverableZooKeeper_m0_rdh
/** * See {@link #connect(Configuration, String, Watcher, String)} */ public static RecoverableZooKeeper m0(Configuration conf, Watcher watcher) throws IOException { String ensemble = ZKConfig.getZKQuorumServersString(conf);return connect(conf, ensemble, watcher); }
3.26
hbase_RecoverableZooKeeper_create_rdh
/** * <p> * NONSEQUENTIAL create is idempotent operation. Retry before throwing exceptions. But this * function will not throw the NodeExist exception back to the application. * </p> * <p> * But SEQUENTIAL is NOT idempotent operation. It is necessary to add identifier to the path to * verify, whether the previou...
3.26
hbase_RecoverableZooKeeper_m2_rdh
/** * Convert Iterable of {@link org.apache.zookeeper.Op} we got into the ZooKeeper.Op instances to * actually pass to multi (need to do this in order to appendMetaData). */ private Iterable<Op> m2(Iterable<Op> ops) throws UnsupportedOperationException { if (ops == null) { return null; } List<Op> preparedOps = new ...
3.26
hbase_RecoverableZooKeeper_getChildren_rdh
/** * getChildren is an idempotent operation. Retry before throwing exception * * @return List of children znodes */ public List<String> getChildren(String path, Watcher watcher) throws KeeperException, InterruptedException { return getChildren(path, watcher, null); }
3.26
hbase_RecoverableZooKeeper_connect_rdh
/** * Creates a new connection to ZooKeeper, pulling settings and ensemble config from the specified * configuration object using methods from {@link ZKConfig}. Sets the connection status monitoring * watcher to the specified watcher. * * @param conf * configuration to pull ensemble and other settings from * @...
3.26
hbase_RecoverableZooKeeper_setAcl_rdh
/** * setAcl is an idempotent operation. Retry before throwing exception * * @return list of ACLs */ public Stat setAcl(String path, List<ACL> acls, int version) throws KeeperException, InterruptedException { final Span span = TraceUtil.createSpan("RecoverableZookeeper.setAcl"); try (Scope ignored = span.makeCur...
3.26
hbase_RecoverableZooKeeper_delete_rdh
/** * delete is an idempotent operation. Retry before throwing exception. This function will not * throw NoNodeException if the path does not exist. */ public void delete(String path, int version) throws InterruptedException, KeeperException { final Span span = TraceUtil.createSpan("RecoverableZookeeper.delete...
3.26
hbase_DumpReplicationQueues_getTotalWALSize_rdh
/** * return total size in bytes from a list of WALs */ private long getTotalWALSize(FileSystem fs, List<String> wals, ServerName server) { long size = 0; FileStatus fileStatus; for (String wal : wals) { try { fileStatus = new WALLink(getConf(), server.getServerName(), wal).getFileSt...
3.26
hbase_DumpReplicationQueues_main_rdh
/** * Main */ public static void main(String[] args) throws Exception { Configuration conf = HBaseConfiguration.create(); int ret = ToolRunner.run(conf, new DumpReplicationQueues(), args); System.exit(ret); }
3.26
hbase_MobStoreEngine_createCompactor_rdh
/** * Creates the DefaultMobCompactor. */@Override protected void createCompactor(Configuration conf, HStore store) throws IOException { String className = conf.get(MOB_COMPACTOR_CLASS_KEY, DefaultMobStoreCompactor.class.getName()); try { compactor = ReflectionUtils.instantiateWithCustomCtor(class...
3.26
hbase_ConstantSizeRegionSplitPolicy_isExceedSize_rdh
/** * Returns true if region size exceed the sizeToCheck */ protected final boolean isExceedSize(long sizeToCheck) { if (overallHRegionFiles) { long sumSize = 0; for (HStore store : region.getStores()) { sumSize += store.getSize(); } if (sumSize > siz...
3.26
hbase_FileSystemUtilizationChore_m0_rdh
/** * Computes total FileSystem size for the given {@link Region}. * * @param r * The region * @return The size, in bytes, of the Region. */ long m0(Region r) { long regionSize = 0L; for (Store store : r.getStores()) { regionSize += store.getHFilesSize(); } if (LOG.isTraceEnabled()) ...
3.26
hbase_FileSystemUtilizationChore_getInitialDelay_rdh
/** * Extracts the initial delay for the chore from the configuration. * * @param conf * The configuration object. * @return The configured chore initial delay or the default value. */ static long getInitialDelay(Configuration conf) { return conf.getLong(FS_UTILIZATION_CHORE_DELAY_KEY, FS_UTILIZATION_CHORE_...
3.26
hbase_FileSystemUtilizationChore_getPeriod_rdh
/** * Extracts the period for the chore from the configuration. * * @param conf * The configuration object. * @return The configured chore period or the default value. */ static int getPeriod(Configuration conf) { return conf.getInt(FS_UTILIZATION_CHORE_PERIOD_KEY, FS_UTILIZATION_CHORE_PERIOD_DEFAULT);...
3.26
hbase_FileSystemUtilizationChore_getRegionSizeStore_rdh
// visible for testing RegionSizeStore getRegionSizeStore() { return rs.getRegionServerSpaceQuotaManager().getRegionSizeStore(); }
3.26
hbase_FileSystemUtilizationChore_getLeftoverRegions_rdh
/** * Returns an {@link Iterator} over the Regions which were skipped last invocation of the chore. * * @return Regions from the previous invocation to process, or null. */ Iterator<Region> getLeftoverRegions() { return leftoverRegions; }
3.26
hbase_FileSystemUtilizationChore_setLeftoverRegions_rdh
/** * Sets a new collection of Regions as leftovers. */ void setLeftoverRegions(Iterator<Region> newLeftovers) { this.leftoverRegions = newLeftovers; }
3.26
hbase_RegionStateNode_isSplit_rdh
/** * Return whether the region has been split and not online. * <p/> * In this method we will test both region info and state, and will return true if either of the * test returns true. Please see the comments in * {@link AssignmentManager#markRegionAsSplit(RegionInfo, ServerName, RegionInfo, RegionInfo)} for * ...
3.26
hbase_RegionStateNode_m0_rdh
/** * Put region into OFFLINE mode (set state and clear location). * * @return Last recorded server deploy */public ServerName m0() {setState(State.OFFLINE); return setRegionLocation(null); }
3.26
hbase_RegionStateNode_isInState_rdh
/** * Notice that, we will return true if {@code expected} is empty. * <p/> * This is a bit strange but we need this logic, for example, we can change the state to OPENING * from any state, as in SCP we will not change the state to CLOSED before opening the region. */ public boolean isInState(State... expected) { ...
3.26
hbase_RegionStateNode_transitionState_rdh
/** * Set new {@link State} but only if currently in <code>expected</code> State (if not, throw * {@link UnexpectedStateException}. */ public void transitionState(final State update, final State... expected) throws UnexpectedStateException { if (!setState(update, expected)) { throw new Unexpected...
3.26
hbase_RegionStateNode_setState_rdh
/** * * @param update * new region state this node should be assigned. * @param expected * current state should be in this given list of expected states * @return true, if current state is in expected list; otherwise false. */ public boolean setState(final State update, final State... expected) { if (!i...
3.26
hbase_CellBuilderFactory_create_rdh
/** * Create a CellBuilder instance. * * @param type * indicates which memory copy is used in building cell. * @return An new CellBuilder */ public static CellBuilder create(CellBuilderType type) { switch (type) { case SHALLOW_COPY : return new IndividualBytesFieldCellBuilder(); ...
3.26
hbase_RawInteger_decodeInt_rdh
/** * Read an {@code int} value from the buffer {@code buff}. */ public int decodeInt(byte[] buff, int offset) { return Bytes.toInt(buff, offset); }
3.26
hbase_RawInteger_encodeInt_rdh
/** * Write instance {@code val} into buffer {@code buff}. */ public int encodeInt(byte[] buff, int offset, int val) { return Bytes.putInt(buff, offset, val); }
3.26
hbase_ThreadMonitoring_formatThreadInfo_rdh
/** * Format the given ThreadInfo object as a String. * * @param indent * a prefix for each line, used for nested indentation */ public static String formatThreadInfo(ThreadInfo threadInfo, String indent) { StringBuilder sb = new StringBuilder(); appendThreadInfo(sb, threadInfo, indent); return sb.toSt...
3.26
hbase_MurmurHash3_hash_rdh
/** * Returns the MurmurHash3_x86_32 hash. */ @SuppressWarnings("SF") @Override public <T> int hash(HashKey<T> hashKey, int initval) { final int c1 = 0xcc9e2d51; final int c2 = 0x1b873593;int length = hashKey.length(); int h1 = initval; int roundedEnd = len...
3.26
hbase_RpcThrottleStorage_switchRpcThrottle_rdh
/** * Store the rpc throttle value. * * @param enable * Set to <code>true</code> to enable, <code>false</code> to disable. * @throws IOException * if an unexpected io exception occurs */ public void switchRpcThrottle(boolean enable) throws IOException { try {byte[] upData = Bytes.toBytes(enable); ...
3.26
hbase_AuthUtil_isAuthRenewalChoreEnabled_rdh
/** * Returns true if the chore to automatically renew Kerberos tickets (from keytabs) should be * started. The default is true. */ static boolean isAuthRenewalChoreEnabled(Configuration conf) { return conf.getBoolean(HBASE_CLIENT_AUTOMATIC_KEYTAB_RENEWAL_KEY, HBASE_CLIENT_AUTOMATIC_KEYTAB_RENEWAL_DEFAULT); }
3.26
hbase_AuthUtil_toGroupEntry_rdh
/** * Returns the group entry with the group prefix for a group principal. */ @InterfaceAudience.Private public static String toGroupEntry(String name) { return GROUP_PREFIX + name; }
3.26
hbase_AuthUtil_loginClient_rdh
/** * For kerberized cluster, return login user (from kinit or from keytab if specified). For * non-kerberized cluster, return system user. * * @param conf * configuartion file * @throws IOException * login exception */ @InterfaceAudience.Private public static User loginClient(Configuration conf) throws IOE...
3.26
hbase_AuthUtil_getAuthRenewalChore_rdh
/** * Checks if security is enabled and if so, launches chore for refreshing kerberos ticket. * * @return a ScheduledChore for renewals. */ @InterfaceAudience.Private public static ScheduledChore getAuthRenewalChore(final UserGroupInformation user, Configuration conf) { if ((!user.hasKerberosCredentials()) || ...
3.26
hbase_AuthUtil_getGroupName_rdh
/** * Returns the actual name for a group principal (stripped of the group prefix). */ @InterfaceAudience.Private public static String getGroupName(String aclKey) { if (!isGroupPrincipal(aclKey)) { return aclKey; } return aclKey.substring(GROUP_PREFIX.length()); }
3.26
hbase_AuthUtil_loginClientAsService_rdh
/** * For kerberized cluster, return login user (from kinit or from keytab). Principal should be the * following format: name/fully.qualified.domain.name@REALM. For non-kerberized cluster, return * system user. * <p> * NOT recommend to use to method unless you're sure what you're doing, it is for canary only. * P...
3.26
hbase_AuthUtil_isGroupPrincipal_rdh
/** * Returns whether or not the given name should be interpreted as a group principal. Currently * this simply checks if the name starts with the special group prefix character ("@"). */ @InterfaceAudience.Private public static boolean isGroupPrincipal(String name) { return (name != null) && name.startsWith(GRO...
3.26
hbase_RawBytesTerminated_encode_rdh
/** * Write {@code val} into {@code dst}, respecting {@code offset} and {@code length}. * * @return number of bytes written. */ public int encode(PositionedByteRange dst, byte[] val, int voff, int vlen) { return ((RawBytes) (wrapped)).encode(dst, val, voff, vlen); }
3.26
hbase_RawBytesTerminated_decode_rdh
/** * Read a {@code byte[]} from the buffer {@code src}. */ public byte[] decode(PositionedByteRange src, int length) { return ((RawBytes) (wrapped)).decode(src, length); }
3.26
hbase_ReplicationPeerConfigUtil_m2_rdh
/** * Helper method to add/removev base peer configs from Configuration to ReplicationPeerConfig This * merges the user supplied peer configuration * {@link org.apache.hadoop.hbase.replication.ReplicationPeerConfig} with peer configs provided as * property hbase.replication.peer.base.configs in hbase configuration....
3.26
hbase_ReplicationPeerConfigUtil_parsePeerFrom_rdh
/** * Parse the serialized representation of a peer configuration. * * @param bytes * Content of a peer znode. * @return ClusterKey parsed from the passed bytes. * @throws DeserializationException * deserialization exception */ public static ReplicationPeerConfig parsePeerFrom(final byte[] bytes) throws Des...
3.26
hbase_ReplicationPeerConfigUtil_convert_rdh
/** * Convert TableCFs Object to String. Output String Format: * ns1.table1:cf1,cf2;ns2.table2:cfA,cfB;table3 */ public static String convert(ReplicationProtos[] tableCFs) { StringBuilder sb = new StringBuilder(); for (int i = 0, n = tableCFs.length; i < n; i++) { ReplicationProtos.TableCF tableCF...
3.26
hbase_ReplicationPeerConfigUtil_convert2Map_rdh
/** * Convert tableCFs Object to Map. */ public static Map<TableName, List<String>> convert2Map(ReplicationProtos[] tableCFs) { if ((tableCFs == null) || (tableCFs.length == 0)) { return null; } Map<TableName, List<String>> t...
3.26
hbase_ReplicationPeerConfigUtil_parseTableCFs_rdh
/** * Parse bytes into TableCFs. It is used for backward compatibility. Old format bytes have no * PB_MAGIC Header */ public static TableCF[] parseTableCFs(byte[] bytes) throws IOException { if (bytes == null) { return null; } return ReplicationPeerConfigUtil.convert(Bytes.toString(bytes)...
3.26
hbase_ReplicationPeerConfigUtil_getPeerClusterConfiguration_rdh
/** * Returns the configuration needed to talk to the remote slave cluster. * * @param conf * the base configuration * @param peer * the description of replication peer * @return the configuration for the peer cluster, null if it was unable to get the configuration * @throws IOException * when create pee...
3.26
hbase_ReplicationPeerConfigUtil_m1_rdh
/** * Convert tableCFs string into Map. */ public static Map<TableName, List<String>> m1(String tableCFsConfig) { ReplicationProtos[] tableCFs = convert(tableCFsConfig); return convert2Map(tableCFs); }
3.26
hbase_ReplicationPeerConfigUtil_m0_rdh
/** * Get TableCF in TableCFs, if not exist, return null. */ public static TableCF m0(ReplicationProtos[] tableCFs, String table) { for (int i = 0, n = tableCFs.length; i < n; i++) { ReplicationProtos.TableCF tableCF = tableCFs[i]; if (tableCF.getTableName().getQualifier().toString...
3.26
hbase_ReplicationPeerConfigUtil_toByteArray_rdh
/** * Returns Serialized protobuf of <code>peerConfig</code> with pb magic prefix prepended suitable * for use as content of a this.peersZNode; i.e. the content of PEER_ID znode under * /hbase/replication/peers/PEER_ID */ public static byte[] toByteArray(final ReplicationPeerConfig peerConfig) { byte[] byte...
3.26
hbase_MiniHBaseCluster_stopRegionServer_rdh
/** * Shut down the specified region server cleanly * * @param serverNumber * Used as index into a list. * @param shutdownFS * True is we are to shutdown the filesystem as part of this regionserver's * shutdown. Usually we do but you do not want to do this if you are running * multiple regionservers in ...
3.26
hbase_MiniHBaseCluster_compact_rdh
/** * Call flushCache on all regions of the specified table. */ public void compact(TableName tableName, boolean major) throws IOException { for (JVMClusterUtil.RegionServerThread t : this.f0.getRegionServers()) { for (HRegion r : t.getRegionServer().getOnlineRegionsLocalContext()) { if (r.ge...
3.26
hbase_MiniHBaseCluster_flushcache_rdh
/** * Call flushCache on all regions of the specified table. */ public void flushcache(TableName tableName) throws IOException { for (JVMClusterUtil.RegionServerThread t : this.f0.getRegionServers()) { for (HRegion r : t.getRegionServer().getOnlineRegionsLocalContext()) { if (r.getTableDe...
3.26
hbase_MiniHBaseCluster_killAll_rdh
/** * Do a simulated kill all masters and regionservers. Useful when it is impossible to bring the * mini-cluster back for clean shutdown. */ public void killAll() { // Do backups first. MasterThread activeMaster = null; for (MasterThread masterThread : getMasterThreads())...
3.26
hbase_MiniHBaseCluster_waitForActiveAndReadyMaster_rdh
/** * Blocks until there is an active master and that master has completed initialization. * * @return true if an active master becomes available. false if there are no masters left. */ @Override public boolean waitForActiveAndReadyMaster(long timeout) throws IOException { List<JVMClusterUtil.MasterThread> mts;...
3.26