Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
faust-streaming / faust / cli / reset.py
Size: Mime:
"""Program ``faust reset`` used to delete local table state."""
from .base import AppCommand

__all__ = ["reset"]


class reset(AppCommand):
    """Delete local table state.

    Warning:
        This command will result in the destruction of the following files:

            1) The local database directories/files backing tables
               (does not apply if an in-memory store like memory:// is used).

    Notes:
        This data is technically recoverable from the Kafka cluster (if
        intact), but it'll take a long time to get the data back as
        you need to consume each changelog topic in total.

        It'd be faster to copy the data from any standbys that happen
        to have the topic partitions you require.
    """

    async def run(self) -> None:
        """Execute command."""
        await self.reset_tables()

    async def reset_tables(self) -> None:
        """Reset local state for all tables."""
        for table in self.app.tables.values():
            self.say(f"Removing database for table {table.name}...")
            table.reset_state()