Home / Companies / Svix / Blog / November 2025

November 2025 Summaries

4 posts from Svix

Filter
Month: Year:
Post Summaries Back to Blog
Svix provides an enterprise-ready solution for securely sending webhooks, essential for building a scalable, reliable, and secure webhook platform. In the context of SaaS products, it distinguishes between single-tenant and multi-tenant architectures for storing customer data, emphasizing that most high-growth applications favor multi-tenancy for its simplicity and scalability. However, this necessitates stringent access controls to prevent data breaches, with row-level security (RLS) being a pivotal technique. RLS policies allow developers to attach runtime filters to database tables, enhancing data security in multi-tenant applications by ensuring users only access their own data. The text offers a practical guide to implementing RLS using PostgreSQL and ClickHouse, including specific code examples and methods to manage security efficiently. It highlights the importance of a fail-safe system that defaults to secure settings in case of configuration errors, and it stresses the role of RLS as part of a broader security strategy. The document also discusses using Axum in Rust for integrating RLS with authentication, ensuring secure database operations through type-system wrappers and transaction-specific context settings.
Nov 20, 2025 2,267 words in the original blog post.
Svix is an enterprise-ready webhook sending service that has introduced Svix Stream, a server-to-server stream processing platform similar to Apache Kafka, designed to efficiently share data in real-time between companies and their customers. This new feature allows businesses to send batches of events to Svix, where they are stored in an internal per-customer stream, enabling customers to process and direct the data to various destinations like Postgres or Amazon S3 without effort. Svix Stream, developed over two years and integrated with the Svix Dispatch product, offers reliability, security, and flexibility, allowing companies to avoid complex ETL processes and enabling customers to create their own dashboards by streaming data directly to their data warehouses and BI systems. It supports use cases such as audit logs, analytics, OpenTelemetry, and compliance events, making it especially relevant in the context of AI where real-time data access is crucial. Svix Stream is included in all service tiers, welcoming user feedback and feature requests, and is supported by a growing list of destinations with more to come.
Nov 18, 2025 660 words in the original blog post.
Svix, a service for building secure and scalable webhook platforms, has unveiled several updates, including the launch of Svix Stream, enabling real-time and scalable data sharing with customers. This feature represents a culmination of over two years of development and enhancements to the Svix Dispatch product. Dashboard analytics have been upgraded to provide real-time insights and improved visualizations, while the introduction of public connector APIs allows for programmatic management of connectors, facilitating better version control and CI/CD integration. Additional improvements include the ability to upload organization logos directly, enhancing customization of the App Portal and operational emails, and a new "Copy to LLM" button in the documentation for easier AI assistant integration. Svix encourages feedback to continue evolving its offerings and maintains communication through various channels for ongoing updates.
Nov 12, 2025 591 words in the original blog post.
Svix, an enterprise-ready webhook sending service, leverages ClickHouse, an open-source analytical database, to manage large-scale data analytics and dashboards. ClickHouse, known for its speed and rich type system, integrates well with Rust applications, making it suitable for handling vast amounts of data efficiently, even on modest hardware. Svix uses the official clickhouse-rs crate for connecting Rust applications to ClickHouse, allowing for straightforward query execution with a focus on security by avoiding SQL injections. The blog post explores the integration of ClickHouse with Rust, highlighting the use of clickhouse-rs for async operations, error handling, and performance monitoring with OpenTelemetry. Challenges such as managing nullable values, date/time representations, and specific data types like UInt128 are addressed, with Svix offering solutions and workarounds. The post encourages further exploration and invites interested individuals to join their team, promising future updates on their ClickHouse migration.
Nov 04, 2025 1,839 words in the original blog post.