This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: deploy service tar | |
on: | |
push: | |
branches: | |
- 'deploy/*' | |
jobs: | |
update: | |
name: Update target service Github deploy workflows | |
runs-on: ubuntu-latest |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ALTER TABLE your_table_name_here | |
ADD PARTITION (year='2017', month='*', day='*') | |
LOCATION 's3://your-alb-log-bucket/processed/AWSLogs/00000-change-with-your-account-id/elasticloadbalancing/us-east-1-change-with-your-region/2017/' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public IObservable<int> ObservableCounter(int count, int delay) | |
{ | |
return Observable.Range(0, count).Zip( | |
Observable.Interval(TimeSpan.FromMilliseconds(delay)), (item, _) => item); | |
} |