idx
int64
0
165k
question
stringlengths
73
4.15k
target
stringlengths
5
918
len_question
int64
21
890
len_target
int64
3
255
155,300
private static String getActionString ( int action ) { switch ( action ) { case Constraint . RESTRICT : return Tokens . T_RESTRICT ; case Constraint . CASCADE : return Tokens . T_CASCADE ; case Constraint . SET_DEFAULT : return Tokens . T_SET + ' ' + Tokens . T_DEFAULT ; case Constraint . SET_NULL : return Tokens . T_S...
Returns the foreign key action rule .
124
7
155,301
boolean isUniqueWithColumns ( int [ ] cols ) { if ( constType != UNIQUE || core . mainCols . length != cols . length ) { return false ; } return ArrayUtil . haveEqualSets ( core . mainCols , cols , cols . length ) ; }
Compares this with another constraint column set . This is used only for UNIQUE constraints .
69
19
155,302
boolean isEquivalent ( Table mainTable , int [ ] mainCols , Table refTable , int [ ] refCols ) { if ( constType != Constraint . MAIN && constType != Constraint . FOREIGN_KEY ) { return false ; } if ( mainTable != core . mainTable || refTable != core . refTable ) { return false ; } return ArrayUtil . areEqualSets ( core...
Compares this with another constraint column set . This implementation only checks FOREIGN KEY constraints .
126
19
155,303
void updateTable ( Session session , Table oldTable , Table newTable , int colIndex , int adjust ) { if ( oldTable == core . mainTable ) { core . mainTable = newTable ; if ( core . mainIndex != null ) { core . mainIndex = core . mainTable . getIndex ( core . mainIndex . getName ( ) . name ) ; core . mainCols = ArrayUti...
Used to update constrains to reflect structural changes in a table . Prior checks must ensure that this method does not throw .
216
25
155,304
void checkInsert ( Session session , Table table , Object [ ] row ) { switch ( constType ) { case CHECK : if ( ! isNotNull ) { checkCheckConstraint ( session , table , row ) ; } return ; case FOREIGN_KEY : PersistentStore store = session . sessionData . getRowStore ( core . mainTable ) ; if ( ArrayUtil . hasNull ( row ...
Checks for foreign key or check constraint violation when inserting a row into the child table .
313
18
155,305
boolean checkHasMainRef ( Session session , Object [ ] row ) { if ( ArrayUtil . hasNull ( row , core . refCols ) ) { return false ; } PersistentStore store = session . sessionData . getRowStore ( core . mainTable ) ; boolean exists = core . mainIndex . exists ( session , store , row , core . refCols ) ; if ( ! exists )...
For the candidate table row finds any referring node in the main table . This is used to check referential integrity when updating a node . We have to make sure that the main table still holds a valid main record . returns true If a valid row is found false if there are null in the data Otherwise a INTEGRITY VIOLATION ...
147
73
155,306
void checkReferencedRows ( Session session , Table table , int [ ] rowColArray ) { Index mainIndex = getMainIndex ( ) ; PersistentStore store = session . sessionData . getRowStore ( table ) ; RowIterator it = table . rowIterator ( session ) ; while ( true ) { Row row = it . getNextRow ( ) ; if ( row == null ) { break ;...
Check used before creating a new foreign key cosntraint this method checks all rows of a table to ensure they all have a corresponding row in the main table .
308
32
155,307
@ VisibleForTesting static int chooseTableSize ( int setSize ) { if ( setSize == 1 ) { return 2 ; } // Correct the size for open addressing to match desired load factor. // Round up to the next highest power of 2. int tableSize = Integer . highestOneBit ( setSize - 1 ) << 1 ; while ( tableSize * DESIRED_LOAD_FACTOR < s...
Returns an array size suitable for the backing array of a hash table that uses open addressing with linear probing in its implementation . The returned size is the smallest power of two that can hold setSize elements with the desired load factor .
100
45
155,308
@ Override public String [ ] decode ( long generation , String tableName , List < VoltType > types , List < String > names , String [ ] to , Object [ ] fields ) throws RuntimeException { Preconditions . checkArgument ( fields != null && fields . length > m_firstFieldOffset , "null or inapropriately sized export row arr...
Converts an object array containing an exported row values into an array of their string representations
378
17
155,309
Iv2InFlight findHandle ( long ciHandle ) { assert ( ! shouldCheckThreadIdAssertion ( ) || m_expectedThreadId == Thread . currentThread ( ) . getId ( ) ) ; /* * Check the partition specific queue of handles */ int partitionId = getPartIdFromHandle ( ciHandle ) ; PartitionInFlightTracker partitionStuff = m_trackerMap . g...
Retrieve the client information for the specified handle
209
9
155,310
void freeOutstandingTxns ( ) { assert ( ! shouldCheckThreadIdAssertion ( ) || m_expectedThreadId == Thread . currentThread ( ) . getId ( ) ) ; for ( PartitionInFlightTracker tracker : m_trackerMap . values ( ) ) { for ( Iv2InFlight inflight : tracker . m_inFlights . values ( ) ) { m_outstandingTxns -- ; m_acg . reduceB...
When a connection goes away free all resources held by that connection This opens a small window of opportunity for mischief in that work may still be outstanding in the cluster but once the client goes away so does does the mapping to the resources allocated to it .
112
49
155,311
void loadSchema ( Reader reader , Database db , DdlProceduresToLoad whichProcs ) throws VoltCompiler . VoltCompilerException { int currLineNo = 1 ; DDLStatement stmt = getNextStatement ( reader , m_compiler , currLineNo ) ; while ( stmt != null ) { // Some statements are processed by VoltDB and the rest are handled by ...
Compile a DDL schema from an abstract reader
210
10
155,312
private String generateDDLForDRConflictsTable ( Database currentDB , Database previousDBIfAny , boolean isCurrentXDCR ) { StringBuilder sb = new StringBuilder ( ) ; if ( isCurrentXDCR ) { createDRConflictTables ( sb , previousDBIfAny ) ; } else { dropDRConflictTablesIfNeeded ( sb ) ; } return sb . toString ( ) ; }
Generate DDL to create or drop the DR conflict table
93
12
155,313
private void processCreateStreamStatement ( DDLStatement stmt , Database db , DdlProceduresToLoad whichProcs ) throws VoltCompilerException { String statement = stmt . statement ; Matcher statementMatcher = SQLParser . matchCreateStream ( statement ) ; if ( statementMatcher . matches ( ) ) { // check the table portion ...
Process a VoltDB - specific create stream DDL statement
773
11
155,314
private void fillTrackerFromXML ( ) { for ( VoltXMLElement e : m_schema . children ) { if ( e . name . equals ( "table" ) ) { String tableName = e . attributes . get ( "name" ) ; String partitionCol = e . attributes . get ( "partitioncolumn" ) ; String export = e . attributes . get ( "export" ) ; String drTable = e . a...
requested from the compiler
280
5
155,315
private static boolean indexesAreDups ( Index idx1 , Index idx2 ) { // same attributes? if ( idx1 . getType ( ) != idx2 . getType ( ) ) { return false ; } if ( idx1 . getCountable ( ) != idx2 . getCountable ( ) ) { return false ; } if ( idx1 . getUnique ( ) != idx2 . getUnique ( ) ) { return false ; } if ( idx1 . getAs...
Return true if the two indexes are identical with a different name .
691
13
155,316
private void addConstraintToCatalog ( Table table , VoltXMLElement node , Map < String , String > indexReplacementMap , Map < String , Index > indexMap ) throws VoltCompilerException { assert node . name . equals ( "constraint" ) ; String name = node . attributes . get ( "name" ) ; String typeName = node . attributes ....
Add a constraint on a given table to the catalog
857
10
155,317
private static AbstractExpression buildPartialIndexPredicate ( AbstractParsedStmt dummy , String indexName , VoltXMLElement predicateXML , Table table , VoltCompiler compiler ) throws VoltCompilerException { // Make sure all column expressions refer to the same index table // before we can parse the XML to avoid the Ab...
Build the abstract expression representing the partial index predicate . Verify it satisfies the rules . Throw error messages otherwise .
321
21
155,318
public Result getLob ( Session session , long lobID , long offset , long length ) { throw Error . runtimeError ( ErrorCode . U_S0500 , "LobManager" ) ; }
Used for SUBSTRING
43
5
155,319
@ Override public void close ( ) throws SQLException { try { isClosed = true ; JDBC4ClientConnectionPool . dispose ( NativeConnection ) ; } catch ( Exception x ) { throw SQLError . get ( x ) ; } }
Releases this Connection object s database and JDBC resources immediately instead of waiting for them to be automatically released .
55
22
155,320
@ Override public Array createArrayOf ( String typeName , Object [ ] elements ) throws SQLException { checkClosed ( ) ; throw SQLError . noSupport ( ) ; }
Factory method for creating Array objects .
42
7
155,321
@ Override public Statement createStatement ( ) throws SQLException { checkClosed ( ) ; try { return new JDBC4Statement ( this ) ; } catch ( Exception x ) { throw SQLError . get ( x ) ; } }
Creates a Statement object for sending SQL statements to the database .
53
13
155,322
@ Override public Struct createStruct ( String typeName , Object [ ] attributes ) throws SQLException { checkClosed ( ) ; throw SQLError . noSupport ( ) ; }
Factory method for creating Struct objects .
41
7
155,323
@ Override public PreparedStatement prepareStatement ( String sql , int [ ] columnIndexes ) throws SQLException { checkClosed ( ) ; throw SQLError . noSupport ( ) ; }
Creates a default PreparedStatement object capable of returning the auto - generated keys designated by the given array .
44
22
155,324
@ Override public PreparedStatement prepareStatement ( String sql , int resultSetType , int resultSetConcurrency ) throws SQLException { if ( ( resultSetType == ResultSet . TYPE_SCROLL_INSENSITIVE || resultSetType == ResultSet . TYPE_FORWARD_ONLY ) && resultSetConcurrency == ResultSet . CONCUR_READ_ONLY ) { return prep...
Creates a PreparedStatement object that will generate ResultSet objects with the given type and concurrency .
110
21
155,325
@ Override public PreparedStatement prepareStatement ( String sql , int resultSetType , int resultSetConcurrency , int resultSetHoldability ) throws SQLException { checkClosed ( ) ; throw SQLError . noSupport ( ) ; }
Creates a PreparedStatement object that will generate ResultSet objects with the given type concurrency and holdability .
54
23
155,326
@ Override public void rollback ( ) throws SQLException { checkClosed ( ) ; if ( props . getProperty ( ROLLBACK_THROW_EXCEPTION , "true" ) . equalsIgnoreCase ( "true" ) ) { throw SQLError . noSupport ( ) ; } }
Undoes all changes made in the current transaction and releases any database locks currently held by this Connection object .
69
21
155,327
@ Override public void setAutoCommit ( boolean autoCommit ) throws SQLException { checkClosed ( ) ; // Always true - error out only if the client is trying to set somethign else if ( ! autoCommit && ( props . getProperty ( COMMIT_THROW_EXCEPTION , "true" ) . equalsIgnoreCase ( "true" ) ) ) { throw SQLError . noSupport ...
Sets this connection s auto - commit mode to the given state .
112
14
155,328
@ Override public void setReadOnly ( boolean readOnly ) throws SQLException { checkClosed ( ) ; if ( ! Boolean . parseBoolean ( props . getProperty ( "enableSetReadOnly" , "false" ) ) ) { throw SQLError . noSupport ( ) ; } }
Puts this connection in read - only mode as a hint to the driver to enable database optimizations .
66
20
155,329
@ Override public void setTypeMap ( Map < String , Class < ? > > map ) throws SQLException { checkClosed ( ) ; throw SQLError . noSupport ( ) ; }
Installs the given TypeMap object as the type map for this Connection object .
44
16
155,330
@ Override public void saveStatistics ( ClientStats stats , String file ) throws IOException { this . NativeConnection . saveStatistics ( stats , file ) ; }
Save statistics to a file
33
5
155,331
private static boolean trimProcQuotas ( ZooKeeper zk , String path ) throws KeeperException , IOException , InterruptedException { if ( Quotas . quotaZookeeper . equals ( path ) ) { return true ; } List < String > children = zk . getChildren ( path , false ) ; if ( children . size ( ) == 0 ) { zk . delete ( path , - 1 ...
trim the quota tree to recover unwanted tree elements in the quota s tree
134
15
155,332
public static boolean delQuota ( ZooKeeper zk , String path , boolean bytes , boolean numNodes ) throws KeeperException , IOException , InterruptedException { String parentPath = Quotas . quotaZookeeper + path ; String quotaPath = Quotas . quotaZookeeper + path + "/" + Quotas . limitNode ; if ( zk . exists ( quotaPath ...
this method deletes quota for a node .
394
9
155,333
private static int generateCrudPKeyWhereClause ( Column partitioncolumn , Constraint pkey , StringBuilder sb ) { // Sort the catalog index columns by index column order. ArrayList < ColumnRef > indexColumns = new ArrayList < ColumnRef > ( pkey . getIndex ( ) . getColumns ( ) . size ( ) ) ; for ( ColumnRef c : pkey . ge...
Helper to generate a WHERE pkey_col1 = ? pkey_col2 = ? ... ; clause .
243
23
155,334
private static void generateCrudExpressionColumns ( Table table , StringBuilder sb ) { boolean first = true ; // Sort the catalog table columns by column order. ArrayList < Column > tableColumns = new ArrayList < Column > ( table . getColumns ( ) . size ( ) ) ; for ( Column c : table . getColumns ( ) ) { tableColumns ....
Helper to generate a full col1 = ? col2 = ? ... clause .
153
16
155,335
public InProcessVoltDBServer start ( ) { DeploymentBuilder depBuilder = new DeploymentBuilder ( sitesPerHost , 1 , 0 ) ; depBuilder . setEnableCommandLogging ( false ) ; depBuilder . setUseDDLSchema ( true ) ; depBuilder . setHTTPDPort ( 8080 ) ; depBuilder . setJSONAPIEnabled ( true ) ; VoltDB . Configuration config =...
Starts the in - process server and blocks until it is ready to accept connections .
261
17
155,336
public void compile ( Session session ) { if ( ! database . schemaManager . schemaExists ( compileTimeSchema . name ) ) { compileTimeSchema = session . getSchemaHsqlName ( null ) ; } session . setSchema ( compileTimeSchema . name ) ; ParserDQL p = new ParserDQL ( session , new Scanner ( statement ) ) ; p . read ( ) ; v...
Compiles the query expression and sets up the columns .
463
11
155,337
public static Pair < InMemoryJarfile , String > loadAndUpgradeCatalogFromJar ( byte [ ] catalogBytes , boolean isXDCR ) throws IOException { // Throws IOException on load failure. InMemoryJarfile jarfile = loadInMemoryJarFile ( catalogBytes ) ; return loadAndUpgradeCatalogFromJar ( jarfile , isXDCR ) ; }
Load a catalog from the jar bytes .
78
8
155,338
public static Pair < InMemoryJarfile , String > loadAndUpgradeCatalogFromJar ( InMemoryJarfile jarfile , boolean isXDCR ) throws IOException { // Let VoltCompiler do a version check and upgrade the catalog on the fly. // I.e. jarfile may be modified. VoltCompiler compiler = new VoltCompiler ( isXDCR ) ; String upgraded...
Load a catalog from the InMemoryJarfile .
111
10
155,339
public static String getSerializedCatalogStringFromJar ( InMemoryJarfile jarfile ) { byte [ ] serializedCatalogBytes = jarfile . get ( CatalogUtil . CATALOG_FILENAME ) ; String serializedCatalog = new String ( serializedCatalogBytes , Constants . UTF8ENCODING ) ; return serializedCatalog ; }
Convenience method to extract the catalog commands from an InMemoryJarfile as a string
74
18
155,340
public static String [ ] getBuildInfoFromJar ( InMemoryJarfile jarfile ) throws IOException { // Read the raw build info bytes. byte [ ] buildInfoBytes = jarfile . get ( CATALOG_BUILDINFO_FILENAME ) ; if ( buildInfoBytes == null ) { throw new IOException ( "Catalog build information not found - please build your applic...
Get the catalog build info from the jar bytes . Performs sanity checks on the build info and version strings .
308
22
155,341
public static String getAutoGenDDLFromJar ( InMemoryJarfile jarfile ) throws IOException { // Read the raw auto generated ddl bytes. byte [ ] ddlBytes = jarfile . get ( VoltCompiler . AUTOGEN_DDL_FILE_NAME ) ; if ( ddlBytes == null ) { throw new IOException ( "Auto generated schema DDL not found - please make sure the ...
Get the auto generated DDL from the catalog jar .
127
11
155,342
public static InMemoryJarfile getCatalogJarWithoutDefaultArtifacts ( final InMemoryJarfile jarfile ) { InMemoryJarfile cloneJar = jarfile . deepCopy ( ) ; for ( String entry : CATALOG_DEFAULT_ARTIFACTS ) { cloneJar . remove ( entry ) ; } return cloneJar ; }
Removes the default voltdb artifact files from catalog and returns the resulltant jar file . This will contain dependency files needed for generated stored procs
70
32
155,343
public static InMemoryJarfile loadInMemoryJarFile ( byte [ ] catalogBytes ) throws IOException { assert ( catalogBytes != null ) ; InMemoryJarfile jarfile = new InMemoryJarfile ( catalogBytes ) ; if ( ! jarfile . containsKey ( CATALOG_FILENAME ) ) { throw new IOException ( "Database catalog not found - please build you...
Load an in - memory catalog jar file from jar bytes .
97
12
155,344
public static boolean isSnapshotablePersistentTableView ( Database db , Table table ) { Table materializer = table . getMaterializer ( ) ; if ( materializer == null ) { // Return false if it is not a materialized view. return false ; } if ( CatalogUtil . isTableExportOnly ( db , materializer ) ) { // The view source ta...
Test if a table is a persistent table view and should be included in the snapshot .
172
17
155,345
public static boolean isSnapshotableStreamedTableView ( Database db , Table table ) { Table materializer = table . getMaterializer ( ) ; if ( materializer == null ) { // Return false if it is not a materialized view. return false ; } if ( ! CatalogUtil . isTableExportOnly ( db , materializer ) ) { // Test if the view s...
Test if a table is a streamed table view and should be included in the snapshot .
203
17
155,346
public static long getUniqueIdForFragment ( PlanFragment frag ) { long retval = 0 ; CatalogType parent = frag . getParent ( ) ; retval = ( ( long ) parent . getParent ( ) . getRelativeIndex ( ) ) << 32 ; retval += ( ( long ) parent . getRelativeIndex ( ) ) << 16 ; retval += frag . getRelativeIndex ( ) ; return retval ;...
Get a unique id for a plan fragment by munging the indices of it s parents and grandparents in the catalog .
93
24
155,347
public static < T extends CatalogType > List < T > getSortedCatalogItems ( CatalogMap < T > items , String sortFieldName ) { assert ( items != null ) ; assert ( sortFieldName != null ) ; // build a treemap based on the field value TreeMap < Object , T > map = new TreeMap <> ( ) ; boolean hasField = false ; for ( T item...
Given a set of catalog items return a sorted list of them sorted by the value of a specified field . The field is specified by name . If the field doesn t exist trip an assertion . This is primarily used to sort a table s columns or a procedure s parameters .
205
54
155,348
public static < T extends CatalogType > void getSortedCatalogItems ( CatalogMap < T > items , String sortFieldName , List < T > result ) { result . addAll ( getSortedCatalogItems ( items , sortFieldName ) ) ; }
A getSortedCatalogItems variant with the result list filled in - place
54
15
155,349
public static Index getPrimaryKeyIndex ( Table catalogTable ) throws Exception { // We first need to find the pkey constraint Constraint catalog_constraint = null ; for ( Constraint c : catalogTable . getConstraints ( ) ) { if ( c . getType ( ) == ConstraintType . PRIMARY_KEY . getValue ( ) ) { catalog_constraint = c ;...
For a given Table catalog object return the PrimaryKey Index catalog object
162
13
155,350
public static Collection < Column > getPrimaryKeyColumns ( Table catalogTable ) { Collection < Column > columns = new ArrayList <> ( ) ; Index catalog_idx = null ; try { catalog_idx = CatalogUtil . getPrimaryKeyIndex ( catalogTable ) ; } catch ( Exception ex ) { // IGNORE return ( columns ) ; } assert ( catalog_idx != ...
Return all the of the primary key columns for a particular table If the table does not have a primary key then the returned list will be empty
141
28
155,351
public static boolean isTableExportOnly ( org . voltdb . catalog . Database database , org . voltdb . catalog . Table table ) { int type = table . getTabletype ( ) ; if ( TableType . isInvalidType ( type ) ) { // This implementation uses connectors instead of just looking at the tableType // because snapshots or catalo...
Return true if a table is a stream This function is duplicated in CatalogUtil . h
222
19
155,352
public static boolean isTableMaterializeViewSource ( org . voltdb . catalog . Database database , org . voltdb . catalog . Table table ) { CatalogMap < Table > tables = database . getTables ( ) ; for ( Table t : tables ) { Table matsrc = t . getMaterializer ( ) ; if ( ( matsrc != null ) && ( matsrc . getRelativeIndex (...
Return true if a table is the source table for a materialized view .
108
15
155,353
public static List < Table > getMaterializeViews ( org . voltdb . catalog . Database database , org . voltdb . catalog . Table table ) { ArrayList < Table > tlist = new ArrayList <> ( ) ; CatalogMap < Table > tables = database . getTables ( ) ; for ( Table t : tables ) { Table matsrc = t . getMaterializer ( ) ; if ( ( ...
Return list of materialized view for table .
132
9
155,354
public static boolean isCatalogCompatible ( String catalogVersionStr ) { if ( catalogVersionStr == null || catalogVersionStr . isEmpty ( ) ) { return false ; } //Check that it is a properly formed verstion string Object [ ] catalogVersion = MiscUtils . parseVersionString ( catalogVersionStr ) ; if ( catalogVersion == n...
Check if a catalog compiled with the given version of VoltDB is compatible with the current version of VoltDB .
126
22
155,355
public static boolean isCatalogVersionValid ( String catalogVersionStr ) { // Do we have a version string? if ( catalogVersionStr == null || catalogVersionStr . isEmpty ( ) ) { return false ; } //Check that it is a properly formed version string Object [ ] catalogVersion = MiscUtils . parseVersionString ( catalogVersio...
Check if a catalog version string is valid .
94
9
155,356
public static String compileDeployment ( Catalog catalog , DeploymentType deployment , boolean isPlaceHolderCatalog ) { String errmsg = null ; try { validateDeployment ( catalog , deployment ) ; // add our hacky Deployment to the catalog if ( catalog . getClusters ( ) . get ( "cluster" ) . getDeployment ( ) . get ( "de...
Parse the deployment . xml file and add its data into the catalog .
504
15
155,357
public static DeploymentType parseDeployment ( String deploymentURL ) { // get the URL/path for the deployment and prep an InputStream InputStream deployIS = null ; try { URL deployURL = new URL ( deploymentURL ) ; deployIS = deployURL . openStream ( ) ; } catch ( MalformedURLException ex ) { // Invalid URL. Try as a f...
Parses the deployment XML file .
194
8
155,358
public static DeploymentType parseDeploymentFromString ( String deploymentString ) { ByteArrayInputStream byteIS ; byteIS = new ByteArrayInputStream ( deploymentString . getBytes ( Constants . UTF8ENCODING ) ) ; // get deployment info from xml file return getDeployment ( byteIS ) ; }
Parses the deployment XML string .
66
8
155,359
public static String getDeployment ( DeploymentType deployment , boolean indent ) throws IOException { try { if ( m_jc == null || m_schema == null ) { throw new RuntimeException ( "Error schema validation." ) ; } Marshaller marshaller = m_jc . createMarshaller ( ) ; marshaller . setSchema ( m_schema ) ; marshaller . se...
Given the deployment object generate the XML
311
7
155,360
private static void validateDeployment ( Catalog catalog , DeploymentType deployment ) { if ( deployment . getSecurity ( ) != null && deployment . getSecurity ( ) . isEnabled ( ) ) { if ( deployment . getUsers ( ) == null ) { String msg = "Cannot enable security without defining at least one user in the built-in ADMINI...
Validate the contents of the deployment . xml file . This is for validating VoltDB requirements not XML schema correctness
224
23
155,361
private static void setClusterInfo ( Catalog catalog , DeploymentType deployment ) { ClusterType cluster = deployment . getCluster ( ) ; int kFactor = cluster . getKfactor ( ) ; Cluster catCluster = catalog . getClusters ( ) . get ( "cluster" ) ; // copy the deployment info that is currently not recorded anywhere else ...
Set cluster info in the catalog .
302
7
155,362
private static void setImportInfo ( Catalog catalog , ImportType importType ) { if ( importType == null ) { return ; } List < String > streamList = new ArrayList <> ( ) ; List < ImportConfigurationType > kafkaConfigs = new ArrayList <> ( ) ; for ( ImportConfigurationType importConfiguration : importType . getConfigurat...
Set deployment time settings for import
196
6
155,363
private static void validateKafkaConfig ( List < ImportConfigurationType > configs ) { if ( configs . isEmpty ( ) ) { return ; } // We associate each group id with the set of topics that belong to it HashMap < String , HashSet < String > > groupidToTopics = new HashMap <> ( ) ; for ( ImportConfigurationType config : co...
Check whether two Kafka configurations have both the same topic and group id . If two configurations have the same group id and overlapping sets of topics a RuntimeException will be thrown .
443
34
155,364
private static void setSnmpInfo ( SnmpType snmpType ) { if ( snmpType == null || ! snmpType . isEnabled ( ) ) { return ; } //Validate Snmp Configuration. if ( snmpType . getTarget ( ) == null || snmpType . getTarget ( ) . trim ( ) . length ( ) == 0 ) { throw new IllegalArgumentException ( "Target must be specified for ...
Validate Snmp Configuration .
202
6
155,365
private static void mergeKafka10ImportConfigurations ( Map < String , ImportConfiguration > processorConfig ) { if ( processorConfig . isEmpty ( ) ) { return ; } Map < String , ImportConfiguration > kafka10ProcessorConfigs = new HashMap <> ( ) ; Iterator < Map . Entry < String , ImportConfiguration > > iter = processor...
aggregate Kafka10 importer configurations . One importer per brokers and kafka group . Formatters and stored procedures can vary by topics .
598
29
155,366
private static void setSecurityEnabled ( Catalog catalog , SecurityType security ) { Cluster cluster = catalog . getClusters ( ) . get ( "cluster" ) ; Database database = cluster . getDatabases ( ) . get ( "database" ) ; cluster . setSecurityenabled ( security . isEnabled ( ) ) ; database . setSecurityprovider ( securi...
Set the security setting in the catalog from the deployment file
85
11
155,367
private static void setSnapshotInfo ( Catalog catalog , SnapshotType snapshotSettings ) { Database db = catalog . getClusters ( ) . get ( "cluster" ) . getDatabases ( ) . get ( "database" ) ; SnapshotSchedule schedule = db . getSnapshotschedule ( ) . get ( "default" ) ; if ( schedule == null ) { schedule = db . getSnap...
Set the auto - snapshot settings in the catalog from the deployment file
598
13
155,368
private static void setupPaths ( PathsType paths ) { File voltDbRoot ; // Handles default voltdbroot (and completely missing "paths" element). voltDbRoot = getVoltDbRoot ( paths ) ; //Snapshot setupSnapshotPaths ( paths . getSnapshots ( ) , voltDbRoot ) ; //export overflow setupExportOverflow ( paths . getExportoverflo...
Set voltroot path and set the path overrides for export overflow partition etc .
182
16
155,369
public static File getVoltDbRoot ( PathsType paths ) { File voltDbRoot ; if ( paths == null || paths . getVoltdbroot ( ) == null || VoltDB . instance ( ) . getVoltDBRootPath ( paths . getVoltdbroot ( ) ) == null ) { voltDbRoot = new VoltFile ( VoltDB . DBROOT ) ; if ( ! voltDbRoot . exists ( ) ) { hostLog . info ( "Cre...
Get a File object representing voltdbroot . Create directory if missing . Use paths if non - null to get override default location .
321
27
155,370
private static void setUsersInfo ( Catalog catalog , UsersType users ) throws RuntimeException { if ( users == null ) { return ; } // The database name is not available in deployment.xml (it is defined // in project.xml). However, it must always be named "database", so // I've temporarily hardcoded it here until a more...
Set user info in the catalog .
813
7
155,371
private static Set < String > extractUserRoles ( final UsersType . User user ) { Set < String > roles = new TreeSet <> ( ) ; if ( user == null ) { return roles ; } if ( user . getRoles ( ) != null && ! user . getRoles ( ) . trim ( ) . isEmpty ( ) ) { String [ ] rolelist = user . getRoles ( ) . trim ( ) . split ( "," ) ...
Takes the list of roles specified in the roles user attributes and returns a set from the comma - separated list
152
22
155,372
public static byte [ ] makeDeploymentHash ( byte [ ] inbytes ) { MessageDigest md = null ; try { md = MessageDigest . getInstance ( "SHA-1" ) ; } catch ( NoSuchAlgorithmException e ) { VoltDB . crashLocalVoltDB ( "Bad JVM has no SHA-1 hash." , true , e ) ; } md . update ( inbytes ) ; byte [ ] hash = md . digest ( ) ; a...
This code appeared repeatedly . Extract method to take bytes for the catalog or deployment file do the irritating exception crash test jam the bytes in and get the SHA - 1 hash .
118
34
155,373
public static Pair < Set < String > , Set < String > > getSnapshotableTableNamesFromInMemoryJar ( InMemoryJarfile jarfile ) { Set < String > fullTableNames = new HashSet <> ( ) ; Set < String > optionalTableNames = new HashSet <> ( ) ; Catalog catalog = new Catalog ( ) ; catalog . execute ( getSerializedCatalogStringFr...
Get all snapshot - able table names from an in - memory catalog jar file . A snapshot - able table is one that s neither an export table nor an implicitly partitioned view .
275
36
155,374
public static Pair < List < Table > , Set < String > > getSnapshotableTables ( Database catalog , boolean isReplicated ) { List < Table > tables = new ArrayList <> ( ) ; Set < String > optionalTableNames = new HashSet <> ( ) ; for ( Table table : catalog . getTables ( ) ) { if ( table . getIsreplicated ( ) != isReplica...
Get all snapshot - able tables from the catalog . A snapshot - able table is one that s neither an export table nor an implicitly partitioned view .
281
30
155,375
public static List < Table > getNormalTables ( Database catalog , boolean isReplicated ) { List < Table > tables = new ArrayList <> ( ) ; for ( Table table : catalog . getTables ( ) ) { if ( ( table . getIsreplicated ( ) == isReplicated ) && table . getMaterializer ( ) == null && ! CatalogUtil . isTableExportOnly ( cat...
Get all normal tables from the catalog . A normal table is one that s NOT a materialized view nor an export table . For the lack of a better name I call it normal .
265
37
155,376
public static boolean isDurableProc ( String procName ) { SystemProcedureCatalog . Config sysProc = SystemProcedureCatalog . listing . get ( procName ) ; return sysProc == null || sysProc . isDurable ( ) ; }
Return if given proc is durable if its a sysproc SystemProcedureCatalog is consulted . All non sys procs are all durable .
57
28
155,377
public static File createTemporaryEmptyCatalogJarFile ( boolean isXDCR ) throws IOException { File emptyJarFile = File . createTempFile ( "catalog-empty" , ".jar" ) ; emptyJarFile . deleteOnExit ( ) ; VoltCompiler compiler = new VoltCompiler ( isXDCR ) ; if ( ! compiler . compileEmptyCatalog ( emptyJarFile . getAbsolut...
Build an empty catalog jar file .
102
7
155,378
public static String getSignatureForTable ( String name , SortedMap < Integer , VoltType > schema ) { StringBuilder sb = new StringBuilder ( ) ; sb . append ( name ) . append ( SIGNATURE_TABLE_NAME_SEPARATOR ) ; for ( VoltType t : schema . values ( ) ) { sb . append ( t . getSignatureChar ( ) ) ; } return sb . toString...
Get a string signature for the table represented by the args
96
11
155,379
public static Pair < Long , String > calculateDrTableSignatureAndCrc ( Database catalog ) { SortedSet < Table > tables = Sets . newTreeSet ( ) ; tables . addAll ( getSnapshotableTables ( catalog , true ) . getFirst ( ) ) ; tables . addAll ( getSnapshotableTables ( catalog , false ) . getFirst ( ) ) ; final PureJavaCrc3...
Deterministically serializes all DR table signatures into a string and calculates the CRC checksum .
222
20
155,380
public static Map < String , String > deserializeCatalogSignature ( String signature ) { Map < String , String > tableSignatures = Maps . newHashMap ( ) ; for ( String oneSig : signature . split ( Pattern . quote ( SIGNATURE_DELIMITER ) ) ) { if ( ! oneSig . isEmpty ( ) ) { final String [ ] parts = oneSig . split ( Pat...
Deserializes a catalog DR table signature string into a map of table signatures .
133
16
155,381
public static String getLimitPartitionRowsDeleteStmt ( Table table ) { CatalogMap < Statement > map = table . getTuplelimitdeletestmt ( ) ; if ( map . isEmpty ( ) ) { return null ; } assert ( map . size ( ) == 1 ) ; return map . iterator ( ) . next ( ) . getSqltext ( ) ; }
Given a table return the DELETE statement that can be executed by a LIMIT PARTITION ROWS constraint or NULL if there isn t one .
81
30
155,382
public static ExportType addExportConfigToDRConflictsTable ( ExportType export ) { if ( export == null ) { export = new ExportType ( ) ; } boolean userDefineStream = false ; for ( ExportConfigurationType exportConfiguration : export . getConfiguration ( ) ) { if ( exportConfiguration . getTarget ( ) . equals ( DR_CONFL...
Add default configuration to DR conflicts export target if deployment file doesn t have the configuration
463
16
155,383
public synchronized void printResults ( ) throws Exception { ClientStats stats = fullStatsContext . fetch ( ) . getStats ( ) ; String display = "\nA total of %d login requests were received...\n" ; System . out . printf ( display , stats . getInvocationsCompleted ( ) ) ; System . out . printf ( "Average throughput: %,9...
Prints the results and statistics of the data load .
498
11
155,384
private void doLogin ( LoginGenerator . LoginRecord login ) { // Synchronously call the "Login" procedure passing in a json string containing // login-specific structure/data. try { ClientResponse response = client . callProcedure ( "Login" , login . username , login . password , login . json ) ; long resultCode = resp...
Invoke the Login stored procedure to add a login record to the database . If the login is called multiple times for the same username the last accessed time for the login is updated . Thus this sample client can be run repeatedly without having to cycle the database .
152
51
155,385
public void loadDatabase ( ) throws Exception { // create/start the requested number of threads int thread_count = 10 ; Thread [ ] loginThreads = new Thread [ thread_count ] ; for ( int i = 0 ; i < thread_count ; ++ i ) { loginThreads [ i ] = new Thread ( new LoginThread ( ) ) ; loginThreads [ i ] . start ( ) ; } // In...
Load the database with as much data as possible within the specified time range .
213
15
155,386
public static void main ( String [ ] args ) throws Exception { JSONClient app = new JSONClient ( ) ; // Initialize connections app . initialize ( ) ; // load data, measuring the throughput. app . loadDatabase ( ) ; // run sample JSON queries app . runQueries ( ) ; // Disconnect app . shutdown ( ) ; }
Main routine creates a client instance loads the database then executes example queries against the data .
71
17
155,387
@ Override public synchronized void reportForeignHostFailed ( int hostId ) { long initiatorSiteId = CoreUtils . getHSIdFromHostAndSite ( hostId , AGREEMENT_SITE_ID ) ; m_agreementSite . reportFault ( initiatorSiteId ) ; if ( ! m_shuttingDown ) { // should be the single console message a user sees when another node fail...
Synchronization protects m_knownFailedHosts and ensures that every failed host is only reported once
115
21
155,388
public InstanceId getInstanceId ( ) { if ( m_instanceId == null ) { try { byte [ ] data = m_zk . getData ( CoreZK . instance_id , false , null ) ; JSONObject idJSON = new JSONObject ( new String ( data , "UTF-8" ) ) ; m_instanceId = new InstanceId ( idJSON . getInt ( "coord" ) , idJSON . getLong ( "timestamp" ) ) ; } c...
Get a unique ID for this cluster
160
7
155,389
@ Override public void requestJoin ( SocketChannel socket , SSLEngine sslEngine , MessagingChannel messagingChannel , InetSocketAddress listeningAddress , JSONObject jo ) throws Exception { /* * Generate the host id via creating an ephemeral sequential node */ Integer hostId = selectNewHostId ( socket . socket ( ) . ge...
Any node can serve a request to join . The coordination of generating a new host id is done via ZK
702
22
155,390
@ Override public void notifyOfConnection ( int hostId , SocketChannel socket , SSLEngine sslEngine , InetSocketAddress listeningAddress ) throws Exception { networkLog . info ( "Host " + getHostId ( ) + " receives a new connection from host " + hostId ) ; prepSocketChannel ( socket ) ; // Auxiliary connection never ti...
SocketJoiner receives the request of creating a new connection from given host id create a new ForeignHost for this connection .
239
24
155,391
public Map < Integer , HostInfo > waitForGroupJoin ( int expectedHosts ) { Map < Integer , HostInfo > hostInfos = Maps . newTreeMap ( ) ; try { while ( true ) { ZKUtil . FutureWatcher fw = new ZKUtil . FutureWatcher ( ) ; final List < String > children = m_zk . getChildren ( CoreZK . hosts , fw ) ; final int numChildre...
Wait until all the nodes have built a mesh .
389
10
155,392
@ Override public String getHostnameForHostID ( int hostId ) { if ( hostId == m_localHostId ) { return CoreUtils . getHostnameOrAddress ( ) ; } Iterator < ForeignHost > it = m_foreignHosts . get ( hostId ) . iterator ( ) ; if ( it . hasNext ( ) ) { ForeignHost fh = it . next ( ) ; return fh . hostname ( ) ; } return m_...
Given a hostid return the hostname for it
135
10
155,393
public void removeMailbox ( long hsId ) { synchronized ( m_mapLock ) { ImmutableMap . Builder < Long , Mailbox > b = ImmutableMap . builder ( ) ; for ( Map . Entry < Long , Mailbox > e : m_siteMailboxes . entrySet ( ) ) { if ( e . getKey ( ) . equals ( hsId ) ) { continue ; } b . put ( e . getKey ( ) , e . getValue ( )...
Discard a mailbox
120
4
155,394
public void waitForAllHostsToBeReady ( int expectedHosts ) { try { m_zk . create ( CoreZK . readyhosts_host , null , Ids . OPEN_ACL_UNSAFE , CreateMode . EPHEMERAL_SEQUENTIAL ) ; while ( true ) { ZKUtil . FutureWatcher fw = new ZKUtil . FutureWatcher ( ) ; int readyHosts = m_zk . getChildren ( CoreZK . readyhosts , fw ...
Block on this call until the number of ready hosts is equal to the number of expected hosts .
187
19
155,395
public void waitForJoiningHostsToBeReady ( int expectedHosts , int localHostId ) { try { //register this host as joining. The host registration will be deleted after joining is completed. m_zk . create ( ZKUtil . joinZKPath ( CoreZK . readyjoininghosts , Integer . toString ( localHostId ) ) , null , Ids . OPEN_ACL_UNSA...
For elastic join . Block on this call until the number of ready hosts is equal to the number of expected joining hosts .
227
24
155,396
public int countForeignHosts ( ) { int retval = 0 ; for ( ForeignHost host : m_foreignHosts . values ( ) ) { if ( ( host != null ) && ( host . isUp ( ) ) ) { retval ++ ; } } return retval ; }
Get the number of up foreign hosts . Used for test purposes .
61
13
155,397
public void closeForeignHostSocket ( int hostId ) { Iterator < ForeignHost > it = m_foreignHosts . get ( hostId ) . iterator ( ) ; while ( it . hasNext ( ) ) { ForeignHost fh = it . next ( ) ; if ( fh . isUp ( ) ) { fh . killSocket ( ) ; } } reportForeignHostFailed ( hostId ) ; }
Kill a foreign host socket by id .
89
8
155,398
public void cutLink ( int hostIdA , int hostIdB ) { if ( m_localHostId == hostIdA ) { Iterator < ForeignHost > it = m_foreignHosts . get ( hostIdB ) . iterator ( ) ; while ( it . hasNext ( ) ) { ForeignHost fh = it . next ( ) ; fh . cutLink ( ) ; } } if ( m_localHostId == hostIdB ) { Iterator < ForeignHost > it = m_for...
Cut the network connection between two hostids immediately Useful for simulating network partitions
155
15
155,399
void execute ( ) { String sCmd = null ; if ( 4096 <= ifHuge . length ( ) ) { sCmd = ifHuge ; } else { sCmd = txtCommand . getText ( ) ; } if ( sCmd . startsWith ( "-->>>TEST<<<--" ) ) { testPerformance ( ) ; return ; } String [ ] g = new String [ 1 ] ; lTime = System . currentTimeMillis ( ) ; try { if ( sStatement == n...
Adjust this method for large strings ... ie multi megabtypes .
345
13