> ## Documentation Index
> Fetch the complete documentation index at: https://docs.open-metadata.org/llms.txt
> Use this file to discover all available pages before exploring further.

# Connectors | OpenMetadata Docs for Seamless Data Integration

> Explore OpenMetadata's comprehensive connector library to integrate with databases, dashboards, pipelines, and ML platforms. Easy setup guides included.

export const ConnectorFilter = () => {
  const ALL = 'all';
  const anchorRef = useRef(null);
  const [sections, setSections] = useState([]);
  const [serviceType, setServiceType] = useState(ALL);
  const [service, setService] = useState(ALL);
  const [openField, setOpenField] = useState(null);
  const [search, setSearch] = useState('');
  useEffect(() => {
    const page = document.querySelector('.connector-page');
    if (!page) return;
    const discover = () => {
      const headings = Array.from(page.querySelectorAll(':scope > h2'));
      return headings.map(heading => {
        const type = heading.textContent.replace(/[​-‍﻿]/g, '').trim();
        const cards = [];
        const seenCards = new Set();
        let sibling = heading.nextElementSibling;
        while (sibling && sibling.tagName !== 'H2') {
          sibling.querySelectorAll('.card[role="link"]').forEach(el => {
            if (seenCards.has(el)) return;
            const title = el.querySelector('[data-component-part="card-title"]');
            const name = title?.textContent.trim();
            if (!name) return;
            seenCards.add(el);
            cards.push({
              id: `${type}:${name}`,
              name,
              el
            });
          });
          sibling = sibling.nextElementSibling;
        }
        return {
          type,
          headingEl: heading,
          cards
        };
      }).filter(section => section.cards.length > 0);
    };
    let frame = null;
    const rescan = () => {
      frame = null;
      setSections(discover());
    };
    rescan();
    const observer = new MutationObserver(() => {
      if (frame) cancelAnimationFrame(frame);
      frame = requestAnimationFrame(rescan);
    });
    observer.observe(page, {
      childList: true,
      subtree: true
    });
    return () => {
      observer.disconnect();
      if (frame) cancelAnimationFrame(frame);
    };
  }, []);
  useEffect(() => {
    const query = search.trim().toLowerCase();
    sections.forEach(section => {
      const typeMatches = serviceType === ALL || section.type === serviceType;
      let visibleCount = 0;
      section.cards.forEach(({id, name, el}) => {
        const visible = typeMatches && (service === ALL || id === service) && (!query || name.toLowerCase().includes(query));
        el.style.display = visible ? '' : 'none';
        if (visible) visibleCount += 1;
      });
      section.headingEl.style.display = visibleCount > 0 ? '' : 'none';
    });
  }, [sections, serviceType, service, search]);
  useEffect(() => {
    const updateOffset = () => {
      const header = document.querySelector('header');
      const height = header?.getBoundingClientRect().height ?? 0;
      if (anchorRef.current) anchorRef.current.style.top = `${height}px`;
    };
    updateOffset();
    window.addEventListener('resize', updateOffset);
    return () => window.removeEventListener('resize', updateOffset);
  }, []);
  useEffect(() => {
    if (!openField) return;
    const handlePointerDown = event => {
      if (anchorRef.current && !anchorRef.current.contains(event.target)) {
        setOpenField(null);
      }
    };
    const handleKeyDown = event => {
      if (event.key === 'Escape') setOpenField(null);
    };
    document.addEventListener('mousedown', handlePointerDown);
    document.addEventListener('keydown', handleKeyDown);
    return () => {
      document.removeEventListener('mousedown', handlePointerDown);
      document.removeEventListener('keydown', handleKeyDown);
    };
  }, [openField]);
  const visibleSections = useMemo(() => {
    return serviceType === ALL ? sections : sections.filter(section => section.type === serviceType);
  }, [sections, serviceType]);
  const selectedServiceName = useMemo(() => {
    if (service === ALL) return 'All Services';
    for (const section of sections) {
      const card = section.cards.find(c => c.id === service);
      if (card) return card.name;
    }
    return 'All Services';
  }, [service, sections]);
  const selectServiceType = value => {
    setServiceType(value);
    setService(ALL);
    setOpenField(null);
  };
  const selectService = value => {
    setService(value);
    setSearch('');
    setOpenField(null);
    if (value === ALL) return;
    const owningSection = sections.find(section => section.cards.some(card => card.id === value));
    const card = owningSection?.cards.find(card => card.id === value);
    if (owningSection) setServiceType(owningSection.type);
    requestAnimationFrame(() => {
      card?.el.scrollIntoView({
        behavior: 'smooth',
        block: 'center'
      });
    });
  };
  const handleSearchChange = event => {
    setSearch(event.target.value);
    setService(ALL);
  };
  const handleReset = () => {
    setServiceType(ALL);
    setService(ALL);
    setSearch('');
    setOpenField(null);
  };
  const hasActiveFilter = serviceType !== ALL || service !== ALL || search.trim() !== '';
  const renderChevron = open => <svg className={`connector-filter-chevron${open ? ' connector-filter-chevron-open' : ''}`} width="14" height="14" viewBox="0 0 16 16" fill="none">
            <path d="M4 6l4 4 4-4" stroke="currentColor" strokeWidth="1.6" strokeLinecap="round" strokeLinejoin="round" />
        </svg>;
  const renderDropdown = ({label, id, isOpen, onToggle, displayValue, items}) => <div className="connector-filter-field">
            <label htmlFor={id}>{label}</label>
            <div className="connector-filter-dropdown">
                <button type="button" id={id} className="connector-filter-trigger" aria-expanded={isOpen} aria-haspopup="listbox" onClick={onToggle}>
                    <span>{displayValue}</span>
                    {renderChevron(isOpen)}
                </button>
                {isOpen && <ul className="connector-filter-menu" role="listbox">
                        {items}
                    </ul>}
            </div>
        </div>;
  const typeItems = [<li key={ALL} role="option" aria-selected={serviceType === ALL} className={serviceType === ALL ? 'active' : ''} onClick={() => selectServiceType(ALL)}>
            All Service Types
        </li>, ...sections.map(section => <li key={section.type} role="option" aria-selected={serviceType === section.type} className={serviceType === section.type ? 'active' : ''} onClick={() => selectServiceType(section.type)}>
                {section.type}
            </li>)];
  const serviceItems = [<li key={ALL} role="option" aria-selected={service === ALL} className={service === ALL ? 'active' : ''} onClick={() => selectService(ALL)}>
            All Services
        </li>, ...serviceType === ALL ? visibleSections.flatMap(section => [<li key={section.type} className="connector-filter-group-label" role="presentation">
                    {section.type}
                </li>, ...[...section.cards].sort((a, b) => a.name.localeCompare(b.name)).map(card => <li key={card.id} role="option" aria-selected={service === card.id} className={service === card.id ? 'active' : ''} onClick={() => selectService(card.id)}>
                            {card.name}
                        </li>)]) : (visibleSections[0]?.cards ?? []).slice().sort((a, b) => a.name.localeCompare(b.name)).map(card => <li key={card.id} role="option" aria-selected={service === card.id} className={service === card.id ? 'active' : ''} onClick={() => selectService(card.id)}>
                        {card.name}
                    </li>)];
  return <div className="connector-filter" ref={anchorRef}>
            <div className="connector-filter-row">
                <div className="connector-filter-field connector-filter-search-field">
                    <label htmlFor="connector-filter-search">Search</label>
                    <div className="connector-filter-search">
                        <svg width="14" height="14" viewBox="0 0 16 16" fill="none">
                            <circle cx="7" cy="7" r="5" stroke="currentColor" strokeWidth="1.6" />
                            <path d="M11 11l3.5 3.5" stroke="currentColor" strokeWidth="1.6" strokeLinecap="round" />
                        </svg>
                        <input id="connector-filter-search" type="text" placeholder="Search connectors..." value={search} onChange={handleSearchChange} />
                    </div>
                </div>

                {renderDropdown({
    label: 'Service Type',
    id: 'connector-filter-type',
    isOpen: openField === 'type',
    onToggle: () => setOpenField(openField === 'type' ? null : 'type'),
    displayValue: serviceType === ALL ? 'All Service Types' : serviceType,
    items: typeItems
  })}

                {renderDropdown({
    label: 'Service',
    id: 'connector-filter-service',
    isOpen: openField === 'service',
    onToggle: () => setOpenField(openField === 'service' ? null : 'service'),
    displayValue: selectedServiceName,
    items: serviceItems
  })}

                {hasActiveFilter && <button type="button" className="connector-filter-reset" onClick={handleReset}>
                        Reset
                    </button>}
            </div>
        </div>;
};

# Connectors

OpenMetadata can extract metadata from the following list of connectors below.

<div className="connector-page">
  <ConnectorFilter />

  <ul style={{ fontSize: '13px', lineHeight: '2' }}>
    <li style={{ display: 'flex', alignItems: 'center', gap: '8px' }}>
      <span className="prod-beta-chip prod" style={{ position: 'relative', top: 'auto', right: 'auto' }}>PROD</span>
      <span>Production-ready, fully supported connector</span>
    </li>

    <li style={{ display: 'flex', alignItems: 'center', gap: '8px' }}>
      <span className="prod-beta-chip beta" style={{ position: 'relative', top: 'auto', right: 'auto' }}>BETA</span>
      <span>Beta connector – may have limitations or missing features</span>
    </li>
  </ul>

  ## API

  <CardGroup cols="2">
    <Card title="REST" icon="https://mintcdn.com/openmetadata/euWPnIfvGUcJgAP6/public/images/connectors/rest.webp?fit=max&auto=format&n=euWPnIfvGUcJgAP6&q=85&s=362f2452102e8068cef0577646f7df08" href="/v2.1.x-SNAPSHOT/connectors/api/rest" horizontal width="188" height="188" data-path="public/images/connectors/rest.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>
  </CardGroup>

  ## Database

  <CardGroup cols="2">
    <Card title="ADLS Datalake" icon="https://mintcdn.com/openmetadata/6gXrLELUGeLr2Cj6/public/images/connectors/adls.webp?fit=max&auto=format&n=6gXrLELUGeLr2Cj6&q=85&s=e81e8a4ad3e52b79d4f362f90dc25141" href="/v2.1.x-SNAPSHOT/connectors/database/adls-datalake" horizontal width="360" height="360" data-path="public/images/connectors/adls.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="Athena" icon="https://mintcdn.com/openmetadata/TuW6c379o6GhuCGi/public/images/connectors/athena.webp?fit=max&auto=format&n=TuW6c379o6GhuCGi&q=85&s=ac61560aaadcb13501a704c6f5af4873" href="/v2.1.x-SNAPSHOT/connectors/database/athena" horizontal width="360" height="360" data-path="public/images/connectors/athena.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="AzureSQL" icon="https://mintcdn.com/openmetadata/TuW6c379o6GhuCGi/public/images/connectors/azuresql.webp?fit=max&auto=format&n=TuW6c379o6GhuCGi&q=85&s=5c63c0e01aa203a8905fd24239988981" href="/v2.1.x-SNAPSHOT/connectors/database/azuresql" horizontal width="360" height="360" data-path="public/images/connectors/azuresql.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="BigQuery" icon="https://mintcdn.com/openmetadata/TuW6c379o6GhuCGi/public/images/connectors/bigquery.webp?fit=max&auto=format&n=TuW6c379o6GhuCGi&q=85&s=425c92ff3a0284fc6369a6e42ff580cd" href="/v2.1.x-SNAPSHOT/connectors/database/bigquery" horizontal width="360" height="360" data-path="public/images/connectors/bigquery.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="BigTable" icon="https://mintcdn.com/openmetadata/TuW6c379o6GhuCGi/public/images/connectors/big-table.webp?fit=max&auto=format&n=TuW6c379o6GhuCGi&q=85&s=d2341bca7cc09967d3ffebe686c4a029" href="/v2.1.x-SNAPSHOT/connectors/database/bigtable" horizontal width="459" height="512" data-path="public/images/connectors/big-table.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="BurstIQ" icon="https://mintcdn.com/openmetadata/oYfpbaU5rpd3FtCi/public/images/connectors/burstiq.webp?fit=max&auto=format&n=oYfpbaU5rpd3FtCi&q=85&s=c2fef9ad110b91e245f905ddb3156057" href="/v2.1.x-SNAPSHOT/connectors/database/burstiq" horizontal width="2425" height="978" data-path="public/images/connectors/burstiq.webp">
      <div className="prod-beta-chip beta"><img src="https://mintcdn.com/openmetadata/4oHMcq4H3LdkBOt_/public/images/icons/beta-icon.svg?fit=max&auto=format&n=4oHMcq4H3LdkBOt_&q=85&s=545bfa059b6e702abeedd4e9fc031e59" alt="beta" noZoom width="12" height="12" data-path="public/images/icons/beta-icon.svg" /> <div>BETA</div></div>
    </Card>

    <Card title="Cassandra" icon="https://mintcdn.com/openmetadata/9SXjaLbGROaofLQU/public/images/connectors/cassandra.webp?fit=max&auto=format&n=9SXjaLbGROaofLQU&q=85&s=0def1c62e596dc9d4734218ddf6919b0" href="/v2.1.x-SNAPSHOT/connectors/database/cassandra" horizontal width="178" height="178" data-path="public/images/connectors/cassandra.webp">
      <div className="prod-beta-chip beta"><img src="https://mintcdn.com/openmetadata/4oHMcq4H3LdkBOt_/public/images/icons/beta-icon.svg?fit=max&auto=format&n=4oHMcq4H3LdkBOt_&q=85&s=545bfa059b6e702abeedd4e9fc031e59" alt="beta" noZoom width="12" height="12" data-path="public/images/icons/beta-icon.svg" /> <div>BETA</div></div>
    </Card>

    <Card title="Cockroach" icon="https://mintcdn.com/openmetadata/9SXjaLbGROaofLQU/public/images/connectors/cockroach.png?fit=max&auto=format&n=9SXjaLbGROaofLQU&q=85&s=9639c8b0b8331381b6b45cd88a2120b0" href="/v2.1.x-SNAPSHOT/connectors/database/cockroach" horizontal width="962" height="1201" data-path="public/images/connectors/cockroach.png">
      <div className="prod-beta-chip beta"><img src="https://mintcdn.com/openmetadata/4oHMcq4H3LdkBOt_/public/images/icons/beta-icon.svg?fit=max&auto=format&n=4oHMcq4H3LdkBOt_&q=85&s=545bfa059b6e702abeedd4e9fc031e59" alt="beta" noZoom width="12" height="12" data-path="public/images/icons/beta-icon.svg" /> <div>BETA</div></div>
    </Card>

    <Card title="Clickhouse" icon="https://mintcdn.com/openmetadata/9SXjaLbGROaofLQU/public/images/connectors/clickhouse.webp?fit=max&auto=format&n=9SXjaLbGROaofLQU&q=85&s=b6fcd2ed95af1100b7a9ba8fc852b25c" href="/v2.1.x-SNAPSHOT/connectors/database/clickhouse" horizontal width="360" height="360" data-path="public/images/connectors/clickhouse.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="Couchbase" icon="https://mintcdn.com/openmetadata/9SXjaLbGROaofLQU/public/images/connectors/couchbase.webp?fit=max&auto=format&n=9SXjaLbGROaofLQU&q=85&s=c8e8e8b2620e38d9bdce5d95928e96a4" href="/v2.1.x-SNAPSHOT/connectors/database/couchbase" horizontal width="256" height="256" data-path="public/images/connectors/couchbase.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="Databricks" icon="https://mintcdn.com/openmetadata/9SXjaLbGROaofLQU/public/images/connectors/databrick.webp?fit=max&auto=format&n=9SXjaLbGROaofLQU&q=85&s=f57e174cbcfb4dad1b18f2afae93ad76" href="/v2.1.x-SNAPSHOT/connectors/database/databricks" horizontal width="360" height="360" data-path="public/images/connectors/databrick.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="DB2" icon="https://mintcdn.com/openmetadata/bSeSGuVjATgAasqS/public/images/connectors/ibmdb2.webp?fit=max&auto=format&n=bSeSGuVjATgAasqS&q=85&s=fd7a32956758543c38323a56b551ffe8" href="/v2.1.x-SNAPSHOT/connectors/database/db2" horizontal width="360" height="360" data-path="public/images/connectors/ibmdb2.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="dbt" icon="https://mintcdn.com/openmetadata/J0UlltStCTx8aSZx/public/images/connectors/dbt.webp?fit=max&auto=format&n=J0UlltStCTx8aSZx&q=85&s=481cb45ed15f7c83ef9203b7f74b7ca7" href="/v2.1.x-SNAPSHOT/connectors/database/dbt/configure-dbt-workflow" horizontal width="360" height="360" data-path="public/images/connectors/dbt.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="Delta Lake" icon="https://mintcdn.com/openmetadata/J0UlltStCTx8aSZx/public/images/connectors/delta-lake.webp?fit=max&auto=format&n=J0UlltStCTx8aSZx&q=85&s=e40dfea8f2e402e9d5e52f6ec5dbf3be" href="/v2.1.x-SNAPSHOT/connectors/database/deltalake" horizontal width="521" height="406" data-path="public/images/connectors/delta-lake.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="Domo" icon="https://mintcdn.com/openmetadata/J0UlltStCTx8aSZx/public/images/connectors/domo.webp?fit=max&auto=format&n=J0UlltStCTx8aSZx&q=85&s=3dc81c6cb0fd5d2856ee6088e6826ca9" href="/v2.1.x-SNAPSHOT/connectors/database/domo-database" horizontal width="400" height="400" data-path="public/images/connectors/domo.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="Doris" icon="https://mintcdn.com/openmetadata/J0UlltStCTx8aSZx/public/images/connectors/doris.png?fit=max&auto=format&n=J0UlltStCTx8aSZx&q=85&s=a2429cd620df31b1e8a6f07d4e02a8aa" href="/v2.1.x-SNAPSHOT/connectors/database/doris" horizontal width="350" height="350" data-path="public/images/connectors/doris.png">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="Druid" icon="https://mintcdn.com/openmetadata/J0UlltStCTx8aSZx/public/images/connectors/druid.webp?fit=max&auto=format&n=J0UlltStCTx8aSZx&q=85&s=2cdd2dfe33529f156adc1eaf6392805a" href="/v2.1.x-SNAPSHOT/connectors/database/druid" horizontal width="360" height="360" data-path="public/images/connectors/druid.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="DynamoDB" icon="https://mintcdn.com/openmetadata/bSeSGuVjATgAasqS/public/images/connectors/dynamodb.webp?fit=max&auto=format&n=bSeSGuVjATgAasqS&q=85&s=5233bbff2bb671f527a121144f88d5ca" href="/v2.1.x-SNAPSHOT/connectors/database/dynamodb" horizontal width="360" height="360" data-path="public/images/connectors/dynamodb.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="Epic" icon="https://mintcdn.com/openmetadata/bSeSGuVjATgAasqS/public/images/connectors/epic.png?fit=max&auto=format&n=bSeSGuVjATgAasqS&q=85&s=146faa08093fa2e436ce22322906ba6c" href="/v2.1.x-SNAPSHOT/connectors/database/epic" horizontal width="1024" height="1024" data-path="public/images/connectors/epic.png">
      <div className="prod-beta-chip beta"><img src="https://mintcdn.com/openmetadata/4oHMcq4H3LdkBOt_/public/images/icons/beta-icon.svg?fit=max&auto=format&n=4oHMcq4H3LdkBOt_&q=85&s=545bfa059b6e702abeedd4e9fc031e59" alt="beta" noZoom width="12" height="12" data-path="public/images/icons/beta-icon.svg" /> <div>BETA</div></div>
    </Card>

    <Card title="Exasol" icon="https://mintcdn.com/openmetadata/bSeSGuVjATgAasqS/public/images/connectors/exasol.webp?fit=max&auto=format&n=bSeSGuVjATgAasqS&q=85&s=6e560e94934325f52cf70c739d20cf66" href="/v2.1.x-SNAPSHOT/connectors/database/exasol" horizontal width="260" height="260" data-path="public/images/connectors/exasol.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="GCS Datalake" icon="https://mintcdn.com/openmetadata/bSeSGuVjATgAasqS/public/images/connectors/gcs.webp?fit=max&auto=format&n=bSeSGuVjATgAasqS&q=85&s=33a668655bbdebd4a4fc82c4c912334f" href="/v2.1.x-SNAPSHOT/connectors/database/gcs-datalake" horizontal width="1200" height="1200" data-path="public/images/connectors/gcs.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="Glue" icon="https://mintcdn.com/openmetadata/bSeSGuVjATgAasqS/public/images/connectors/glue.webp?fit=max&auto=format&n=bSeSGuVjATgAasqS&q=85&s=6ca8c746aeb2f061d7b9af9121f85451" href="/v2.1.x-SNAPSHOT/connectors/database/glue" horizontal width="360" height="360" data-path="public/images/connectors/glue.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="Greenplum" icon="https://mintcdn.com/openmetadata/bSeSGuVjATgAasqS/public/images/connectors/greenplum.webp?fit=max&auto=format&n=bSeSGuVjATgAasqS&q=85&s=8c344b64fd5cff93e8f88defa4b5c4cc" href="/v2.1.x-SNAPSHOT/connectors/database/greenplum" horizontal width="361" height="361" data-path="public/images/connectors/greenplum.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="Hive" icon="https://mintcdn.com/openmetadata/bSeSGuVjATgAasqS/public/images/connectors/hive.webp?fit=max&auto=format&n=bSeSGuVjATgAasqS&q=85&s=5a34c925f04bdf512404e3e66bdbdee0" href="/v2.1.x-SNAPSHOT/connectors/database/hive" horizontal width="360" height="360" data-path="public/images/connectors/hive.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="Impala" icon="https://mintcdn.com/openmetadata/VcBG9WlWdsuSzKoS/public/images/connectors/impala.webp?fit=max&auto=format&n=VcBG9WlWdsuSzKoS&q=85&s=5d66f3bce6161f94ebcf4205687528a5" href="/v2.1.x-SNAPSHOT/connectors/database/impala" horizontal width="225" height="225" data-path="public/images/connectors/impala.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="IOMETE" icon="https://mintcdn.com/openmetadata/-rk-bWckpieE81yS/public/images/connectors/iomete.webp?fit=max&auto=format&n=-rk-bWckpieE81yS&q=85&s=93a7b19661574d1f0f2367009a26620e" href="/v2.1.x-SNAPSHOT/connectors/database/iomete" horizontal width="128" height="128" data-path="public/images/connectors/iomete.webp">
      <div className="prod-beta-chip beta"><img src="https://mintcdn.com/openmetadata/4oHMcq4H3LdkBOt_/public/images/icons/beta-icon.svg?fit=max&auto=format&n=4oHMcq4H3LdkBOt_&q=85&s=545bfa059b6e702abeedd4e9fc031e59" alt="beta" noZoom width="12" height="12" data-path="public/images/icons/beta-icon.svg" /> <div>BETA</div></div>
    </Card>

    <Card title="MariaDB" icon="https://mintcdn.com/openmetadata/VcBG9WlWdsuSzKoS/public/images/connectors/mariadb.webp?fit=max&auto=format&n=VcBG9WlWdsuSzKoS&q=85&s=87504c640cc8208db794c322bf9a34bd" href="/v2.1.x-SNAPSHOT/connectors/database/mariadb" horizontal width="1293" height="1054" data-path="public/images/connectors/mariadb.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="MongoDB" icon="https://mintcdn.com/openmetadata/ppJ6B496M720j1tH/public/images/connectors/mongodb.webp?fit=max&auto=format&n=ppJ6B496M720j1tH&q=85&s=e4748daf511262215a338e8b625a31d9" href="/v2.1.x-SNAPSHOT/connectors/database/mongodb" horizontal width="120" height="258" data-path="public/images/connectors/mongodb.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="MSSQL" icon="https://mintcdn.com/openmetadata/ppJ6B496M720j1tH/public/images/connectors/mssql.webp?fit=max&auto=format&n=ppJ6B496M720j1tH&q=85&s=6a09d2519f5ba0f47b222f1f896205b0" href="/v2.1.x-SNAPSHOT/connectors/database/mssql" horizontal width="360" height="360" data-path="public/images/connectors/mssql.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="MySQL" icon="https://mintcdn.com/openmetadata/zq8wMYJ70mT1Pi3x/public/images/connectors/sql.webp?fit=max&auto=format&n=zq8wMYJ70mT1Pi3x&q=85&s=a815024201837ddd9ad857494de57fb3" href="/v2.1.x-SNAPSHOT/connectors/database/mysql" horizontal width="256" height="256" data-path="public/images/connectors/sql.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="Oracle" icon="https://mintcdn.com/openmetadata/ppJ6B496M720j1tH/public/images/connectors/oracle.webp?fit=max&auto=format&n=ppJ6B496M720j1tH&q=85&s=905f3e78c50050a0e39585f5ae79fccc" href="/v2.1.x-SNAPSHOT/connectors/database/oracle" horizontal width="215" height="215" data-path="public/images/connectors/oracle.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="PinotDB" icon="https://mintcdn.com/openmetadata/ppJ6B496M720j1tH/public/images/connectors/pinot.webp?fit=max&auto=format&n=ppJ6B496M720j1tH&q=85&s=d8637dd5cb308ffef6af190e72ffd11e" href="/v2.1.x-SNAPSHOT/connectors/database/pinotdb" horizontal width="450" height="450" data-path="public/images/connectors/pinot.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="PostgreSQL" icon="https://mintcdn.com/openmetadata/ppJ6B496M720j1tH/public/images/connectors/post.webp?fit=max&auto=format&n=ppJ6B496M720j1tH&q=85&s=15ac86092e9b78736e112787fd42bf86" href="/v2.1.x-SNAPSHOT/connectors/database/postgres" horizontal width="360" height="360" data-path="public/images/connectors/post.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="Presto" icon="https://mintcdn.com/openmetadata/ppJ6B496M720j1tH/public/images/connectors/presto.webp?fit=max&auto=format&n=ppJ6B496M720j1tH&q=85&s=7c24c08920c57602028f910bc54d7fed" href="/v2.1.x-SNAPSHOT/connectors/database/presto" horizontal width="360" height="360" data-path="public/images/connectors/presto.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="QuestDB" icon="https://mintcdn.com/openmetadata/Xa_FMrYfkQnKYT6j/public/images/connectors/questdb.png?fit=max&auto=format&n=Xa_FMrYfkQnKYT6j&q=85&s=e4f481153ed564685e7e2d412e1dffb4" href="/v2.1.x-SNAPSHOT/connectors/database/questdb" horizontal width="512" height="512" data-path="public/images/connectors/questdb.png">
      <div className="prod-beta-chip beta"><img src="https://mintcdn.com/openmetadata/4oHMcq4H3LdkBOt_/public/images/icons/beta-icon.svg?fit=max&auto=format&n=4oHMcq4H3LdkBOt_&q=85&s=545bfa059b6e702abeedd4e9fc031e59" alt="beta" noZoom width="12" height="12" data-path="public/images/icons/beta-icon.svg" /> <div>BETA</div></div>
    </Card>

    <Card title="Redshift" icon="https://mintcdn.com/openmetadata/euWPnIfvGUcJgAP6/public/images/connectors/redshift.webp?fit=max&auto=format&n=euWPnIfvGUcJgAP6&q=85&s=c45a0f95c94125517d1bb8e23dd9b263" href="/v2.1.x-SNAPSHOT/connectors/database/redshift" horizontal width="236" height="236" data-path="public/images/connectors/redshift.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="S3 Datalake" icon="https://mintcdn.com/openmetadata/TuW6c379o6GhuCGi/public/images/connectors/amazon-s3.webp?fit=max&auto=format&n=TuW6c379o6GhuCGi&q=85&s=26c10c00ceb2e5e8e75bfe12cf15bf9d" href="/v2.1.x-SNAPSHOT/connectors/database/s3-datalake" horizontal width="640" height="640" data-path="public/images/connectors/amazon-s3.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="Salesforce" icon="https://mintcdn.com/openmetadata/j50Bw6ZBiFbbFFnF/public/images/connectors/salesforce.webp?fit=max&auto=format&n=j50Bw6ZBiFbbFFnF&q=85&s=8657df7c28d9e4776f7850b0f088ce7f" href="/v2.1.x-SNAPSHOT/connectors/database/salesforce" horizontal width="2560" height="1791" data-path="public/images/connectors/salesforce.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="SAP ERP" icon="https://mintcdn.com/openmetadata/j50Bw6ZBiFbbFFnF/public/images/connectors/sap-erp.png?fit=max&auto=format&n=j50Bw6ZBiFbbFFnF&q=85&s=aa19188f93a49e2eeae67481c0666bc5" href="/v2.1.x-SNAPSHOT/connectors/database/sap-erp" horizontal width="919" height="468" data-path="public/images/connectors/sap-erp.png">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="SAP HANA" icon="https://mintcdn.com/openmetadata/j50Bw6ZBiFbbFFnF/public/images/connectors/saphana.webp?fit=max&auto=format&n=j50Bw6ZBiFbbFFnF&q=85&s=b2e211edf30a554eaa847ee36f8be937" href="/v2.1.x-SNAPSHOT/connectors/database/sap-hana" horizontal width="600" height="175" data-path="public/images/connectors/saphana.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="SAS" icon="https://mintcdn.com/openmetadata/j50Bw6ZBiFbbFFnF/public/images/connectors/sas.webp?fit=max&auto=format&n=j50Bw6ZBiFbbFFnF&q=85&s=d4a180f5c58ec38b1e4c64142665804c" href="/v2.1.x-SNAPSHOT/connectors/database/sas" horizontal width="360" height="360" data-path="public/images/connectors/sas.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="SingleStore" icon="https://mintcdn.com/openmetadata/j50Bw6ZBiFbbFFnF/public/images/connectors/singlestore.webp?fit=max&auto=format&n=j50Bw6ZBiFbbFFnF&q=85&s=c20cb3e98f4f4a017febeeeb1c1371b7" href="/v2.1.x-SNAPSHOT/connectors/database/singlestore" horizontal width="360" height="360" data-path="public/images/connectors/singlestore.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="Snowflake" icon="https://mintcdn.com/openmetadata/j50Bw6ZBiFbbFFnF/public/images/connectors/snowflakes.webp?fit=max&auto=format&n=j50Bw6ZBiFbbFFnF&q=85&s=3dffae19c656efd8d5632cd834961334" href="/v2.1.x-SNAPSHOT/connectors/database/snowflake" horizontal width="215" height="215" data-path="public/images/connectors/snowflakes.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="SQLite" icon="https://mintcdn.com/openmetadata/zq8wMYJ70mT1Pi3x/public/images/connectors/sqlite.webp?fit=max&auto=format&n=zq8wMYJ70mT1Pi3x&q=85&s=06b7b246dc458e7a34264f26013d50ad" href="/v2.1.x-SNAPSHOT/connectors/database/sqlite" horizontal width="360" height="360" data-path="public/images/connectors/sqlite.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="StarRocks" icon="https://mintcdn.com/openmetadata/RPfCIinAmHZQY-0C/public/images/connectors/starrocks.webp?fit=max&auto=format&n=RPfCIinAmHZQY-0C&q=85&s=2916a5137d33f1db6ba4b9fda07a960b" href="/v2.1.x-SNAPSHOT/connectors/database/starrocks" horizontal width="645" height="645" data-path="public/images/connectors/starrocks.webp">
      <div className="prod-beta-chip beta"><img src="https://mintcdn.com/openmetadata/4oHMcq4H3LdkBOt_/public/images/icons/beta-icon.svg?fit=max&auto=format&n=4oHMcq4H3LdkBOt_&q=85&s=545bfa059b6e702abeedd4e9fc031e59" alt="beta" noZoom width="12" height="12" data-path="public/images/icons/beta-icon.svg" /> <div>BETA</div></div>
    </Card>

    <Card title="Teradata" icon="https://mintcdn.com/openmetadata/9G75p72jJKYgvFUQ/public/images/connectors/teradata.webp?fit=max&auto=format&n=9G75p72jJKYgvFUQ&q=85&s=92985521afe97bfd4c42432d28ea917f" href="/v2.1.x-SNAPSHOT/connectors/database/teradata" horizontal width="781" height="781" data-path="public/images/connectors/teradata.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="TimescaleDB" icon="https://mintcdn.com/openmetadata/I_hFW0K5Xz7jW5dq/public/images/connectors/timescale.webp?fit=max&auto=format&n=I_hFW0K5Xz7jW5dq&q=85&s=6017f6a30124bf1ded5f31a69f023aeb" href="/v2.1.x-SNAPSHOT/connectors/database/timescale" horizontal width="346" height="346" data-path="public/images/connectors/timescale.webp">
      <div className="prod-beta-chip beta"><img src="https://mintcdn.com/openmetadata/4oHMcq4H3LdkBOt_/public/images/icons/beta-icon.svg?fit=max&auto=format&n=4oHMcq4H3LdkBOt_&q=85&s=545bfa059b6e702abeedd4e9fc031e59" alt="beta" noZoom width="12" height="12" data-path="public/images/icons/beta-icon.svg" /> <div>BETA</div></div>
    </Card>

    <Card title="Trino" icon="https://mintcdn.com/openmetadata/9G75p72jJKYgvFUQ/public/images/connectors/trino.webp?fit=max&auto=format&n=9G75p72jJKYgvFUQ&q=85&s=6190a84f5824737ff09994055d529f37" href="/v2.1.x-SNAPSHOT/connectors/database/trino" horizontal width="214" height="298" data-path="public/images/connectors/trino.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="Unity Catalog" icon="https://mintcdn.com/openmetadata/9SXjaLbGROaofLQU/public/images/connectors/databrick.webp?fit=max&auto=format&n=9SXjaLbGROaofLQU&q=85&s=f57e174cbcfb4dad1b18f2afae93ad76" href="/v2.1.x-SNAPSHOT/connectors/database/unity-catalog" horizontal width="360" height="360" data-path="public/images/connectors/databrick.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="Vertica" icon="https://mintcdn.com/openmetadata/9G75p72jJKYgvFUQ/public/images/connectors/vertica.webp?fit=max&auto=format&n=9G75p72jJKYgvFUQ&q=85&s=b2ab64affbe3b23377cdf58d6415bc1b" href="/v2.1.x-SNAPSHOT/connectors/database/vertica" horizontal width="360" height="360" data-path="public/images/connectors/vertica.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>
  </CardGroup>

  ## Dashboard

  <CardGroup cols="2">
    <Card title="Domo" icon="https://mintcdn.com/openmetadata/J0UlltStCTx8aSZx/public/images/connectors/domo.webp?fit=max&auto=format&n=J0UlltStCTx8aSZx&q=85&s=3dc81c6cb0fd5d2856ee6088e6826ca9" href="/v2.1.x-SNAPSHOT/connectors/dashboard/domo-dashboard" horizontal width="400" height="400" data-path="public/images/connectors/domo.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="Grafana" icon="https://mintcdn.com/openmetadata/bSeSGuVjATgAasqS/public/images/connectors/grafana.png?fit=max&auto=format&n=bSeSGuVjATgAasqS&q=85&s=8eaf62fddf19e1c2f581e701870d9e64" href="/v2.1.x-SNAPSHOT/connectors/dashboard/grafana" horizontal width="512" height="512" data-path="public/images/connectors/grafana.png">
      <div className="prod-beta-chip beta"><img src="https://mintcdn.com/openmetadata/4oHMcq4H3LdkBOt_/public/images/icons/beta-icon.svg?fit=max&auto=format&n=4oHMcq4H3LdkBOt_&q=85&s=545bfa059b6e702abeedd4e9fc031e59" alt="beta" noZoom width="12" height="12" data-path="public/images/icons/beta-icon.svg" /> <div>BETA</div></div>
    </Card>

    <Card title="Hex" icon="https://mintcdn.com/openmetadata/OA5EIKsmk9DfEgly/public/images/connectors/hex.webp?fit=max&auto=format&n=OA5EIKsmk9DfEgly&q=85&s=9f0afae1a80efc1a0c4fb2576ac7a4cb" href="/v2.1.x-SNAPSHOT/connectors/dashboard/hex" horizontal width="2000" height="770" data-path="public/images/connectors/hex.webp">
      <div className="prod-beta-chip beta"><img src="https://mintcdn.com/openmetadata/4oHMcq4H3LdkBOt_/public/images/icons/beta-icon.svg?fit=max&auto=format&n=4oHMcq4H3LdkBOt_&q=85&s=545bfa059b6e702abeedd4e9fc031e59" alt="beta" noZoom width="12" height="12" data-path="public/images/icons/beta-icon.svg" /> <div>BETA</div></div>
    </Card>

    <Card title="Lightdash" icon="https://mintcdn.com/openmetadata/VcBG9WlWdsuSzKoS/public/images/connectors/lightdash.webp?fit=max&auto=format&n=VcBG9WlWdsuSzKoS&q=85&s=04a390939633717f2ddd7aba65a3f250" href="/v2.1.x-SNAPSHOT/connectors/dashboard/lightdash" horizontal width="754" height="590" data-path="public/images/connectors/lightdash.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="Looker" icon="https://mintcdn.com/openmetadata/VcBG9WlWdsuSzKoS/public/images/connectors/looker.webp?fit=max&auto=format&n=VcBG9WlWdsuSzKoS&q=85&s=948a2a6c69bdaa6de38a6a219cd5a3b4" href="/v2.1.x-SNAPSHOT/connectors/dashboard/looker" horizontal width="360" height="360" data-path="public/images/connectors/looker.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="Metabase" icon="https://mintcdn.com/openmetadata/VcBG9WlWdsuSzKoS/public/images/connectors/metabase.webp?fit=max&auto=format&n=VcBG9WlWdsuSzKoS&q=85&s=31b79fd3413299936a5852a12179b44e" href="/v2.1.x-SNAPSHOT/connectors/dashboard/metabase" horizontal width="360" height="360" data-path="public/images/connectors/metabase.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="MicroStrategy" icon="https://mintcdn.com/openmetadata/VcBG9WlWdsuSzKoS/public/images/connectors/microstrategy.webp?fit=max&auto=format&n=VcBG9WlWdsuSzKoS&q=85&s=a4d581a2ca647c8d5b279c6ef0144e1e" href="/v2.1.x-SNAPSHOT/connectors/dashboard/microstrategy" horizontal width="400" height="400" data-path="public/images/connectors/microstrategy.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="Mode" icon="https://mintcdn.com/openmetadata/ppJ6B496M720j1tH/public/images/connectors/mode.webp?fit=max&auto=format&n=ppJ6B496M720j1tH&q=85&s=f08ba033a864703fb54c797d176d1b33" href="/v2.1.x-SNAPSHOT/connectors/dashboard/mode" horizontal width="300" height="300" data-path="public/images/connectors/mode.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="Omni" icon="https://mintcdn.com/openmetadata/LpCRAZLaM5LQIJqi/public/images/connectors/omni.webp?fit=max&auto=format&n=LpCRAZLaM5LQIJqi&q=85&s=48f1c0306dd753b193df9771673c933b" href="/v2.1.x-SNAPSHOT/connectors/dashboard/omni" horizontal width="256" height="193" data-path="public/images/connectors/omni.webp">
      <div className="prod-beta-chip beta"><img src="https://mintcdn.com/openmetadata/4oHMcq4H3LdkBOt_/public/images/icons/beta-icon.svg?fit=max&auto=format&n=4oHMcq4H3LdkBOt_&q=85&s=545bfa059b6e702abeedd4e9fc031e59" alt="beta" noZoom width="12" height="12" data-path="public/images/icons/beta-icon.svg" /> <div>BETA</div></div>
    </Card>

    <Card title="PowerBI" icon="https://mintcdn.com/openmetadata/ppJ6B496M720j1tH/public/images/connectors/power-bi.webp?fit=max&auto=format&n=ppJ6B496M720j1tH&q=85&s=973d5b6158a0e6d561794215d52ed6a9" href="/v2.1.x-SNAPSHOT/connectors/dashboard/powerbi" horizontal width="360" height="360" data-path="public/images/connectors/power-bi.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="Qlik Cloud" icon="https://mintcdn.com/openmetadata/euWPnIfvGUcJgAP6/public/images/connectors/qlikcloud.webp?fit=max&auto=format&n=euWPnIfvGUcJgAP6&q=85&s=25f36fcafe21cfe8e15bd30fe6957431" href="/v2.1.x-SNAPSHOT/connectors/dashboard/qlikcloud" horizontal width="400" height="400" data-path="public/images/connectors/qlikcloud.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="Qlik Sense" icon="https://mintcdn.com/openmetadata/euWPnIfvGUcJgAP6/public/images/connectors/qliksense.webp?fit=max&auto=format&n=euWPnIfvGUcJgAP6&q=85&s=7d1b9d70e9c8c8fcceb58ade8ab04dc1" href="/v2.1.x-SNAPSHOT/connectors/dashboard/qliksense" horizontal width="360" height="360" data-path="public/images/connectors/qliksense.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="QuickSight" icon="https://mintcdn.com/openmetadata/euWPnIfvGUcJgAP6/public/images/connectors/quicksight.webp?fit=max&auto=format&n=euWPnIfvGUcJgAP6&q=85&s=bf70c70fac42bcbdc73266439e1adef8" href="/v2.1.x-SNAPSHOT/connectors/dashboard/quicksight" horizontal width="2400" height="2400" data-path="public/images/connectors/quicksight.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="Redash" icon="https://mintcdn.com/openmetadata/euWPnIfvGUcJgAP6/public/images/connectors/redash.webp?fit=max&auto=format&n=euWPnIfvGUcJgAP6&q=85&s=dc4d5c427a55040eba266744a667890b" href="/v2.1.x-SNAPSHOT/connectors/dashboard/redash" horizontal width="360" height="360" data-path="public/images/connectors/redash.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="Sigma" icon="https://mintcdn.com/openmetadata/j50Bw6ZBiFbbFFnF/public/images/connectors/sigma.webp?fit=max&auto=format&n=j50Bw6ZBiFbbFFnF&q=85&s=a74ab68beaac5421279ae4251ae95a33" href="/v2.1.x-SNAPSHOT/connectors/dashboard/sigma" horizontal width="194" height="188" data-path="public/images/connectors/sigma.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="SSRS" icon="https://mintcdn.com/openmetadata/Y8I9IHBvjeVkmJtT/public/images/connectors/ssrs.webp?fit=max&auto=format&n=Y8I9IHBvjeVkmJtT&q=85&s=9193c3b88eb75f69ef8d592cf17199b4" href="/v2.1.x-SNAPSHOT/connectors/dashboard/ssrs" horizontal width="233" height="216" data-path="public/images/connectors/ssrs.webp">
      <div className="prod-beta-chip beta"><img src="https://mintcdn.com/openmetadata/4oHMcq4H3LdkBOt_/public/images/icons/beta-icon.svg?fit=max&auto=format&n=4oHMcq4H3LdkBOt_&q=85&s=545bfa059b6e702abeedd4e9fc031e59" alt="beta" noZoom width="12" height="12" data-path="public/images/icons/beta-icon.svg" /> <div>BETA</div></div>
    </Card>

    <Card title="Superset" icon="https://mintcdn.com/openmetadata/zq8wMYJ70mT1Pi3x/public/images/connectors/superset.webp?fit=max&auto=format&n=zq8wMYJ70mT1Pi3x&q=85&s=05572ca29debe273b1c2b157b17be199" href="/v2.1.x-SNAPSHOT/connectors/dashboard/superset" horizontal width="360" height="360" data-path="public/images/connectors/superset.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="Tableau" icon="https://mintcdn.com/openmetadata/zq8wMYJ70mT1Pi3x/public/images/connectors/tableau.webp?fit=max&auto=format&n=zq8wMYJ70mT1Pi3x&q=85&s=5f632540af58abe663e8f7bd9160ffdf" href="/v2.1.x-SNAPSHOT/connectors/dashboard/tableau" horizontal width="360" height="360" data-path="public/images/connectors/tableau.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>
  </CardGroup>

  ## Drive

  <CardGroup cols="2">
    <Card title="Custom Drive" icon="https://mintcdn.com/openmetadata/OA5EIKsmk9DfEgly/public/images/connectors/googledrive.webp?fit=max&auto=format&n=OA5EIKsmk9DfEgly&q=85&s=24e30e7588c5a769a94dc6adeed6b583" href="/v2.1.x-SNAPSHOT/connectors/drive/custom-drive" horizontal width="4096" height="4096" data-path="public/images/connectors/googledrive.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="Google Drive" icon="https://mintcdn.com/openmetadata/OA5EIKsmk9DfEgly/public/images/connectors/googledrive.webp?fit=max&auto=format&n=OA5EIKsmk9DfEgly&q=85&s=24e30e7588c5a769a94dc6adeed6b583" href="/v2.1.x-SNAPSHOT/connectors/drive/googledrive" horizontal width="4096" height="4096" data-path="public/images/connectors/googledrive.webp">
      <div className="prod-beta-chip beta"><img src="https://mintcdn.com/openmetadata/4oHMcq4H3LdkBOt_/public/images/icons/beta-icon.svg?fit=max&auto=format&n=4oHMcq4H3LdkBOt_&q=85&s=545bfa059b6e702abeedd4e9fc031e59" alt="beta" noZoom width="12" height="12" data-path="public/images/icons/beta-icon.svg" /> <div>BETA</div></div>
    </Card>

    <Card title="SFTP" icon="https://mintcdn.com/openmetadata/vc-EkmnDMpPfLIVM/public/images/connectors/sftp.webp?fit=max&auto=format&n=vc-EkmnDMpPfLIVM&q=85&s=4c8b5707cf4a866c54fda926bf7f9e30" href="/v2.1.x-SNAPSHOT/connectors/drive/sftp" horizontal width="28" height="23" data-path="public/images/connectors/sftp.webp">
      <div className="prod-beta-chip beta"><img src="https://mintcdn.com/openmetadata/4oHMcq4H3LdkBOt_/public/images/icons/beta-icon.svg?fit=max&auto=format&n=4oHMcq4H3LdkBOt_&q=85&s=545bfa059b6e702abeedd4e9fc031e59" alt="beta" noZoom width="12" height="12" data-path="public/images/icons/beta-icon.svg" /> <div>BETA</div></div>
    </Card>
  </CardGroup>

  ## Messaging

  <CardGroup cols="2">
    <Card title="Kafka" icon="https://mintcdn.com/openmetadata/VcBG9WlWdsuSzKoS/public/images/connectors/kafka.webp?fit=max&auto=format&n=VcBG9WlWdsuSzKoS&q=85&s=a8d37ad82b2a8edf3155c90fd3c7822e" href="/v2.1.x-SNAPSHOT/connectors/messaging/kafka" horizontal width="360" height="360" data-path="public/images/connectors/kafka.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="Kinesis" icon="https://mintcdn.com/openmetadata/VcBG9WlWdsuSzKoS/public/images/connectors/kinesis.webp?fit=max&auto=format&n=VcBG9WlWdsuSzKoS&q=85&s=f13352f7a8a510fcec48178c8b6331d1" href="/v2.1.x-SNAPSHOT/connectors/messaging/kinesis" horizontal width="548" height="566" data-path="public/images/connectors/kinesis.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="Pub/Sub" icon="https://mintcdn.com/openmetadata/Vdkqqu85OHykDBNH/public/images/connectors/pubsub.svg?fit=max&auto=format&n=Vdkqqu85OHykDBNH&q=85&s=dd74c708df0ce80ee876b681a76ecac5" href="/v2.1.x-SNAPSHOT/connectors/messaging/pubsub" horizontal width="2500" height="2500" data-path="public/images/connectors/pubsub.svg">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="Redpanda" icon="https://mintcdn.com/openmetadata/euWPnIfvGUcJgAP6/public/images/connectors/redpanda.webp?fit=max&auto=format&n=euWPnIfvGUcJgAP6&q=85&s=8cd260c2d2e4e9b45dfc2b272a0cb9e5" href="/v2.1.x-SNAPSHOT/connectors/messaging/redpanda" horizontal width="900" height="741" data-path="public/images/connectors/redpanda.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>
  </CardGroup>

  ## Pipeline

  <CardGroup cols="2">
    <Card title="Airbyte" icon="https://mintcdn.com/openmetadata/6gXrLELUGeLr2Cj6/public/images/connectors/airbyte.webp?fit=max&auto=format&n=6gXrLELUGeLr2Cj6&q=85&s=ea3c6fdc45d93bf67ddaf2b7c4496ed6" href="/v2.1.x-SNAPSHOT/connectors/pipeline/airbyte" horizontal width="200" height="200" data-path="public/images/connectors/airbyte.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="Airflow" icon="https://mintcdn.com/openmetadata/6gXrLELUGeLr2Cj6/public/images/connectors/airflow.webp?fit=max&auto=format&n=6gXrLELUGeLr2Cj6&q=85&s=515f59d5fb151533bbff6f4e71f2f8f1" href="/v2.1.x-SNAPSHOT/connectors/pipeline/airflow" horizontal width="360" height="360" data-path="public/images/connectors/airflow.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="Dagster" icon="https://mintcdn.com/openmetadata/9SXjaLbGROaofLQU/public/images/connectors/dagster.webp?fit=max&auto=format&n=9SXjaLbGROaofLQU&q=85&s=d7d46a12d3e921c7979ba6212db6250f" href="/v2.1.x-SNAPSHOT/connectors/pipeline/dagster" horizontal width="560" height="560" data-path="public/images/connectors/dagster.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="Databricks" icon="https://mintcdn.com/openmetadata/9SXjaLbGROaofLQU/public/images/connectors/databrick.webp?fit=max&auto=format&n=9SXjaLbGROaofLQU&q=85&s=f57e174cbcfb4dad1b18f2afae93ad76" href="/v2.1.x-SNAPSHOT/connectors/pipeline/databricks-pipeline" horizontal width="360" height="360" data-path="public/images/connectors/databrick.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="dbt Cloud" icon="https://mintcdn.com/openmetadata/J0UlltStCTx8aSZx/public/images/connectors/dbtcloud.webp?fit=max&auto=format&n=J0UlltStCTx8aSZx&q=85&s=4bc6c5edb27acfd714448a62234d71a5" href="/v2.1.x-SNAPSHOT/connectors/pipeline/dbtcloud" horizontal width="360" height="360" data-path="public/images/connectors/dbtcloud.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="Domo" icon="https://mintcdn.com/openmetadata/J0UlltStCTx8aSZx/public/images/connectors/domo.webp?fit=max&auto=format&n=J0UlltStCTx8aSZx&q=85&s=3dc81c6cb0fd5d2856ee6088e6826ca9" href="/v2.1.x-SNAPSHOT/connectors/pipeline/domo-pipeline" horizontal width="400" height="400" data-path="public/images/connectors/domo.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="Fivetran" icon="https://mintcdn.com/openmetadata/bSeSGuVjATgAasqS/public/images/connectors/fivetran.webp?fit=max&auto=format&n=bSeSGuVjATgAasqS&q=85&s=0defbccdf065463073634e631ebb8a78" href="/v2.1.x-SNAPSHOT/connectors/pipeline/fivetran" horizontal width="554" height="768" data-path="public/images/connectors/fivetran.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="Flink" icon="https://mintcdn.com/openmetadata/bSeSGuVjATgAasqS/public/images/connectors/flink.png?fit=max&auto=format&n=bSeSGuVjATgAasqS&q=85&s=db2123a445724c4560f50772310dc90b" href="/v2.1.x-SNAPSHOT/connectors/pipeline/flink" horizontal width="1000" height="1000" data-path="public/images/connectors/flink.png">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="Glue" icon="https://mintcdn.com/openmetadata/bSeSGuVjATgAasqS/public/images/connectors/glue.webp?fit=max&auto=format&n=bSeSGuVjATgAasqS&q=85&s=6ca8c746aeb2f061d7b9af9121f85451" href="/v2.1.x-SNAPSHOT/connectors/pipeline/glue-pipeline" horizontal width="360" height="360" data-path="public/images/connectors/glue.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="KafkaConnect" icon="https://mintcdn.com/openmetadata/VcBG9WlWdsuSzKoS/public/images/connectors/kafka.webp?fit=max&auto=format&n=VcBG9WlWdsuSzKoS&q=85&s=a8d37ad82b2a8edf3155c90fd3c7822e" href="/v2.1.x-SNAPSHOT/connectors/pipeline/kafkaconnect" horizontal width="360" height="360" data-path="public/images/connectors/kafka.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="NiFi" icon="https://mintcdn.com/openmetadata/TuW6c379o6GhuCGi/public/images/connectors/apachenifi.webp?fit=max&auto=format&n=TuW6c379o6GhuCGi&q=85&s=d2011e8ca4fd61357e84927a15c29162" href="/v2.1.x-SNAPSHOT/connectors/pipeline/nifi" horizontal width="360" height="360" data-path="public/images/connectors/apachenifi.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="OpenLineage" icon="https://mintcdn.com/openmetadata/ppJ6B496M720j1tH/public/images/connectors/openlineage.png?fit=max&auto=format&n=ppJ6B496M720j1tH&q=85&s=b3b005533d136f7a12903a6094bf6a9b" href="/v2.1.x-SNAPSHOT/connectors/pipeline/openlineage" horizontal width="400" height="400" data-path="public/images/connectors/openlineage.png">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="Prefect" icon="https://mintcdn.com/openmetadata/LpCRAZLaM5LQIJqi/public/images/connectors/prefect.svg?fit=max&auto=format&n=LpCRAZLaM5LQIJqi&q=85&s=270294d250bdb16d071555a77e0ffc39" href="/v2.1.x-SNAPSHOT/connectors/pipeline/prefect" horizontal width="218" height="297" data-path="public/images/connectors/prefect.svg">
      <div className="prod-beta-chip beta"><img src="https://mintcdn.com/openmetadata/4oHMcq4H3LdkBOt_/public/images/icons/beta-icon.svg?fit=max&auto=format&n=4oHMcq4H3LdkBOt_&q=85&s=545bfa059b6e702abeedd4e9fc031e59" alt="beta" noZoom width="12" height="12" data-path="public/images/icons/beta-icon.svg" /> <div>BETA</div></div>
    </Card>

    <Card title="Spline" icon="https://mintcdn.com/openmetadata/zq8wMYJ70mT1Pi3x/public/images/connectors/spline.webp?fit=max&auto=format&n=zq8wMYJ70mT1Pi3x&q=85&s=d77ea8f1b10df600c2696f58e92bcbf5" href="/v2.1.x-SNAPSHOT/connectors/pipeline/spline" horizontal width="498" height="501" data-path="public/images/connectors/spline.webp">
      <div className="prod-beta-chip beta"><img src="https://mintcdn.com/openmetadata/4oHMcq4H3LdkBOt_/public/images/icons/beta-icon.svg?fit=max&auto=format&n=4oHMcq4H3LdkBOt_&q=85&s=545bfa059b6e702abeedd4e9fc031e59" alt="beta" noZoom width="12" height="12" data-path="public/images/icons/beta-icon.svg" /> <div>BETA</div></div>
    </Card>
  </CardGroup>

  ## ML Model

  <CardGroup cols="2">
    <Card title="MLflow" icon="https://mintcdn.com/openmetadata/VcBG9WlWdsuSzKoS/public/images/connectors/mlflow.webp?fit=max&auto=format&n=VcBG9WlWdsuSzKoS&q=85&s=4937b8920983efba37d25c9ec7dd4c2b" href="/v2.1.x-SNAPSHOT/connectors/ml-model/mlflow" horizontal width="640" height="640" data-path="public/images/connectors/mlflow.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="Sagemaker" icon="https://mintcdn.com/openmetadata/euWPnIfvGUcJgAP6/public/images/connectors/sagemaker.webp?fit=max&auto=format&n=euWPnIfvGUcJgAP6&q=85&s=429becec418173641f16c8b343b26949" href="/v2.1.x-SNAPSHOT/connectors/ml-model/sagemaker" horizontal width="300" height="300" data-path="public/images/connectors/sagemaker.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>
  </CardGroup>

  ## Storage

  <CardGroup cols="2">
    <Card title="GCS" icon="https://mintcdn.com/openmetadata/bSeSGuVjATgAasqS/public/images/connectors/gcs.webp?fit=max&auto=format&n=bSeSGuVjATgAasqS&q=85&s=33a668655bbdebd4a4fc82c4c912334f" href="/v2.1.x-SNAPSHOT/connectors/storage/gcs" horizontal width="1200" height="1200" data-path="public/images/connectors/gcs.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="S3 Storage" icon="https://mintcdn.com/openmetadata/TuW6c379o6GhuCGi/public/images/connectors/amazon-s3.webp?fit=max&auto=format&n=TuW6c379o6GhuCGi&q=85&s=26c10c00ceb2e5e8e75bfe12cf15bf9d" href="/v2.1.x-SNAPSHOT/connectors/storage/s3" horizontal width="640" height="640" data-path="public/images/connectors/amazon-s3.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>
  </CardGroup>

  ## Metadata

  <CardGroup cols="2">
    <Card title="AlationSink" icon="https://mintcdn.com/openmetadata/6gXrLELUGeLr2Cj6/public/images/connectors/alation.webp?fit=max&auto=format&n=6gXrLELUGeLr2Cj6&q=85&s=198758ee25469b84172a071ab0107e03" href="/v2.1.x-SNAPSHOT/connectors/metadata/alationsink" horizontal width="1200" height="1200" data-path="public/images/connectors/alation.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="Amundsen" icon="https://mintcdn.com/openmetadata/TuW6c379o6GhuCGi/public/images/connectors/amundsen.webp?fit=max&auto=format&n=TuW6c379o6GhuCGi&q=85&s=1d0758e09a9e9dc65753eca5815a5878" href="/v2.1.x-SNAPSHOT/connectors/metadata/amundsen" horizontal width="360" height="360" data-path="public/images/connectors/amundsen.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="Atlas" icon="https://mintcdn.com/openmetadata/TuW6c379o6GhuCGi/public/images/connectors/atlas.webp?fit=max&auto=format&n=TuW6c379o6GhuCGi&q=85&s=b288619a0f8e828030af8de38644daae" href="/v2.1.x-SNAPSHOT/connectors/metadata/atlas" horizontal width="360" height="360" data-path="public/images/connectors/atlas.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>
  </CardGroup>

  ## Security

  <Note>
    No security connectors are documented for this version yet.
  </Note>

  ## Search

  <CardGroup cols="2">
    <Card title="Elasticsearch" icon="https://mintcdn.com/openmetadata/bSeSGuVjATgAasqS/public/images/connectors/elasticsearch.webp?fit=max&auto=format&n=bSeSGuVjATgAasqS&q=85&s=d3b57be5c7234739d4719fcc7e069953" href="/v2.1.x-SNAPSHOT/connectors/search/elasticsearch" horizontal width="512" height="512" data-path="public/images/connectors/elasticsearch.webp">
      <div className="prod-beta-chip prod"><img src="https://mintcdn.com/openmetadata/Z_Ib-0g05fLykSep/public/images/icons/prod-icon.svg?fit=max&auto=format&n=Z_Ib-0g05fLykSep&q=85&s=ad416c9842f6571edd15114ee98fe9b3" alt="prod" noZoom width="12" height="12" data-path="public/images/icons/prod-icon.svg" /> <div>PROD</div></div>
    </Card>

    <Card title="OpenSearch" icon="https://mintcdn.com/openmetadata/ppJ6B496M720j1tH/public/images/connectors/opensearch.webp?fit=max&auto=format&n=ppJ6B496M720j1tH&q=85&s=06937e1d12e993293087a937b4bc096a" href="/v2.1.x-SNAPSHOT/connectors/search/opensearch" horizontal width="512" height="512" data-path="public/images/connectors/opensearch.webp">
      <div className="prod-beta-chip beta"><img src="https://mintcdn.com/openmetadata/4oHMcq4H3LdkBOt_/public/images/icons/beta-icon.svg?fit=max&auto=format&n=4oHMcq4H3LdkBOt_&q=85&s=545bfa059b6e702abeedd4e9fc031e59" alt="beta" noZoom width="12" height="12" data-path="public/images/icons/beta-icon.svg" /> <div>BETA</div></div>
    </Card>
  </CardGroup>
</div>
