Uses of Class
org.apache.cassandra.schema.TableId
-
-
Uses of TableId in org.apache.cassandra.cache
Fields in org.apache.cassandra.cache declared as TableId Modifier and Type Field Description TableIdCacheKey. tableIdConstructors in org.apache.cassandra.cache with parameters of type TableId Constructor Description CacheKey(TableId tableId, java.lang.String indexName)RowCacheKey(TableId tableId, java.lang.String indexName, byte[] key)RowCacheKey(TableId tableId, java.lang.String indexName, java.nio.ByteBuffer key) -
Uses of TableId in org.apache.cassandra.cql3.statements.schema
Methods in org.apache.cassandra.cql3.statements.schema that return TableId Modifier and Type Method Description TableIdTableAttributes. getId() -
Uses of TableId in org.apache.cassandra.db
Methods in org.apache.cassandra.db that return types with arguments of type TableId Modifier and Type Method Description java.util.Collection<TableId>CounterMutation. getTableIds()java.util.Collection<TableId>IMutation. getTableIds()java.util.Collection<TableId>Mutation. getTableIds()Methods in org.apache.cassandra.db with parameters of type TableId Modifier and Type Method Description voidKeyspace. dropCf(TableId tableId, boolean dropData)ColumnFamilyStoreKeyspace. getColumnFamilyStore(TableId id)static ColumnFamilyStoreColumnFamilyStore. getIfExists(TableId id)Returns a ColumnFamilyStore by id if it exists, null otherwise Differently from others, this method does not throw exception if the table does not exist.ColumnFamilyStoreKeyspace. getIfExists(TableId id)static longSystemKeyspace. getTruncatedAt(TableId id)static CommitLogPositionSystemKeyspace. getTruncatedPosition(TableId id)booleanKeyspace. hasColumnFamilyStore(TableId id)static TableMetricsColumnFamilyStore. metricsFor(TableId tableId)static voidSystemKeyspace. removeTruncationRecord(TableId id)This method is used to remove information about truncation time for specified column familyvoidStorageHook. reportRead(TableId tableId, DecoratedKey key)voidStorageHook. reportWrite(TableId tableId, PartitionUpdate partitionUpdate)MutationMutation. without(TableId tableId)Method parameters in org.apache.cassandra.db with type arguments of type TableId Modifier and Type Method Description MutationMutation. without(java.util.Set<TableId> tableIds)Constructor parameters in org.apache.cassandra.db with type arguments of type TableId Constructor Description Mutation(java.lang.String keyspaceName, DecoratedKey key, com.google.common.collect.ImmutableMap<TableId,PartitionUpdate> modifications, long approxCreatedAtNanos)Mutation(java.lang.String keyspaceName, DecoratedKey key, com.google.common.collect.ImmutableMap<TableId,PartitionUpdate> modifications, long approxCreatedAtNanos, boolean cdcEnabled) -
Uses of TableId in org.apache.cassandra.db.commitlog
Methods in org.apache.cassandra.db.commitlog that return types with arguments of type TableId Modifier and Type Method Description java.util.Collection<TableId>CommitLogSegment. getDirtyTableIds()java.util.Set<java.util.Map.Entry<TableId,java.util.concurrent.atomic.AtomicInteger>>CommitLogReader. getInvalidMutations()Methods in org.apache.cassandra.db.commitlog with parameters of type TableId Modifier and Type Method Description voidCommitLog. discardCompletedSegments(TableId id, CommitLogPosition lowerBound, CommitLogPosition upperBound)Modifies the per-CF dirty cursors of any commit log segments for the column family according to the position given.voidCommitLogSegment. markClean(TableId tableId, CommitLogPosition startPosition, CommitLogPosition endPosition)Marks the ColumnFamily specified by id as clean for this log segment.Method parameters in org.apache.cassandra.db.commitlog with type arguments of type TableId Modifier and Type Method Description voidCommitLog. forceRecycleAllSegments(java.util.Collection<TableId> droppedTables)Flushes all dirty CFs, waiting for them to free and recycle any segments they were retaining -
Uses of TableId in org.apache.cassandra.db.streaming
Fields in org.apache.cassandra.db.streaming declared as TableId Modifier and Type Field Description TableIdCassandraStreamHeader. tableIdprotected TableIdCassandraStreamReader. tableIdMethods in org.apache.cassandra.db.streaming that return TableId Modifier and Type Method Description TableIdCassandraIncomingFile. getTableId()TableIdCassandraOutgoingFile. getTableId()Methods in org.apache.cassandra.db.streaming with parameters of type TableId Modifier and Type Method Description CassandraStreamHeader.BuilderCassandraStreamHeader.Builder. withTableId(TableId tableId)Method parameters in org.apache.cassandra.db.streaming with type arguments of type TableId Modifier and Type Method Description CassandraStreamHeaderCassandraStreamHeader.CassandraStreamHeaderSerializer. deserialize(DataInputPlus in, int version, java.util.function.Function<TableId,IPartitioner> partitionerMapper) -
Uses of TableId in org.apache.cassandra.db.view
Methods in org.apache.cassandra.db.view with parameters of type TableId Modifier and Type Method Description TableViewsViewManager. forTable(TableId id)Constructors in org.apache.cassandra.db.view with parameters of type TableId Constructor Description TableViews(TableId id) -
Uses of TableId in org.apache.cassandra.db.virtual
Methods in org.apache.cassandra.db.virtual that return types with arguments of type TableId Modifier and Type Method Description java.util.Collection<TableId>VirtualMutation. getTableIds()Methods in org.apache.cassandra.db.virtual with parameters of type TableId Modifier and Type Method Description TableMetadataVirtualKeyspaceRegistry. getTableMetadataNullable(TableId id)VirtualTableVirtualKeyspaceRegistry. getTableNullable(TableId id)Constructor parameters in org.apache.cassandra.db.virtual with type arguments of type TableId Constructor Description VirtualMutation(java.lang.String keyspaceName, DecoratedKey partitionKey, com.google.common.collect.ImmutableMap<TableId,PartitionUpdate> modifications) -
Uses of TableId in org.apache.cassandra.exceptions
Fields in org.apache.cassandra.exceptions declared as TableId Modifier and Type Field Description TableIdUnknownTableException. idConstructors in org.apache.cassandra.exceptions with parameters of type TableId Constructor Description UnknownTableException(java.lang.String msg, TableId id) -
Uses of TableId in org.apache.cassandra.io.sstable
Methods in org.apache.cassandra.io.sstable that return TableId Modifier and Type Method Description TableIdSimpleSSTableMultiWriter. getTableId()TableIdSSTableMultiWriter. getTableId()Constructor parameters in org.apache.cassandra.io.sstable with type arguments of type TableId Constructor Description IndexSummaryRedistribution(java.util.Map<TableId,LifecycleTransaction> transactions, long nonRedistributingOffHeapSize, long memoryPoolBytes) -
Uses of TableId in org.apache.cassandra.io.sstable.format
Methods in org.apache.cassandra.io.sstable.format that return TableId Modifier and Type Method Description TableIdRangeAwareSSTableWriter. getTableId() -
Uses of TableId in org.apache.cassandra.io.sstable.format.big
Methods in org.apache.cassandra.io.sstable.format.big that return TableId Modifier and Type Method Description TableIdBigTableZeroCopyWriter. getTableId() -
Uses of TableId in org.apache.cassandra.repair.consistent
Fields in org.apache.cassandra.repair.consistent with type parameters of type TableId Modifier and Type Field Description com.google.common.collect.ImmutableSet<TableId>ConsistentSession. tableIdsMethods in org.apache.cassandra.repair.consistent with parameters of type TableId Modifier and Type Method Description CleanupSummaryLocalSessions. cleanup(TableId tid, java.util.Collection<Range<Token>> ranges, boolean force)PendingStatsLocalSessions. getPendingStats(TableId tid, java.util.Collection<Range<Token>> ranges)RepairedState.StatsLocalSessions. getRepairedStats(TableId tid, java.util.Collection<Range<Token>> ranges)protected TableMetadataLocalSessions. getTableMetadata(TableId tableId) -
Uses of TableId in org.apache.cassandra.repair.messages
Fields in org.apache.cassandra.repair.messages with type parameters of type TableId Modifier and Type Field Description java.util.List<TableId>PrepareMessage. tableIdsConstructor parameters in org.apache.cassandra.repair.messages with type arguments of type TableId Constructor Description PrepareMessage(TimeUUID parentRepairSession, java.util.List<TableId> tableIds, java.util.Collection<Range<Token>> ranges, boolean isIncremental, long repairedAt, boolean isGlobal, PreviewKind previewKind) -
Uses of TableId in org.apache.cassandra.repair.state
Fields in org.apache.cassandra.repair.state with type parameters of type TableId Modifier and Type Field Description java.util.List<TableId>ParticipateState. tableIds -
Uses of TableId in org.apache.cassandra.schema
Fields in org.apache.cassandra.schema declared as TableId Modifier and Type Field Description TableIdViewMetadata. baseTableIdTableIdTableMetadata. idTableIdTableMetadataRef. idMethods in org.apache.cassandra.schema that return TableId Modifier and Type Method Description static TableIdTableId. deserialize(java.io.DataInput in)static TableIdTableId. forSystemTable(java.lang.String keyspace, java.lang.String table)Creates the UUID of a system table.static TableIdTableId. fromString(java.lang.String idString)static TableIdTableId. fromUUID(java.util.UUID id)static TableIdTableId. generate()static TableIdTableId. unsafeDeterministic(java.lang.String keyspace, java.lang.String table)Methods in org.apache.cassandra.schema with parameters of type TableId Modifier and Type Method Description static TableMetadata.BuilderTableMetadata. builder(java.lang.String keyspace, java.lang.String table, TableId id)java.lang.Iterable<ViewMetadata>Views. forTable(TableId tableId)ColumnFamilyStoreSchema. getColumnFamilyStoreInstance(TableId id)intPartitionDenylist. getDeniedKeysInRangeCount(TableId tid, AbstractBounds<PartitionPosition> range)default TableMetadataSchemaProvider. getExistingTableMetadata(TableId id)TableMetadataSchema. getTableMetadata(TableId id)TableMetadataSchemaProvider. getTableMetadata(TableId id)TableMetadataRefSchema. getTableMetadataRef(TableId id)Get Table metadata by its identifierTableMetadataRefSchemaProvider. getTableMetadataRef(TableId id)TableMetadataKeyspaces. getTableOrViewNullable(TableId id)TableMetadata.BuilderTableMetadata.Builder. id(TableId val)booleanPartitionDenylist. isKeyPermitted(TableId tid, java.nio.ByteBuffer key)java.util.stream.Stream<ViewMetadata>Views. stream(TableId tableId)Constructors in org.apache.cassandra.schema with parameters of type TableId Constructor Description ViewMetadata(TableId baseTableId, java.lang.String baseTableName, boolean includeAllColumns, WhereClause whereClause, TableMetadata metadata) -
Uses of TableId in org.apache.cassandra.service
Methods in org.apache.cassandra.service that return types with arguments of type TableId Modifier and Type Method Description java.util.Set<TableId>ActiveRepairService.ParentRepairSession. getTableIds()Methods in org.apache.cassandra.service with parameters of type TableId Modifier and Type Method Description Future<?>StorageService. autoRepairPaxos(TableId tableId) -
Uses of TableId in org.apache.cassandra.service.paxos.cleanup
Fields in org.apache.cassandra.service.paxos.cleanup declared as TableId Modifier and Type Field Description TableIdPaxosCleanupRequest. tableIdMethods in org.apache.cassandra.service.paxos.cleanup with parameters of type TableId Modifier and Type Method Description static PaxosCleanupLocalCoordinatorPaxosCleanupLocalCoordinator. createForAutoRepair(TableId tableId, java.util.Collection<Range<Token>> ranges)static PaxosStartPrepareCleanupPaxosStartPrepareCleanup. prepare(TableId tableId, java.util.Collection<InetAddressAndPort> endpoints, EndpointState localEpState, java.util.Collection<Range<Token>> ranges)We run paxos repair as part of topology changes, so we include the local endpoint state in the paxos repair prepare message to prevent racing with gossip dissemination and guarantee that every repair participant is aware of the pending ring change during repair.Constructors in org.apache.cassandra.service.paxos.cleanup with parameters of type TableId Constructor Description PaxosCleanupHistory(TableId tableId, Ballot highBound, PaxosRepairHistory history)PaxosCleanupRequest(java.util.UUID session, TableId tableId, java.util.Collection<Range<Token>> ranges)Request(TableId tableId, EndpointState epState, java.util.Collection<Range<Token>> ranges) -
Uses of TableId in org.apache.cassandra.service.paxos.uncommitted
Methods in org.apache.cassandra.service.paxos.uncommitted that return TableId Modifier and Type Method Description static TableIdPaxosRows. getTableId(Row row)Methods in org.apache.cassandra.service.paxos.uncommitted that return types with arguments of type TableId Modifier and Type Method Description java.util.Set<TableId>PaxosUncommittedTracker. tableIds()Methods in org.apache.cassandra.service.paxos.uncommitted with parameters of type TableId Modifier and Type Method Description static UncommittedDataFileUncommittedDataFile. create(TableId tableId, File file, File crcFile, long generation)CloseableIterator<PaxosKeyState>PaxosUncommittedIndex. repairIterator(TableId tableId, java.util.Collection<Range<Token>> ranges)CloseableIterator<PaxosKeyState>PaxosUncommittedTracker.UpdateSupplier. repairIterator(TableId tableId, java.util.Collection<Range<Token>> ranges)CloseableIterator<UncommittedPaxosKey>PaxosUncommittedTracker. uncommittedKeyIterator(TableId tableId, java.util.Collection<Range<Token>> ranges)Constructors in org.apache.cassandra.service.paxos.uncommitted with parameters of type TableId Constructor Description PaxosKeyState(TableId tableId, DecoratedKey key, Ballot ballot, boolean committed)Constructor parameters in org.apache.cassandra.service.paxos.uncommitted with type arguments of type TableId Constructor Description PaxosUncommittedTracker(File dataDirectory, com.google.common.collect.ImmutableMap<TableId,UncommittedTableData> tableStates) -
Uses of TableId in org.apache.cassandra.streaming
Fields in org.apache.cassandra.streaming declared as TableId Modifier and Type Field Description TableIdStreamSummary. tableIdprotected TableIdStreamTask. tableIdFields in org.apache.cassandra.streaming with type parameters of type TableId Modifier and Type Field Description protected java.util.concurrent.ConcurrentHashMap<TableId,StreamTransferTask>StreamSession. transfersMethods in org.apache.cassandra.streaming that return TableId Modifier and Type Method Description TableIdIncomingStream. getTableId()TableIdOutgoingStream. getTableId()Methods in org.apache.cassandra.streaming with parameters of type TableId Modifier and Type Method Description StreamReceiverStreamSession. getAggregator(TableId tableId)voidStreamSession. received(TableId tableId, int sequenceNumber)voidStreamHook. reportIncomingStream(TableId tableId, IncomingStream stream, StreamSession session, int sequenceNumber)Constructors in org.apache.cassandra.streaming with parameters of type TableId Constructor Description StreamReceiveTask(StreamSession session, TableId tableId, int totalStreams, long totalSize)StreamSummary(TableId tableId, int files, long totalSize)StreamTask(StreamSession session, TableId tableId)StreamTransferTask(StreamSession session, TableId tableId) -
Uses of TableId in org.apache.cassandra.streaming.messages
Fields in org.apache.cassandra.streaming.messages declared as TableId Modifier and Type Field Description TableIdReceivedMessage. tableIdTableIdStreamMessageHeader. tableIdConstructors in org.apache.cassandra.streaming.messages with parameters of type TableId Constructor Description OutgoingStreamMessage(TableId tableId, StreamSession session, OutgoingStream stream, int sequenceNumber)ReceivedMessage(TableId tableId, int sequenceNumber)StreamMessageHeader(TableId tableId, InetAddressAndPort sender, TimeUUID planId, boolean sendByFollower, int sessionIndex, int sequenceNumber, long repairedAt, TimeUUID pendingRepair)
-