idx
int64
0
165k
question
stringlengths
73
5.81k
target
stringlengths
5
918
150,600
public BoxFileUploadSession . Info getStatus ( ) { URL statusURL = this . sessionInfo . getSessionEndpoints ( ) . getStatusEndpoint ( ) ; BoxJSONRequest request = new BoxJSONRequest ( this . getAPI ( ) , statusURL , HttpMethod . GET ) ; BoxJSONResponse response = ( BoxJSONResponse ) request . send ( ) ; JsonObject json...
Get the status of the upload session . It contains the number of parts that are processed so far the total number of parts required for the commit and expiration date and time of the upload session .
150,601
public void abort ( ) { URL abortURL = this . sessionInfo . getSessionEndpoints ( ) . getAbortEndpoint ( ) ; BoxJSONRequest request = new BoxJSONRequest ( this . getAPI ( ) , abortURL , HttpMethod . DELETE ) ; request . send ( ) ; }
Abort an upload session discarding any chunks that were uploaded to it .
150,602
public String getHeaderField ( String fieldName ) { if ( this . headers == null ) { if ( this . connection != null ) { return this . connection . getHeaderField ( fieldName ) ; } else { return null ; } } else { return this . headers . get ( fieldName ) ; } }
Gets the value of the given header field .
150,603
private InputStream getErrorStream ( ) { InputStream errorStream = this . connection . getErrorStream ( ) ; if ( errorStream != null ) { final String contentEncoding = this . connection . getContentEncoding ( ) ; if ( contentEncoding != null && contentEncoding . equalsIgnoreCase ( "gzip" ) ) { try { errorStream = new G...
Returns the response error stream handling the case when it contains gzipped data .
150,604
public void updateInfo ( BoxWebLink . Info info ) { URL url = WEB_LINK_URL_TEMPLATE . build ( this . getAPI ( ) . getBaseURL ( ) , this . getID ( ) ) ; BoxJSONRequest request = new BoxJSONRequest ( this . getAPI ( ) , url , "PUT" ) ; request . setBody ( info . getPendingChanges ( ) ) ; String body = info . getPendingCh...
Updates the information about this weblink with any info fields that have been modified locally .
150,605
public static BoxStoragePolicyAssignment . Info create ( BoxAPIConnection api , String policyID , String userID ) { URL url = STORAGE_POLICY_ASSIGNMENT_URL_TEMPLATE . build ( api . getBaseURL ( ) ) ; BoxJSONRequest request = new BoxJSONRequest ( api , url , HttpMethod . POST ) ; JsonObject requestJSON = new JsonObject ...
Create a BoxStoragePolicyAssignment for a BoxStoragePolicy .
150,606
public static BoxStoragePolicyAssignment . Info getAssignmentForTarget ( final BoxAPIConnection api , String resolvedForType , String resolvedForID ) { QueryStringBuilder builder = new QueryStringBuilder ( ) ; builder . appendParam ( "resolved_for_type" , resolvedForType ) . appendParam ( "resolved_for_id" , resolvedFo...
Returns a BoxStoragePolicyAssignment information .
150,607
public void delete ( ) { URL url = STORAGE_POLICY_ASSIGNMENT_WITH_ID_URL_TEMPLATE . build ( this . getAPI ( ) . getBaseURL ( ) , this . getID ( ) ) ; BoxAPIRequest request = new BoxAPIRequest ( this . getAPI ( ) , url , HttpMethod . DELETE ) ; request . send ( ) ; }
Deletes this BoxStoragePolicyAssignment .
150,608
public static Iterable < BoxGroup . Info > getAllGroupsByName ( final BoxAPIConnection api , String name ) { final QueryStringBuilder builder = new QueryStringBuilder ( ) ; if ( name == null || name . trim ( ) . isEmpty ( ) ) { throw new BoxAPIException ( "Searching groups by name requires a non NULL or non empty name"...
Gets an iterable of all the groups in the enterprise that are starting with the given name string .
150,609
public Collection < BoxGroupMembership . Info > getMemberships ( ) { final BoxAPIConnection api = this . getAPI ( ) ; final String groupID = this . getID ( ) ; Iterable < BoxGroupMembership . Info > iter = new Iterable < BoxGroupMembership . Info > ( ) { public Iterator < BoxGroupMembership . Info > iterator ( ) { URL ...
Gets information about all of the group memberships for this group . Does not support paging .
150,610
public BoxGroupMembership . Info addMembership ( BoxUser user , Role role ) { BoxAPIConnection api = this . getAPI ( ) ; JsonObject requestJSON = new JsonObject ( ) ; requestJSON . add ( "user" , new JsonObject ( ) . add ( "id" , user . getID ( ) ) ) ; requestJSON . add ( "group" , new JsonObject ( ) . add ( "id" , thi...
Adds a member to this group with the specified role .
150,611
public static BoxTermsOfService . Info create ( BoxAPIConnection api , BoxTermsOfService . TermsOfServiceStatus termsOfServiceStatus , BoxTermsOfService . TermsOfServiceType termsOfServiceType , String text ) { URL url = ALL_TERMS_OF_SERVICES_URL_TEMPLATE . build ( api . getBaseURL ( ) ) ; BoxJSONRequest request = new ...
Creates a new Terms of Services .
150,612
public static List < BoxTermsOfService . Info > getAllTermsOfServices ( final BoxAPIConnection api , BoxTermsOfService . TermsOfServiceType termsOfServiceType ) { QueryStringBuilder builder = new QueryStringBuilder ( ) ; if ( termsOfServiceType != null ) { builder . appendParam ( "tos_type" , termsOfServiceType . toStr...
Retrieves a list of Terms of Service that belong to your Enterprise as an Iterable .
150,613
public static Map < String , Map < String , Metadata > > parseAndPopulateMetadataMap ( JsonObject jsonObject ) { Map < String , Map < String , Metadata > > metadataMap = new HashMap < String , Map < String , Metadata > > ( ) ; for ( JsonObject . Member templateMember : jsonObject ) { if ( templateMember . getValue ( ) ...
Creates a map of metadata from json .
150,614
public static List < Representation > parseRepresentations ( JsonObject jsonObject ) { List < Representation > representations = new ArrayList < Representation > ( ) ; for ( JsonValue representationJson : jsonObject . get ( "entries" ) . asArray ( ) ) { Representation representation = new Representation ( representatio...
Parse representations from a file object response .
150,615
public void updateInfo ( BoxTermsOfServiceUserStatus . Info info ) { URL url = TERMS_OF_SERVICE_USER_STATUSES_TEMPLATE . build ( this . getAPI ( ) . getBaseURL ( ) , this . getID ( ) ) ; BoxJSONRequest request = new BoxJSONRequest ( this . getAPI ( ) , url , "PUT" ) ; request . setBody ( info . getPendingChanges ( ) ) ...
Updates the information about the user status for this terms of service with any info fields that have been modified locally .
150,616
public List < BoxAPIResponse > execute ( List < BoxAPIRequest > requests ) { this . prepareRequest ( requests ) ; BoxJSONResponse batchResponse = ( BoxJSONResponse ) send ( ) ; return this . parseResponse ( batchResponse ) ; }
Execute a set of API calls as batch request .
150,617
protected void prepareRequest ( List < BoxAPIRequest > requests ) { JsonObject body = new JsonObject ( ) ; JsonArray requestsJSONArray = new JsonArray ( ) ; for ( BoxAPIRequest request : requests ) { JsonObject batchRequest = new JsonObject ( ) ; batchRequest . add ( "method" , request . getMethod ( ) ) ; batchRequest ...
Prepare a batch api request using list of individual reuests .
150,618
protected List < BoxAPIResponse > parseResponse ( BoxJSONResponse batchResponse ) { JsonObject responseJSON = JsonObject . readFrom ( batchResponse . getJSON ( ) ) ; List < BoxAPIResponse > responses = new ArrayList < BoxAPIResponse > ( ) ; Iterator < JsonValue > responseIterator = responseJSON . get ( "responses" ) . ...
Parses btch api response to create a list of BoxAPIResponse objects .
150,619
private static void generateJson ( CellScanner cellScanner , Function < Bytes , String > encoder , PrintStream out ) throws JsonIOException { Gson gson = new GsonBuilder ( ) . serializeNulls ( ) . setDateFormat ( DateFormat . LONG ) . setFieldNamingPolicy ( FieldNamingPolicy . LOWER_CASE_WITH_UNDERSCORES ) . setVersion...
Generate JSON format as result of the scan .
150,620
public static TxInfo getTransactionInfo ( Environment env , Bytes prow , Column pcol , long startTs ) { IteratorSetting is = new IteratorSetting ( 10 , RollbackCheckIterator . class ) ; RollbackCheckIterator . setLocktime ( is , startTs ) ; Entry < Key , Value > entry = ColumnUtil . checkColumn ( env , is , prow , pcol...
determine the what state a transaction is in by inspecting the primary column
150,621
public static boolean oracleExists ( CuratorFramework curator ) { boolean exists = false ; try { exists = curator . checkExists ( ) . forPath ( ZookeeperPath . ORACLE_SERVER ) != null && ! curator . getChildren ( ) . forPath ( ZookeeperPath . ORACLE_SERVER ) . isEmpty ( ) ; } catch ( Exception nne ) { if ( nne instance...
Checks to see if an Oracle Server exists .
150,622
public void waitForAsyncFlush ( ) { long numAdded = asyncBatchesAdded . get ( ) ; synchronized ( this ) { while ( numAdded > asyncBatchesProcessed ) { try { wait ( ) ; } catch ( InterruptedException e ) { throw new RuntimeException ( e ) ; } } } }
waits for all async mutations that were added before this was called to be flushed . Does not wait for async mutations added after call .
150,623
public static Span exact ( Bytes row ) { Objects . requireNonNull ( row ) ; return new Span ( row , true , row , true ) ; }
Creates a span that covers an exact row
150,624
public static Span exact ( CharSequence row ) { Objects . requireNonNull ( row ) ; return exact ( Bytes . of ( row ) ) ; }
Creates a Span that covers an exact row . String parameters will be encoded as UTF - 8
150,625
public static Span prefix ( Bytes rowPrefix ) { Objects . requireNonNull ( rowPrefix ) ; Bytes fp = followingPrefix ( rowPrefix ) ; return new Span ( rowPrefix , true , fp == null ? Bytes . EMPTY : fp , false ) ; }
Returns a Span that covers all rows beginning with a prefix .
150,626
public static Span prefix ( CharSequence rowPrefix ) { Objects . requireNonNull ( rowPrefix ) ; return prefix ( Bytes . of ( rowPrefix ) ) ; }
Returns a Span that covers all rows beginning with a prefix String parameters will be encoded as UTF - 8
150,627
public void load ( InputStream in ) { try { PropertiesConfiguration config = new PropertiesConfiguration ( ) ; config . setDelimiterParsingDisabled ( true ) ; config . load ( in ) ; ( ( CompositeConfiguration ) internalConfig ) . addConfiguration ( config ) ; } catch ( ConfigurationException e ) { throw new IllegalArgu...
Loads configuration from InputStream . Later loads have lower priority .
150,628
public void load ( File file ) { try { PropertiesConfiguration config = new PropertiesConfiguration ( ) ; config . setDelimiterParsingDisabled ( true ) ; config . load ( file ) ; ( ( CompositeConfiguration ) internalConfig ) . addConfiguration ( config ) ; } catch ( ConfigurationException e ) { throw new IllegalArgumen...
Loads configuration from File . Later loads have lower priority .
150,629
public static long getTxInfoCacheWeight ( FluoConfiguration conf ) { long size = conf . getLong ( TX_INFO_CACHE_WEIGHT , TX_INFO_CACHE_WEIGHT_DEFAULT ) ; if ( size <= 0 ) { throw new IllegalArgumentException ( "Cache size must be positive for " + TX_INFO_CACHE_WEIGHT ) ; } return size ; }
Gets the txinfo cache weight
150,630
public static long getVisibilityCacheWeight ( FluoConfiguration conf ) { long size = conf . getLong ( VISIBILITY_CACHE_WEIGHT , VISIBILITY_CACHE_WEIGHT_DEFAULT ) ; if ( size <= 0 ) { throw new IllegalArgumentException ( "Cache size must be positive for " + VISIBILITY_CACHE_WEIGHT ) ; } return size ; }
Gets the visibility cache weight
150,631
public static String parseServers ( String zookeepers ) { int slashIndex = zookeepers . indexOf ( "/" ) ; if ( slashIndex != - 1 ) { return zookeepers . substring ( 0 , slashIndex ) ; } return zookeepers ; }
Parses server section of Zookeeper connection string
150,632
public static String parseRoot ( String zookeepers ) { int slashIndex = zookeepers . indexOf ( "/" ) ; if ( slashIndex != - 1 ) { return zookeepers . substring ( slashIndex ) . trim ( ) ; } return "/" ; }
Parses chroot section of Zookeeper connection string
150,633
public static long getGcTimestamp ( String zookeepers ) { ZooKeeper zk = null ; try { zk = new ZooKeeper ( zookeepers , 30000 , null ) ; long start = System . currentTimeMillis ( ) ; while ( ! zk . getState ( ) . isConnected ( ) && System . currentTimeMillis ( ) - start < 30000 ) { Uninterruptibles . sleepUninterruptib...
Retrieves the GC timestamp set by the Oracle from zookeeper
150,634
public static Bytes toBytes ( Text t ) { return Bytes . of ( t . getBytes ( ) , 0 , t . getLength ( ) ) ; }
Convert from Hadoop Text to Bytes
150,635
public static void configure ( Job conf , SimpleConfiguration config ) { try { FluoConfiguration fconfig = new FluoConfiguration ( config ) ; try ( Environment env = new Environment ( fconfig ) ) { long ts = env . getSharedResources ( ) . getTimestampTracker ( ) . allocateTimestamp ( ) . getTxTimestamp ( ) ; conf . get...
Configure properties needed to connect to a Fluo application
150,636
private void readUnread ( CommitData cd , Consumer < Entry < Key , Value > > locksSeen ) { Map < Bytes , Set < Column > > columnsToRead = new HashMap < > ( ) ; for ( Entry < Bytes , Set < Column > > entry : cd . getRejected ( ) . entrySet ( ) ) { Set < Column > rowColsRead = columnsRead . get ( entry . getKey ( ) ) ; i...
This function helps handle the following case
150,637
public byte byteAt ( int i ) { if ( i < 0 ) { throw new IndexOutOfBoundsException ( "i < 0, " + i ) ; } if ( i >= length ) { throw new IndexOutOfBoundsException ( "i >= length, " + i + " >= " + length ) ; } return data [ offset + i ] ; }
Gets a byte within this sequence of bytes
150,638
public Bytes subSequence ( int start , int end ) { if ( start > end || start < 0 || end > length ) { throw new IndexOutOfBoundsException ( "Bad start and/end start = " + start + " end=" + end + " offset=" + offset + " length=" + length ) ; } return new Bytes ( data , offset + start , end - start ) ; }
Returns a portion of the Bytes object
150,639
public byte [ ] toArray ( ) { byte [ ] copy = new byte [ length ] ; System . arraycopy ( data , offset , copy , 0 , length ) ; return copy ; }
Returns a byte array containing a copy of the bytes
150,640
public boolean contentEquals ( byte [ ] bytes , int offset , int len ) { Preconditions . checkArgument ( len >= 0 && offset >= 0 && offset + len <= bytes . length ) ; return contentEqualsUnchecked ( bytes , offset , len ) ; }
Returns true if this Bytes object equals another . This method checks it s arguments .
150,641
private boolean contentEqualsUnchecked ( byte [ ] bytes , int offset , int len ) { if ( length != len ) { return false ; } return compareToUnchecked ( bytes , offset , len ) == 0 ; }
Returns true if this Bytes object equals another . This method doesn t check it s arguments .
150,642
public static final Bytes of ( byte [ ] array ) { Objects . requireNonNull ( array ) ; if ( array . length == 0 ) { return EMPTY ; } byte [ ] copy = new byte [ array . length ] ; System . arraycopy ( array , 0 , copy , 0 , array . length ) ; return new Bytes ( copy ) ; }
Creates a Bytes object by copying the data of the given byte array
150,643
public static final Bytes of ( byte [ ] data , int offset , int length ) { Objects . requireNonNull ( data ) ; if ( length == 0 ) { return EMPTY ; } byte [ ] copy = new byte [ length ] ; System . arraycopy ( data , offset , copy , 0 , length ) ; return new Bytes ( copy ) ; }
Creates a Bytes object by copying the data of a subsequence of the given byte array
150,644
public static final Bytes of ( ByteBuffer bb ) { Objects . requireNonNull ( bb ) ; if ( bb . remaining ( ) == 0 ) { return EMPTY ; } byte [ ] data ; if ( bb . hasArray ( ) ) { data = Arrays . copyOfRange ( bb . array ( ) , bb . position ( ) + bb . arrayOffset ( ) , bb . limit ( ) + bb . arrayOffset ( ) ) ; } else { dat...
Creates a Bytes object by copying the data of the given ByteBuffer .
150,645
public static final Bytes of ( CharSequence cs ) { if ( cs instanceof String ) { return of ( ( String ) cs ) ; } Objects . requireNonNull ( cs ) ; if ( cs . length ( ) == 0 ) { return EMPTY ; } ByteBuffer bb = StandardCharsets . UTF_8 . encode ( CharBuffer . wrap ( cs ) ) ; if ( bb . hasArray ( ) ) { return new Bytes (...
Creates a Bytes object by copying the data of the CharSequence and encoding it using UTF - 8 .
150,646
public static final Bytes of ( String s ) { Objects . requireNonNull ( s ) ; if ( s . isEmpty ( ) ) { return EMPTY ; } byte [ ] data = s . getBytes ( StandardCharsets . UTF_8 ) ; return new Bytes ( data , s ) ; }
Creates a Bytes object by copying the value of the given String
150,647
public static final Bytes of ( String s , Charset c ) { Objects . requireNonNull ( s ) ; Objects . requireNonNull ( c ) ; if ( s . isEmpty ( ) ) { return EMPTY ; } byte [ ] data = s . getBytes ( c ) ; return new Bytes ( data ) ; }
Creates a Bytes object by copying the value of the given String with a given charset
150,648
public boolean startsWith ( Bytes prefix ) { Objects . requireNonNull ( prefix , "startWith(Bytes prefix) cannot have null parameter" ) ; if ( prefix . length > this . length ) { return false ; } else { int end = this . offset + prefix . length ; for ( int i = this . offset , j = prefix . offset ; i < end ; i ++ , j ++...
Checks if this has the passed prefix
150,649
public boolean endsWith ( Bytes suffix ) { Objects . requireNonNull ( suffix , "endsWith(Bytes suffix) cannot have null parameter" ) ; int startOffset = this . length - suffix . length ; if ( startOffset < 0 ) { return false ; } else { int end = startOffset + this . offset + suffix . length ; for ( int i = startOffset ...
Checks if this has the passed suffix
150,650
public void copyTo ( int start , int end , byte [ ] dest , int destPos ) { arraycopy ( start , dest , destPos , end - start ) ; }
Copy a subsequence of Bytes to specific byte array . Uses the specified offset in the dest byte array to start the copy .
150,651
public void copyTo ( ColumnBuffer dest , LongPredicate timestampTest ) { dest . clear ( ) ; if ( key != null ) { dest . key = new Key ( key ) ; } for ( int i = 0 ; i < timeStamps . size ( ) ; i ++ ) { long time = timeStamps . get ( i ) ; if ( timestampTest . test ( time ) ) { dest . add ( time , values . get ( i ) ) ; ...
Clears the dest ColumnBuffer and inserts all entries in dest where the timestamp passes the timestampTest .
150,652
public static AccumuloClient getClient ( FluoConfiguration config ) { return Accumulo . newClient ( ) . to ( config . getAccumuloInstance ( ) , config . getAccumuloZookeepers ( ) ) . as ( config . getAccumuloUser ( ) , config . getAccumuloPassword ( ) ) . build ( ) ; }
Creates Accumulo connector given FluoConfiguration
150,653
public static byte [ ] encode ( byte [ ] ba , int offset , long v ) { ba [ offset + 0 ] = ( byte ) ( v >>> 56 ) ; ba [ offset + 1 ] = ( byte ) ( v >>> 48 ) ; ba [ offset + 2 ] = ( byte ) ( v >>> 40 ) ; ba [ offset + 3 ] = ( byte ) ( v >>> 32 ) ; ba [ offset + 4 ] = ( byte ) ( v >>> 24 ) ; ba [ offset + 5 ] = ( byte ) (...
Encode a long into a byte array at an offset
150,654
public static long decodeLong ( byte [ ] ba , int offset ) { return ( ( ( ( long ) ba [ offset + 0 ] << 56 ) + ( ( long ) ( ba [ offset + 1 ] & 255 ) << 48 ) + ( ( long ) ( ba [ offset + 2 ] & 255 ) << 40 ) + ( ( long ) ( ba [ offset + 3 ] & 255 ) << 32 ) + ( ( long ) ( ba [ offset + 4 ] & 255 ) << 24 ) + ( ( ba [ offs...
Decode long from byte array at offset
150,655
public static byte [ ] concat ( Bytes ... listOfBytes ) { int offset = 0 ; int size = 0 ; for ( Bytes b : listOfBytes ) { size += b . length ( ) + checkVlen ( b . length ( ) ) ; } byte [ ] data = new byte [ size ] ; for ( Bytes b : listOfBytes ) { offset = writeVint ( data , offset , b . length ( ) ) ; b . copyTo ( 0 ,...
Concatenates of list of Bytes objects to create a byte array
150,656
public static int writeVint ( byte [ ] dest , int offset , int i ) { if ( i >= - 112 && i <= 127 ) { dest [ offset ++ ] = ( byte ) i ; } else { int len = - 112 ; if ( i < 0 ) { i ^= - 1L ; len = - 120 ; } long tmp = i ; while ( tmp != 0 ) { tmp = tmp >> 8 ; len -- ; } dest [ offset ++ ] = ( byte ) len ; len = ( len < -...
Writes a vInt directly to a byte array
150,657
public static int checkVlen ( int i ) { int count = 0 ; if ( i >= - 112 && i <= 127 ) { return 1 ; } else { int len = - 112 ; if ( i < 0 ) { i ^= - 1L ; len = - 120 ; } long tmp = i ; while ( tmp != 0 ) { tmp = tmp >> 8 ; len -- ; } count ++ ; len = ( len < - 120 ) ? - ( len + 120 ) : - ( len + 112 ) ; while ( len != 0...
Determines the number bytes required to store a variable length
150,658
private ResourceReport getResourceReport ( TwillController controller , int maxWaitMs ) { ResourceReport report = controller . getResourceReport ( ) ; int elapsed = 0 ; while ( report == null ) { report = controller . getResourceReport ( ) ; try { Thread . sleep ( 500 ) ; } catch ( InterruptedException e ) { throw new ...
Attempts to retrieves ResourceReport until maxWaitMs time is reached . Set maxWaitMs to - 1 to retry forever .
150,659
private void verifyApplicationName ( String name ) { if ( name == null ) { throw new IllegalArgumentException ( "Application name cannot be null" ) ; } if ( name . isEmpty ( ) ) { throw new IllegalArgumentException ( "Application name length must be > 0" ) ; } String reason = null ; char [ ] chars = name . toCharArray ...
Verifies application name . Avoids characters that Zookeeper does not like in nodes & Hadoop does not like in HDFS paths .
150,660
public FluoConfiguration addObservers ( Iterable < ObserverSpecification > observers ) { int next = getNextObserverId ( ) ; for ( ObserverSpecification oconf : observers ) { addObserver ( oconf , next ++ ) ; } return this ; }
Adds multiple observers using unique integer prefixes for each .
150,661
public FluoConfiguration clearObservers ( ) { Iterator < String > iter1 = getKeys ( OBSERVER_PREFIX . substring ( 0 , OBSERVER_PREFIX . length ( ) - 1 ) ) ; while ( iter1 . hasNext ( ) ) { String key = iter1 . next ( ) ; clearProperty ( key ) ; } return this ; }
Removes any configured observers .
150,662
public void print ( ) { Iterator < String > iter = getKeys ( ) ; while ( iter . hasNext ( ) ) { String key = iter . next ( ) ; log . info ( key + " = " + getRawString ( key ) ) ; } }
Logs all properties
150,663
public boolean hasRequiredClientProps ( ) { boolean valid = true ; valid &= verifyStringPropSet ( CONNECTION_APPLICATION_NAME_PROP , CLIENT_APPLICATION_NAME_PROP ) ; valid &= verifyStringPropSet ( ACCUMULO_USER_PROP , CLIENT_ACCUMULO_USER_PROP ) ; valid &= verifyStringPropSet ( ACCUMULO_PASSWORD_PROP , CLIENT_ACCUMULO_...
Returns true if required properties for FluoClient are set
150,664
public boolean hasRequiredAdminProps ( ) { boolean valid = true ; valid &= hasRequiredClientProps ( ) ; valid &= verifyStringPropSet ( ACCUMULO_TABLE_PROP , ADMIN_ACCUMULO_TABLE_PROP ) ; return valid ; }
Returns true if required properties for FluoAdmin are set
150,665
public boolean hasRequiredMiniFluoProps ( ) { boolean valid = true ; if ( getMiniStartAccumulo ( ) ) { valid &= verifyStringPropNotSet ( ACCUMULO_USER_PROP , CLIENT_ACCUMULO_USER_PROP ) ; valid &= verifyStringPropNotSet ( ACCUMULO_PASSWORD_PROP , CLIENT_ACCUMULO_PASSWORD_PROP ) ; valid &= verifyStringPropNotSet ( ACCUM...
Returns true if required properties for MiniFluo are set
150,666
public SimpleConfiguration getClientConfiguration ( ) { SimpleConfiguration clientConfig = new SimpleConfiguration ( ) ; Iterator < String > iter = getKeys ( ) ; while ( iter . hasNext ( ) ) { String key = iter . next ( ) ; if ( key . startsWith ( CONNECTION_PREFIX ) || key . startsWith ( ACCUMULO_PREFIX ) || key . sta...
Returns a SimpleConfiguration clientConfig with properties set from this configuration
150,667
public static void setDefaultConfiguration ( SimpleConfiguration config ) { config . setProperty ( CONNECTION_ZOOKEEPERS_PROP , CONNECTION_ZOOKEEPERS_DEFAULT ) ; config . setProperty ( CONNECTION_ZOOKEEPER_TIMEOUT_PROP , CONNECTION_ZOOKEEPER_TIMEOUT_DEFAULT ) ; config . setProperty ( DFS_ROOT_PROP , DFS_ROOT_DEFAULT ) ...
Sets all Fluo properties to their default in the given configuration . NOTE - some properties do not have defaults and will not be set .
150,668
public static void configure ( Job conf , SimpleConfiguration props ) { try { ByteArrayOutputStream baos = new ByteArrayOutputStream ( ) ; props . save ( baos ) ; conf . getConfiguration ( ) . set ( PROPS_CONF_KEY , new String ( baos . toByteArray ( ) , StandardCharsets . UTF_8 ) ) ; } catch ( Exception e ) { throw new...
Call this method to initialize the Fluo connection props
150,669
public Stamp allocateTimestamp ( ) { synchronized ( this ) { Preconditions . checkState ( ! closed , "tracker closed " ) ; if ( node == null ) { Preconditions . checkState ( allocationsInProgress == 0 , "expected allocationsInProgress == 0 when node == null" ) ; Preconditions . checkState ( ! updatingZk , "unexpected c...
Allocate a timestamp
150,670
private static boolean waitTillNoNotifications ( Environment env , TableRange range ) throws TableNotFoundException { boolean sawNotifications = false ; long retryTime = MIN_SLEEP_MS ; log . debug ( "Scanning tablet {} for notifications" , range ) ; long start = System . currentTimeMillis ( ) ; while ( hasNotifications...
Wait until a range has no notifications .
150,671
private static void waitUntilFinished ( FluoConfiguration config ) { try ( Environment env = new Environment ( config ) ) { List < TableRange > ranges = getRanges ( env ) ; outer : while ( true ) { long ts1 = env . getSharedResources ( ) . getOracleClient ( ) . getStamp ( ) . getTxTimestamp ( ) ; for ( TableRange range...
Wait until a scan of the table completes without seeing notifications AND without the Oracle issuing any timestamps during the scan .
150,672
public static Range toRange ( Span span ) { return new Range ( toKey ( span . getStart ( ) ) , span . isStartInclusive ( ) , toKey ( span . getEnd ( ) ) , span . isEndInclusive ( ) ) ; }
Converts a Fluo Span to Accumulo Range
150,673
public static Key toKey ( RowColumn rc ) { if ( ( rc == null ) || ( rc . getRow ( ) . equals ( Bytes . EMPTY ) ) ) { return null ; } Text row = ByteUtil . toText ( rc . getRow ( ) ) ; if ( ( rc . getColumn ( ) . equals ( Column . EMPTY ) ) || ! rc . getColumn ( ) . isFamilySet ( ) ) { return new Key ( row ) ; } Text cf...
Converts from a Fluo RowColumn to a Accumulo Key
150,674
public static Span toSpan ( Range range ) { return new Span ( toRowColumn ( range . getStartKey ( ) ) , range . isStartKeyInclusive ( ) , toRowColumn ( range . getEndKey ( ) ) , range . isEndKeyInclusive ( ) ) ; }
Converts an Accumulo Range to a Fluo Span
150,675
public static RowColumn toRowColumn ( Key key ) { if ( key == null ) { return RowColumn . EMPTY ; } if ( ( key . getRow ( ) == null ) || key . getRow ( ) . getLength ( ) == 0 ) { return RowColumn . EMPTY ; } Bytes row = ByteUtil . toBytes ( key . getRow ( ) ) ; if ( ( key . getColumnFamily ( ) == null ) || key . getCol...
Converts from an Accumulo Key to a Fluo RowColumn
150,676
public FluoKeyValueGenerator set ( RowColumnValue rcv ) { setRow ( rcv . getRow ( ) ) ; setColumn ( rcv . getColumn ( ) ) ; setValue ( rcv . getValue ( ) ) ; return this ; }
Set the row column and value
150,677
public FluoKeyValue [ ] getKeyValues ( ) { FluoKeyValue kv = keyVals [ 0 ] ; kv . setKey ( new Key ( row , fam , qual , vis , ColumnType . WRITE . encode ( 1 ) ) ) ; kv . getValue ( ) . set ( WriteValue . encode ( 0 , false , false ) ) ; kv = keyVals [ 1 ] ; kv . setKey ( new Key ( row , fam , qual , vis , ColumnType ....
Translates the Fluo row column and value set into the persistent format that is stored in Accumulo .
150,678
public RowColumn following ( ) { if ( row . equals ( Bytes . EMPTY ) ) { return RowColumn . EMPTY ; } else if ( col . equals ( Column . EMPTY ) ) { return new RowColumn ( followingBytes ( row ) ) ; } else if ( ! col . isQualifierSet ( ) ) { return new RowColumn ( row , new Column ( followingBytes ( col . getFamily ( ) ...
Returns a RowColumn following the current one
150,679
public FluoMutationGenerator put ( Column col , CharSequence value ) { return put ( col , value . toString ( ) . getBytes ( StandardCharsets . UTF_8 ) ) ; }
Puts value at given column
150,680
public static CuratorFramework newAppCurator ( FluoConfiguration config ) { return newCurator ( config . getAppZookeepers ( ) , config . getZookeeperTimeout ( ) , config . getZookeeperSecret ( ) ) ; }
Creates a curator built using Application s zookeeper connection string . Root path will start at Fluo application chroot .
150,681
public static CuratorFramework newFluoCurator ( FluoConfiguration config ) { return newCurator ( config . getInstanceZookeepers ( ) , config . getZookeeperTimeout ( ) , config . getZookeeperSecret ( ) ) ; }
Creates a curator built using Fluo s zookeeper connection string . Root path will start at Fluo chroot .
150,682
public static CuratorFramework newCurator ( String zookeepers , int timeout , String secret ) { final ExponentialBackoffRetry retry = new ExponentialBackoffRetry ( 1000 , 10 ) ; if ( secret . isEmpty ( ) ) { return CuratorFrameworkFactory . newClient ( zookeepers , timeout , timeout , retry ) ; } else { return CuratorF...
Creates a curator built using the given zookeeper connection string and timeout
150,683
public static void startAndWait ( PersistentNode node , int maxWaitSec ) { node . start ( ) ; int waitTime = 0 ; try { while ( node . waitForInitialCreate ( 1 , TimeUnit . SECONDS ) == false ) { waitTime += 1 ; log . info ( "Waited " + waitTime + " sec for ephemeral node to be created" ) ; if ( waitTime > maxWaitSec ) ...
Starts the ephemeral node and waits for it to be created
150,684
public static NodeCache startAppIdWatcher ( Environment env ) { try { CuratorFramework curator = env . getSharedResources ( ) . getCurator ( ) ; byte [ ] uuidBytes = curator . getData ( ) . forPath ( ZookeeperPath . CONFIG_FLUO_APPLICATION_ID ) ; if ( uuidBytes == null ) { Halt . halt ( "Fluo Application UUID not found...
Start watching the fluo app uuid . If it changes or goes away then halt the process .
150,685
private void readZookeeperConfig ( ) { try ( CuratorFramework curator = CuratorUtil . newAppCurator ( config ) ) { curator . start ( ) ; accumuloInstance = new String ( curator . getData ( ) . forPath ( ZookeeperPath . CONFIG_ACCUMULO_INSTANCE_NAME ) , StandardCharsets . UTF_8 ) ; accumuloInstanceID = new String ( cura...
Read configuration from zookeeper
150,686
public void close ( ) { status = TrStatus . CLOSED ; try { node . close ( ) ; } catch ( IOException e ) { log . error ( "Failed to close ephemeral node" ) ; throw new IllegalStateException ( e ) ; } }
Closes the transactor node by removing its node in Zookeeper
150,687
private static Map < String , Set < String > > expand ( Map < String , Set < String > > viewToPropNames ) { Set < String > baseProps = viewToPropNames . get ( PropertyView . BASE_VIEW ) ; if ( baseProps == null ) { baseProps = ImmutableSet . of ( ) ; } if ( ! SquigglyConfig . isFilterImplicitlyIncludeBaseFieldsInView (...
apply the base fields to other views if configured to do so .
150,688
public List < SquigglyNode > parse ( String filter ) { filter = StringUtils . trim ( filter ) ; if ( StringUtils . isEmpty ( filter ) ) { return Collections . emptyList ( ) ; } List < SquigglyNode > cachedNodes = CACHE . getIfPresent ( filter ) ; if ( cachedNodes != null ) { return cachedNodes ; } SquigglyExpressionLex...
Parse a filter expression .
150,689
public static < E > Collection < E > collectify ( ObjectMapper mapper , Object source , Class < ? extends Collection > targetCollectionType , Class < E > targetElementType ) { CollectionType collectionType = mapper . getTypeFactory ( ) . constructCollectionType ( targetCollectionType , targetElementType ) ; return obje...
Convert an object to a collection .
150,690
public static List < Map < String , Object > > listify ( ObjectMapper mapper , Object source ) { return ( List < Map < String , Object > > ) collectify ( mapper , source , List . class ) ; }
Convert an object to a list of maps .
150,691
public static < E > List < E > listify ( ObjectMapper mapper , Object source , Class < E > targetElementType ) { return ( List < E > ) collectify ( mapper , source , List . class , targetElementType ) ; }
Convert an object to a list .
150,692
public static Object objectify ( ObjectMapper mapper , Object source ) { return objectify ( mapper , source , Object . class ) ; }
Converts an object to an object with squiggly filters applied .
150,693
public static < T > T objectify ( ObjectMapper mapper , Object source , JavaType targetType ) { try { return mapper . readValue ( mapper . writeValueAsBytes ( source ) , targetType ) ; } catch ( RuntimeException e ) { throw e ; } catch ( Exception e ) { throw new RuntimeException ( e ) ; } }
Converts an object to an instance of the target type .
150,694
public static Set < Map < String , Object > > setify ( ObjectMapper mapper , Object source ) { return ( Set < Map < String , Object > > ) collectify ( mapper , source , Set . class ) ; }
Convert an object to a set of maps .
150,695
public static < E > Set < E > setify ( ObjectMapper mapper , Object source , Class < E > targetElementType ) { return ( Set < E > ) collectify ( mapper , source , Set . class , targetElementType ) ; }
Convert an object to a set .
150,696
public static String stringify ( ObjectMapper mapper , Object object ) { try { return mapper . writeValueAsString ( object ) ; } catch ( JsonProcessingException e ) { throw new IllegalArgumentException ( e ) ; } }
Takes an object and converts it to a string .
150,697
private Path getPath ( PropertyWriter writer , JsonStreamContext sc ) { LinkedList < PathElement > elements = new LinkedList < > ( ) ; if ( sc != null ) { elements . add ( new PathElement ( writer . getName ( ) , sc . getCurrentValue ( ) ) ) ; sc = sc . getParent ( ) ; } while ( sc != null ) { if ( sc . getCurrentName ...
create a path structure representing the object graph
150,698
private boolean pathMatches ( Path path , SquigglyContext context ) { List < SquigglyNode > nodes = context . getNodes ( ) ; Set < String > viewStack = null ; SquigglyNode viewNode = null ; int pathSize = path . getElements ( ) . size ( ) ; int lastIdx = pathSize - 1 ; for ( int i = 0 ; i < pathSize ; i ++ ) { PathElem...
perform the actual matching
150,699
public static SortedMap < String , Object > asMap ( ) { SortedMap < String , Object > metrics = Maps . newTreeMap ( ) ; METRICS_SOURCE . applyMetrics ( metrics ) ; return metrics ; }
Gets the metrics as a map whose keys are the metric name and whose values are the metric values .