-
Notifications
You must be signed in to change notification settings - Fork 14
Merge development (with our current Datawarehouse code) into the AWS branch.
#232
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
jgrantr
wants to merge
70
commits into
feature/aws-sdk-v3-again
Choose a base branch
from
development
base: feature/aws-sdk-v3-again
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
70 commits
Select commit
Hold shift + click to select a range
5cbce01
dwconnect - tuning, hashed sk, scd bypass
mscranton-CH e32db11
s3 load, sysdate
mscranton-CH b6b5b03
bump version
mscranton-CH 421867c
add back code removed erroneously
mscranton-CH 1badf24
add back incorrectly removed code
mscranton-CH b46e3a0
bug fixes, comments
mscranton-CH a3dd99e
GitHub action publish-postgres
mscranton-CH bea9996
move cd to correct spot (I think)
mscranton-CH 395b6d2
trying workflow things
mscranton-CH 2840aea
trying workflow things
mscranton-CH 2cfc109
trying workflow things
mscranton-CH 1e13340
trying workflow things
mscranton-CH f0a6977
trying workflow things
mscranton-CH 55d06c6
trying workflow things
mscranton-CH b83c005
trying workflow things
mscranton-CH abf2cb8
trying workflow things
mscranton-CH 1ce11aa
trying workflow things
mscranton-CH 7569376
trying workflow things
mscranton-CH b3d83f7
trying workflow things
mscranton-CH 98897fa
trying workflow things
mscranton-CH 229365b
trying workflow things
mscranton-CH 61f4104
fix for supported config check
mscranton-CH da87a09
seems a comment broke a SQL statement
mscranton-CH 1c1a973
more comments in SQL, probably should have remembered the character f…
mscranton-CH f3bdc92
Reverting to NPM for package registry
mscranton-CH 8cef900
add beta to version
mscranton-CH 9de767f
* bumped version
5e05797
ETL rework for high volume scaling
mscranton-CH 9a0dbd7
Merge branch 'redshift-load-optimization' of github.com:LeoPlatform/c…
mscranton-CH 2703950
Fix version after conflict
mscranton-CH 554a6be
moving audit date to proper location
mscranton-CH 76d0728
Various fixes and cleanup
mscranton-CH cec0732
Bump version
mscranton-CH 1ba3a40
etl fixes and version bump
mscranton-CH a71ce57
reverting uneeded changes
mscranton-CH d733d75
sortkey type handling and d_time fix
mscranton-CH d41d75b
change TIMEFORMAT to auto on copy command
c3adc4b
bump leo-connector-postgres version to 4.0.12-beta
c5e8fed
fix for SCD columns
mscranton-CH b5e6cdd
missed the package-lock
mscranton-CH e0a64f8
Fix for _deleted on fact tables
mscranton-CH d443802
fact fix and newline fix
mscranton-CH 6bf2587
package version bump
mscranton-CH 2ea9d69
Fixing bug with related to posting errors to a different queue when l…
czirker 8a74705
fix bad checkpointing
czirker c3f9811
Newline fix and version bump
mscranton-CH b7e095b
Merge branch 'redshift-load-optimization' of github.com:LeoPlatform/c…
mscranton-CH 4cb98bf
Add bug fix from development
mscranton-CH 87bd935
version bump
mscranton-CH 29091c0
Version bump again for leo-connector-common
mscranton-CH 96ed636
update schema management for hash keys
mscranton-CH d4ce694
Fixing postgress loader to pass along errors that occurred before the…
czirker 26051fe
increment postgres package version
czirker caf9e7d
RSTREAM-209 Fixing issue with sortKey when creating the stating table…
czirker 11f7f62
updated version to 4.0.21-beta
czirker 79e81c4
ES-2352 - bumped version # again
jgrantr 75eed1d
Merge pull request #224 from LeoPlatform/feature/s3-entity-table-loading
jgrantr e5d9c96
ES-2516 - reset deleted flag on update or insert
jgrantr 833d65d
ES-2516 - updating version tags
jgrantr 9063ae2
Merge branch 'development' into redshift-load-optimization
jgrantr c343531
Merge pull request #180 from LeoPlatform/redshift-load-optimization
jgrantr 5a9ebb5
Merge branch 'development' into feature/ES-2516-fix-deleted
jgrantr 6f3535a
ES-2516 - fix for new natural key loading
jgrantr 2d7c03e
Merge pull request #225 from LeoPlatform/feature/ES-2516-fix-deleted
jgrantr 516e252
ES-2516 - ran NPM install
jgrantr f40c904
ES-2516 - ensure we are setting _deleted to false when it is updated
jgrantr 90830af
ES-2516 - don't write deletes to the CSV file/staging table
jgrantr 6662c11
ES-2516 - updated version #'s
jgrantr 9c44258
ES-2516 - use new version of the common connector
jgrantr 1a4a4c8
Merge pull request #226 from LeoPlatform/feature/ES-2516-more-delete-…
jgrantr File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,33 @@ | ||
| # This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node | ||
| # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | ||
|
|
||
| name: Publish-Postgres | ||
|
|
||
| on: | ||
| release: | ||
| types: [published] | ||
| # branches: [ $default-branch ] | ||
|
|
||
| jobs: | ||
| publish-new-release: | ||
| runs-on: ubuntu-latest | ||
| defaults: | ||
| run: | ||
| working-directory: ./postgres | ||
| steps: | ||
| - uses: actions/checkout@v2 | ||
| - name: Node 12 | ||
| uses: actions/setup-node@v2 | ||
| with: | ||
| node-version: '12.x' | ||
| registry-url: 'https://npm.pkg.github.com' | ||
| scope: '@leoplatform' | ||
| - run: npm ci | ||
| - run: npm run build --if-present | ||
| # - run: npm run test #Nothing is implemented here currently so this is omitted | ||
| # - run: git config user.email "githubactions@commercehub.com" #skipping this for now since we don't have a servie account for LeoPlatform yet | ||
| - run: git config user.name "GitHub-Actions" | ||
| - run: npm version ${{ github.event.release.tag_name }} | ||
| - run: npm publish --access=public | ||
| env: | ||
| NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bug: Incorrect Case-Sensitive Property Check Breaks Error Stream Initialization
Same incorrect property check as above. The code checks
!errorStream.Writablebut should check!errorStream.writable(lowercase w). This will cause the error stream initialization logic to be executed every time handleFailedValidation is called, potentially creating multiple pipelines for the same error stream.