Skip to content
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

🐛 Destination Snowflake SQL compilation error #9006

Merged

Conversation

VitaliiMaltsev
Copy link
Contributor

@VitaliiMaltsev VitaliiMaltsev commented Dec 21, 2021

What

Syncing Google Analytics <> Snowflake and getting error:

35mdestination�[0m - 2021-12-16 19:33:49 ERROR LineGobbler(voidCall):82 - Exception in thread "main" net.snowflake.client.jdbc.SnowflakeSQLException: SQL compilation error:
�[35mdestination�[0m - 2021-12-16 19:33:49 ERROR LineGobbler(voidCall):82 - syntax error line 1 at position 39 unexpected 'Pages'.

How

Updated jdbc connection parameter schema to follow Snowflake naming convention

Recommended reading order

  1. x.java
  2. y.python

🚨 User Impact 🚨

There should be no visible impact on users

Pre-merge Checklist

Expand the relevant checklist and delete the others.

New Connector

Community member or Airbyter

  • Community member? Grant edit access to maintainers (instructions)
  • Secrets in the connector's spec are annotated with airbyte_secret
  • Unit & integration tests added and passing. Community members, please provide proof of success locally e.g: screenshot or copy-paste unit, integration, and acceptance test output. To run acceptance tests for a Python connector, follow instructions in the README. For java connectors run ./gradlew :airbyte-integrations:connectors:<name>:integrationTest.
  • Code reviews completed
  • Documentation updated
    • Connector's README.md
    • Connector's bootstrap.md. See description and examples
    • docs/SUMMARY.md
    • docs/integrations/<source or destination>/<name>.md including changelog. See changelog example
    • docs/integrations/README.md
    • airbyte-integrations/builds.md
  • PR name follows PR naming conventions

Airbyter

If this is a community PR, the Airbyte engineer reviewing this PR is responsible for the below items.

  • Create a non-forked branch based on this PR and test the below items on it
  • Build is successful
  • Credentials added to Github CI. Instructions.
  • /test connector=connectors/<name> command is passing.
  • New Connector version released on Dockerhub by running the /publish command described here
  • After the connector is published, connector added to connector index as described here
  • Seed specs have been re-generated by building the platform and committing the changes to the seed spec files, as described here

Updating a connector

Community member or Airbyter

  • Grant edit access to maintainers (instructions)
  • Secrets in the connector's spec are annotated with airbyte_secret
  • Unit & integration tests added and passing. Community members, please provide proof of success locally e.g: screenshot or copy-paste unit, integration, and acceptance test output. To run acceptance tests for a Python connector, follow instructions in the README. For java connectors run ./gradlew :airbyte-integrations:connectors:<name>:integrationTest.
  • Code reviews completed
  • Documentation updated
    • Connector's README.md
    • Connector's bootstrap.md. See description and examples
    • Changelog updated in docs/integrations/<source or destination>/<name>.md including changelog. See changelog example
  • PR name follows PR naming conventions

Airbyter

If this is a community PR, the Airbyte engineer reviewing this PR is responsible for the below items.

  • Create a non-forked branch based on this PR and test the below items on it
  • Build is successful
  • Credentials added to Github CI. Instructions.
  • /test connector=connectors/<name> command is passing.
  • New Connector version released on Dockerhub by running the /publish command described here
  • After the new connector version is published, connector version bumped in the seed directory as described here
  • Seed specs have been re-generated by building the platform and committing the changes to the seed spec files, as described here

Connector Generator

  • Issue acceptance criteria met
  • PR name follows PR naming conventions
  • If adding a new generator, add it to the list of scaffold modules being tested
  • The generator test modules (all connectors with -scaffold in their name) have been updated with the latest scaffold by running ./gradlew :airbyte-integrations:connector-templates:generator:testScaffoldTemplates then checking in your changes
  • Documentation which references the generator is updated as needed.

@CLAassistant
Copy link

CLA assistant check
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you sign our Contributor License Agreement before we can accept your contribution.


vmaltsev seems not to be a GitHub user. You need a GitHub account to be able to sign the CLA. If you have already a GitHub account, please add the email address used for this commit to your account.
You have signed the CLA already but the status is still pending? Let us recheck it.

@github-actions github-actions bot added the area/connectors Connector related issues label Dec 21, 2021
@VitaliiMaltsev
Copy link
Contributor Author

VitaliiMaltsev commented Dec 21, 2021

/test connector=connectors/destination-snowflake

🕑 connectors/destination-snowflake https://github.com/airbytehq/airbyte/actions/runs/1607788082
✅ connectors/destination-snowflake https://github.com/airbytehq/airbyte/actions/runs/1607788082
Python tests coverage:

	 ---------- coverage: platform linux, python 3.8.10-final-0 -----------
	 Name                                                              Stmts   Miss  Cover
	 -------------------------------------------------------------------------------------
	 main_dev_transform_catalog.py                                         3      3     0%
	 main_dev_transform_config.py                                          3      3     0%
	 normalization/__init__.py                                             4      0   100%
	 normalization/destination_type.py                                    13      0   100%
	 normalization/transform_catalog/__init__.py                           2      0   100%
	 normalization/transform_catalog/catalog_processor.py                143     77    46%
	 normalization/transform_catalog/destination_name_transformer.py     124      6    95%
	 normalization/transform_catalog/reserved_keywords.py                 13      0   100%
	 normalization/transform_catalog/stream_processor.py                 494    313    37%
	 normalization/transform_catalog/table_name_registry.py              174     34    80%
	 normalization/transform_catalog/transform.py                         45     26    42%
	 normalization/transform_catalog/utils.py                             33      7    79%
	 normalization/transform_config/__init__.py                            2      0   100%
	 normalization/transform_config/transform.py                         146     32    78%
	 -------------------------------------------------------------------------------------
	 TOTAL                                                              1199    501    58%

@jrhizor jrhizor temporarily deployed to more-secrets December 21, 2021 16:52 Inactive
Copy link
Contributor

@edgao edgao left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can you add something to the documentation (or spec.json) saying that this transformation will happen automatically? other than that, this looks good to me

@VitaliiMaltsev
Copy link
Contributor Author

can you add something to the documentation (or spec.json) saying that this transformation will happen automatically? other than that, this looks good to me

updated spec.json

@VitaliiMaltsev VitaliiMaltsev temporarily deployed to more-secrets December 21, 2021 17:48 Inactive
@github-actions github-actions bot added the area/documentation Improvements or additions to documentation label Dec 21, 2021
@VitaliiMaltsev VitaliiMaltsev temporarily deployed to more-secrets December 21, 2021 18:20 Inactive
@VitaliiMaltsev
Copy link
Contributor Author

VitaliiMaltsev commented Dec 21, 2021

/publish connector=connectors/destination-snowflake

🕑 connectors/destination-snowflake https://github.com/airbytehq/airbyte/actions/runs/1608115451
✅ connectors/destination-snowflake https://github.com/airbytehq/airbyte/actions/runs/1608115451

@jrhizor jrhizor temporarily deployed to more-secrets December 21, 2021 18:22 Inactive
@VitaliiMaltsev VitaliiMaltsev merged commit 287cdb5 into master Dec 21, 2021
@VitaliiMaltsev VitaliiMaltsev deleted the vmaltsev/destination-snowflake-update-schema-naming branch December 21, 2021 19:32
@@ -32,7 +32,7 @@ public static Connection getConnection(final JsonNode config) throws SQLExceptio
properties.put("warehouse", config.get("warehouse").asText());
properties.put("database", config.get("database").asText());
properties.put("role", config.get("role").asText());
properties.put("schema", config.get("schema").asText());
properties.put("schema", nameTransformer.getIdentifier(config.get("schema").asText()));
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@edgao this is a good candidate for the testing ticket

@edgao
Copy link
Contributor

edgao commented Dec 22, 2021

@VitaliiMaltsev sorry, missed this in my review - can you add a unit test to prevent regression? It'll probably require mocking the static method DriverManager.getConnection (add testImplementation "org.mockito:mockito-inline:4.1.0" to the build.gradle + use Mockito.mockStatic)

@VitaliiMaltsev
Copy link
Contributor Author

@VitaliiMaltsev sorry, missed this in my review - can you add a unit test to prevent regression? It'll probably require mocking the static method DriverManager.getConnection (add testImplementation "org.mockito:mockito-inline:4.1.0" to the build.gradle + use Mockito.mockStatic)

@edgao i think that connection mocking is not enough so i created integration test for more realistic test scenario https://github.com/airbytehq/airbyte/pull/9065/files . Please review

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

6 participants