Skip to content

Commit

Permalink
update bucket names
Browse files Browse the repository at this point in the history
  • Loading branch information
eaypek-tfh committed Jan 27, 2025
1 parent 0992d33 commit 8aa66a2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion deploy/stage/smpcv2-0-stage/values-iris-mpc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ env:
value: "true"

- name: SMPC__DB_CHUNKS_BUCKET_NAME
value: "iris-mpc-db-exporter-store-node-0-stage-eu-north-1"
value: "iris-mpc-db-exporter-store-node-0-stage--eun1-az3--x-s3"

- name: SMPC__DB_CHUNKS_FOLDER_NAME
value: "even_odd_binary_output_16k"
Expand Down
2 changes: 1 addition & 1 deletion deploy/stage/smpcv2-1-stage/values-iris-mpc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ env:
value: "true"

- name: SMPC__DB_CHUNKS_BUCKET_NAME
value: "temp-iris-mpc-db-exporter-stage-1--eun1-az3--x-s3"
value: "iris-mpc-db-exporter-store-node-1-stage--eun1-az3--x-s3"

- name: SMPC__DB_CHUNKS_FOLDER_NAME
value: "even_odd_binary_output_16k"
Expand Down
2 changes: 1 addition & 1 deletion deploy/stage/smpcv2-2-stage/values-iris-mpc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ env:
value: "true"

- name: SMPC__DB_CHUNKS_BUCKET_NAME
value: "iris-mpc-db-exporter-store-node-2-stage-eu-north-1"
value: "iris-mpc-db-exporter-store-node-2-stage--eun1-az3--x-s3"

- name: SMPC__DB_CHUNKS_FOLDER_NAME
value: "even_odd_binary_output_16k"
Expand Down
4 changes: 2 additions & 2 deletions iris-mpc-common/src/config/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,9 @@ pub struct Config {
pub load_chunks_buffer_size: usize,

/// Percentage of the chunk size to page lock at each iteration
/// The first chunk will be waited to finish without loading anything
/// The rest of the chunks will be page locked in parallel to s3 import
/// Must be a positive integer between [1-100]
/// The first memory chunk will be page-locked before starting db & s3
/// importers
#[serde(default)]
pub page_lock_chunk_percentage: usize,
}
Expand Down
2 changes: 0 additions & 2 deletions iris-mpc-store/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -222,8 +222,6 @@ impl Store {
partition_streams.push(stream);
}

// `select_all` requires that all streams have the same Item type:
// which is `Result<StoredIris, eyre::Error>` now.
stream::select_all(partition_streams)
}

Expand Down

0 comments on commit 8aa66a2

Please sign in to comment.