Uses of Class
com.zendesk.maxwell.row.RowMap
-
Packages that use RowMap Package Description com.zendesk.maxwell top level classes concerned with instantiating and running a Maxwell replicator.com.zendesk.maxwell.bootstrap bootstrapping outputs the current dataset into a stream.com.zendesk.maxwell.producer producers write to streams and sinks of various types.com.zendesk.maxwell.producer.partitioners partitioners deal with subdividing streams by data keycom.zendesk.maxwell.replication concerns the operation of the binlog replicatorcom.zendesk.maxwell.row Maxwell's representation of a row from the binlogcom.zendesk.maxwell.schema.ddl the mysql DDL schema parser lives here.com.zendesk.maxwell.scripting interfaces and code for javascript filterscom.zendesk.maxwell.util grab-bag of code -
-
Uses of RowMap in com.zendesk.maxwell
Methods in com.zendesk.maxwell that return RowMap Modifier and Type Method Description RowMapBufferedMaxwell. poll(long ms)Poll for a RowMap to be producer by the maxwell instance.Methods in com.zendesk.maxwell with parameters of type RowMap Modifier and Type Method Description voidMaxwellContext. setPosition(RowMap r)If the passedRowMapis a transaction-commit, update maxwell's position -
Uses of RowMap in com.zendesk.maxwell.bootstrap
Methods in com.zendesk.maxwell.bootstrap with parameters of type RowMap Modifier and Type Method Description booleanBootstrapTask. matches(RowMap row)booleanBootstrapController. shouldSkip(RowMap row)If a bootstrap is active for a table, buffer the row for later.static BootstrapTaskBootstrapTask. valueOf(RowMap row) -
Uses of RowMap in com.zendesk.maxwell.producer
Methods in com.zendesk.maxwell.producer that return RowMap Modifier and Type Method Description RowMapBufferedProducer. poll(long timeout, TimeUnit unit)Methods in com.zendesk.maxwell.producer with parameters of type RowMap Modifier and Type Method Description voidAbstractAsyncProducer. push(RowMap r)abstract voidAbstractProducer. push(RowMap r)voidAbstractProfilingProducer. push(RowMap r)voidBufferedProducer. push(RowMap r)voidFileProducer. push(RowMap r)voidMaxwellBigQueryProducer. push(RowMap r)voidMaxwellKafkaProducer. push(RowMap r)voidMaxwellPubsubProducer. push(RowMap r)voidMaxwellRedisProducer. push(RowMap r)voidNatsProducer. push(RowMap r)voidNoneProducer. push(RowMap r)voidProfilerProducer. push(RowMap r)voidRabbitmqProducer. push(RowMap r)voidStdoutProducer. push(RowMap r)abstract voidAbstractAsyncProducer. sendAsync(RowMap r, AbstractAsyncProducer.CallbackCompleter cc)voidMaxwellKinesisProducer. sendAsync(RowMap r, AbstractAsyncProducer.CallbackCompleter cc)voidMaxwellSNSProducer. sendAsync(RowMap r, AbstractAsyncProducer.CallbackCompleter cc)voidMaxwellSQSProducer. sendAsync(RowMap r, AbstractAsyncProducer.CallbackCompleter cc) -
Uses of RowMap in com.zendesk.maxwell.producer.partitioners
Methods in com.zendesk.maxwell.producer.partitioners with parameters of type RowMap Modifier and Type Method Description protected static StringAbstractMaxwellPartitioner. getDatabase(RowMap r)StringAbstractMaxwellPartitioner. getHashString(RowMap r)StringAbstractMaxwellPartitioner. getHashString(RowMap r, PartitionBy by)StringMaxwellKinesisPartitioner. getKinesisKey(RowMap r)protected static StringAbstractMaxwellPartitioner. getTable(RowMap r)intMaxwellKafkaPartitioner. kafkaPartition(RowMap r, int numPartitions) -
Uses of RowMap in com.zendesk.maxwell.replication
Methods in com.zendesk.maxwell.replication that return RowMap Modifier and Type Method Description RowMapBinlogConnectorReplicator. getRow()The main entry point into the event reading loop.RowMapReplicator. getRow()Methods in com.zendesk.maxwell.replication that return types with arguments of type RowMap Modifier and Type Method Description List<RowMap>BinlogConnectorEvent. jsonMaps(Table table, long lastHeartbeatRead, String rowQuery)Methods in com.zendesk.maxwell.replication with parameters of type RowMap Modifier and Type Method Description protected booleanBinlogConnectorReplicator. isMaxwellRow(RowMap row)Is this RowMap an update to one of maxwell's own tables? We don't output updates to maxwell.positions, and updates to maxwell.heartbeats are always treated specially.protected voidBinlogConnectorReplicator. processRow(RowMap row) -
Uses of RowMap in com.zendesk.maxwell.row
Subclasses of RowMap in com.zendesk.maxwell.row Modifier and Type Class Description classHeartbeatRowMapCreated by ben on 9/7/16.Methods in com.zendesk.maxwell.row that return RowMap Modifier and Type Method Description static RowMapRowMapDeserializer. createFromString(String json)static RowMapRowMapDeserializer. createFromString(String json, String secret_key)RowMapRowMapDeserializer. deserialize(com.fasterxml.jackson.core.JsonParser jsonParser, com.fasterxml.jackson.databind.DeserializationContext deserializationContext)protected RowMapRowMapBuffer. evict()RowMapRowMapBuffer. removeFirst()RowMapRowMapBufferByTable. removeFirst(String databaseName, String tableName)Methods in com.zendesk.maxwell.row with parameters of type RowMap Modifier and Type Method Description voidRowMapBuffer. add(RowMap rowMap)voidRowMapBufferByTable. add(RowMap row) -
Uses of RowMap in com.zendesk.maxwell.schema.ddl
Subclasses of RowMap in com.zendesk.maxwell.schema.ddl Modifier and Type Class Description classDDLMap -
Uses of RowMap in com.zendesk.maxwell.scripting
Methods in com.zendesk.maxwell.scripting with parameters of type RowMap Modifier and Type Method Description voidScripting. invoke(RowMap row)Constructors in com.zendesk.maxwell.scripting with parameters of type RowMap Constructor Description WrappedRowMap(RowMap row) -
Uses of RowMap in com.zendesk.maxwell.util
Methods in com.zendesk.maxwell.util with parameters of type RowMap Modifier and Type Method Description StringTopicInterpolator. generateFromRowMap(RowMap r)Interpolate the input string based on {{RowMap}}StringTopicInterpolator. generateFromRowMapAndCleanUpIllegalCharacters(RowMap r)Interpolate the input string based on {{RowMap}} and clean up all non alpha-numeric characters
-