core-go / pubsub

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pubsub

A fully managed messaging service that allows for event-driven systems and real-time analytics on Google Cloud Platform. Key features include:

  • Scalability: Automatically scales to handle high-throughput workloads.
  • Durability: Ensures message delivery with at-least-once delivery guarantees.
  • Flexibility: Supports both push and pull delivery models.
  • Integration: Easily integrates with other Google Cloud services.

Libraries for Google Pub/Sub

A common flow to consume a message from a message queue

A common flow to consume a message from a message queue

Use Cases of Google Pub/Sub

Common use cases include event-driven architectures, log collection, and streaming analytics.

Microservice Architecture

Event-Driven Architectures

  • Scenario: Building applications where different components communicate via events (e.g., microservices)
  • Benefit: Decouples components, allowing independent scaling and development A typical micro service

Log Collection and Monitoring

  • Scenario: Aggregating logs from multiple applications and systems.
  • Benefit: Centralized logging and monitoring, improving visibility and debugging capabilities.

Streaming analytics

  • Scenario: Collecting and analyzing data streams from various sources like IoT devices, social media, or user activity.
  • Benefit: Enables real-time data processing and analytics, providing timely insights and actions.

Comparison of Google Pub/Sub, Amazon SQS, and Apache Kafka

Google Pub/Sub:

  • Type: Managed real-time messaging service.
  • Use Case: Event-driven architectures, real-time analytics.
  • Scalability: Automatically scales.
  • Delivery Guarantees: At-least-once delivery.
  • Integration: Tight with Google Cloud services.
  • Delivery Models: Push and pull.

Amazon SQS

  • Type: Managed message queuing service.
  • Use Case: Decoupling and scaling microservices, asynchronous tasks.
  • Scalability: Automatically scales.
  • Delivery Guarantees: At-least-once, FIFO (exactly-once).
  • Integration: Deep integration with AWS services.
  • Delivery Models: Primarily pull, with long polling.

Apache Kafka

  • Type: Open-source event streaming platform.
  • Use Case: High-throughput messaging, event sourcing, log aggregation.
  • Scalability: High with partitioned topics.
  • Delivery Guarantees: Configurable (at-least-once, exactly-once).
  • Integration: Broad ecosystem with various connectors.
  • Delivery Models: Pull-based consumer groups.

Key Differences

  • Management: Pub/Sub and SQS are managed services, while Kafka is typically self-managed or via managed services like Confluent.
  • Use Case Focus: Pub/Sub and Kafka are ideal for real-time processing, whereas SQS is great for decoupling microservices and handling asynchronous tasks.
  • Delivery Models: Pub/Sub supports push and pull, SQS supports pull with long polling, and Kafka primarily uses pull with consumer groups.
  • Scalability: All three are highly scalable, but Kafka offers the most control over performance tuning.
  • Integration: Pub/Sub integrates well with Google Cloud, SQS with AWS, and Kafka has a broad integration ecosystem.

When to Use

  • Google Pub/Sub: If you're using Google Cloud and need a managed, real-time messaging solution.
  • Amazon SQS: For reliable, scalable message queuing in AWS environments.
  • Apache Kafka: For complex event streaming and log aggregation, with a need for fine-tuned control and a broad integration ecosystem.

Installation

Please make sure to initialize a Go module before installing core-go/pubsub:

go get -u github.com/core-go/pubsub

Import:

import "github.com/core-go/pubsub"

About


Languages

Language:Go 100.0%