Skip to content

Commit

Permalink
fix: change hourly partition start time (#24)
Browse files Browse the repository at this point in the history
**Motivation:**

Roll forward the hourly partition start datetime to work around the 4k
partition limit in dagster cloud
  • Loading branch information
scottincrypto committed Oct 2, 2023
1 parent 59e7ce6 commit 1c00114
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aave_data/assets/protocol/protocol_hourly_data_lake.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@

INITIAL_RETRY = 0.01 #seconds
MAX_RETRIES = 10
HOURLY_PARTITION_START_DATE=datetime(2023,4,15,0,0,0, tzinfo=timezone.utc)
HOURLY_PARTITION_START_DATE=datetime(2023,9,28,0,0,0, tzinfo=timezone.utc)

market_hour_multipartition = MultiPartitionsDefinition(
{
Expand Down

0 comments on commit 1c00114

Please sign in to comment.