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

feat(SDK) Add java SDK for structuredProperty entity PATCH + CRUD examples #10823

Conversation

chriscollins3456
Copy link
Collaborator

@chriscollins3456 chriscollins3456 commented Jul 1, 2024

This PR tackles two main pieces in the Java SDK around structured properties:

  1. Adding a patch builder for the Structured Property entity as well as tests and examples
  2. Fixing the broken patch builder for the structuredProperties aspect on assets and adds tests and examples

So now you should be able to create structured properties and then assign/patch them on assets using the java SDK.

Checklist

  • The PR conforms to DataHub's Contributing Guideline (particularly Commit Message Format)
  • Links to related issues (if applicable)
  • Tests for the changes have been added/updated (if applicable)
  • Docs related to the changes have been added/updated (if applicable). If a new feature has been added a Usage Guide has been added for the same.
  • For any breaking change/potential downtime/deprecation/big changes an entry has been made in Updating DataHub

Summary by CodeRabbit

  • New Features

    • Introduced new structured property update functionalities for datasets.
    • Added classes and methods to define and upsert structured properties in DataHub.
  • Tests

    • Added new test methods to validate structured property definitions and updates.

These updates enhance the flexibility and capabilities of managing structured properties, providing users with robust options for handling complex data structures.

Copy link
Contributor

coderabbitai bot commented Jul 1, 2024

Walkthrough

This update improves the handling of structured properties in the DataHub project. It introduces new methods for setting and removing string and number properties in structured properties. It also expands the testing infrastructure and provides examples demonstrating how to update and upsert structured properties for various entities.

Changes

File Summary
.../StructuredPropertiesPatchBuilder.java Updated handling of structured properties with separate methods for number and string properties.
.../StructuredPropertyDefinitionPatchBuilder.java Added methods to set multiple attributes for structured property definitions.
.../PatchTest.java Added imports and two new test methods demonstrating structured property updates and definitions.
.../DatasetStructuredPropertiesUpdate.java New class demonstrating how to update dataset properties using the new structured properties logic.
.../StructuredPropertyUpsert.java New class showcasing how to define and upsert structured properties for various entities.

Poem

In DataHub's realm, where data gleams bright,
Structured properties gain new might,
With numbers and strings now apart,
Each property handled with care and heart.
Through tests and examples, clarity shines true,
For smoother data flows, thanks to this breakthrough.
🌟🌐🗃️

Tip

AI model upgrade

gpt-4o model for reviews and chat is now live

OpenAI claims that this model is better at understanding and generating code than the previous models. Please join our Discord Community to provide any feedback or to report any issues.


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

Share
Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (invoked as PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@github-actions github-actions bot added the ingestion PR or Issue related to the ingestion of metadata label Jul 1, 2024
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 4

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between f9d53b4 and b9db152.

Files selected for processing (5)
  • entity-registry/src/main/java/com/linkedin/metadata/aspect/patch/builder/StructuredPropertiesPatchBuilder.java (3 hunks)
  • entity-registry/src/main/java/com/linkedin/metadata/aspect/patch/builder/StructuredPropertyDefinitionPatchBuilder.java (1 hunks)
  • metadata-integration/java/datahub-client/src/test/java/datahub/client/patch/PatchTest.java (3 hunks)
  • metadata-integration/java/examples/src/main/java/io/datahubproject/examples/DatasetStructuredPropertiesUpdate.java (1 hunks)
  • metadata-integration/java/examples/src/main/java/io/datahubproject/examples/StructuredPropertyUpsert.java (1 hunks)
Additional comments not posted (14)
entity-registry/src/main/java/com/linkedin/metadata/aspect/patch/builder/StructuredPropertiesPatchBuilder.java (4)

Line range hint 19-34: LGTM!

The method correctly removes a structured property by its URN.


53-69: LGTM!

The method correctly sets a number property with a list of integer values.


90-106: LGTM!

The method correctly sets a string property with a list of string values.


Line range hint 137-145: LGTM!

The methods correctly return the aspect name and entity type.

entity-registry/src/main/java/com/linkedin/metadata/aspect/patch/builder/StructuredPropertyDefinitionPatchBuilder.java (6)

34-41: LGTM!

The method correctly sets the qualified name for a structured property.


43-50: LGTM!

The method correctly sets the display name for a structured property.


52-59: LGTM!

The method correctly sets the value type for a structured property.


61-75: LGTM!

The method correctly sets the type qualifier for a structured property.


77-92: LGTM!

The method correctly adds an allowed value for a structured property.


94-102: LGTM!

The method correctly sets the cardinality for a structured property.

metadata-integration/java/datahub-client/src/test/java/datahub/client/patch/PatchTest.java (4)

652-654: Verify the reason for ignoring the test.

The test method is marked with @Ignore. Ensure that this is intentional and not an oversight.


696-696: Ensure the test should be active.

The test method is not marked with @Ignore. Ensure that this is intentional and not an oversight.


697-718: LGTM! Ensure the correctness of the patch builder logic.

The logic for building the patch looks good. Verify that the StructuredPropertiesPatchBuilder is functioning as expected.


655-693: LGTM! Ensure the correctness of the patch builder logic.

The logic for building the patch looks good. Verify that the StructuredPropertyDefinitionPatchBuilder is functioning as expected.

Comment on lines +18 to +78
public static void main(String[] args)
throws IOException, ExecutionException, InterruptedException {

// Adding a structured property with a single string value
MetadataChangeProposal mcp1 =
new StructuredPropertiesPatchBuilder()
.urn(
UrnUtils.getUrn(
"urn:li:dataset:(urn:li:dataPlatform:hive,SampleCypressHiveDataset,PROD)"))
.setStringProperty(
UrnUtils.getUrn("urn:li:structuredProperty:io.acryl.privacy.retentionTime"), "30")
.build();

String token = "";
RestEmitter emitter = RestEmitter.create(b -> b.server("http://localhost:8080").token(token));
Future<MetadataWriteResponse> response1 = emitter.emit(mcp1, null);
System.out.println(response1.get().getResponseContent());

// Adding a structured property with a list of string values
List<String> values = new ArrayList<>();
values.add("30");
values.add("90");
MetadataChangeProposal mcp2 =
new StructuredPropertiesPatchBuilder()
.urn(
UrnUtils.getUrn(
"urn:li:dataset:(urn:li:dataPlatform:hive,SampleCypressHiveDataset,PROD)"))
.setStringProperty(
UrnUtils.getUrn("urn:li:structuredProperty:io.acryl.privacy.retentionTime"), values)
.build();

Future<MetadataWriteResponse> response2 = emitter.emit(mcp2, null);
System.out.println(response2.get().getResponseContent());

// Adding a structured property with a single number value
MetadataChangeProposal mcp3 =
new StructuredPropertiesPatchBuilder()
.urn(
UrnUtils.getUrn(
"urn:li:dataset:(urn:li:dataPlatform:hive,SampleCypressHiveDataset,PROD)"))
.setNumberProperty(
UrnUtils.getUrn("urn:li:structuredProperty:io.acryl.dataManagement.replicationSLA"),
3456)
.build();

Future<MetadataWriteResponse> response3 = emitter.emit(mcp3, null);
System.out.println(response3.get().getResponseContent());

// Removing a structured property from a dataset
MetadataChangeProposal mcp4 =
new StructuredPropertiesPatchBuilder()
.urn(
UrnUtils.getUrn(
"urn:li:dataset:(urn:li:dataPlatform:hive,SampleCypressHiveDataset,PROD)"))
.removeProperty(
UrnUtils.getUrn("urn:li:structuredProperty:io.acryl.dataManagement.replicationSLA"))
.build();

Future<MetadataWriteResponse> response4 = emitter.emit(mcp4, null);
System.out.println(response4.get().getResponseContent());
}
Copy link
Contributor

Choose a reason for hiding this comment

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

Add error handling and logging.

The main method lacks error handling and logging. Adding these will enhance maintainability and debugging.

public static void main(String[] args)
    throws IOException, ExecutionException, InterruptedException {
  try {
    // Adding a structured property with a single string value
    MetadataChangeProposal mcp1 =
        new StructuredPropertiesPatchBuilder()
            .urn(
                UrnUtils.getUrn(
                    "urn:li:dataset:(urn:li:dataPlatform:hive,SampleCypressHiveDataset,PROD)"))
            .setStringProperty(
                UrnUtils.getUrn("urn:li:structuredProperty:io.acryl.privacy.retentionTime"), "30")
            .build();

    String token = "";
    RestEmitter emitter = RestEmitter.create(b -> b.server("http://localhost:8080").token(token));
    Future<MetadataWriteResponse> response1 = emitter.emit(mcp1, null);
    System.out.println(response1.get().getResponseContent());

    // Adding a structured property with a list of string values
    List<String> values = new ArrayList<>();
    values.add("30");
    values.add("90");
    MetadataChangeProposal mcp2 =
        new StructuredPropertiesPatchBuilder()
            .urn(
                UrnUtils.getUrn(
                    "urn:li:dataset:(urn:li:dataPlatform:hive,SampleCypressHiveDataset,PROD)"))
            .setStringProperty(
                UrnUtils.getUrn("urn:li:structuredProperty:io.acryl.privacy.retentionTime"), values)
            .build();

    Future<MetadataWriteResponse> response2 = emitter.emit(mcp2, null);
    System.out.println(response2.get().getResponseContent());

    // Adding a structured property with a single number value
    MetadataChangeProposal mcp3 =
        new StructuredPropertiesPatchBuilder()
            .urn(
                UrnUtils.getUrn(
                    "urn:li:dataset:(urn:li:dataPlatform:hive,SampleCypressHiveDataset,PROD)"))
            .setNumberProperty(
                UrnUtils.getUrn("urn:li:structuredProperty:io.acryl.dataManagement.replicationSLA"),
                3456)
            .build();

    Future<MetadataWriteResponse> response3 = emitter.emit(mcp3, null);
    System.out.println(response3.get().getResponseContent());

    // Removing a structured property from a dataset
    MetadataChangeProposal mcp4 =
        new StructuredPropertiesPatchBuilder()
            .urn(
                UrnUtils.getUrn(
                    "urn:li:dataset:(urn:li:dataPlatform:hive,SampleCypressHiveDataset,PROD)"))
            .removeProperty(
                UrnUtils.getUrn("urn:li:structuredProperty:io.acryl.dataManagement.replicationSLA"))
            .build();

    Future<MetadataWriteResponse> response4 = emitter.emit(mcp4, null);
    System.out.println(response4.get().getResponseContent());
  } catch (Exception e) {
    System.err.println("An error occurred: " + e.getMessage());
    e.printStackTrace();
  }
}

Comment on lines +36 to +49
public StructuredPropertiesPatchBuilder setNumberProperty(
@Nonnull Urn propertyUrn, @Nullable Integer propertyValue) {
ValueNode propertyValueNode = instance.numberNode((Integer) propertyValue);
ObjectNode value = instance.objectNode();
value.put(URN_KEY, propertyUrn.toString());
ObjectNode newProperty = instance.objectNode();
newProperty.put(URN_KEY, propertyUrn.toString());

ArrayNode valuesNode = instance.arrayNode();
ObjectNode propertyValueNode = instance.objectNode();
propertyValueNode.set("double", instance.numberNode(propertyValue));
valuesNode.add(propertyValueNode);
newProperty.set(VALUES_KEY, valuesNode);

pathValues.add(
ImmutableTriple.of(
PatchOperationType.ADD.getValue(), BASE_PATH + "/" + propertyUrn, propertyValueNode));
PatchOperationType.ADD.getValue(), BASE_PATH + "/" + propertyUrn, newProperty));
Copy link
Contributor

Choose a reason for hiding this comment

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

Add null check for propertyValue.

The method can be improved by adding a null check for propertyValue to handle potential null values gracefully.

public StructuredPropertiesPatchBuilder setNumberProperty(
    @Nonnull Urn propertyUrn, @Nullable Integer propertyValue) {
  ObjectNode newProperty = instance.objectNode();
  newProperty.put(URN_KEY, propertyUrn.toString());

  ArrayNode valuesNode = instance.arrayNode();
  if (propertyValue != null) {
    ObjectNode propertyValueNode = instance.objectNode();
    propertyValueNode.set("double", instance.numberNode(propertyValue));
    valuesNode.add(propertyValueNode);
  }
  newProperty.set(VALUES_KEY, valuesNode);

  pathValues.add(
      ImmutableTriple.of(
          PatchOperationType.ADD.getValue(), BASE_PATH + "/" + propertyUrn, newProperty));
  return this;
}

Comment on lines +73 to +86
public StructuredPropertiesPatchBuilder setStringProperty(
@Nonnull Urn propertyUrn, @Nullable String propertyValue) {
ObjectNode newProperty = instance.objectNode();
newProperty.put(URN_KEY, propertyUrn.toString());

ArrayNode valuesNode = instance.arrayNode();
ObjectNode propertyValueNode = instance.objectNode();
propertyValueNode.set("string", instance.textNode(propertyValue));
valuesNode.add(propertyValueNode);
newProperty.set(VALUES_KEY, valuesNode);

pathValues.add(
ImmutableTriple.of(
PatchOperationType.ADD.getValue(),
BASE_PATH + "/" + propertyUrn + "/" + String.valueOf(propertyValue),
propertyValueNode));
PatchOperationType.ADD.getValue(), BASE_PATH + "/" + propertyUrn, newProperty));
Copy link
Contributor

Choose a reason for hiding this comment

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

Add null check for propertyValue.

The method can be improved by adding a null check for propertyValue to handle potential null values gracefully.

public StructuredPropertiesPatchBuilder setStringProperty(
    @Nonnull Urn propertyUrn, @Nullable String propertyValue) {
  ObjectNode newProperty = instance.objectNode();
  newProperty.put(URN_KEY, propertyUrn.toString());

  ArrayNode valuesNode = instance.arrayNode();
  if (propertyValue != null) {
    ObjectNode propertyValueNode = instance.objectNode();
    propertyValueNode.set("string", instance.textNode(propertyValue));
    valuesNode.add(propertyValueNode);
  }
  newProperty.set(VALUES_KEY, valuesNode);

  pathValues.add(
      ImmutableTriple.of(
          PatchOperationType.ADD.getValue(), BASE_PATH + "/" + propertyUrn, newProperty));
  return this;
}

Comment on lines +21 to +101
public static void main(String[] args)
throws IOException, ExecutionException, InterruptedException {
// open ended string structured property on datasets and dataFlows
MetadataChangeProposal mcp1 =
new StructuredPropertyDefinitionPatchBuilder()
.urn(
UrnUtils.getUrn(
"urn:li:structuredProperty:testString")) // use existing urn for update, new urn
// for new property
.setQualifiedName("io.acryl.testString")
.setDisplayName("Open Ended String")
.setValueType("urn:li:dataType:datahub.string")
.setCardinality(PropertyCardinality.SINGLE)
.addEntityType("urn:li:entityType:datahub.dataset")
.addEntityType("urn:li:entityType:datahub.dataFlow")
.setDescription("test description for open ended string")
.setImmutable(true)
.build();

String token = "";
RestEmitter emitter = RestEmitter.create(b -> b.server("http://localhost:8080").token(token));
Future<MetadataWriteResponse> response1 = emitter.emit(mcp1, null);
System.out.println(response1.get().getResponseContent());

// Next, let's make a property that allows for multiple datahub entity urns as values
// This example property could be used to reference other users or groups in datahub
StringArrayMap typeQualifier = new StringArrayMap();
typeQualifier.put(
"allowedTypes",
new StringArray(
"urn:li:entityType:datahub.corpuser", "urn:li:entityType:datahub.corpGroup"));

MetadataChangeProposal mcp2 =
new StructuredPropertyDefinitionPatchBuilder()
.urn(UrnUtils.getUrn("urn:li:structuredProperty:dataSteward"))
.setQualifiedName("io.acryl.dataManagement.dataSteward")
.setDisplayName("Data Steward")
.setValueType("urn:li:dataType:datahub.urn")
.setTypeQualifier(typeQualifier)
.setCardinality(PropertyCardinality.MULTIPLE)
.addEntityType("urn:li:entityType:datahub.dataset")
.setDescription(
"The data stewards of this asset are in charge of ensuring data cleanliness and governance")
.setImmutable(true)
.build();

Future<MetadataWriteResponse> response2 = emitter.emit(mcp2, null);
System.out.println(response2.get().getResponseContent());

// Finally, let's make a single select number property with a few allowed options
PropertyValue propertyValue1 = new PropertyValue();
PrimitivePropertyValue value1 = new PrimitivePropertyValue();
value1.setDouble(30.0);
propertyValue1.setDescription(
"30 days, usually reserved for datasets that are ephemeral and contain pii");
propertyValue1.setValue(value1);
PropertyValue propertyValue2 = new PropertyValue();
PrimitivePropertyValue value2 = new PrimitivePropertyValue();
value2.setDouble(90.0);
propertyValue2.setDescription(
"Use this for datasets that drive monthly reporting but contain pii");
propertyValue2.setValue(value2);

MetadataChangeProposal mcp3 =
new StructuredPropertyDefinitionPatchBuilder()
.urn(UrnUtils.getUrn("urn:li:structuredProperty:replicationSLA"))
.setQualifiedName("io.acryl.dataManagement.replicationSLA")
.setDisplayName("Replication SLA")
.setValueType("urn:li:dataType:datahub.string")
.addAllowedValue(propertyValue1)
.addAllowedValue(propertyValue2)
.setCardinality(PropertyCardinality.SINGLE)
.addEntityType("urn:li:entityType:datahub.dataset")
.setDescription(
"SLA for how long data can be delayed before replicating to the destination cluster")
.setImmutable(false)
.build();

Future<MetadataWriteResponse> response3 = emitter.emit(mcp3, null);
System.out.println(response3.get().getResponseContent());
}
Copy link
Contributor

Choose a reason for hiding this comment

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

Add error handling and logging.

The main method lacks error handling and logging. Adding these will enhance maintainability and debugging.

public static void main(String[] args)
    throws IOException, ExecutionException, InterruptedException {
  try {
    // open ended string structured property on datasets and dataFlows
    MetadataChangeProposal mcp1 =
        new StructuredPropertyDefinitionPatchBuilder()
            .urn(
                UrnUtils.getUrn(
                    "urn:li:structuredProperty:testString")) // use existing urn for update, new urn
            // for new property
            .setQualifiedName("io.acryl.testString")
            .setDisplayName("Open Ended String")
            .setValueType("urn:li:dataType:datahub.string")
            .setCardinality(PropertyCardinality.SINGLE)
            .addEntityType("urn:li:entityType:datahub.dataset")
            .addEntityType("urn:li:entityType:datahub.dataFlow")
            .setDescription("test description for open ended string")
            .setImmutable(true)
            .build();

    String token = "";
    RestEmitter emitter = RestEmitter.create(b -> b.server("http://localhost:8080").token(token));
    Future<MetadataWriteResponse> response1 = emitter.emit(mcp1, null);
    System.out.println(response1.get().getResponseContent());

    // Next, let's make a property that allows for multiple datahub entity urns as values
    // This example property could be used to reference other users or groups in datahub
    StringArrayMap typeQualifier = new StringArrayMap();
    typeQualifier.put(
        "allowedTypes",
        new StringArray(
            "urn:li:entityType:datahub.corpuser", "urn:li:entityType:datahub.corpGroup"));

    MetadataChangeProposal mcp2 =
        new StructuredPropertyDefinitionPatchBuilder()
            .urn(UrnUtils.getUrn("urn:li:structuredProperty:dataSteward"))
            .setQualifiedName("io.acryl.dataManagement.dataSteward")
            .setDisplayName("Data Steward")
            .setValueType("urn:li:dataType:datahub.urn")
            .setTypeQualifier(typeQualifier)
            .setCardinality(PropertyCardinality.MULTIPLE)
            .addEntityType("urn:li:entityType:datahub.dataset")
            .setDescription(
                "The data stewards of this asset are in charge of ensuring data cleanliness and governance")
            .setImmutable(true)
            .build();

    Future<MetadataWriteResponse> response2 = emitter.emit(mcp2, null);
    System.out.println(response2.get().getResponseContent());

    // Finally, let's make a single select number property with a few allowed options
    PropertyValue propertyValue1 = new PropertyValue();
    PrimitivePropertyValue value1 = new PrimitivePropertyValue();
    value1.setDouble(30.0);
    propertyValue1.setDescription(
        "30 days, usually reserved for datasets that are ephemeral and contain pii");
    propertyValue1.setValue(value1);
    PropertyValue propertyValue2 = new PropertyValue();
    PrimitivePropertyValue value2 = new PrimitivePropertyValue();
    value2.setDouble(90.0);
    propertyValue2.setDescription(
        "Use this for datasets that drive monthly reporting but contain pii");
    propertyValue2.setValue(value2);

    MetadataChangeProposal mcp3 =
        new StructuredPropertyDefinitionPatchBuilder()
            .urn(UrnUtils.getUrn("urn:li:structuredProperty:replicationSLA"))
            .setQualifiedName("io.acryl.dataManagement.replicationSLA")
            .setDisplayName("Replication SLA")
            .setValueType("urn:li:dataType:datahub.string")
            .addAllowedValue(propertyValue1)
            .addAllowedValue(propertyValue2)
            .setCardinality(PropertyCardinality.SINGLE)
            .addEntityType("urn:li:entityType:datahub.dataset")
            .setDescription(
                "SLA for how long data can be delayed before replicating to the destination cluster")
            .setImmutable(false)
            .build();

    Future<MetadataWriteResponse> response3 = emitter.emit(mcp3, null);
    System.out.println(response3.get().getResponseContent());
  } catch (Exception e) {
    System.err.println("An error occurred: " + e.getMessage());
    e.printStackTrace();
  }
}

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 2

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between b9db152 and aec40e2.

Files selected for processing (1)
  • metadata-integration/java/datahub-client/src/test/java/datahub/client/patch/PatchTest.java (4 hunks)
Additional comments not posted (1)
metadata-integration/java/datahub-client/src/test/java/datahub/client/patch/PatchTest.java (1)

20-21: Imports are necessary and correctly used.

The added imports for StringArray, StringArrayMap, StructuredPropertiesPatchBuilder, StructuredPropertyDefinitionPatchBuilder, PrimitivePropertyValue, PropertyCardinality, and PropertyValue are required and correctly used in the newly added tests.

Also applies to: 35-36, 40-42

Comment on lines 743 to 766
@Test
@Ignore
public void testLocalStructuredPropertiesUpdate() {
try {
MetadataChangeProposal mcp =
new StructuredPropertiesPatchBuilder()
.urn(
UrnUtils.getUrn(
"urn:li:dataset:(urn:li:dataPlatform:hive,SampleCypressHiveDataset,PROD)"))
.setNumberProperty(
UrnUtils.getUrn(
"urn:li:structuredProperty:io.acryl.dataManagement.replicationSLA"),
3456)
.build();

String token = "";
RestEmitter emitter = RestEmitter.create(b -> b.server("http://localhost:8080").token(token));
Future<MetadataWriteResponse> response = emitter.emit(mcp, null);
System.out.println(response.get().getResponseContent());

} catch (IOException | ExecutionException | InterruptedException e) {
System.out.println(Arrays.asList(e.getStackTrace()));
}
}
Copy link
Contributor

Choose a reason for hiding this comment

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

Ensure proper handling of RestEmitter resource and token usage.

The RestEmitter resource should be properly closed after use to avoid potential resource leaks. Additionally, the token usage should be verified for correctness.

    try (RestEmitter emitter = RestEmitter.create(b -> b.server("http://localhost:8080").token(token))) {
        ...
    } catch (IOException | ExecutionException | InterruptedException e) {
        System.out.println(Arrays.asList(e.getStackTrace()));
    }
Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
@Test
@Ignore
public void testLocalStructuredPropertiesUpdate() {
try {
MetadataChangeProposal mcp =
new StructuredPropertiesPatchBuilder()
.urn(
UrnUtils.getUrn(
"urn:li:dataset:(urn:li:dataPlatform:hive,SampleCypressHiveDataset,PROD)"))
.setNumberProperty(
UrnUtils.getUrn(
"urn:li:structuredProperty:io.acryl.dataManagement.replicationSLA"),
3456)
.build();
String token = "";
RestEmitter emitter = RestEmitter.create(b -> b.server("http://localhost:8080").token(token));
Future<MetadataWriteResponse> response = emitter.emit(mcp, null);
System.out.println(response.get().getResponseContent());
} catch (IOException | ExecutionException | InterruptedException e) {
System.out.println(Arrays.asList(e.getStackTrace()));
}
}
@Test
@Ignore
public void testLocalStructuredPropertiesUpdate() {
try {
MetadataChangeProposal mcp =
new StructuredPropertiesPatchBuilder()
.urn(
UrnUtils.getUrn(
"urn:li:dataset:(urn:li:dataPlatform:hive,SampleCypressHiveDataset,PROD)"))
.setNumberProperty(
UrnUtils.getUrn(
"urn:li:structuredProperty:io.acryl.dataManagement.replicationSLA"),
3456)
.build();
String token = "";
try (RestEmitter emitter = RestEmitter.create(b -> b.server("http://localhost:8080").token(token))) {
Future<MetadataWriteResponse> response = emitter.emit(mcp, null);
System.out.println(response.get().getResponseContent());
}
} catch (IOException | ExecutionException | InterruptedException e) {
System.out.println(Arrays.asList(e.getStackTrace()));
}
}

Comment on lines +657 to +698
@Test
@Ignore
public void testLocalStructuredPropertyDefinitionAdd() {
RestEmitter restEmitter = new RestEmitter(RestEmitterConfig.builder().build());
try {
StringArrayMap typeQualifier = new StringArrayMap();
typeQualifier.put(
"allowedTypes",
new StringArray(
"urn:li:entityType:datahub.corpuser", "urn:li:entityType:datahub.corpGroup"));
PropertyValue propertyValue1 = new PropertyValue();
PrimitivePropertyValue value1 = new PrimitivePropertyValue();
value1.setString("test value 1");
propertyValue1.setValue(value1);
PropertyValue propertyValue2 = new PropertyValue();
PrimitivePropertyValue value2 = new PrimitivePropertyValue();
value2.setString("test value 2");
propertyValue2.setValue(value2);

MetadataChangeProposal structuredPropertyDefinitionPatch =
new StructuredPropertyDefinitionPatchBuilder()
.urn(UrnUtils.getUrn("urn:li:structuredProperty:123456"))
.setQualifiedName("test.testing.123")
.setDisplayName("Test Display Name")
.setValueType("urn:li:dataType:datahub.urn")
.setTypeQualifier(typeQualifier)
.addAllowedValue(propertyValue1)
.addAllowedValue(propertyValue2)
.setCardinality(PropertyCardinality.MULTIPLE)
.addEntityType("urn:li:entityType:datahub.dataFlow")
.setDescription("test description")
.setImmutable(true)
.build();

Future<MetadataWriteResponse> response = restEmitter.emit(structuredPropertyDefinitionPatch);

System.out.println(response.get().getResponseContent());

} catch (IOException | ExecutionException | InterruptedException e) {
System.out.println(Arrays.asList(e.getStackTrace()));
}
}
Copy link
Contributor

Choose a reason for hiding this comment

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

Ensure proper handling of RestEmitter resource.

The RestEmitter resource should be properly closed after use to avoid potential resource leaks.

    try (RestEmitter restEmitter = new RestEmitter(RestEmitterConfig.builder().build())) {
        ...
    } catch (IOException | ExecutionException | InterruptedException e) {
        System.out.println(Arrays.asList(e.getStackTrace()));
    }
Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
@Test
@Ignore
public void testLocalStructuredPropertyDefinitionAdd() {
RestEmitter restEmitter = new RestEmitter(RestEmitterConfig.builder().build());
try {
StringArrayMap typeQualifier = new StringArrayMap();
typeQualifier.put(
"allowedTypes",
new StringArray(
"urn:li:entityType:datahub.corpuser", "urn:li:entityType:datahub.corpGroup"));
PropertyValue propertyValue1 = new PropertyValue();
PrimitivePropertyValue value1 = new PrimitivePropertyValue();
value1.setString("test value 1");
propertyValue1.setValue(value1);
PropertyValue propertyValue2 = new PropertyValue();
PrimitivePropertyValue value2 = new PrimitivePropertyValue();
value2.setString("test value 2");
propertyValue2.setValue(value2);
MetadataChangeProposal structuredPropertyDefinitionPatch =
new StructuredPropertyDefinitionPatchBuilder()
.urn(UrnUtils.getUrn("urn:li:structuredProperty:123456"))
.setQualifiedName("test.testing.123")
.setDisplayName("Test Display Name")
.setValueType("urn:li:dataType:datahub.urn")
.setTypeQualifier(typeQualifier)
.addAllowedValue(propertyValue1)
.addAllowedValue(propertyValue2)
.setCardinality(PropertyCardinality.MULTIPLE)
.addEntityType("urn:li:entityType:datahub.dataFlow")
.setDescription("test description")
.setImmutable(true)
.build();
Future<MetadataWriteResponse> response = restEmitter.emit(structuredPropertyDefinitionPatch);
System.out.println(response.get().getResponseContent());
} catch (IOException | ExecutionException | InterruptedException e) {
System.out.println(Arrays.asList(e.getStackTrace()));
}
}
@Test
@Ignore
public void testLocalStructuredPropertyDefinitionAdd() {
try (RestEmitter restEmitter = new RestEmitter(RestEmitterConfig.builder().build())) {
StringArrayMap typeQualifier = new StringArrayMap();
typeQualifier.put(
"allowedTypes",
new StringArray(
"urn:li:entityType:datahub.corpuser", "urn:li:entityType:datahub.corpGroup"));
PropertyValue propertyValue1 = new PropertyValue();
PrimitivePropertyValue value1 = new PrimitivePropertyValue();
value1.setString("test value 1");
propertyValue1.setValue(value1);
PropertyValue propertyValue2 = new PropertyValue();
PrimitivePropertyValue value2 = new PrimitivePropertyValue();
value2.setString("test value 2");
propertyValue2.setValue(value2);
MetadataChangeProposal structuredPropertyDefinitionPatch =
new StructuredPropertyDefinitionPatchBuilder()
.urn(UrnUtils.getUrn("urn:li:structuredProperty:123456"))
.setQualifiedName("test.testing.123")
.setDisplayName("Test Display Name")
.setValueType("urn:li:dataType:datahub.urn")
.setTypeQualifier(typeQualifier)
.addAllowedValue(propertyValue1)
.addAllowedValue(propertyValue2)
.setCardinality(PropertyCardinality.MULTIPLE)
.addEntityType("urn:li:entityType:datahub.dataFlow")
.setDescription("test description")
.setImmutable(true)
.build();
Future<MetadataWriteResponse> response = restEmitter.emit(structuredPropertyDefinitionPatch);
System.out.println(response.get().getResponseContent());
} catch (IOException | ExecutionException | InterruptedException e) {
System.out.println(Arrays.asList(e.getStackTrace()));
}
}

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 0

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between aec40e2 and 090912f.

Files selected for processing (1)
  • metadata-integration/java/datahub-client/src/test/java/datahub/client/patch/PatchTest.java (4 hunks)
Files skipped from review as they are similar to previous changes (1)
  • metadata-integration/java/datahub-client/src/test/java/datahub/client/patch/PatchTest.java

@chriscollins3456 chriscollins3456 merged commit a7f4b71 into datahub-project:master Jul 2, 2024
35 of 37 checks passed
aviv-julienjehannet pushed a commit to aviv-julienjehannet/datahub that referenced this pull request Jul 17, 2024
This pull request was closed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
ingestion PR or Issue related to the ingestion of metadata
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants