Building critical data products? Sign up for our upcoming guide
Reduce time to resolution of data issues and incidents thanks to relevant insights into all your data assets — from code changes to log-level execution details.
Synq alerts are packed with relevant insights about exactly what happened, the impact assessment, and the last code change.
'type' should be one of the following values: [charge, refund].
Got 427 errors.
You can start your root-cause analysis right from Slack or whatever messaging app you use. The rich insights Synq delivers gets you up-to-speed on what’s happening in an instant.
Merge lineage and code into a single workflow and debug issues across hundreds of lines of SQL code with ease. Historically, this is an experience only software engineers have enjoyed. But that’s all changing.
orders AS (
SELECT
order_id,
customer_id,
order_date
FROM orders
),
order_items AS (
SELECT
order_id,
product_id,
quantity,
unit_price
FROM order_items
),
order_items_total AS (
SELECT
order_id,
SUM(quantity * unit_price) AS total
FROM order_items
GROUP BY order_id
),
SELECT
customer_id,
SUM(total) AS value,
NTILE(4) OVER (ORDER BY value) AS value_quartile
FROM orders
JOIN order_items_total USING (order_id)
GROUP BY customer_id
...
SELECT
order_id,
customer_id,
order_date
FROM fivetran.orders
...
SELECT
order_id,
product_id,
quantity,
unit_price
FROM fivetran.order_items
Synq lineage understands how data flows through layers of CTEs and subqueries and where in code the logic exactly is, accelerating planning, refactoring and debugging workflows.
Our integrations make it easy to work with all the platforms and applications you want to use. We’re proud to be a fully integrated platform for data quality.
Synq is the data reliability platform for teams that own business-critical data. Synq delivers precise anomaly detection, a robust ownership model, incident management and issue resolution for teams that power business-critical use cases.
Synq is a cloud tool (run on Google Cloud) that can be accessed directly through your web browser from anywhere.
Less than 30 minutes! New Synq customers often can’t quite believe this when they hear it. But the way Synq is architected means you can start using the platform and improving your data reliability in the time it takes to make and drink a cup of coffee.
We have three pricing tiers to suit businesses at different stages of their data-reliability journey.
Yes. We’re data experts that love collaborating with and helping data teams. Our support team is here to handle urgent issues. And we offer a consultative service to help you get the most out of the Synq platform. We approach each case looking at business problems, not just tool problems. We help our clients to understand what’s really business-critical, how well it’s working, and how to ensure that any critical impact is prioritized.
Yes, you can request a demo here (with an actual data expert, not a salesperson). Or if you’re in a rush to find out how Synq works, you can check out our YouTube channel.
Quickly and easily. After you’ve been assigned a Synq workspace, just follow these steps for the optimal setup.
Synq continuously innovates and ships quickly so our customers can manage their business-critical data more easily and efficiently. From column-core lineage, to prioritized incident management, to automated alerts that link between incidents and critical data products – where we lead, the market follows.
Absolutely. Synq adheres to SOC2 and GDPR regulations. Our design and operations prioritise security, ensuring the safeguarding of individual systems and information through cryptographic controls. We are hosted on Google Cloud (GCP/Europe) and encryption is applied by default to all data in transit and at rest. (for what its worth, we've been successfully onboarded by a major bank, and we all know how strict they are!)
Customer data is retained for as long as the account is in active status. Data enters an “expired” state when the account is voluntarily closed. Expired account data will be retained for 28 calendar days. After this period, the account and related data will be removed. Check out our data policy here.
The Synq API is available for developers to manage certain functionalities using custom workflows. Synq exposes its API as gRPC services. This means that the API is as easy to use as calling functions from your code.