aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/tensorboard/db/schema.cc
blob: 2cd00876f8b95c04c5c131b1c683a6956b934bc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
/* Copyright 2017 The TensorFlow Authors. All Rights Reserved.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
#include "tensorflow/contrib/tensorboard/db/schema.h"

#include "tensorflow/core/lib/core/errors.h"

namespace tensorflow {
namespace {

Status Run(Sqlite* db, const char* sql) {
  SqliteStatement stmt;
  TF_RETURN_IF_ERROR(db->Prepare(sql, &stmt));
  TF_RETURN_IF_ERROR(stmt.StepAndReset());
  return Status::OK();
}

}  // namespace

Status SetupTensorboardSqliteDb(Sqlite* db) {
  // Note: GCC raw strings macros are broken.
  // https://gcc.gnu.org/bugzilla/show_bug.cgi?id=55971
  TF_RETURN_IF_ERROR(
      db->PrepareOrDie(strings::StrCat("PRAGMA application_id=",
                                       kTensorboardSqliteApplicationId))
          .StepAndReset());
  db->PrepareOrDie("PRAGMA user_version=0").StepAndResetOrDie();
  Status s;

  // Creates Ids table.
  //
  // This table must be used to randomly allocate Permanent IDs for
  // all top-level tables, in order to maintain an invariant where
  // foo_id != bar_id for all IDs of any two tables.
  //
  // A row should only be deleted from this table if it can be
  // guaranteed that it exists absolutely nowhere else in the entire
  // system.
  //
  // Fields:
  //   id: An ID that was allocated globally. This must be in the
  //     range [1,2**47). 0 is assigned the same meaning as NULL and
  //     shouldn't be stored; 2**63-1 is reserved for statically
  //     allocating space in a page to UPDATE later; and all other
  //     int64 values are reserved for future use.
  s.Update(Run(db, R"sql(
    CREATE TABLE IF NOT EXISTS Ids (
      id INTEGER PRIMARY KEY
    )
  )sql"));

  // Creates Descriptions table.
  //
  // This table allows TensorBoard to associate Markdown text with any
  // object in the database that has a Permanent ID.
  //
  // Fields:
  //   id: The Permanent ID of the associated object. This is also the
  //     SQLite rowid.
  //   description: Arbitrary Markdown text.
  s.Update(Run(db, R"sql(
    CREATE TABLE IF NOT EXISTS Descriptions (
      id INTEGER PRIMARY KEY,
      description TEXT
    )
  )sql"));

  // Creates Tensors table.
  //
  // Fields:
  //   rowid: Ephemeral b-tree ID dictating locality.
  //   tag_id: ID of associated Tag.
  //   computed_time: Float UNIX timestamp with microsecond precision.
  //     In the old summaries system that uses FileWriter, this is the
  //     wall time around when tf.Session.run finished. In the new
  //     summaries system, it is the wall time of when the tensor was
  //     computed. On systems with monotonic clocks, it is calculated
  //     by adding the monotonic run duration to Run.started_time.
  //     This field is not indexed because, in practice, it should be
  //     ordered the same or nearly the same as TensorIndex, so local
  //     insertion sort might be more suitable.
  //   step: User-supplied number, ordering this tensor in Tag.
  //     If NULL then the Tag must have only one Tensor.
  //   tensor: Can be an INTEGER (DT_INT64), FLOAT (DT_DOUBLE), or
  //     BLOB. The structure of a BLOB is currently undefined, but in
  //     essence it is a Snappy tf.TensorProto that spills over into
  //     TensorChunks.
  s.Update(Run(db, R"sql(
    CREATE TABLE IF NOT EXISTS Tensors (
      rowid INTEGER PRIMARY KEY,
      tag_id INTEGER NOT NULL,
      computed_time REAL,
      step INTEGER,
      tensor BLOB
    )
  )sql"));

  // Uniquely indexes (tag_id, step) on Tensors table.
  s.Update(Run(db, R"sql(
    CREATE UNIQUE INDEX IF NOT EXISTS TensorIndex
    ON Tensors (tag_id, step)
  )sql"));

  // Creates TensorChunks table.
  //
  // This table can be used to split up a tensor across many rows,
  // which has the advantage of not slowing down table scans on the
  // main table, allowing asynchronous fetching, minimizing copying,
  // and preventing large buffers from being allocated.
  //
  // Fields:
  //   rowid: Ephemeral b-tree ID dictating locality.
  //   tag_id: ID of associated Tag.
  //   step: Same as corresponding Tensors.step.
  //   sequence: 1-indexed sequence number for ordering chunks. Please
  //     note that the 0th index is Tensors.tensor.
  //   chunk: Bytes of next chunk in tensor.
  s.Update(Run(db, R"sql(
    CREATE TABLE IF NOT EXISTS TensorChunks (
      rowid INTEGER PRIMARY KEY,
      tag_id INTEGER NOT NULL,
      step INTEGER,
      sequence INTEGER,
      chunk BLOB
    )
  )sql"));

  // Uniquely indexes (tag_id, step, sequence) on TensorChunks table.
  s.Update(Run(db, R"sql(
    CREATE UNIQUE INDEX IF NOT EXISTS TensorChunkIndex
    ON TensorChunks (tag_id, step, sequence)
  )sql"));

  // Creates Tags table.
  //
  // Fields:
  //   rowid: Ephemeral b-tree ID dictating locality.
  //   tag_id: The Permanent ID of the Tag.
  //   run_id: Optional ID of associated Run.
  //   tag_name: The tag field in summary.proto, unique across Run.
  //   inserted_time: Float UNIX timestamp with µs precision. This is
  //     always the wall time of when the row was inserted into the
  //     DB. It may be used as a hint for an archival job.
  //   display_name: Optional for GUI and defaults to tag_name.
  //   plugin_name: Arbitrary TensorBoard plugin name for dispatch.
  //   plugin_data: Arbitrary data that plugin wants.
  s.Update(Run(db, R"sql(
    CREATE TABLE IF NOT EXISTS Tags (
      rowid INTEGER PRIMARY KEY,
      run_id INTEGER,
      tag_id INTEGER NOT NULL,
      tag_name TEXT,
      inserted_time DOUBLE,
      display_name TEXT,
      plugin_name TEXT,
      plugin_data BLOB
    )
  )sql"));

  // Uniquely indexes tag_id on Tags table.
  s.Update(Run(db, R"sql(
    CREATE UNIQUE INDEX IF NOT EXISTS TagIdIndex
    ON Tags (tag_id)
  )sql"));

  // Uniquely indexes (run_id, tag_name) on Tags table.
  s.Update(Run(db, R"sql(
    CREATE UNIQUE INDEX IF NOT EXISTS TagNameIndex
    ON Tags (run_id, tag_name)
    WHERE tag_name IS NOT NULL
  )sql"));

  // Creates Runs table.
  //
  // This table stores information about Runs. Each row usually
  // represents a single attempt at training or testing a TensorFlow
  // model, with a given set of hyper-parameters, whose summaries are
  // written out to a single event logs directory with a monotonic step
  // counter.
  //
  // Fields:
  //   rowid: Ephemeral b-tree ID dictating locality.
  //   run_id: The Permanent ID of the Run. This has a 1:1 mapping
  //     with a SummaryWriter instance. If two writers spawn for a
  //     given (user_name, run_name, run_name) then each should
  //     allocate its own run_id and whichever writer puts it in the
  //     database last wins. The Tags / Tensors associated with the
  //     previous invocations will then enter limbo, where they may be
  //     accessible for certain operations, but should be garbage
  //     collected eventually.
  //   experiment_id: Optional ID of associated Experiment.
  //   run_name: User-supplied string, unique across Experiment.
  //   inserted_time: Float UNIX timestamp with µs precision. This is
  //     always the time the row was inserted into the database. It
  //     does not change.
  //   started_time: Float UNIX timestamp with µs precision. In the
  //     old summaries system that uses FileWriter, this is
  //     approximated as the first tf.Event.wall_time. In the new
  //     summaries system, it is the wall time of when summary writing
  //     started, from the perspective of whichever machine talks to
  //     the database. This field will be mutated if the run is
  //     restarted.
  //   finished_time: Float UNIX timestamp with µs precision of when
  //     SummaryWriter resource that created this run was destroyed.
  //     Once this value becomes non-NULL a Run and its Tags and
  //     Tensors should be regarded as immutable.
  //   graph_id: ID of associated Graphs row.
  s.Update(Run(db, R"sql(
    CREATE TABLE IF NOT EXISTS Runs (
      rowid INTEGER PRIMARY KEY,
      experiment_id INTEGER,
      run_id INTEGER NOT NULL,
      run_name TEXT,
      inserted_time REAL,
      started_time REAL,
      finished_time REAL,
      graph_id INTEGER
    )
  )sql"));

  // Uniquely indexes run_id on Runs table.
  s.Update(Run(db, R"sql(
    CREATE UNIQUE INDEX IF NOT EXISTS RunIdIndex
    ON Runs (run_id)
  )sql"));

  // Uniquely indexes (experiment_id, run_name) on Runs table.
  s.Update(Run(db, R"sql(
    CREATE UNIQUE INDEX IF NOT EXISTS RunNameIndex
    ON Runs (experiment_id, run_name)
    WHERE run_name IS NOT NULL
  )sql"));

  // Creates Experiments table.
  //
  // This table stores information about experiments, which are sets of
  // runs.
  //
  // Fields:
  //   rowid: Ephemeral b-tree ID dictating locality.
  //   user_id: Optional ID of associated User.
  //   experiment_id: The Permanent ID of the Experiment.
  //   experiment_name: User-supplied string, unique across User.
  //   inserted_time: Float UNIX timestamp with µs precision. This is
  //     always the time the row was inserted into the database. It
  //     does not change.
  //   started_time: Float UNIX timestamp with µs precision. This is
  //     the MIN(experiment.started_time, run.started_time) of each
  //     Run added to the database, including Runs which have since
  //     been overwritten.
  s.Update(Run(db, R"sql(
    CREATE TABLE IF NOT EXISTS Experiments (
      rowid INTEGER PRIMARY KEY,
      user_id INTEGER,
      experiment_id INTEGER NOT NULL,
      experiment_name TEXT,
      inserted_time REAL,
      started_time REAL
    )
  )sql"));

  // Uniquely indexes experiment_id on Experiments table.
  s.Update(Run(db, R"sql(
    CREATE UNIQUE INDEX IF NOT EXISTS ExperimentIdIndex
    ON Experiments (experiment_id)
  )sql"));

  // Uniquely indexes (user_id, experiment_name) on Experiments table.
  s.Update(Run(db, R"sql(
    CREATE UNIQUE INDEX IF NOT EXISTS ExperimentNameIndex
    ON Experiments (user_id, experiment_name)
    WHERE experiment_name IS NOT NULL
  )sql"));

  // Creates Users table.
  //
  // Fields:
  //   rowid: Ephemeral b-tree ID dictating locality.
  //   user_id: The Permanent ID of the User.
  //   user_name: Unique user name.
  //   email: Optional unique email address.
  //   inserted_time: Float UNIX timestamp with µs precision. This is
  //     always the time the row was inserted into the database. It
  //     does not change.
  s.Update(Run(db, R"sql(
    CREATE TABLE IF NOT EXISTS Users (
      rowid INTEGER PRIMARY KEY,
      user_id INTEGER NOT NULL,
      user_name TEXT,
      email TEXT,
      inserted_time REAL
    )
  )sql"));

  // Uniquely indexes user_id on Users table.
  s.Update(Run(db, R"sql(
    CREATE UNIQUE INDEX IF NOT EXISTS UserIdIndex
    ON Users (user_id)
  )sql"));

  // Uniquely indexes user_name on Users table.
  s.Update(Run(db, R"sql(
    CREATE UNIQUE INDEX IF NOT EXISTS UserNameIndex
    ON Users (user_name)
    WHERE user_name IS NOT NULL
  )sql"));

  // Uniquely indexes email on Users table.
  s.Update(Run(db, R"sql(
    CREATE UNIQUE INDEX IF NOT EXISTS UserEmailIndex
    ON Users (email)
    WHERE email IS NOT NULL
  )sql"));

  // Creates Graphs table.
  //
  // Fields:
  //   rowid: Ephemeral b-tree ID dictating locality.
  //   graph_id: The Permanent ID of the Graph.
  //   inserted_time: Float UNIX timestamp with µs precision. This is
  //     always the wall time of when the row was inserted into the
  //     DB. It may be used as a hint for an archival job.
  //   node_def: Contains Snappy tf.GraphDef proto. All fields will be
  //     cleared except those not expressed in SQL.
  s.Update(Run(db, R"sql(
    CREATE TABLE IF NOT EXISTS Graphs (
      rowid INTEGER PRIMARY KEY,
      graph_id INTEGER NOT NULL,
      inserted_time REAL,
      graph_def BLOB
    )
  )sql"));

  // Uniquely indexes graph_id on Graphs table.
  s.Update(Run(db, R"sql(
    CREATE UNIQUE INDEX IF NOT EXISTS GraphIdIndex
    ON Graphs (graph_id)
  )sql"));

  // Creates Nodes table.
  //
  // Fields:
  //   rowid: Ephemeral b-tree ID dictating locality.
  //   graph_id: The Permanent ID of the associated Graph.
  //   node_id: ID for this node. This is more like a 0-index within
  //     the Graph. Please note indexes are allowed to be removed.
  //   node_name: Unique name for this Node within Graph. This is
  //     copied from the proto so it can be indexed. This is allowed
  //     to be NULL to save space on the index, in which case the
  //     node_def.name proto field must not be cleared.
  //   op: Copied from tf.NodeDef proto.
  //   device: Copied from tf.NodeDef proto.
  //   node_def: Contains Snappy tf.NodeDef proto. All fields will be
  //     cleared except those not expressed in SQL.
  s.Update(Run(db, R"sql(
    CREATE TABLE IF NOT EXISTS Nodes (
      rowid INTEGER PRIMARY KEY,
      graph_id INTEGER NOT NULL,
      node_id INTEGER NOT NULL,
      node_name TEXT,
      op TEXT,
      device TEXT,
      node_def BLOB
    )
  )sql"));

  // Uniquely indexes (graph_id, node_id) on Nodes table.
  s.Update(Run(db, R"sql(
    CREATE UNIQUE INDEX IF NOT EXISTS NodeIdIndex
    ON Nodes (graph_id, node_id)
  )sql"));

  // Uniquely indexes (graph_id, node_name) on Nodes table.
  s.Update(Run(db, R"sql(
    CREATE UNIQUE INDEX IF NOT EXISTS NodeNameIndex
    ON Nodes (graph_id, node_name)
    WHERE node_name IS NOT NULL
  )sql"));

  // Creates NodeInputs table.
  //
  // Fields:
  //   rowid: Ephemeral b-tree ID dictating locality.
  //   graph_id: The Permanent ID of the associated Graph.
  //   node_id: Index of Node in question. This can be considered the
  //     'to' vertex.
  //   idx: Used for ordering inputs on a given Node.
  //   input_node_id: Nodes.node_id of the corresponding input node.
  //     This can be considered the 'from' vertex.
  //   is_control: If non-zero, indicates this input is a controlled
  //     dependency, which means this isn't an edge through which
  //     tensors flow. NULL means 0.
  s.Update(Run(db, R"sql(
    CREATE TABLE IF NOT EXISTS NodeInputs (
      rowid INTEGER PRIMARY KEY,
      graph_id INTEGER NOT NULL,
      node_id INTEGER NOT NULL,
      idx INTEGER NOT NULL,
      input_node_id INTEGER NOT NULL,
      is_control INTEGER
    )
  )sql"));

  // Uniquely indexes (graph_id, node_id, idx) on NodeInputs table.
  s.Update(Run(db, R"sql(
    CREATE UNIQUE INDEX IF NOT EXISTS NodeInputsIndex
    ON NodeInputs (graph_id, node_id, idx)
  )sql"));

  return s;
}

}  // namespace tensorflow