Skip to content

Commit

Permalink
Adjust initial table placement
Browse files Browse the repository at this point in the history
  • Loading branch information
geoffxy committed May 3, 2024
1 parent 7be13d4 commit 9abba50
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,10 @@ def main():
new_placement[table.name] = [Engine.Aurora, Engine.Athena, Engine.Redshift]
if table.name == "telemetry":
new_placement[table.name] = [Engine.Athena]
if table.name == "embeddings" or table.name == "title":
if table.name == "title":
new_placement[table.name] = [Engine.Aurora, Engine.Athena]
if table.name == "embeddings":
new_placement[table.name] = [Engine.Aurora]
enum_blueprint.set_table_locations(new_placement)

# 6. Transition to the new blueprint.
Expand Down

0 comments on commit 9abba50

Please sign in to comment.