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

Side by Side Diff: appengine/cmd/logdog_coordinator/vmuser/index.yaml

Issue 1863973002: LogDog: Update to archival V2. (Closed) Base URL: https://github.com/luci/luci-go@grpcutil-errors
Patch Set: Code review comments, use Pub/Sub, archival staging, quality of life. Created 4 years, 8 months 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 unified diff | Download patch
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 indexes: 5 indexes:
6 # These "query endpoint" indexes support timestamp-based querying. These should 6 # These "query endpoint" indexes support timestamp-based querying. These should
7 # be kept in sync with the indexes in: 7 # be kept in sync with the indexes in:
8 # appengine/logdog/coordinator/endpoints/logs/query_test.go 8 # appengine/logdog/coordinator/endpoints/logs/query_test.go
9 - kind: LogStream 9 - kind: LogStream
10 properties: 10 properties:
11 - name: Prefix 11 - name: Prefix
12 - name: Created 12 - name: Created
13 direction: desc 13 direction: desc
14 14
15 - kind: LogStream 15 - kind: LogStream
16 properties: 16 properties:
17 - name: Name 17 - name: Name
18 - name: Created 18 - name: Created
19 direction: desc 19 direction: desc
20 20
21 # (This index also supports the expired log stream archival backend cron.)
21 - kind: LogStream 22 - kind: LogStream
22 properties: 23 properties:
23 - name: State 24 - name: State
24 - name: Created 25 - name: Created
25 direction: desc 26 direction: desc
26 27
27 - kind: LogStream 28 - kind: LogStream
28 properties: 29 properties:
29 - name: Purged 30 - name: Purged
30 - name: Created 31 - name: Created
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 - name: _Terminated 72 - name: _Terminated
72 - name: Created 73 - name: Created
73 direction: desc 74 direction: desc
74 75
75 - kind: LogStream 76 - kind: LogStream
76 properties: 77 properties:
77 - name: _Archived 78 - name: _Archived
78 - name: Created 79 - name: Created
79 direction: desc 80 direction: desc
80 81
81 # This index supports the tumble installation. 82 # This index supports the tumble installation.
82 - kind: tumble.Mutation 83 - kind: tumble.Mutation
83 properties: 84 properties:
84 - name: ExpandedShard 85 - name: ExpandedShard
85 - name: TargetRoot 86 - name: TargetRoot
86 87
87 # AUTOGENERATED 88 # AUTOGENERATED
88 89
89 # This index.yaml is automatically updated whenever the dev_appserver 90 # This index.yaml is automatically updated whenever the dev_appserver
90 # detects that a new type of query is run. If you want to manage the 91 # detects that a new type of query is run. If you want to manage the
91 # index.yaml file manually, remove the above marker line (the line 92 # index.yaml file manually, remove the above marker line (the line
92 # saying "# AUTOGENERATED"). If you want to manage some indexes 93 # saying "# AUTOGENERATED"). If you want to manage some indexes
93 # manually, move them above the marker line. The index.yaml file is 94 # manually, move them above the marker line. The index.yaml file is
94 # automatically uploaded to the admin console when you next deploy 95 # automatically uploaded to the admin console when you next deploy
95 # your application using appcfg.py. 96 # your application using appcfg.py.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698