sync configerator thrift update

Reviewed By: StanislavGlebik

Differential Revision: D20769371

fbshipit-source-id: 46f476adee8abcc8248f89f768d3ee43ad29466f
This commit is contained in:
Mark Thomas 2020-03-31 11:41:37 -07:00 committed by Facebook GitHub Bot
parent 353e248dd4
commit b331b355ef

View File

@ -1,4 +1,4 @@
// @generated SignedSource<<44e0574804c45d28572aef1a6ccfc3a4>>
// @generated SignedSource<<af95e8c77617b14b865eb5baf0f6c0ea>>
// DO NOT EDIT THIS FILE MANUALLY!
// This file is a mechanical copy of the version in the configerator repo. To
// modify it, edit the copy in the configerator repo instead and copy it over by
@ -181,7 +181,17 @@ struct RawDbLocal {
struct RawDbRemote {
1: string db_address,
2: optional RawShardedFilenodesParams sharded_filenodes,
2: optional RawShardedFilenodesParams sharded_filenodes, // DEPRECATED
}
struct RawDbShardedRemote {
1: string shard_map,
2: i32 shard_num,
}
union RawDbShardableRemote {
1: RawDbRemote unsharded,
2: RawDbShardedRemote sharded,
}
union RawDbConfig {
@ -189,8 +199,19 @@ union RawDbConfig {
2: RawDbRemote remote,
}
struct RawRemoteMetadataConfig {
1: RawDbRemote primary,
2: RawDbShardableRemote filenodes,
}
union RawMetadataConfig {
1: RawDbLocal local,
2: RawRemoteMetadataConfig remote,
}
struct RawStorageConfig {
1: RawDbConfig db,
1: RawDbConfig db, // DEPRECATED
3: RawMetadataConfig metadata,
2: RawBlobstoreConfig blobstore,
}
@ -275,6 +296,7 @@ struct RawBundle2ReplayParams {
1: optional bool preserve_raw_bundle2,
}
// DEPRECATED
struct RawShardedFilenodesParams {
1: string shard_map,
2: i32 shard_num,