Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(184)

Unified Diff: client/internal/logdog/butler/output/gcps/doc.go

Issue 1211053004: LogDog: Add Butler Output package. (Closed) Base URL: https://github.com/luci/luci-go@logdog-review-streamserver
Patch Set: Added some doc.go's. Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: client/internal/logdog/butler/output/gcps/doc.go
diff --git a/client/internal/logdog/butler/output/gcps/doc.go b/client/internal/logdog/butler/output/gcps/doc.go
new file mode 100644
index 0000000000000000000000000000000000000000..f3c9d1a8c8817b74eec304b3b7393fbf5dc319bd
--- /dev/null
+++ b/client/internal/logdog/butler/output/gcps/doc.go
@@ -0,0 +1,12 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+// Package gcps implements the "gcps" Output.
+//
+// The "gcps" (Google Cloud Pub/Sub) Output publishes ButlerLogBundle protobufs
+// to a Google Cloud Pub/Sub topic. Each published data chunk consists of two
+// RecordIO frames:
estaab 2015/11/19 23:57:24 Generally we don't mix message types across record
estaab 2015/11/19 23:57:24 Generally we don't mix message types across record
dnj 2015/11/20 01:55:12 ButlerLogBundle may be compressed. The compression
estaab 2015/11/20 04:37:27 Pubsub messages already get gzip-compressed at the
dnj (Google) 2015/11/20 04:45:48 PubSub enforces a maximum message size, evaluating
estaab 2015/11/20 05:15:48 Ok, I buy that argument. Am I looking at the right
dnj (Google) 2015/11/20 16:40:02 Not really expect to approach, but it depends. Mos
+// Frame #0) A ButlerMetadata protobuf which describes Frame #1.
+// Frame #1) A ButlerLogBundle protobuf containing the bundle data.
+package gcps

Powered by Google App Engine
This is Rietveld 408576698