Please Sign In or Register to join the Community to see more content!

Unify Release 4.1.2

svelezsaffon
svelezsaffon Alumni Posts: 13
edited May 2022 in General

New Functionalities

Graph

  • New support for bigger graphs, we tested with 5 million nodes!
  • Graph node and Graph Edges data can now be exported into datasets/datasources.
    • These new datasets can be used as regular datasets, meaning they could be dragged into a pipeline canvas for more data contextualization.
    • How to export Graphs into datasets


GraphQl

Artifacts related to pipelines and datasets can now be queried with GraphQl. All of these changes are transparent to the user, meaning the functionality will remain the same until the user interacts directly with the endpoints.

Learn more about GraphQl here

Api documentation

  • Downloaded tool file will include the tool version, this will help users identify which version they are downloading.


Python SDK

  • Support for GraphQl queries, all pipelines and dataset artifacts are retrieved using graphql language and endpoint.
  • Write your own graphql query and use it directly in sdk.
    • Python SDK example: This small code snippet can run you graphql query in unify
org = OrgAdmin(cluster="CLUSTER_NAME")

builder = DatasetGrapql()

src = Sources(cluster=CLUSTER_NAME, org_id="####")

props.set_auth_token(token=org.auth_token(), cluster=CLUSTER_NAME)

query = "GRAPH QL QUERY <change to what you need>"

datasets = src.graph_ql_query(
    org_id="####",
    query=query
)

Release Fixes:

  • Graphs: Stability improvement during concurrent graph creation.
  • Security: auth token is now invalid after user logs out. This will make that the auth token cant be used after the user has terminated the Unify session.
  • Api Docs: Regression bug where user is unable to download tool from unify
Tagged: