本文整理汇总了Java中com.datastax.driver.core.schemabuilder.SchemaBuilder类的典型用法代码示例。如果您正苦于以下问题:Java SchemaBuilder类的具体用法?Java SchemaBuilder怎么用?Java SchemaBuilder使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
SchemaBuilder类属于com.datastax.driver.core.schemabuilder包,在下文中一共展示了SchemaBuilder类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: start
import com.datastax.driver.core.schemabuilder.SchemaBuilder; //导入依赖的package包/类
@Override
public void start(Map<String, String> settings) {
this.config = new CassandraSinkConnectorConfig(settings);
this.settings = settings;
if (this.config.keyspaceCreateEnabled) {
KeyspaceOptions createKeyspace = SchemaBuilder.createKeyspace(this.config.keyspace)
.ifNotExists()
.with()
.durableWrites(true)
.replication(ImmutableMap.of(
"class", (Object) "SimpleStrategy",
"replication_factor", 3
));
try (CassandraSession session = this.sessionFactory.newSession(this.config)) {
log.info("start() - Executing\n{}", createKeyspace);
session.executeStatement(createKeyspace);
} catch (IOException ex) {
throw new ConnectException("Exception thrown while managing keyspace.", ex);
}
}
}
开发者ID:jcustenborder,项目名称:kafka-connect-cassandra,代码行数:24,代码来源:CassandraSinkConnector.java
示例2: config
import com.datastax.driver.core.schemabuilder.SchemaBuilder; //导入依赖的package包/类
public static ConfigDef config() {
return new ConfigDef()
.define(CONTACT_POINTS_CONFIG, ConfigDef.Type.LIST, ImmutableList.of("localhost"), ConfigDef.Importance.MEDIUM, CONTACT_POINTS_DOC)
.define(PORT_CONFIG, ConfigDef.Type.INT, 9042, ValidPort.of(), ConfigDef.Importance.MEDIUM, PORT_DOC)
.define(CONSISTENCY_LEVEL_CONFIG, ConfigDef.Type.STRING, ConsistencyLevel.LOCAL_QUORUM.toString(), ValidEnum.of(ConsistencyLevel.class), ConfigDef.Importance.MEDIUM, CONSISTENCY_LEVEL_DOC)
.define(USERNAME_CONFIG, ConfigDef.Type.STRING, "cassandra", ConfigDef.Importance.MEDIUM, USERNAME_DOC)
.define(PASSWORD_CONFIG, ConfigDef.Type.PASSWORD, "cassandra", ConfigDef.Importance.MEDIUM, PASSWORD_DOC)
.define(SECURITY_ENABLE_CONFIG, ConfigDef.Type.BOOLEAN, false, ConfigDef.Importance.MEDIUM, SECURITY_ENABLE_DOC)
.define(COMPRESSION_CONFIG, ConfigDef.Type.STRING, "NONE", ConfigDef.ValidString.in(CLIENT_COMPRESSION.keySet().stream().toArray(String[]::new)), ConfigDef.Importance.MEDIUM, COMPRESSION_DOC)
.define(SSL_ENABLED_CONFIG, ConfigDef.Type.BOOLEAN, false, ConfigDef.Importance.MEDIUM, SSL_ENABLED_DOC)
.define(SSL_PROVIDER_CONFIG, ConfigDef.Type.STRING, SslProvider.JDK.toString(), ValidEnum.of(SslProvider.class), ConfigDef.Importance.MEDIUM, SSL_PROVIDER_DOC)
.define(DELETES_ENABLE_CONFIG, ConfigDef.Type.BOOLEAN, true, ConfigDef.Importance.MEDIUM, DELETES_ENABLE_DOC)
.define(KEYSPACE_CONFIG, ConfigDef.Type.STRING, ConfigDef.Importance.HIGH, KEYSPACE_DOC)
.define(KEYSPACE_CREATE_ENABLED_CONFIG, ConfigDef.Type.BOOLEAN, true, ConfigDef.Importance.HIGH, KEYSPACE_CREATE_ENABLED_DOC)
.define(TABLE_MANAGE_ENABLED_CONFIG, ConfigDef.Type.BOOLEAN, true, ConfigDef.Importance.MEDIUM, SCHEMA_MANAGE_CREATE_DOC)
.define(TABLE_CREATE_COMPRESSION_ENABLED_CONFIG, ConfigDef.Type.BOOLEAN, true, ConfigDef.Importance.MEDIUM, TABLE_CREATE_COMPRESSION_ENABLED_DOC)
.define(TABLE_CREATE_COMPRESSION_ALGORITHM_CONFIG, ConfigDef.Type.STRING, "NONE", ConfigDef.ValidString.in(TABLE_COMPRESSION.keySet().stream().toArray(String[]::new)), ConfigDef.Importance.MEDIUM, TABLE_CREATE_COMPRESSION_ALGORITHM_DOC)
.define(TABLE_CREATE_CACHING_CONFIG, ConfigDef.Type.STRING, SchemaBuilder.Caching.NONE.toString(), ValidEnum.of(SchemaBuilder.Caching.class), ConfigDef.Importance.MEDIUM, TABLE_CREATE_CACHING_DOC);
}
开发者ID:jcustenborder,项目名称:kafka-connect-cassandra,代码行数:20,代码来源:CassandraSinkConnectorConfig.java
示例3: buildSchema
import com.datastax.driver.core.schemabuilder.SchemaBuilder; //导入依赖的package包/类
/**
* Build schema programmatically
* <p>
* DDL equivalent:
*
* <pre>
* CREATE TABLE messages (
* sessionId uuid,
* seqNo bigint,
* message blob,
* PRIMARY KEY (sessionId, seqNo ) );
* </pre>
*
* @throws StoreException if the store is not open
*
*/
public void buildSchema() throws StoreException {
if (session != null) {
// Appropriate for a local test only
session.execute(new SimpleStatement("CREATE KEYSPACE IF NOT EXISTS " + KEYSPACE_NAME
+ " WITH REPLICATION = { 'class' : 'SimpleStrategy', 'replication_factor' : 1 }"));
System.out.format("Keyspace %s available\n", KEYSPACE_NAME);
Create create = SchemaBuilder.createTable(KEYSPACE_NAME, TABLE_NAME).ifNotExists()
.addPartitionKey(SESSION_ID_COLNAME, DataType.uuid())
.addClusteringColumn(SEQ_NO_COLNAME, DataType.bigint())
.addColumn(MESSAGE_COLNAME, DataType.blob());
ResultSet resultSet = session.execute(create);
System.out.format("Table %s available\n", TABLE_NAME);
} else {
throw new StoreException("Schema not created; store not open");
}
}
开发者ID:FIXTradingCommunity,项目名称:silverflash,代码行数:35,代码来源:CassandraMessageStore.java
示例4: cqlBuilders
import com.datastax.driver.core.schemabuilder.SchemaBuilder; //导入依赖的package包/类
private static void cqlBuilders() {
FieldModel model = SampleModels.wrapper();
Create create = SchemaBuilder.createTable("Field").addClusteringColumn(LOGIN.name(), text())
.addPartitionKey("snapshot_id", timeuuid());
model.getFieldInfos().stream().filter(f -> f.id() != LOGIN)
.forEach(f -> create.addColumn(f.id().name(), cqlType(f)));
Create.Options createWithOptions = create.withOptions().clusteringOrder(LOGIN.name(), DESC);
System.out.println(createWithOptions);
Insert insert = QueryBuilder.insertInto("Field");
model.stream().forEach(e -> insert.value(e.getKey().name(), e.getValue()));
System.out.println(insert.getQueryString(codecRegistry()));
}
开发者ID:lesfurets,项目名称:dOOv,代码行数:17,代码来源:LiveCode.java
示例5: createTableIfNotExists
import com.datastax.driver.core.schemabuilder.SchemaBuilder; //导入依赖的package包/类
private static void createTableIfNotExists(final com.datastax.driver.core.Session session,
final String table, final Logger log) {
Create createTable = SchemaBuilder.createTable(table)
.addPartitionKey(ID, DataType.varchar())
.addColumn(CREATED_AT, DataType.timestamp())
.addColumn(ACCESSED_AT, DataType.timestamp())
.addColumn(SAVED_AT, DataType.timestamp())
.addColumn(ATTRIBUTES, DataType.map(DataType.varchar(), DataType.varchar()))
.ifNotExists();
Futures.addCallback(session.executeAsync(createTable), new FutureCallback<ResultSet>() {
@Override
public void onSuccess(final ResultSet result) {
log.debug("Session table successfully created");
}
@Override
public void onFailure(final Throwable x) {
log.error("Create session table resulted in exception", x);
}
});
}
开发者ID:jooby-project,项目名称:jooby,代码行数:23,代码来源:CassandraSessionStore.java
示例6: CassandraSinkConnectorConfig
import com.datastax.driver.core.schemabuilder.SchemaBuilder; //导入依赖的package包/类
public CassandraSinkConnectorConfig(Map<?, ?> originals) {
super(config(), originals);
this.port = getInt(PORT_CONFIG);
final List<String> contactPoints = this.getList(CONTACT_POINTS_CONFIG);
this.contactPoints = contactPoints.toArray(new String[contactPoints.size()]);
this.consistencyLevel = ConfigUtils.getEnum(ConsistencyLevel.class, this, CONSISTENCY_LEVEL_CONFIG);
// this.compression = ConfigUtils.getEnum(ProtocolOptions.Compression.class, this, COMPRESSION_CONFIG);
this.username = getString(USERNAME_CONFIG);
this.password = getPassword(PASSWORD_CONFIG).value();
this.securityEnabled = getBoolean(SECURITY_ENABLE_CONFIG);
this.sslEnabled = getBoolean(SSL_ENABLED_CONFIG);
this.deletesEnabled = getBoolean(DELETES_ENABLE_CONFIG);
final String keyspace = getString(KEYSPACE_CONFIG);
if (Strings.isNullOrEmpty(keyspace)) {
this.keyspace = null;
} else {
this.keyspace = keyspace;
}
final String compression = getString(COMPRESSION_CONFIG);
this.compression = CLIENT_COMPRESSION.get(compression);
this.sslProvider = ConfigUtils.getEnum(SslProvider.class, this, SSL_PROVIDER_CONFIG);
this.keyspaceCreateEnabled = getBoolean(KEYSPACE_CREATE_ENABLED_CONFIG);
this.tableManageEnabled = getBoolean(TABLE_MANAGE_ENABLED_CONFIG);
this.tableCompressionEnabled = getBoolean(TABLE_CREATE_COMPRESSION_ENABLED_CONFIG);
this.tableCompressionAlgorithm = ConfigUtils.getEnum(TableOptions.CompressionOptions.Algorithm.class, this, TABLE_CREATE_COMPRESSION_ALGORITHM_CONFIG);
this.tableCaching = ConfigUtils.getEnum(SchemaBuilder.Caching.class, this, TABLE_CREATE_CACHING_CONFIG);
}
开发者ID:jcustenborder,项目名称:kafka-connect-cassandra,代码行数:31,代码来源:CassandraSinkConnectorConfig.java
示例7: tearDown
import com.datastax.driver.core.schemabuilder.SchemaBuilder; //导入依赖的package包/类
@AfterClass
public void tearDown() {
if (!_runTests) {
return;
}
_session.execute(SchemaBuilder.dropKeyspace(_keyspaceName));
_session.close();
_cluster.close();
}
开发者ID:bazaarvoice,项目名称:emodb,代码行数:10,代码来源:AdaptiveResultSetTest.java
示例8: ensureStashTokenRangeTableExists
import com.datastax.driver.core.schemabuilder.SchemaBuilder; //导入依赖的package包/类
private void ensureStashTokenRangeTableExists() {
if (!_verifiedStashTokenRangeTableExists) {
synchronized(this) {
if (!_verifiedStashTokenRangeTableExists) {
// Primary key is ((stash_id, data_center), placement, range_token, is_start_token).
// Note that Cassandra performs unsigned byte comparison for "range_token" and sorts False before
// True for "is_start_token". The latter is necessary because it sorts two tables with
// adjacent UUIDs correctly, returning the exclusive "to" token for the previous table before the
// inclusive "from" token for the next table.
_placementCache.get(_systemTablePlacement)
.getKeyspace()
.getCqlSession()
.execute(SchemaBuilder.createTable(STASH_TOKEN_RANGE_TABLE)
.ifNotExists()
.addPartitionKey(STASH_ID_COLUMN, DataType.text())
.addPartitionKey(DATA_CENTER_COLUMN, DataType.text())
.addClusteringColumn(PLACEMENT_COLUMN, DataType.text())
.addClusteringColumn(RANGE_TOKEN_COLUMN, DataType.blob())
.addClusteringColumn(IS_START_TOKEN_COLUMN, DataType.cboolean())
.addColumn(TABLE_JSON_COLUMN, DataType.text())
.withOptions()
// The following cluster orders should be the defaults but for clarity let's be explicit
.clusteringOrder(PLACEMENT_COLUMN, SchemaBuilder.Direction.ASC)
.clusteringOrder(RANGE_TOKEN_COLUMN, SchemaBuilder.Direction.ASC)
.clusteringOrder(IS_START_TOKEN_COLUMN, SchemaBuilder.Direction.ASC)
.compactStorage()
.defaultTimeToLive(TTL));
_verifiedStashTokenRangeTableExists = true;
}
}
}
}
开发者ID:bazaarvoice,项目名称:emodb,代码行数:34,代码来源:CQLStashTableDAO.java
示例9: dropSchema
import com.datastax.driver.core.schemabuilder.SchemaBuilder; //导入依赖的package包/类
public void dropSchema() throws StoreException {
if (session != null) {
Drop drop = SchemaBuilder.dropTable(KEYSPACE_NAME, TABLE_NAME).ifExists();
session.execute(drop);
System.out.println("Schema dropped");
} else {
throw new StoreException("Schema not dropped; store not open");
}
}
开发者ID:FIXTradingCommunity,项目名称:silverflash,代码行数:10,代码来源:CassandraMessageStore.java
示例10: simpleCassandraSchema
import com.datastax.driver.core.schemabuilder.SchemaBuilder; //导入依赖的package包/类
@Test
public void simpleCassandraSchema() {
FieldModel model = SampleModels.wrapper();
Create createRequest = SchemaBuilder.createTable("fields_model")
.addClusteringColumn(LOGIN.name(), text())
.addPartitionKey("snapshot_id", timeuuid());
model.getFieldInfos().stream()
.filter(info -> info.id() != LOGIN)
.forEach(info -> createRequest.addColumn(info.id().name(), cqlType(info)));
Options createRequestWithOptions = createRequest.withOptions().clusteringOrder(LOGIN.name(), DESC);
print(createRequestWithOptions.getQueryString());
}
开发者ID:lesfurets,项目名称:dOOv,代码行数:16,代码来源:CassandraQueryBuilderTest.java
注:本文中的com.datastax.driver.core.schemabuilder.SchemaBuilder类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论