Skip to content

Commit

Permalink
[BREAKING] Remove old pag construction and all support other than timely
Browse files Browse the repository at this point in the history
  • Loading branch information
li1 committed Apr 30, 2019
1 parent 176d86d commit f512049
Show file tree
Hide file tree
Showing 51 changed files with 3 additions and 2,336 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
11 changes: 1 addition & 10 deletions logformat/rust/Cargo.toml → logformat/Cargo.toml
Expand Up @@ -10,14 +10,5 @@ enum-primitive-derive = "^0.1"
num-traits = "^0.2"
abomonation = "0.7"
abomonation_derive = "0.3"
# @TODO: replace with serde
json = "0.11.12"
clap = "^2.32"

[dev-dependencies]
rmp-serde = "^0.13"
quick-protobuf = "^0.6"
serde = { version = "1.0", features = ["derive"] }
# serde_json = "1.0"
# protobuf = "1.4.3" necessary?
byteorder = "^1.2"
clap = "^2.32"
File renamed without changes.
2 changes: 0 additions & 2 deletions logformat/java/.gitignore

This file was deleted.

1 change: 0 additions & 1 deletion logformat/java/build.sbt

This file was deleted.

29 changes: 0 additions & 29 deletions logformat/java/src/main/java/criticalpath/ActivityType.java

This file was deleted.

23 changes: 0 additions & 23 deletions logformat/java/src/main/java/criticalpath/EventType.java

This file was deleted.

50 changes: 0 additions & 50 deletions logformat/java/src/main/java/criticalpath/LogRecordPacker.java

This file was deleted.

File renamed without changes.
File renamed without changes.
13 changes: 2 additions & 11 deletions logformat/rust/src/lib.rs → logformat/src/lib.rs
@@ -1,20 +1,11 @@
#![deny(missing_docs)]

// Copyright 2017 ETH Zurich. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

//! Data structure for a `LogRecord`.
//! A `LogRecord` constitutes the unified `struct` representation of
//! log messages from various stream processors.
//!
//! It is the underlying structure from which the PAG construction starts.
//! If necessary, it can also be serialized e.g. into a `msgpack` representation.

#![deny(missing_docs)]

#[macro_use]
extern crate enum_primitive_derive;
Expand Down Expand Up @@ -182,7 +173,7 @@ impl LogRecord {
let ts_nanos = self.timestamp.subsec_nanos();
msgpack::encode::write_uint(writer, u64::from(ts_secs))?;
msgpack::encode::write_uint(writer, u64::from(ts_nanos))?;
msgpack::encode::write_uint(writer, self.epoch);
msgpack::encode::write_uint(writer, self.epoch)?;
msgpack::encode::write_uint(writer, u64::from(self.local_worker as u64))?;
msgpack::encode::write_uint(writer, self.activity_type.to_u64().unwrap())?;
msgpack::encode::write_uint(writer, self.event_type.to_u64().unwrap())?;
Expand Down
16 changes: 0 additions & 16 deletions spark-parser/Cargo.toml

This file was deleted.

150 changes: 0 additions & 150 deletions spark-parser/INSTRUMENTATION.md

This file was deleted.

64 changes: 0 additions & 64 deletions spark-parser/README.md

This file was deleted.

53 changes: 0 additions & 53 deletions spark-parser/resources/app-20170324182509-0000

This file was deleted.

0 comments on commit f512049

Please sign in to comment.